/* Modern Style CSS */
:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-color: #1f2937;
    --light-text: #6b7280;
    --background: #ffffff;
    --section-bg: #f3f4f6;
    --transition: all 0.3s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 5px 0;
    transition: var(--transition);
}


        .mobile-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 75px;
            background: linear-gradient(to right, #00319c, #00319c);
            z-index: 1000;
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
        }
        
        .mobile-nav-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            height: 100%;
            max-width: 600px;
            margin: 0 auto;
            padding: 0 10px;
        }
        
        .mobile-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.75rem;
            transition: all 0.3s ease;
            padding: 8px 0;
            position: relative;
        }
        
        .mobile-nav-item i {
            font-size: 1.3rem;
            margin-bottom: 3px;
            transition: all 0.3s ease;
        }
        
        .mobile-nav-item span {
            font-weight: 500;
        }
        
        .mobile-nav-item.active {
            color: #ffffff;
        }
        
        .mobile-nav-item.active i {
            color: #ffffff;
            transform: translateY(-2px);
        }
        
        .mobile-nav-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: #ffffff;
            transition: width 0.3s ease;
            border-radius: 3px;
        }
        
        .mobile-nav-item.active::after {
            width: 25px;
        }
        
        /* Update body padding for mobile */
        @media (max-width: 768px) {
            body {
                padding-bottom: 60px;
            }
            
            .mobile-nav {
                display: block;
            }
        }


/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.2)), url('../img/bgs/1.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 0 1rem;
}

.hero-content {
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.primary-btn, .secondary-btn {
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.primary-btn {
    background: var(--primary-color);
    color: white;
}

.secondary-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.primary-btn:hover {
    background: var(--secondary-color);
}

.secondary-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--section-bg);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.about-content {
    flex-direction: column;
}

.about-text, .about-features {
    width: 100%;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Team Section */
.team {
    padding: 6rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    margin-bottom: 0.5rem;
}

.member-info p {
    color: var(--light-text);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #2563eb;
    transform: translateY(-3px);
}

/* Works Section */
.works {
    padding: 6rem 0;
    background: var(--section-bg);
}

.works-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary-color);
    color: white;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.work-item {
    opacity: 1;
    transform: scale(1);
    transition: var(--transition);
}

.work-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    width: 100%;
    margin: 0;
}

.work-card:hover {
    transform: translateY(-5px);
}

.work-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 99, 235, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.work-card:hover .work-overlay {
    opacity: 1;
}

.work-card:hover .work-image img {
    transform: scale(1.1);
}

.work-links {
    display: flex;
    gap: 1rem;
}

