* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1e3a8a;
    --secondary-blue: #3b82f6;
    --cyan: #06b6d4;
    --dark-text: #0f172a;
    --gray-text: #64748b;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth; /* Disable default smooth scroll */ 
   
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}



body {
    font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}



/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    box-shadow: var(--shadow);
}

.top-bar {
    background: var(--primary-blue);
    color: var(--white);
    padding: 12px 0;
    font-size: 0.9rem;
    display: none; /* Hidden by default */
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 30px;
}

.top-bar-left a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-right {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 32px;
    height: 32px;
    background: var(--white);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--cyan);
    color: var(--white);
    transform: translateY(-3px);
}

.navbar {
    padding: 15px 0;
    background: var(--white);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: auto;           /* Changed from fixed 50px */
    height: 85px;          /* Control size with height only */
    max-height: 100px;      /* Maximum height limit */
    object-fit: contain;   /* Keeps aspect ratio */
}

.logo span {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-blue);
}


@media (max-width: 640px) {
    .logo img {
        height: 45px;  /* Smaller on mobile */
    }
    
    .logo span {
        font-size: 1rem;
    }
}

@media (max-width: 780px) {
    .logo img {
        height: 78px;  /* Smaller on mobile */
    }
    
    .logo span {
        font-size: 1rem;
    }
}

/* Adjust navbar padding if needed */
.navbar {
    padding: 10px 0;       /* Reduced from 15px to accommodate larger logo */
    background: var(--white);
}


.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--secondary-blue);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--secondary-blue);
}

.get-quote-btn {
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--primary-blue), var(--cyan));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.get-quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding-left: 2rem;
    margin-right: 60px;  /* Add space from right edge */
       
}

.menu-toggle span {
    width: 30px;
    height: 5px;
    background: var(--dark-text);
    transition: all 0.3s;
}



/* =========================
   HERO (TEXT ON IMAGE)
========================= */

.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
}


/* Background */
.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-background img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    
}


/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 40, 70, 0.6);
}

/* Content ON TOP */
.hero-content {
    position: absolute;
    inset: 0;
    z-index: 3;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: #fff;
    padding: 20px;
    max-width: 900px;
    margin: auto;
    transform: translateY(150px);
}

/* Badge */
.hero-badge {
    background: rgba(255,255,255,0.15);
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* Title */
.hero-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
    width: 100%;
}

.hero-title .highlight {
    color: #ffd54f;
}

