/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 30px;
}

.highlight {
    color: #3b82f6;
    font-weight: 700;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}

.btn i {
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: white;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-secondary:hover {
    background: #f0f9ff;
    transform: translateY(-2px);
}
/* ===========================
   MOBILE POPUP FORM FIX
   =========================== */

@media (max-width: 768px) {

  .popup-overlay {
    align-items: flex-start;
    overflow-y: auto;
    padding: 20px 0;
  }

  .popup-container {
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 5px;
    margin: 0 auto;
  }

  .popup-content {
    max-height: none;
    overflow: visible;
  }

  .form-row,
  .form-row-3 {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .form-group input,
  .form-group select {
    font-size: 14px;
    padding: 10px;
  }

  .btn {
    width: 100%;
    margin-top: 15px;
    position: relative;
    bottom: 0;
  }
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* ===== NAVBAR FIXED ===== */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    height: 80px;
    overflow: hidden;
    max-width: 100vw;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    min-height: 80px;
    position: relative;
    z-index: 1000;
    height: 80px;
}

/* ===== LOGO FIXED SIZE ===== */
.logo {
    display: flex;
    align-items: center;
    height: 80px;
    overflow: hidden;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 100%;
}

.logo-icon {
    width: 250px !important;
    height: 250px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    flex-shrink: 0;
    margin: 0;
    transform: scale(0.85);
    position: relative;
    top: 5px;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: #3b82f6;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #3b82f6;
    border-radius: 2px;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: #475569;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.mobile-menu {
    /* display: none;
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
    border-top: 1px solid #e2e8f0; */
    display: none;
    flex-direction: column;
    background: #0f172a;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 999;
}
.mobile-menu .btn {
    margin-top: 15px;
}
@media (max-width: 768px) {

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }
}

/* Slide animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu .nav-link {
    color: #fff;
    padding: 12px 0;
    font-size: 18px;
    border-bottom: 1px solid #334155;
}


.mobile-menu.active {
    display: flex;
}

/* ===== HERO SECTION FIXED ===== */
.hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,0 L100,0 L100,100 Q50,80 0,100 Z" fill="%233b82f6" opacity="0.05"/></svg>') no-repeat;
    background-size: cover;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.main-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    font-weight: 500;
    color: #475569;
    border: 1px solid #e2e8f0;
    font-size: 0.9rem;
}

.badge i {
    color: #3b82f6;
    font-size: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.5rem;
    color: #3b82f6;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 15px;
}

.service-card p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #475569;
    font-size: 0.9rem;
}

.service-features li i {
    color: #10b981;
    font-size: 0.9rem;
}

.service-link {
    background: none;
    border: none;
    color: #3b82f6;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    margin-top: auto;
    text-align: left;
}

.service-link:hover {
    color: #2563eb;
}

/* ===== WORK IN ACTION SECTION ===== */
.action-carousel {
    margin-top: 30px;
    position: relative;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    transition: transform 0.8s ease;
}

.action-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
}

@media (min-width: 768px) {
    .action-slide {
        flex-direction: row;
        align-items: stretch;
    }
}

.action-image {
    position: relative;
    flex: 1;
    min-height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .action-image {
        min-height: 400px;
    }
}

.action-content {
    flex: 1;
    padding: 30px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.action-content h3 {
    font-size: 1.6rem;
    color: #1e293b;
    margin-bottom: 15px;
}

.action-content p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1rem;
}

.action-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.action-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #1e40af;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: white;
    border-top: 1px solid #e2e8f0;
}

.carousel-prev,
.carousel-next {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.carousel-prev:hover,
.carousel-next:hover {
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #cbd5e1;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #3b82f6;
}

/* ===== PERFORMANCE METRICS SECTION ===== */
#performance {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 60px 0;
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.performance-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    transition: transform 0.3s ease;
}

.performance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.performance-icon {
    font-size: 2.5rem;
    height: 70px;
    width: 70px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.performance-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.performance-label {
    font-size: 1rem;
    color: #475569;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.performance-description {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 180px;
    margin: 0 auto;
}

/* ===== CREDENTIALS SECTION ===== */
.credentials-section {
    text-align: center;
    margin-top: 50px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.credentials-section h4 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.credentials-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 2px;
}

.credentials-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.credential-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #f8fafc;
    border-radius: 50px;
    font-weight: 500;
    color: #475569;
    font-size: 0.9rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    justify-content: center;
}

.credential-badge:hover {
    background: #f0f9ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    border-color: #3b82f6;
}

.credential-badge i {
    font-size: 1rem;
    transition: color 0.3s ease;
}