.work-link {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.work-card:hover .work-link {
    transform: translateY(0);
    opacity: 1;
}

.work-link:hover {
    background: var(--primary-color);
    color: white;
}

.work-content {
    padding: 1.5rem;
}

.work-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.work-content p {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.work-category {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: var(--section-bg);
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--secondary-color);
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.2rem;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: white;
}

.footer-section .social-links {
    display: flex;
    gap: 1rem;
}

.footer-section .social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-section .social-links a:hover {
    background: var(--primary-color);
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section .social-links {
        justify-content: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

/* Show All Button */
.show-all-btn {
    margin: 2rem auto;
    padding: 0.8rem 2.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    font-weight: 500;
}

.show-all-btn:hover {
    background: var(--secondary-color);
}

/* Hidden Items */
.work-item.hidden {
    display: none;
}

/* Blog Preview Section */
.blog-preview {
    padding: 6rem 0;
    background: var(--section-bg);
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.blog-preview-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.blog-preview-card:hover {
    transform: translateY(-5px);
}

.blog-preview-card.featured {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

.blog-preview-image {
    position: relative;
    aspect-ratio: 16/9;
}

.blog-preview-card.featured .blog-preview-image {
    aspect-ratio: auto;
    height: 100%;
}

.blog-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.blog-preview-content {
    padding: 1.5rem;
}

.blog-preview-card.featured .blog-preview-content {
    padding: 2rem;
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.post-meta i {
    margin-right: 0.5rem;
}

.blog-preview-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.blog-preview-card.featured .blog-preview-content h3 {
    font-size: 1.8rem;
}

.blog-preview-content p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.read-more:hover {
    gap: 0.8rem;
}

/* Media Queries for Blog Preview */
@media (max-width: 992px) {
    .blog-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-preview-card.featured {
        grid-column: span 2;
        grid-template-columns: 1fr;
    }

    .blog-preview-card.featured .blog-preview-image {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 768px) {
    .blog-preview-grid {
        grid-template-columns: 1fr;
    }

    .blog-preview-card.featured {
        grid-column: span 1;
    }

    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Responsive grid adjustments */
.works-grid, .team-grid, .blog-preview-grid {
    display: grid;
    gap: 20px;
    width: 100%;
}

/* Responsive navigation */
@media screen and (max-width: 768px) {
    .nav-menu {
        width: 100%;
        flex-direction: column;
    }
    
    .works-filter {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .filter-btn {
        margin: 5px;
        font-size: 14px;
    }

    .works-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        flex-direction: column;
    }

    .contact-info, .contact-form {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Prevent horizontal scrolling */
body {
    overflow-x: hidden;
    width: 100%;
}

/* Make work cards responsive */
.work-card {
    width: 100%;
    margin: 0;
}

/* Responsive about section */
.about-content {
    flex-direction: column;
}

.about-text, .about-features {
    width: 100%;
}

/* Make images responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Responsive buttons */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

/* Responsive hero section */
.hero-content {
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Responsive about section */
.about-content {
    flex-direction: column;
}

.about-text, .about-features {
    width: 100%;
} 



/* --- Directors Desk: Simple, Wide, Interactive --- */
.directors-desk-section {
  background: #ffffff;
  padding: 5rem 0 4rem;
  display: flex;
  justify-content: center;
}

.desk-card {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(37,99,235,0.07);
  padding: 2.5rem 3.5rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
  border-left: 8px solid #2563eb;
}
.desk-card:hover {
  box-shadow: 0 16px 56px rgba(37,99,235,0.13), 0 2px 12px #2563eb22;
  transform: translateY(-4px) scale(1.01);
}

.desk-image {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.desk-image img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 4px solid #e0e7ff;
  object-fit: cover;
  box-shadow: 0 4px 24px #2563eb11;
  background: #fff;
  transition: box-shadow 0.3s, border 0.3s;
}
.desk-card:hover .desk-image img {
  border-color: #2563eb;
  box-shadow: 0 8px 32px #2563eb22;
}

.desk-content {
  flex: 1;
  min-width: 0;
}

.desk-content h2 {
  color: #2563eb;
  font-size: 2rem;
  margin-bottom: 1.1rem;
  font-weight: 800;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.rem;
}
.desk-content h2::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #60a5fa;
  font-size: 1.4rem;
  margin-right: 0.7rem;
  opacity: 0.7;
  vertical-align: middle;
}

.desk-content p {
    text-align: justify;
  color: #334155;
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
  line-height: 1.7;
  transition: color 0.2s;
}
.desk-card:hover .desk-content p {
  color: #1e293b;
}

.desk-signature {
  color: #2563eb;
  font-weight: 700;
  font-size: 1.08rem;
  font-style: italic;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-top: 0.5rem;
  background: #f8fafc;
  border-radius: 1.5rem;
  padding: 0.5rem 1.5rem;
  box-shadow: 0 2px 12px #2563eb11;
  transition: background 0.3s, color 0.2s, box-shadow 0.3s;
}
.desk-card:hover .desk-signature {
  background: #e0e7ff;
  color: #1e40af;
  box-shadow: 0 4px 24px #2563eb22;
}

@media (max-width: 1100px) {
  .desk-card {
    padding: 2rem 1.2rem;
    max-width: 98vw;
  }
}
@media (max-width: 700px) {
  .desk-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 0.7rem 1.2rem 0.7rem;
    border-left: none;
    border-top: 8px solid #2563eb;
    gap: 1.2rem;
  }
  .desk-image img { width: 90px; height: 90px; }
  .desk-content h2 { font-size: 1.3rem;  padding: 0rem 1.5rem 0rem 1.5rem; }
  .desk-content p {padding: 0rem 1.5rem 0rem 1.5rem; }

  .desk-signature { font-size: 0.95rem; padding: 0.4rem 1rem;}
}

/* --- Why Choose Us: Playful Cards --- */
.why-choose-section {
  background: #fff;
  padding: 4rem 0 3rem;
}
.why-choose-section h2 {
  text-align: center;
  color: #2563eb;
  font-size: 2rem;
  margin-bottom: 2.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Responsive: 2 columns on tablets, 1 on mobile */
@media (max-width: 1024px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}

.choose-item {
  background: #f1f5f9;
  border-radius: 1.2rem;
  padding: 2rem 1.2rem 1.7rem 1.2rem;
  text-align: center;
  box-shadow: 0 2px 12px #2563eb0a;
  border: 2px solid transparent;
  transition: transform 0.18s, box-shadow 0.18s, border 0.18s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.choose-item:hover, .choose-item:focus {
  transform: translateY(-7px) scale(1.03);
  box-shadow: 0 8px 32px #2563eb22;
  border: 2px solid #2563eb44;
  background: #e0e7ff;
}
.choose-item i {
  font-size: 2.2rem;
  color: #2563eb;
  margin-bottom: 0.7rem;
  background: #e0e7ff;
  border-radius: 50%;
  padding: 0.7rem;
  box-shadow: 0 2px 8px #2563eb11;
  transition: background 0.2s, color 0.2s;
}
.choose-item:hover i {
  background: #2563eb;
  color: #fff;
}
.choose-item h3 {
  color: #1e293b;
  font-size: 1.13rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.choose-item p {
  color: #64748b;
  font-size: 0.98rem;
}

/* --- Testimonials: Card Carousel with Slide Animation --- */
.testimonials-section {
  background: #ffffff;
  padding: 4rem 0 3rem;
}
.testimonials-section h2 {
  text-align: center;
  color: #2563eb;
  font-size: 2rem;
  margin-bottom: 2.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.testimonials-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.testimonial-content {
  flex: 1;
  min-width: 0;
  position: relative;
  overflow: hidden;
  height: 170px;
  display: flex;
  align-items: center;
}
.testimonial {
  min-width: 100%;
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: all 0.5s cubic-bezier(.77,0,.18,1);
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.7rem 1.2rem;
  box-shadow: 0 2px 12px #0051ff11;
  text-align: center;
  position: absolute;
  left: 0; top: 0;
  z-index: 1;
  pointer-events: none;
}
.testimonial.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  position: relative;
  pointer-events: auto;
}
.testimonial-arrow {
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px #2563eb22;
}
.testimonial-arrow:hover {
  background: #1e40af;
  transform: scale(1.12);
}
.testimonial-author {
  display: block;
  margin-top: 1rem;
  color: #2563eb;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
}
.testimonial-dots {
  text-align: center;
  margin-top: 1.2rem;
}
.testimonial-dots .dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin: 0 5px;
  background: #c7d2fe;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: 2px solid transparent;
}
.testimonial-dots .dot.active {
  background: #2563eb;
  border-color: #1e40af;
  transform: scale(1.18);
}

/* Responsive */
@media (max-width: 700px) {
  .desk-card { flex-direction: column; text-align: center; padding: 1.5rem 0.7rem 1.2rem 0.7rem; }
  .desk-card::before { width: 100%; height: 8px; left: 0; top: 0; border-radius: 1.5rem 1.5rem 0 0; }
  .desk-image img { margin-bottom: 1rem; }
  .why-choose-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-content { height: 210px; }
}
@media (max-width: 480px) {
  .why-choose-grid { grid-template-columns: 1fr; }
  .choose-item { padding: 1.1rem 0.5rem; }
  .desk-card { padding: 1.1rem 0.3rem 1rem 0.3rem; }
  .testimonial-content { height: 250px; }
}