/* Description */
.hero-description {
    font-size: 1.5rem;
    max-width: 650px;
    line-height: 1.2;
    margin-bottom: 30px;
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    background: #0d6efd;
    padding: 14px 30px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.btn-outline {
    border: 2px solid #fff;
    padding: 12px 30px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}




/* Mobile */
@media (max-width: 768px) {

    /* Ensure hero has enough space */
    .hero-section {
        min-height: 60vh;
        height: 50px;
    }

    /* Move content down slightly */
    .hero-content {
        transform: none;
        justify-content: flex-start;
        padding-top: 250px;
        padding-bottom: 40px;
    }

    /* Buttons container */
    .hero-buttons {
        gap: 5px;
    }

    /* Primary button */
    .hero-buttons .btn-primary {
        padding: 10px 18px;
        font-size: 1rem;
        border-radius: 30px;
        height: 2rem;
    }

    /* Outline / emergency button */
    .hero-buttons .btn-outline {
        padding: 12px 20px;
        font-size: 1rem;
        border-radius: 30px;
        height: 2rem;
    }

    
    .hero-background img {
        object-fit: cover;
         object-position: center -30%;  /* Shows lower 70% of image */
    }

    .hero-description-full {
        display: none;
    }


.hero-title {
    font-size: 1rem;
    line-height: 0.90;
}
.hero-content {
    font-size: 1rem;
    line-height: 0.05;
}

.hero-description {
    font-size: 0.90rem;
    line-height: 1.2;
}
.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

/* Show full description on desktop, hide short */
.hero-description-short {
    display: none;
}

.hero-description-full {
    display: block;
}

/* Hide full description on mobile, show short */
@media (max-width: 768px) {
    .hero-description-full {
        display: none;
    }
    
    .hero-description-short {
        display: block;
        font-size: 1.1rem;
        margin-bottom: 25px;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 640px) {
    .hero-description-short {
        font-size: 1rem;
        margin-bottom: 20px;
    }
}




/* =========================
   HERO FADE-UP ANIMATION
========================= */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.8s ease-out forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger delays for hero elements */
.hero-badge.fade-up {
    animation-delay: 0.2s;
}

.hero-title.fade-up {
    animation-delay: 0.4s;
}

.hero-description.fade-up {
    animation-delay: 0.6s;
}

.hero-stats.fade-up {
    animation-delay: 0.8s;
}

.hero-buttons.fade-up {
    animation-delay: 1s;
}

/* Optional: Smooth entrance for hero background */
.hero-background {
    animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .fade-up,
    .hero-background {
        animation: none;
        opacity: 1;
        transform: none;
    }
}


/* =========================
   HERO SCROLL ANIMATIONS
========================= */

/* Stagger delays for hero elements specifically */
.hero-content .scroll-animate:nth-child(1) { transition-delay: 0.1s; }
.hero-content .scroll-animate:nth-child(2) { transition-delay: 0.3s; }
.hero-content .scroll-animate:nth-child(3) { transition-delay: 0.5s; }
.hero-content .scroll-animate:nth-child(4) { transition-delay: 0.7s; }
.hero-content .scroll-animate:nth-child(5) { transition-delay: 0.9s; }



/* =========================
   SERVICES SECTION
========================= */

.services-section {
    padding: 80px 20px;
    background: var(--white);
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Slider Container */
.services-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Services Grid - Auto Scroll */
.services-grid {
    display: flex;
    gap: 30px;
    animation: scroll-services 60s linear infinite;
    width: max-content;
}

.services-grid:hover {
    animation-play-state: paused;
}

@keyframes scroll-services {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Service Card */
.service-card {
    min-width: 320px;
    max-width: 320px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.15);
    border-color: var(--secondary-blue);
    background: var(--white);
}

/* Service Icon */
.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--cyan));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    transition: all 0.4s;
    box-shadow: 0 5px 20px rgba(30, 58, 138, 0.2);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.4);
}

/* Service Title */
.service-card h3 {
    font-size: 1.4rem;
    color: var(--dark-text);
    margin-bottom: 15px;
    font-weight: 700;
}