/* ===== SPECIALTIES SECTION ===== */
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.specialty-category {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.specialty-category h3 {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 15px;
}

.specialty-category ul {
    list-style: none;
    flex-grow: 1;
}

.specialty-category li {
    padding: 6px 0;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
}

.specialty-category li:last-child {
    border-bottom: none;
}

/* ===== FREE TRIAL POSTER SECTION ===== */
.trial {
    background: linear-gradient(rgba(59, 130, 246, 0.9), rgba(59, 130, 246, 0.9)), 
                url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    color: white;
    text-align: center;
}

.trial-poster {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.trial-poster::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shine 3s infinite linear;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.poster-content {
    position: relative;
    z-index: 1;
}

/* ===== TRIAL TEXT SIZE 25% CHOTA ===== */
.poster-title {
    font-size: 2.1rem; /* 25% reduced from 2.8rem */
    color: #1e293b;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    line-height: 1.3;
}

.poster-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.poster-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.feature {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.2);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    border-color: #3b82f6;
}

.feature i {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 15px;
}

.feature h4 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.feature p {
    color: #64748b;
    font-size: 0.95rem;
}

.poster-cta {
    text-align: center;
}

.poster-cta .btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.poster-cta .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
}

.risk-free {
    color: #64748b;
    margin-top: 20px;
    font-size: 1.1rem;
}

.risk-free i {
    color: #10b981;
    margin-right: 10px;
}

/* ===== PARTNERS AUTO-SCROLLING SLIDER ===== */
.partners-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* overflow: hidden;
    position: relative;
    padding: 40px 0;
    margin: 30px 0; */
}

.partners-slider-container::before,
.partners-slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-slider-container::before {
    left: 0;
    background: linear-gradient(90deg, rgba(248, 250, 252, 1) 0%, rgba(248, 250, 252, 0) 100%);
}

.partners-slider-container::after {
    right: 0;
    background: linear-gradient(90deg, rgba(248, 250, 252, 0) 0%, rgba(248, 250, 252, 1) 100%);
}

.partners-slider-track {
    display: flex;
    width: max-content;
    animation: scrollPartners 25s linear infinite;
}

/* @keyframes scrollPartners {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
} */

.partners-slider-track:hover {
    animation-play-state: paused;
}

.partner-slide-item {
    flex: 0 0 auto;
    margin: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
    transition: transform 0.3s ease;
}

.partner-slide-item:hover {
    transform: translateY(-10px);
}

.partner-logo-circle {
    width: 200px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    transition: all 0.3s ease;
    transform: scale(1.4);
}

/* ===== PARTNER PICTURES COLORED & HOVER FIX ===== */
.partner-logo-img {
    width: 100%;
    height: 100%;
    filter: grayscale(0%) !important; /* Always colored */
    opacity: 1 !important;
    transition: transform 0.3s ease;
    overflow: hidden;
}

/* Sirf scale effect, no color change */
.partner-slide-item:hover .partner-logo-img {
    filter: grayscale(0%) !important;
    opacity: 1 !important;
    transform: scale(1.2); /* Sirf size bada ho */
    overflow: hidden;
}

.partner-slide-item:hover .partner-logo-circle {
    transform: scale(1.05);
    border-color: #3b82f6;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
}

/* Remove all other hover effects */
.partner-slide-item:hover .partner-name {
    background: #f8fafc !important;
    color: #475569 !important;
    border-color: #e2e8f0 !important;
}

.partner-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #475569;
    margin-top: 15px;
    padding: 8px 20px;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partners-note {
    text-align: center;
    margin-top: 30px;
    color: #64748b;
    font-size: 1rem;
}

/* ===== CONTACT CTA SECTION ===== */
.contact-cta {
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.info-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.info-card i {
    margin-bottom: 15px;
}

.info-card h4 {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 8px;
}

.info-card p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.contact-email {
    color: #3b82f6 !important;
    font-weight: 500;
}

.contact-time {
    color: #f59e0b !important;
    font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
    background: #1e293b;
    color: white;
    padding: 50px 0 15px;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo-text h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
    line-height: 1;
}

.logo-subtitle {
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
    color: white;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #3b82f6;
}

.footer-col a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.85rem;
}

.footer-col a:hover {
    color: #3b82f6;
}

.footer-link {
    background: none;
    border: none;
    color: #cbd5e1;
    text-align: left;
    padding: 0;
    font-size: 0.85rem;
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.footer-link:hover {
    color: #3b82f6;
}

.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
    color: white;
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #3b82f6;
}

.contact-emails p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #cbd5e1;
    font-size: 0.85rem;
}

.contact-emails i {
    color: #3b82f6;
    font-size: 0.9rem;
}

.footer-newsletter {
    margin-top: 15px;
}