/* Service Description */
.service-card p {
    color: var(--gray-text);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* =========================
   RESPONSIVE - TABLET
========================= */
@media (max-width: 968px) {
    .services-section {
        padding: 60px 20px;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .service-card {
        min-width: 280px;
        max-width: 280px;
        padding: 35px 25px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }
}

/* =========================
   RESPONSIVE - MOBILE
========================= */
@media (max-width: 640px) {
    .services-section {
        padding: 60px 10px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .services-grid {
        gap: 20px;
        animation: scroll-services 60s linear infinite;
    }

    .service-card {
        min-width: 260px;
        max-width: 260px;
        padding: 30px 20px;
    }

    .service-icon {
        width: 65px;
        height: 65px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .service-card p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
}

/* =========================
   EXTRA SMALL DEVICES
========================= */
@media (max-width: 375px) {
    .service-card {
        min-width: 240px;
        max-width: 240px;
        padding: 25px 18px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .service-card h3 {
        font-size: 1rem;
    }

    .service-card p {
        font-size: 0.8rem;
    }
}

/* =========================
   ACCESSIBILITY
========================= */

/* Pause animation on focus for accessibility */
.service-card:focus-within {
    animation-play-state: paused;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .services-grid {
        animation: none;
    }
    
    .service-card {
        transition: none;
    }
    
    .service-icon {
        transition: none;
    }
}


/* =========================
   ABOUT SECTION
========================= */

.about-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray-text);
    line-height: 1.8;
    font-size: 1rem;
}

.about-features {
    margin-top: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.feature-item i {
    color: var(--cyan);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-item span {
    color: var(--dark-text);
    font-weight: 500;
}

/* Video Container */
.about-video {
    position: relative;
    width: 140%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-video video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: cover;
}

/* Optional: Video overlay/play button styling */
.about-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(6, 182, 212, 0.1));
    pointer-events: none;
    border-radius: 20px;
}



/* =========================
   ABOUT SECTION - TABLET
========================= */
@media (max-width: 968px) {
    .about-section {
        padding: 70px 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h2 {
        font-size: 2.5rem;
        text-align: center;
    }

    .about-text p {
        text-align: center;
    }

    .about-features {
        margin-top: 30px;
    }
    
    /* Video mobile optimization */
    .about-video {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
       
    }
}

/* =========================
   ABOUT SECTION - TABLET (768px)
========================= */
@media (max-width: 768px) {
    .about-section {
         padding: 60px 10px 60px 5px; /* left reduced */
    }

    .about-content {
        gap: 35px;
    }

    .about-text h2 {
        font-size: 2.2rem;
        text-align: center;
    }

    .about-text p {
        font-size: 0.98rem;
        text-align: left;
    }

    .about-features {
        margin-top: 30px;
    }

    .feature-item {
        gap: 13px;
    }

    .feature-item i {
        font-size: 1.4rem;
    }
    
    .about-video {
        border-radius: 15px;
    }
    
    .about-video video {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 300px;  /* Limit height on mobile */
        object-fit: cover;
        border-radius: 12px;
        align-content: center;
        margin-right: auto;      /* pushes it left */
        margin-left: -20px;
    
    }
}

/* =========================
   ABOUT SECTION - MOBILE
========================= */
@media (max-width: 640px) {
    .about-section {
        padding: 60px 10px 60px 5px; /* left reduced */
    }

    .about-content {
        gap: 30px;
    }

    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .about-text p {
        font-size: 0.95rem;
        margin-bottom: 15px;
        line-height: 1.7;
    }

    .about-features {
        margin-top: 25px;
    }

    .feature-item {
        gap: 12px;
        margin-bottom: 15px;
    }

    .feature-item i {
        font-size: 1.3rem;
    }

    .feature-item span {
        font-size: 0.95rem;
    }

    /* Mobile video optimization - CRITICAL */
    .about-video {
        width: 100%;
        max-width: 100%;
        border-radius: 12px;
        margin: 0;
        padding: 0;
    }
    
    .about-video video {
        width: 100%;
        max-width: 100%;
        height: 300px;
        border-radius: 12px;
        display: block;
    }
}

/* =========================
   EXTRA SMALL MOBILE
========================= */
@media (max-width: 480px) {
    .about-section {
        padding: 50px 10px;
    }
    
    .about-content {
        gap: 25px;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-text p {
        font-size: 0.9rem;
    }
    
    .about-video {
        border-radius: 10px;
    }
    
    .about-video video {
        border-radius: 10px;
    }
}


/* Reviews Section */
.reviews-section {
    padding: 80px 20px;
    background: var(--white);
    overflow: hidden;
}

.reviews-slider {
    overflow: hidden;
    position: relative;
    margin: 40px 0;
}

.reviews-track {
    display: flex;
    gap: 30px;
    animation: scroll 5s linear infinite;
}

.reviews-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.review-card {
    min-width: 350px;
    background: var(--light-bg);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 2px solid #e2e8f0;
}

.review-rating {
    margin-bottom: 20px;
}

.review-rating i {
    color: #d1d5db;
    font-size: 1.2rem;
}

.review-rating i.active {
    color: #fbbf24;
}

.review-text {
    color: var(--gray-text);
    margin-bottom: 25px;
    line-height: 1.7;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.review-author strong {
    color: var(--dark-text);
    font-weight: 600;
}

.review-author span {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.add-review-btn-container {
    text-align: center;
    margin-top: 40px;
}

.add-review-btn {
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--cyan));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.05rem;
}

.add-review-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
}




/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid #e2e8f0;
}

.info-card i {
    font-size: 2.5rem;
    color: var(--secondary-blue);
    margin-bottom: 20px;
}

.info-card h3 {
    color: var(--dark-text);
    margin-bottom: 12px;
    font-weight: 600;
}

.info-card p {
    color: var(--gray-text);
}

.contact-form {
    background: var(--white);
    padding: 45px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    transition: border-color 0.3s;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-blue);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-blue), var(--cyan));
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.05rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

/* Footer */
.footer {
    background: var(--dark-text);
    color: var(--white);
    padding: 60px 20px 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 35px;
}

.footer-logo {
    width: 300px;
    height: 85px;
    max-height: 100px;
    margin-bottom: 20px;
}

.footer-col h4 {
    margin-bottom: 25px;
    color: var(--cyan);
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--cyan);
}

.footer-col p {
    margin-bottom: 12px;
    color: #94a3b8;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    font-size: 1.5rem;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--cyan);
    transform: translateY(-5px);
}

/* =========================
   REVIEW MODAL
========================= */

.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--white);
    margin: 5% auto;
    padding: 45px;
    border-radius: 20px;
    width: 90%;
    max-width: 550px;
    position: relative;
    animation: slideDown 0.3s ease-out;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray-text);
    transition: all 0.3s;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close:hover {
    color: var(--white);
    background: #dc2626;
    transform: rotate(90deg);
}

.modal-content h2 {
    color: var(--dark-text);
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 1.8rem;
    text-align: center;
}

/* Form Inputs */
#reviewForm input[type="text"],
#reviewForm input[type="email"],
#reviewForm textarea {
    width: 100%;
    padding: 15px 18px;
    margin-bottom: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    background: var(--white);
    color: var(--dark-text);
}

#reviewForm input[type="text"]:focus,
#reviewForm input[type="email"]:focus,
#reviewForm textarea:focus {
    outline: none;
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

#reviewForm input::placeholder,
#reviewForm textarea::placeholder {
    color: #94a3b8;
}

#reviewForm textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* Rating Input */
.rating-input {
    margin-bottom: 25px;
}

.rating-input label {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dark-text);
    font-size: 1.05rem;
}

.stars {
    display: flex;
    gap: 12px;
    font-size: 2rem;
    justify-content: center;
}

.stars i {
    cursor: pointer;
    color: #d1d5db;
    transition: all 0.2s;
}

.stars i:hover,
.stars i.active {
    color: #fbbf24;
    transform: scale(1.2);
}

/* Submit Button */
#reviewForm .submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-blue), var(--cyan));
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.05rem;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
}

#reviewForm .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

#reviewForm .submit-btn:active {
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .modal-content {
        padding: 35px 25px;
        margin: 10% auto;
        width: 95%;
    }

    .modal-content h2 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    #reviewForm input[type="text"],
    #reviewForm input[type="email"],
    #reviewForm textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    #reviewForm textarea {
        min-height: 100px;
    }

    .rating-input label {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .stars {
        font-size: 1.8rem;
        gap: 10px;
    }

    #reviewForm .submit-btn {
        padding: 14px;
        font-size: 1rem;
    }

    .close {
        right: 15px;
        top: 15px;
        font-size: 1.8rem;
        width: 30px;
        height: 30px;
    }
}

/* Extra small mobile */
@media (max-width: 375px) {
    .modal-content {
        padding: 25px 20px;
    }

    .stars {
        font-size: 1.5rem;
        gap: 8px;
    }
}



/* Responsive Design */
@media (max-width: 968px) {
    .top-bar .container {
        flex-direction: column;
        gap: 15px;
    }

    .top-bar-left {
        flex-direction: column;
        gap: 10px;
    }

    .get-quote-btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 20px;
        box-shadow: var(--shadow);
        transition: left 0.3s;
        align-items: flex-start;
    }

    .nav-links.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

   

    .hero-image {
        width: 380px;
        height: 380px;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        margin-bottom: -8px;
    }

    .review-card {
        min-width: 300px;
    }
}