.footer-newsletter p {
    color: #94a3b8;
    margin-bottom: 10px;
    font-size: 0.8rem;
}



.newsletter-form input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #334155;
    background: #0f172a;
    border-radius: 6px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
}

.newsletter-form input::placeholder {
    color: #64748b;
}

.newsletter-form button {
    background: #3b82f6;
    color: white;
    border: none;
    width: 35px;
    border-radius: 6px;
    cursor: pointer;
}

.contact-info {
    margin-top: 15px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.contact-info i {
    color: #3b82f6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    margin-bottom: 15px;
}

.footer-copyright p {
    color: #94a3b8;
    font-size: 0.75rem;
    margin-bottom: 5px;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #3b82f6;
}

/* ===== FORM POPUP STYLES - NO SCROLLING ===== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.popup-container {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 450px;
    animation: popupFadeIn 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    max-height: 550px !important; /* Fixed height */
    overflow-y: hidden !important; /* No scrolling */
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    position: relative;
    z-index: 1;
    min-height: 60px;
}

.popup-header h3 {
    font-size: 1.2rem;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.popup-header h3 i {
    color: #3b82f6;
}

.popup-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.popup-close:hover {
    color: #1e293b;
    background: #f1f5f9;
}

.popup-content {
    height: 100%;
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
    padding-bottom: 20px;
    overflow: hidden !important;
}

.popup-subtitle {
    color: #64748b;
    margin-bottom: 15px;
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

/* ===== FORM NO SCROLLING ===== */
.universal-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: visible !important;
    max-height: none !important;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group input,
.form-group select {
    padding: 8px 10px !important;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    background: white;
    width: 100%;
    transition: border 0.3s ease;
    height: 38px !important;
    margin: 0;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%2364748b' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
    padding-right: 35px;
}

.form-error {
    color: #ef4444;
    font-size: 0.7rem;
    margin-top: 2px;
    min-height: 16px;
    font-family: 'Inter', sans-serif;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 5px 0;
    padding: 8px;
    background: #f8fafc;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.form-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #3b82f6;
    margin-top: 2px;
}

.form-checkbox label {
    font-size: 0.8rem;
    color: #475569;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}

.popup-content .btn-primary {
    width: 100%;
    padding: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 10px;
    font-family: 'Inter', sans-serif;
    height: 42px;
}

.popup-success {
    display: none;
    text-align: center;
    padding: 20px;
}

.success-icon {
    font-size: 2.5rem;
    color: #10b981;
    margin-bottom: 15px;
}

.popup-success h4 {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.popup-success p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
}

/* ===== CHATBOT STYLES ===== */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1001;
    font-family: 'Inter', sans-serif;
}

.chatbot-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.chatbot-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.chatbot-button i {
    font-size: 24px;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-window {
    position: absolute;
    bottom: 40px;
    right: 0;
    width: 380px;
    height: 500px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-window.active {
    display: flex;
}

.chat-header {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.chat-header-buttons {
    display: flex;
    gap: 8px;
}

.header-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.header-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.chat-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    background: #f8fafc;
}

.message {
    margin-bottom: 12px;
    display: flex;
}

.message.bot {
    justify-content: flex-start;
}

.message.user {
    justify-content: flex-end;
}

.message-content {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
}

.bot .message-content {
    background: white;
    color: #1e293b;
    border: 1px solid #e2e8f0;
    border-bottom-left-radius: 4px;
}

.user .message-content {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border-bottom-right-radius: 4px;
}

.message-time {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 4px;
    text-align: right;
}

.quick-actions {
    padding: 12px 16px;
    border-top: 1px solid #e2e8f0;
    background: white;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.quick-action-btn {
    padding: 6px 12px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    font-size: 12px;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s;
}

.quick-action-btn:hover {
    background: #e2e8f0;
}

.chat-input-area {
    padding: 16px;
    border-top: 1px solid #e2e8f0;
    background: white;
    display: flex;
    gap: 8px;
}

.chat-input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    font-size: 14px;
    outline: none;
    transition: border 0.3s;
}

.chat-input:focus {
    border-color: #3b82f6;
}

.send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.send-btn:hover {
    transform: scale(1.05);
}

.chat-form-container {
    padding: 20px;
    background: white;
    max-height: 400px;
    overflow-y: auto;
}

.chat-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-form input,
.chat-form select,
.chat-form textarea {
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.chat-form input:focus,
.chat-form select:focus,
.chat-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.form-buttons {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.typing-indicator {
    display: inline-flex;
    gap: 4px;
    padding: 10px 14px;
    background: white;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: #94a3b8;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-dot:nth-child(1) { animation-delay: 0s; }
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-6px); }
}

.chatbot-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
}

.chatbot-link-btn {
    background: #f0f9ff;
    border: 1px solid #e0f2fe;
    color: #0369a1;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s;
}

.chatbot-link-btn:hover {
    background: #e0f2fe;
    transform: translateY(-1px);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .performance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row-3 {
        grid-template-columns: 1fr 1fr;
    }
    
    .chat-window {
        width: 350px;
        height: 450px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .main-title {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partner-logo-circle {
        width: 140px;
        height: 140px;
        padding: 20px;
    }
    
    .form-row-3 {
        grid-template-columns: 1fr;
    }
    
    .popup-container {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        display: none;
    }
    
    .logo-icon {
        width: 120px !important;
        height: 120px !important;
        margin: 0;
        transform: scale(0.75);
        top: 0;
    }
    
    .navbar {
        height: 70px;
    }
    
    .nav-content {
        min-height: 70px;
        height: 70px;
    }
    
    .logo {
        height: 70px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .hero {
        padding: 100px 0 50px;
        margin-top: 70px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .poster-title {
        font-size: 1.5rem;
    }
    
    .poster-subtitle {
        font-size: 1.1rem;
    }
    
    .poster-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .carousel-controls {
        padding: 15px 20px;
    }
    
    .performance-value {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .partner-slide-item {
        min-width: 150px;
        margin: 0 20px;
    }
    
    .partner-logo-circle {
        width: 120px;
        height: 120px;
        padding: 15px;
    }
    
    .partner-name {
        font-size: 0.9rem;
    }
    
    .credentials-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .credential-badge {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .popup-container {
        max-width: 350px;
        max-height: 500px !important;
    }
    
    .popup-content {
        padding: 15px;
        max-height: 400px;
    }
    
    .chat-window {
        width: calc(100vw - 40px);
        height: 400px;
        right: 20px;
        left: 20px;
    }
    
    .chatbot-button {
        width: 50px;
        height: 50px;
    }
    
    .chatbot-button i {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .poster-title {
        font-size: 1.35rem;
    }
    
    .performance-value {
        font-size: 1.8rem;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .badge {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .carousel-controls {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
        padding: 8px;
    }
    
    .logo-icon {
        width: 100% !important;
        height: 100% !important;
        transform: scale(0.65);
    }
    
    .navbar {
        height: 65px;
    }
    
    .nav-content {
        height: 65px;
        min-height: 65px;
    }
    
    .logo {
        height: 65px;
    }
    
    .hero {
        padding: 90px 0 40px;
        margin-top: 65px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .specialties-grid {
        grid-template-columns: 1fr;
    }
    
    .performance-grid {
        grid-template-columns: 1fr;
    }
    
    .popup-container {
        margin: 10px;
        width: calc(100% - 20px);
        max-height: 450px !important;
    }
    
    .popup-content {
        padding: 15px;
        max-height: 350px;
    }
    
    .credentials-list {
        grid-template-columns: 1fr;
    }
    
    .credential-badge {
        width: 100%;
    }
    
    .footer {
        padding: 30px 0 15px;
    }
    
    .partner-slide-item {
        min-width: 120px;
        margin: 0 15px;
    }
    
    .partner-logo-circle {
        width: 100px;
        height: 100px;
        padding: 15px;
    }
    
    .chat-window {
        width: calc(100vw - 30px);
        height: 350px;
        right: 15px;
        left: 15px;
    }
    
    .chat-header {
        padding: 12px;
    }
    
    .chat-messages {
        padding: 12px;
    }
    
    .chat-input-area {
        padding: 12px;
    }
    
    .quick-actions {
        padding: 10px 12px;
    }
    
    .quick-action-btn {
        padding: 5px 10px;
        font-size: 11px;
    }
    
    .chatbot-button {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 30px;
        margin-top: 65px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .partner-logo-circle {
        width: 90px;
        height: 90px;
        padding: 12px;
    }
    
    .form-group input,
    .form-group select {
        padding: 7px 9px !important;
        font-size: 0.8rem;
        height: 36px !important;
    }
    
    .form-row-3 {
        gap: 8px;
    }
    
    .popup-header {
        padding: 12px 15px;
        min-height: 50px;
    }
    
    .popup-content {
        padding: 12px;
    }
    
    .footer {
        padding: 25px 0 15px;
    }
    
    .logo-icon {
        width: 90px !important;
        height: 90px !important;
        transform: scale(0.6);
    }
}

input:invalid, select:invalid {
    border-color: #fca5a5;
}

input:valid, select:valid {
    border-color: #86efac;
}

.popup-container {
    display: flex;
    flex-direction: column;
}

.popup-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.universal-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.popup-content .btn-primary {
    margin-top: auto;
}

.navbar .container {
    overflow: hidden;
}