@media (max-width: 640px) {
    .hero-section {
        margin-top: 120px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .decorative-circle {
        width: 320px;
        height: 320px;
        border-width: 20px;
    }

    .hero-image {
        width: 300px;
        height: 300px;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .review-card {
        min-width: 280px;
        padding: 25px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 45px;
    }

    .back-to-top {
        bottom: 80px;
        right: 45px;
    }
}

/* Location Section */
.location-section {
    padding: 80px 0 0 0;
    background: var(--white);
}

.location-section .container {
    padding: 0 20px 60px 20px;
}

.map-container {
    width: 100%;
    margin: 0;
    padding: 0 20px;
    box-sizing: border-box;
}

.map-container iframe {
    display: block;
    width: 100%;
    min-height: 600px;
    border-radius: 0;
    border: none;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive for Location */
@media (max-width: 968px) {
    .map-container {
        padding: 0 10px;
    }

    .map-container iframe {
        min-height: 350px;
    }
}

@media (max-width: 640px) {
    .map-container {
        padding: 0 5px;
    }

    .map-container iframe {
        min-height: 300px;
    }
}





/* ==============================
   SCROLL REVEAL BASE STYLES
================================ */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Optional Variants */
.reveal-left {
    transform: translateX(-60px);
}

.reveal-right {
    transform: translateX(60px);
}

.reveal-zoom {
    transform: scale(0.9);
}

.reveal-left.active,
.reveal-right.active,
.reveal-zoom.active {
    transform: translateX(0) scale(1);
}


/* Scroll Animation Effects */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Fade In from Left */
.fade-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Fade In from Right */
.fade-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Scale Up */
.scale-up {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-up.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delay for multiple items */
.scroll-animate:nth-child(1) { transition-delay: 0.1s; }
.scroll-animate:nth-child(2) { transition-delay: 0.2s; }
.scroll-animate:nth-child(3) { transition-delay: 0.3s; }
.scroll-animate:nth-child(4) { transition-delay: 0.4s; }
.scroll-animate:nth-child(5) { transition-delay: 0.5s; }
.scroll-animate:nth-child(6) { transition-delay: 0.6s; } 


/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 5px;
    margin-right: 20px;
}

.lang-btn {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lang-btn.active {
    background: var(--white);
    color: var(--primary-blue);
}

@media (max-width: 640px) {
    .language-switcher {
        margin-right: 10px;
        gap: 3px;
    }
    
    .lang-btn {
        padding: 4px 8px;
        font-size: 0.75rem;
    }
}

/* =========================
   GALLERY SECTION - HOMEPAGE (index.php)
========================= */

.gallery-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

/* Make gallery container WIDER on homepage */
.gallery-section .container {
    max-width: 1700px;  /* Wider container for 5 columns */
}

/* Gallery Grid - Homepage (5 columns, 10 images) */
#galleryGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.3s;
}

.gallery-item.hidden {
    display: none;
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 320px;  /* Bigger height */
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(30, 58, 138, 0.95), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    color: var(--white);
    width: 100%;
}

.gallery-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--white);
}

.gallery-info p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.view-btn {
    padding: 10px 20px;
    background: var(--white);
    color: var(--primary-blue);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.view-btn:hover {
    background: var(--cyan);
    color: var(--white);
    transform: translateY(-2px);
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: var(--white);
    color: var(--dark-text);
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    border-color: var(--secondary-blue);
    color: var(--secondary-blue);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-blue), var(--cyan));
    color: var(--white);
    border-color: transparent;
}

/* Learn More Button */
.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--primary-blue), var(--cyan));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
}

.learn-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
}

.learn-more-btn i {
    transition: transform 0.3s;
}

.learn-more-btn:hover i {
    transform: translateX(5px);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 2001;
    transition: all 0.3s;
}

.lightbox-close:hover {
    color: var(--cyan);
    transform: rotate(90deg);
}

.lightbox-content {
    position: relative;
    max-width: 1200px;
    margin: 5% auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 80px;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    text-align: center;
    color: var(--white);
    margin-top: 30px;
    max-width: 800px;
}

.lightbox-caption h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--white);
}

.lightbox-caption p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: var(--cyan);
    border-color: var(--cyan);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* =========================
   RESPONSIVE - LARGE TABLET
========================= */
@media (max-width: 1200px) {
    #galleryGrid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
    
    .gallery-image {
        height: 280px;
    }
}

/* =========================
   RESPONSIVE - TABLET
========================= */
@media (max-width: 968px) {
    #galleryGrid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .gallery-image {
        height: 250px;
    }
}

/* =========================
   RESPONSIVE - MOBILE
========================= */
@media (max-width: 640px) {
    #galleryGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .gallery-image {
        height: 200px;
    }

    .lightbox-content {
        padding: 0 20px;
    }

    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 2.5rem;
    }
    
    .learn-more-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}

/* =========================
   EXTRA SMALL MOBILE
========================= */
@media (max-width: 480px) {
    #galleryGrid {
        grid-template-columns: 1fr;
    }
    
    .gallery-image {
        height: 250px;
    }
}


/* =========================
   GALLERY SHOW MORE (MOBILE)
========================= */

.gallery-show-more {
    display: none; /* Hidden on desktop */
    text-align: center;
    margin-top: 30px;
}

.show-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background: linear-gradient(135deg, var(--primary-blue), var(--cyan));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
}

.show-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.show-more-btn:active {
    transform: translateY(0);
}

.show-more-btn i {
    transition: transform 0.3s;
}

.show-more-btn:hover i {
    transform: scale(1.15);
}

/* Mobile Gallery Show More */
@media (max-width: 640px) {
    /* Hide images beyond 3rd on mobile */
    .gallery-item.hidden-mobile {
        display: none;
    }
    
    /* Show hidden images when expanded */
    .gallery-item.hidden-mobile.show {
        display: block;
        animation: fadeInUp 0.4s ease forwards;
    }
    
    /* Show the "Show More" button on mobile */
    .gallery-show-more {
        display: block;
    }
    
    /* Hide button after clicking */
    .gallery-show-more.hidden {
        display: none;
    }
}

/* Fade in animation for revealed images */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* Staff/Doctors Section */
.staff-section {
    padding: 80px 20px;
    background: var(--white);
}

.staff-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.staff-filter-btn {
    padding: 12px 30px;
    background: var(--white);
    color: var(--dark-text);
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.staff-filter-btn:hover {
    border-color: var(--secondary-blue);
    color: var(--secondary-blue);
    transform: translateY(-2px);
}

.staff-filter-btn.active {
    background: linear-gradient(135deg, var(--primary-blue), var(--cyan));
    color: var(--white);
    border-color: transparent;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.staff-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 2px solid #e2e8f0;
}

.staff-card.hidden {
    display: none;
}

.staff-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-blue);
}

.staff-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.staff-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.staff-card:hover .staff-image img {
    transform: scale(1.1);
}

.staff-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(30, 58, 138, 0.9), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
}

.staff-card:hover .staff-overlay {
    opacity: 1;
}

.staff-view-btn {
    padding: 12px 25px;
    background: var(--white);
    color: var(--primary-blue);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.staff-view-btn:hover {
    background: var(--cyan);
    color: var(--white);
    transform: translateY(-3px);
}

.staff-info {
    padding: 25px;
    text-align: center;
}

.staff-info h3 {
    font-size: 1.4rem;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.staff-position {
    color: var(--secondary-blue);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
}

.staff-specialization {
    color: var(--gray-text);
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.staff-specialization i {
    color: var(--cyan);
}

.staff-contact {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.staff-contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--cyan));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.staff-contact-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

/* Staff Modal */
.staff-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.staff-modal-content {
    background: var(--white);
    margin: 3% auto;
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    position: relative;
    animation: slideDown 0.3s ease-out;
}

.staff-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 2.5rem;
    cursor: pointer;
    color: var(--gray-text);
    z-index: 10;
}

.staff-close:hover {
    color: var(--primary-blue);
}

.staff-modal-body {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    padding: 40px;
}

.staff-modal-image {
    width: 100%;
}

.staff-modal-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.staff-modal-info h2 {
    font-size: 2rem;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.modal-position {
    color: var(--secondary-blue);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.modal-specialization {
    color: var(--gray-text);
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.modal-details {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.detail-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--secondary-blue);
    margin-top: 5px;
}

.detail-item strong {
    color: var(--dark-text);
    display: block;
    margin-bottom: 5px;
}

.detail-item p {
    color: var(--gray-text);
    line-height: 1.6;
}

.modal-bio {
    margin-bottom: 25px;
}

.modal-bio h4 {
    font-size: 1.3rem;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.modal-bio p {
    color: var(--gray-text);
    line-height: 1.8;
}

.modal-contact {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.modal-contact-btn {
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--primary-blue), var(--cyan));
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.modal-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

/* Responsive Staff */
@media (max-width: 968px) {
    .staff-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .staff-modal-body {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
}

@media (max-width: 640px) {
    .staff-grid {
        grid-template-columns: 1fr;
    }

    .staff-filters {
        gap: 10px;
    }

    .staff-filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .staff-image {
        height: 300px;
    }

    .staff-modal-body {
        padding: 20px;
    }

    .modal-contact {
        flex-direction: column;
    }

    .modal-contact-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Page Header */
.page-header {
    margin-top: 140px;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--cyan));
    position: relative;
    text-align: center;
    color: var(--white);
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 640px) {
    .page-header {
        margin-top: 120px;
        padding: 60px 20px;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }
}