:root {
     --primary: #1E3A8A;
    /* Navy Blue */
     --primary-dark: #0F2A6B;
     --primary-light: #3B82F6;
     --secondary: #2563EB;
    /* Bright Blue */
     --secondary-dark: #1D4ED8;
     --accent: #10B981;
    /* Emerald Green for accents */
     --dark: #111827;
     --light: #F8FAFC;
     --white: #FFFFFF;
     --gray: #6B7280;
     --light-gray: #F1F5F9;
     --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
     --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     --border-radius: 12px;
}
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
}
 html {
     scroll-behavior: smooth;
     overflow-x: hidden;
}
 body {
     color: var(--dark);
     line-height: 1.7;
     background-color: var(--white);
     overflow-x: hidden;
     font-weight: 300;
     width: 100%;
}
 .container {
     width: 100%;
     max-width: 1300px;
     margin: 0 auto;
     padding: 0 20px;
}
 h1, h2, h3, h4, h5, h6 {
     font-weight: 700;
     line-height: 1.2;
     margin-bottom: 1rem;
}
 p {
     margin-bottom: 1.5rem;
}
/* ========== PRELOADER ========== */
 #preloader {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, var(--primary), var(--primary-dark));
     z-index: 9999;
     display: flex;
     justify-content: center;
     align-items: center;
     flex-direction: column;
}
 li.mobile-only {
     display: none;
}
 .loader {
     width: 60px;
     height: 60px;
     border: 5px solid rgba(255, 255, 255, 0.3);
     border-top: 5px solid var(--white);
     border-radius: 50%;
     animation: spin 1s linear infinite;
     margin-bottom: 20px;
}
 @keyframes spin {
     0% {
         transform: rotate(0deg);
    }
     100% {
         transform: rotate(360deg);
    }
}
/* ========== HEADER ========== */
 .header {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     padding: 20px 0;
     z-index: 1000;
     transition: var(--transition);
     background-color: var(--white);
     backdrop-filter: blur(10px);
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
 .header.scrolled {
     padding: 15px 0;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
 .header-content {
     display: flex;
     justify-content: space-between;
     align-items: center;
     width: 100%;
}
 .custom-logo-link img.custom-logo {
     width: 150px;
     height: 60px;
}
 .logo {
     display: flex;
     align-items: center;
     gap: 15px;
     text-decoration: none;
     flex-shrink: 0;
}
 .logo-container {
     display: flex;
     align-items: center;
     gap: 15px;
}
 .logo-image {
     height: 50px;
     width: auto;
     object-fit: contain;
}
 .logo-text h1 {
     font-size: 22px;
     color: var(--primary);
     font-weight: 800;
     line-height: 1.2;
     margin-bottom: 0;
}
 .logo-text p {
     font-size: 11px;
     color: var(--gray);
     letter-spacing: 0.5px;
     margin-bottom: 0;
}
/* Logo placeholder styling */
 .logo-placeholder {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 50px;
     height: 50px;
     background: linear-gradient(135deg, var(--primary), var(--primary-dark));
     border-radius: 10px;
     color: white;
     font-weight: 800;
     font-size: 20px;
     box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
     flex-shrink: 0;
}
 .nav-links {
     display: flex;
     list-style: none;
     gap: 25px;
}
 .nav-links a {
     color: var(--dark);
     text-decoration: none;
     font-weight: 600;
     font-size: 15px;
     position: relative;
     padding: 5px 0;
     transition: var(--transition);
     white-space: nowrap;
}
 .nav-links a:after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 2px;
     background-color: var(--primary);
     transition: var(--transition);
}
 .nav-links a:hover:after, .nav-links a.active:after {
     width: 100%;
}
 .nav-links a:hover, .nav-links a.active {
     color: var(--primary);
}
 .header-cta {
     display: flex;
     align-items: center;
     gap: 20px;
}
 .phone-number {
     display: flex;
     align-items: center;
     gap: 8px;
     font-weight: 700;
     color: var(--primary);
     font-size: 16px;
     white-space: nowrap;
}
 .phone-number i {
     color: var(--secondary);
     font-size: 18px;
}
 .cta-button {
     background: linear-gradient(135deg, var(--primary), var(--primary-dark));
     color: white;
     padding: 12px 25px;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 600;
     width: max-content;
     box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
     transition: var(--transition);
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 15px;
     white-space: nowrap;
     flex-shrink: 0;
}
 .cta-button:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(30, 58, 138, 0.4);
     background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}
 .mobile-menu-btn {
     display: none;
     background: none;
     border: none;
     font-size: 24px;
     color: var(--primary);
     cursor: pointer;
     z-index: 1001;
     flex-shrink: 0;
}


.otp-container {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.otp-digit {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
}
/* ========== HERO SECTION ========== */
 .hero {
     padding: 160px 0 100px;
     position: relative;
     overflow: hidden;
     background: linear-gradient(135deg, #F0F7FF 0%, #E8F2FF 100%);
     width: 100%;
}
 .hero-bg {
     position: absolute;
     top: 0;
     right: 0;
     width: 50%;
     height: 100%;
     background: url('https://images.unsplash.com/photo-1549399542-7e3f8b79c341?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80') no-repeat center center;
     background-size: cover;
     border-radius: 0 0 0 100px;
     clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}
 .hero-content {
     max-width: 600px;
     position: relative;
     z-index: 2;
     width: 100%;
}
 .hero-badge {
     display: inline-block;
     background: linear-gradient(135deg, var(--primary), var(--primary-light));
     color: white;
     padding: 8px 20px;
     border-radius: 50px;
     font-size: 14px;
     font-weight: 600;
     margin-bottom: 20px;
     box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
     animation: pulse 2s infinite;
}
 @keyframes pulse {
     0% {
         transform: scale(1);
    }
     50% {
         transform: scale(1.03);
    }
     100% {
         transform: scale(1);
    }
}
 .hero h1 {
     font-size: 46px;
     line-height: 1.15;
     margin-bottom: 20px;
     color: var(--dark);
}
 .hero h1 span {
     color: var(--primary);
     position: relative;
}
 .hero p {
     font-size: 17px;
     color: var(--gray);
     margin-bottom: 30px;
     line-height: 1.7;
}
 .hero-stats {
     display: flex;
     gap: 30px;
     margin-top: 40px;
     padding-top: 30px;
     border-top: 1px solid rgba(0, 0, 0, 0.08);
     flex-wrap: wrap;
}
 .stat {
     text-align: left;
     min-width: 120px;
}
 .stat-number {
     font-size: 36px;
     font-weight: 800;
     color: var(--primary);
     line-height: 1;
     margin-bottom: 5px;
}
 .stat-text {
     font-size: 14px;
     color: var(--gray);
     font-weight: 500;
}
/* ========== FEATURES SECTION ========== */
 .features {
     padding: 80px 0;
     background-color: var(--white);
     width: 100%;
}
 .section-header {
     text-align: center;
     margin-bottom: 60px;
}
 .section-subtitle {
     color: var(--primary);
     font-weight: 600;
     font-size: 16px;
     margin-bottom: 10px;
     display: block;
     text-transform: uppercase;
     letter-spacing: 1px;
}
 .section-title {
     font-size: 36px;
     color: var(--dark);
     margin-bottom: 15px;
     line-height: 1.2;
}
 .section-title span {
     color: var(--primary);
}
 .section-desc {
     font-size: 17px;
     color: var(--gray);
     max-width: 700px;
     margin: 0 auto;
     line-height: 1.7;
}
 .features-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 25px;
     width: 100%;
}
 .feature-card {
     background-color: var(--white);
     border-radius: var(--border-radius);
     padding: 30px;
     box-shadow: var(--shadow);
     transition: var(--transition);
     position: relative;
     overflow: hidden;
     border: 1px solid rgba(0, 0, 0, 0.05);
}
 .feature-card:before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 5px;
     height: 100%;
     background: linear-gradient(to bottom, var(--primary), var(--secondary));
}
 .feature-card:hover {
     transform: translateY(-10px);
     box-shadow: var(--shadow-lg);
}
 .feature-icon {
     width: 60px;
     height: 60px;
     background: linear-gradient(135deg, var(--primary-light), var(--primary));
     border-radius: 15px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 26px;
     margin-bottom: 20px;
     box-shadow: 0 8px 15px rgba(59, 130, 246, 0.2);
}
 .feature-card h3 {
     font-size: 20px;
     margin-bottom: 12px;
     color: var(--dark);
}
 .feature-card p {
     color: var(--gray);
     line-height: 1.6;
     margin-bottom: 0;
     font-size: 15px;
}
/* ========== HOW IT WORKS ========== */
 .how-it-works {
     padding: 80px 0;
     background-color: var(--light);
     position: relative;
     width: 100%;
}
 .steps-container {
     display: flex;
     justify-content: space-between;
     position: relative;
     margin-top: 50px;
     flex-wrap: wrap;
     gap: 30px;
}
 .step {
     flex: 1;
     text-align: center;
     position: relative;
     min-width: 200px;
}
 .step-number {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, var(--white), var(--light));
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 32px;
     font-weight: 800;
     color: var(--primary);
     margin: 0 auto 20px;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
     border: 6px solid var(--white);
     transition: var(--transition);
}
 .step h3 {
     font-size: 20px;
     margin-bottom: 12px;
     color: var(--dark);
}
 .step p {
     color: var(--gray);
     line-height: 1.6;
     font-size: 15px;
}
/* ========== PLANS SECTION ========== */
 .plans {
     padding: 80px 0;
     background-color: var(--white);
     width: 100%;
}
 .plans-tabs {
     display: flex;
     justify-content: center;
     gap: 10px;
     margin-bottom: 40px;
     flex-wrap: wrap;
}
 .tab-btn {
     padding: 12px 25px;
     background-color: var(--light);
     border: none;
     border-radius: 50px;
     font-weight: 600;
     font-size: 15px;
     color: var(--gray);
     cursor: pointer;
     transition: var(--transition);
     border: 2px solid transparent;
     flex-shrink: 0;
}
 .tab-btn.active, .tab-btn:hover {
     background: linear-gradient(135deg, var(--primary), var(--primary-dark));
     color: white;
     border-color: var(--primary);
}
 .plans-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 25px;
     width: 100%;
}
 .plan-card {
     background-color: var(--white);
     border-radius: 15px;
     overflow: hidden;
     box-shadow: var(--shadow);
     transition: var(--transition);
     border: 1px solid rgba(0, 0, 0, 0.05);
}
 .plan-card:hover {
     transform: translateY(-10px);
     box-shadow: var(--shadow-lg);
}
 .plan-header {
     padding: 30px;
     text-align: center;
     background: linear-gradient(135deg, var(--primary), var(--primary-dark));
     color: white;
     position: relative;
     overflow: hidden;
}
 .plan-card.popular .plan-header {
     background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}
 .plan-name {
     font-size: 22px;
     font-weight: 700;
     margin-bottom: 10px;
}
 .plan-price {
     font-size: 42px;
     font-weight: 800;
     margin-bottom: 5px;
}
 .plan-price span {
     font-size: 18px;
     font-weight: 500;
}
 .plan-duration {
     font-size: 15px;
     opacity: 0.9;
}
 .plan-body {
     padding: 30px;
}
 .plan-features {
     list-style: none;
     margin-bottom: 25px;
}
 .plan-features li {
     padding: 10px 0;
     border-bottom: 1px solid rgba(0, 0, 0, 0.05);
     display: flex;
     align-items: center;
     gap: 10px;
}
 .plan-features li:last-child {
     border-bottom: none;
}
 .plan-features li i {
     color: var(--primary);
     font-size: 16px;
}
 .plan-btn {
     display: block;
     width: 100%;
     padding: 16px;
     text-align: center;
     background: linear-gradient(135deg, var(--primary), var(--primary-dark));
     color: white;
     border-radius: 10px;
     text-decoration: none;
     font-weight: 600;
     font-size: 16px;
     transition: var(--transition);
     border: none;
     cursor: pointer;
}
 .plan-card.popular .plan-btn {
     background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}
/* ========== GALLERY SECTION ========== */
 .gallery {
     padding: 80px 0;
     background-color: var(--light);
     width: 100%;
}
 .gallery-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 25px;
     margin-top: 40px;
     width: 100%;
}
 .gallery-item {
     border-radius: var(--border-radius);
     overflow: hidden;
     position: relative;
     box-shadow: var(--shadow);
     transition: var(--transition);
     height: 280px;
}
 .gallery-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: var(--transition);
}
 .gallery-item:hover img {
     transform: scale(1.05);
}
 .gallery-overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     padding: 20px;
     background: linear-gradient(to top, rgba(30, 58, 138, 0.8), transparent);
     color: white;
}
 .gallery-overlay h3 {
     font-size: 20px;
     margin-bottom: 5px;
}
 .gallery-overlay p {
     font-size: 14px;
     opacity: 0.9;
     margin-bottom: 0;
}
/* ========== TESTIMONIALS ========== */
 .testimonials {
     padding: 80px 0;
     background-color: var(--white);
     width: 100%;
}
 .testimonial-slider {
     max-width: 800px;
     margin: 40px auto 0;
     position: relative;
     overflow: hidden;
     width: 100%;
}
 .testimonial-slide {
     background-color: var(--white);
     border-radius: 15px;
     padding: 35px;
     box-shadow: var(--shadow);
     text-align: center;
     display: none;
     border: 1px solid rgba(0, 0, 0, 0.05);
}
 .testimonial-slide.active {
     display: block;
     animation: fadeIn 0.8s ease;
}
 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(20px);
    }
     to {
         opacity: 1;
         transform: translateY(0);
    }
}
 .testimonial-text {
     font-size: 17px;
     font-style: italic;
     margin-bottom: 25px;
     color: var(--dark);
     line-height: 1.7;
     position: relative;
}
 .testimonial-text:before {
     content: '"';
     font-size: 60px;
     color: var(--primary-light);
     opacity: 0.2;
     position: absolute;
     top: -30px;
     left: -5px;
     font-family: Georgia, serif;
}
 .testimonial-author {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 15px;
}
 .author-img {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     overflow: hidden;
     border: 3px solid var(--light);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     flex-shrink: 0;
}
 .author-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
}
 .author-info {
     text-align: left;
}
 .author-info h4 {
     font-size: 18px;
     color: var(--dark);
     margin-bottom: 5px;
}
 .author-info p {
     font-size: 14px;
     color: var(--gray);
     margin-bottom: 0;
}
 .slider-dots {
     display: flex;
     justify-content: center;
     gap: 8px;
     margin-top: 25px;
}
 .dot {
     width: 10px;
     height: 10px;
     border-radius: 50%;
     background-color: #ddd;
     cursor: pointer;
     transition: var(--transition);
}
 .dot.active {
     background-color: var(--primary);
     transform: scale(1.2);
}
/* ========== CTA SECTION ========== */
 .cta-section {
     padding: 80px 0;
     background: linear-gradient(135deg, var(--primary), var(--primary-dark));
     color: white;
     text-align: center;
     position: relative;
     width: 100%;
}
 .cta-section h2 {
     font-size: 36px;
     margin-bottom: 20px;
}
 .cta-section p {
     font-size: 17px;
     max-width: 700px;
     margin: 0 auto 35px;
     opacity: 0.9;
     line-height: 1.7;
}
 .cta-section .cta-button {
     background: linear-gradient(135deg, var(--white), #E2E8F0);
     color: var(--primary);
     font-size: 17px;
     padding: 16px 35px;
     display: inline-flex;
     box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}
 .cta-section .cta-button:hover {
     background: linear-gradient(135deg, #E2E8F0, var(--white));
     transform: translateY(-3px);
}
/* ========== FOOTER ========== */
 .footer {
     background-color: var(--primary-dark);
     color: white;
     padding: 60px 0 20px;
     width: 100%;
}
 .footer-content {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 40px;
     margin-bottom: 40px;
}
 .footer-col h3 {
     font-size: 18px;
     margin-bottom: 20px;
     position: relative;
     padding-bottom: 10px;
     color: white;
}
 .footer-col h3:after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 40px;
     height: 3px;
     background-color: var(--secondary);
}
 .footer-links {
     list-style: none;
}
 .footer-links li {
     margin-bottom: 10px;
}
 .footer-links a {
     color: #CBD5E1;
     text-decoration: none;
     transition: var(--transition);
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 14px;
}
 .footer-links a:hover {
     color: white;
     transform: translateX(5px);
}
 .footer-contact p {
     margin-bottom: 12px;
     display: flex;
     align-items: center;
     gap: 12px;
     color: #E2E8F0;
     font-size: 14px;
}
 .footer-contact i {
     color: var(--accent);
     width: 18px;
}
 .social-links {
     display: flex;
     gap: 12px;
     margin-top: 15px;
}
 .social-link {
     width: 36px;
     height: 36px;
     background-color: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     text-decoration: none;
     transition: var(--transition);
     font-size: 16px;
}
 .social-link:hover {
     background-color: var(--secondary);
     transform: translateY(-3px);
}
 .copyright {
     text-align: center;
     padding-top: 25px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     color: #CBD5E1;
     font-size: 13px;
}
/* ========== FLOATING BUTTONS ========== */
 .whatsapp-float {
     position: fixed;
     width: 55px;
     height: 55px;
     bottom: 25px;
     right: 25px;
     background-color: #25D366;
     color: white;
     border-radius: 50%;
     text-align: center;
     font-size: 26px;
     box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
     z-index: 100;
     display: flex;
     align-items: center;
     justify-content: center;
     text-decoration: none;
     transition: var(--transition);
}
 .whatsapp-float:hover {
     transform: scale(1.1);
     color: white;
}
 .back-to-top {
     position: fixed;
     width: 45px;
     height: 45px;
     bottom: 85px;
     right: 25px;
     background-color: var(--primary);
     color: white;
     border-radius: 50%;
     text-align: center;
     font-size: 18px;
     box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
     z-index: 100;
     display: flex;
     align-items: center;
     justify-content: center;
     text-decoration: none;
     opacity: 0;
     visibility: hidden;
     transition: var(--transition);
}
 .back-to-top.active {
     opacity: 1;
     visibility: visible;
}
/* ========== MODAL ========== */
 #enquiryModal {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0,0,0,0.8);
     z-index: 2000;
     justify-content: center;
     align-items: center;
     padding: 20px;
}
 .modal-content {
     background: white;
     padding: 30px;
     border-radius: 15px;
     max-width: 500px;
     width: 100%;
     position: relative;
}
 .close-modal {
     position: absolute;
     top: 15px;
     right: 15px;
     background: none;
     border: none;
     font-size: 24px;
     color: #666;
     cursor: pointer;
     line-height: 1;
     padding: 0;
     width: 30px;
     height: 30px;
     display: flex;
     align-items: center;
     justify-content: center;
}
/* ========== ANIMATIONS ========== */
 .animate-on-scroll {
     opacity: 0;
     transform: translateY(30px);
     transition: opacity 0.8s ease, transform 0.8s ease;
}
 .animate-on-scroll.visible {
     opacity: 1;
     transform: translateY(0);
}
/* ========== RESPONSIVE DESIGN ========== */
/* Large Desktop */
 @media (min-width: 1400px) {
     .container {
         max-width: 1400px;
    }
     .hero h1 {
         font-size: 56px;
    }
     .section-title {
         font-size: 42px;
    }
}
/* Desktop */
 @media (max-width: 1200px) {
     .hero-bg {
         width: 45%;
    }
     .hero h1 {
         font-size: 42px;
    }
     .nav-links {
         gap: 20px;
    }
}
/* Tablet Landscape */
 @media (max-width: 1024px) {
     .hero-bg {
         width: 40%;
         border-radius: 0 0 0 80px;
    }
     .hero h1 {
         font-size: 38px;
    }
     .section-title {
         font-size: 34px;
    }
     .nav-links {
         gap: 15px;
    }
     .nav-links a {
         font-size: 14px;
    }
     .cta-button {
         padding: 10px 20px;
         font-size: 14px;
    }
     .phone-number {
         font-size: 15px;
    }
}
/* Tablet Portrait */
 @media (max-width: 900px) {
     .header {
         padding: 15px 0;
    }
     /* .nav-links {
         position: fixed;
         top: 0;
         right: -100%;
         width: 280px;
         height: 100vh;
         background-color: white;
         flex-direction: column;
         padding: 100px 30px 30px;
         box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
         transition: var(--transition);
         z-index: 999;
         justify-content: flex-start;
         gap: 0;
    } */
     .nav-links.active {
         right: 0;
    }
     .nav-links li {
         width: 100%;
    }
     .nav-links a {
         display: block;
         padding: 15px 0;
         border-bottom: 1px solid rgba(0, 0, 0, 0.05);
         font-size: 16px;
    }
     .nav-links a:after {
         display: none;
    }
     .mobile-menu-btn {
         display: block;
         order: 1;
    }
     .header-cta {
         order: 2;
    }
     .logo {
         order: 0;
    }
     .header-cta .cta-button {
         display: none;
    }
     .hero-bg {
         width: 100%;
         opacity: 0.15;
         border-radius: 0;
         clip-path: none;
    }
     .hero-content {
         max-width: 100%;
         text-align: center;
    }
     .hero h1 {
         font-size: 36px;
    }
     .hero-stats {
         justify-content: center;
    }
     .steps-container:before {
         display: none;
    }
     .steps-container {
         flex-direction: column;
         align-items: center;
         gap: 40px;
    }
     .step {
         max-width: 350px;
         width: 100%;
    }
}
/* Mobile Landscape */
 @media (max-width: 768px) {
     .hero {
         padding: 140px 0 80px;
    }
     .hero h1 {
         font-size: 32px;
    }
     .hero p {
         font-size: 16px;
    }
     .hero-badge {
         font-size: 13px;
         padding: 8px 18px;
    }
     .section-title {
         font-size: 30px;
    }
     .section-desc {
         font-size: 16px;
    }
     .features-grid, .plans-grid, .gallery-grid {
         grid-template-columns: 1fr;
    }
     .feature-card, .plan-card, .gallery-item {
         max-width: 100%;
    }
     .plan-header, .plan-body {
         padding: 25px;
    }
     .plan-price {
         font-size: 38px;
    }
     .testimonial-slide {
         padding: 25px;
    }
     .testimonial-text {
         font-size: 16px;
    }
     .cta-section h2 {
         font-size: 30px;
    }
     .cta-section p {
         font-size: 16px;
    }
     .footer-content {
         grid-template-columns: 1fr;
         gap: 30px;
    }
     .stat-number {
         font-size: 32px;
    }
     .stat {
         min-width: 100px;
    }


    .otp-container {
        gap: 0px;
    }

    .otp-container .form-group input, .form-group select, .form-group textarea{
        width: auto;
    }
}
/* Mobile Portrait */
 @media (max-width: 576px) {
     .container {
         padding: 0 15px;
    }
     .hero {
         padding: 130px 0 60px;
    }
     .hero h1 {
         font-size: 28px;
    }
     .hero-badge {
         font-size: 12px;
         padding: 7px 15px;
    }
     .section-title {
         font-size: 26px;
    }
     .section-subtitle {
         font-size: 14px;
    }
     .feature-card, .plan-card {
         padding: 25px;
    }
     .plan-header, .plan-body {
         padding: 20px;
    }
     .plan-price {
         font-size: 34px;
    }
     .plan-name {
         font-size: 20px;
    }
     .tab-btn {
         padding: 10px 20px;
         font-size: 14px;
    }
     .gallery-item {
         height: 250px;
    }
     .testimonial-author {
         flex-direction: column;
         text-align: center;
    }
     .author-info {
         text-align: center;
    }
     .cta-section {
         padding: 60px 0;
    }
     .cta-section h2 {
         font-size: 26px;
    }
     .cta-section .cta-button {
         padding: 14px 25px;
         font-size: 16px;
         width: 100%;
         justify-content: center;
    }
     .hero-stats {
         gap: 20px;
    }
     .stat {
         min-width: 80px;
    }
     .stat-number {
         font-size: 28px;
    }
     .stat-text {
         font-size: 13px;
    }
     .logo-text h1 {
         font-size: 20px;
    }
     .phone-number {
         font-size: 14px;
    }
     .whatsapp-float, .back-to-top {
         width: 50px;
         height: 50px;
         font-size: 24px;
    }
     .back-to-top {
         font-size: 16px;
         bottom: 80px;
    }
     .modal-content {
         padding: 25px 20px;
    }
}
/* Small Mobile */
 @media (max-width: 400px) {
     .hero h1 {
         font-size: 26px;
    }
     .section-title {
         font-size: 24px;
    }
     .feature-card h3, .step h3, .gallery-overlay h3 {
         font-size: 18px;
    }
     .feature-card p, .step p, .gallery-overlay p {
         font-size: 14px;
    }
     .plan-price {
         font-size: 32px;
    }
     .plan-features li {
         font-size: 14px;
    }
     .testimonial-text {
         font-size: 15px;
    }
     .logo-placeholder {
         width: 45px;
         height: 45px;
         font-size: 18px;
    }
     .logo-text h1 {
         font-size: 18px;
    }
     .logo-text p {
         font-size: 10px;
    }
}
/* ========== ABOUT PAGE STYLES ========== */
/* Page Header */
 .page-header {
     background: linear-gradient(135deg, var(--primary), var(--primary-dark));
     color: white;
     padding: 200px 0 60px;
     text-align: center;
     margin-bottom: 40px;
}
 .page-header h1 {
     font-size: 42px;
     margin-bottom: 15px;
     color: white;
}
 .page-header p {
     font-size: 18px;
     opacity: 0.9;
     max-width: 600px;
     margin: 0 auto;
}
/* About Section */
 .about-section {
     margin-bottom: 60px;
     background-color: var(--white);
}
 .about-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
     align-items: center;
}
 .about-text h2 {
     margin-bottom: 20px;
     color: var(--primary);
     font-size: 32px;
}
 .about-text p {
     margin-bottom: 20px;
     font-size: 16px;
     line-height: 1.8;
     color: var(--gray);
}
 .about-stats {
     display: flex;
     gap: 30px;
     margin-top: 40px;
     padding-top: 30px;
     border-top: 1px solid rgba(0, 0, 0, 0.1);
}
 .stat-item {
     text-align: center;
     flex: 1;
}
 .stat-number {
     font-size: 36px;
     font-weight: 800;
     line-height: 1;
     margin-bottom: 5px;
}
 .stat-item:nth-child(1) .stat-number {
     color: var(--primary);
}
 .stat-item:nth-child(2) .stat-number {
     color: var(--accent);
}
 .stat-item:nth-child(3) .stat-number {
     color: var(--secondary);
}
 .stat-label {
     font-size: 14px;
     color: var(--gray);
     font-weight: 500;
}
 .about-image {
     position: relative;
}
 .about-img {
     width: 100%;
     border-radius: 15px;
     box-shadow: var(--shadow-lg);
     transition: transform 0.5s ease;
}
 .about-img:hover {
     transform: translateY(-5px);
}
/* Values Grid */
 .values-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
     margin-bottom: 60px;
}
 .value-card {
     padding: 30px;
     border-radius: var(--border-radius);
     color: white;
     transition: var(--transition);
     position: relative;
     overflow: hidden;
}
 .value-card:hover {
     transform: translateY(-5px);
}
 .value-icon {
     width: 60px;
     height: 60px;
     background: rgba(255, 255, 255, 0.2);
     border-radius: 15px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 20px;
     font-size: 24px;
}
 .value-card h3 {
     margin-bottom: 15px;
     color: white;
     font-size: 22px;
}
 .value-card p {
     opacity: 0.9;
     line-height: 1.7;
     font-size: 15px;
     margin-bottom: 0;
}
 .mission-card {
     background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
 .vision-card {
     background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}
 .values-card {
     background: linear-gradient(135deg, var(--accent), #0CA678);
}
/* Leadership Section */
 .leadership-section {
     margin-bottom: 60px;
}
 .leadership-section .section-header {
     text-align: center;
     margin-bottom: 40px;
}
 .leadership-section h2 {
     color: var(--primary);
     margin-bottom: 10px;
}
 .team-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 30px;
}
 .team-member {
     text-align: center;
     background: var(--white);
     padding: 25px;
     border-radius: var(--border-radius);
     box-shadow: var(--shadow);
     transition: var(--transition);
}
 .team-member:hover {
     transform: translateY(-10px);
     box-shadow: var(--shadow-lg);
}
 .member-image {
     width: 150px;
     height: 150px;
     border-radius: 50%;
     overflow: hidden;
     margin: 0 auto 20px;
     border: 5px solid var(--light);
}
 .member-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
}
 .team-member:hover .member-image img {
     transform: scale(1.05);
}
 .team-member h3 {
     margin-bottom: 5px;
     color: var(--dark);
}
 .member-position {
     color: var(--primary);
     font-weight: 600;
     margin-bottom: 10px;
     font-size: 15px;
}
 .member-description {
     color: var(--gray);
     font-size: 14px;
     line-height: 1.6;
     margin-bottom: 0;
}
/* Certifications Section */
 .certifications-section {
     margin-bottom: 60px;
}
 .certifications-section .section-header {
     text-align: center;
     margin-bottom: 40px;
}
 .certifications-section h2 {
     color: var(--primary);
     margin-bottom: 10px;
}
 .certifications-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 30px;
}
 .certification-item {
     text-align: center;
     padding: 25px;
     background: var(--white);
     border-radius: var(--border-radius);
     box-shadow: var(--shadow);
     transition: var(--transition);
}
 .certification-item:hover {
     transform: translateY(-5px);
     box-shadow: var(--shadow-lg);
}
 .cert-icon {
     width: 80px;
     height: 80px;
     background: var(--light);
     border-radius: 15px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 15px;
     color: var(--primary);
     font-size: 36px;
     transition: var(--transition);
}
 .certification-item:hover .cert-icon {
     background: var(--primary);
     color: white;
}
 .certification-item h4 {
     margin-bottom: 10px;
     color: var(--dark);
     font-size: 18px;
}
 .certification-item p {
     color: var(--gray);
     font-size: 14px;
     line-height: 1.6;
     margin-bottom: 0;
}
/* About CTA */
 .about-cta {
     text-align: center;
     padding: 50px;
     background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(59, 130, 246, 0.05));
     border-radius: var(--border-radius);
     margin-bottom: 40px;
}
 .about-cta h2 {
     margin-bottom: 15px;
     color: var(--primary);
}
 .about-cta p {
     max-width: 600px;
     margin: 0 auto 30px;
     color: var(--gray);
     font-size: 16px;
}

.about-cta a.cta-button {
    display: inline;
}


/* ✅ Desktop show */
.desktop-nav,
.desktop-cta {
    display: flex;
}

/* ✅ Mobile hidden default */
.mobile-menu-btn,
.mobile-menu-wrapper {
    display: none;
}

/* ✅ Mobile Menu Responsive */
@media (max-width: 991px) {

    /* Hide desktop elements */
    .desktop-nav,
    .desktop-cta {
        display: none !important;
    }

    /* Show menu button */
    .mobile-menu-btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        border: none;
        background: transparent;
        cursor: pointer;
        padding: 8px 12px;
    }

    /* Mobile menu wrapper (dropdown box) */
    .mobile-menu-wrapper {
        display: none;
        margin-top: 12px;
        background: #fff;
        border-radius: 12px;
        padding: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    }

    .mobile-menu-wrapper.active {
        display: block;
    }

    /* Mobile menu links */
    .mobile-menu {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .mobile-menu li a {
        display: block;
        padding: 12px 14px;
        border-radius: 10px;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        color: #111;
        background: #f7f7f7;
    }

    .mobile-menu li a:hover {
        background: #eaeaea;
    }

    /* Mobile CTA buttons */
    .mobile-cta {
        margin-top: 15px;
        display: flex;
        gap: 10px;
    }

    .mobile-call-btn,
    .mobile-quote-btn {
        flex: 1;
        text-align: center;
        padding: 12px;
        border-radius: 10px;
        font-weight: 700;
        text-decoration: none;
        color: #fff;
        font-size: 14px;
    }

    .mobile-call-btn {
        background: #111;
    }

    .mobile-quote-btn {
        background: #0073aa;
    }
}

/* Responsive Styles for About Page */
 @media (max-width: 992px) {
     .about-content {
         grid-template-columns: 1fr;
         gap: 30px;
    }
     .about-text {
         order: 2;
    }
     .about-image {
         order: 1;
    }
     .about-stats {
         gap: 20px;
    }
     .stat-number {
         font-size: 32px;
    }
}
 @media (max-width: 768px) {
     .page-header {
         padding: 150px 0 50px;
    }
     .page-header h1 {
         font-size: 36px;
    }
     .about-text h2 {
         font-size: 28px;
    }
     .values-grid {
         grid-template-columns: 1fr;
    }
     .team-grid {
         grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
     .certifications-grid {
         grid-template-columns: repeat(2, 1fr);
    }
     .about-cta {
         padding: 40px 20px;
    }
}
 @media (max-width: 576px) {
     .page-header {
         padding: 150px 0 40px;
    }
     .page-header h1 {
         font-size: 32px;
    }
     .about-stats {
         flex-direction: column;
         gap: 20px;
         text-align: center;
    }
     .stat-item {
         border-bottom: 1px solid rgba(0, 0, 0, 0.1);
         padding-bottom: 15px;
    }
     .stat-item:last-child {
         border-bottom: none;
         padding-bottom: 0;
    }
     .team-grid {
         grid-template-columns: 1fr;
         max-width: 300px;
         margin: 0 auto;
    }
     .certifications-grid {
         grid-template-columns: 1fr;
    }
     .about-cta h2 {
         font-size: 24px;
    }
     .value-card {
         padding: 25px;
    }
}


/* ========== ENQUIRY PAGE STYLES ========== */

.enquiry-page {
    background-color: var(--light-gray);
    min-height: 100vh;
}

/* Two Column Layout */
.enquiry-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Form Section */
.enquiry-form-section {
    position: sticky;
    top: 100px;
}

.enquiry-form-card {
    background-color: var(--white);
    padding: 40px;
    margin-bottom: 20px;
}

.enquiry-form-card h2 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 28px;
}

.form-subtitle {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 16px;
}

/* Form Styles */
.cti-enquiry-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    transition: var(--transition);
    background-color: var(--white);
    color: var(--dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.checkbox-group label {
    font-weight: normal;
    margin-bottom: 0;
    font-size: 14px;
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.2);
}

/* Form Response */
.form-response {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    font-size: 14px;
    display: none;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    display: block;
     margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    font-size: 14px;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
    display: block;
     margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    font-size: 14px;
}

/* Login Prompt */
.login-prompt {
    text-align: center;
    padding: 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.login-prompt p {
    margin-bottom: 10px;
}

.login-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.login-link:hover {
    text-decoration: underline;
}

.support-text {
    font-size: 14px;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.support-text i {
    color: var(--secondary);
}

.phone-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.phone-link:hover {
    text-decoration: underline;
}

/* Info Section */
.enquiry-info-section {
    display: grid;
    gap: 30px;
}

.info-card {
    background-color: var(--white);
    padding: 30px;
}

.info-card h3 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card h3 i {
    color: var(--secondary);
}

/* Steps */
.enquiry-steps {
    display: grid;
    gap: 20px;
}

.step-item {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 15px;
    align-items: start;
    padding: 20px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(59, 130, 246, 0.05));
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    box-shadow: var(--shadow);
}

.step-content h4 {
    margin-bottom: 5px;
    font-size: 16px;
    color: var(--dark);
}

.step-content p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

/* Duration Cards */
.duration-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    text-align: center;
}

.duration-card {
    padding: 20px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(59, 130, 246, 0.05));
    border-radius: 10px;
    transition: var(--transition);
}

.duration-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.duration-card:hover .duration-months,
.duration-card:hover .duration-label,
.duration-card:hover .duration-desc {
    color: white;
}

.duration-icon {
    font-size: 24px;
    margin-bottom: 10px;
}

.duration-months {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
}

.duration-label {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 5px;
}

.duration-desc {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    gap: 15px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light);
    border-radius: 10px;
    transition: var(--transition);
}

.trust-item:hover {
    transform: translateX(5px);
    background: var(--white);
    box-shadow: var(--shadow);
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.trust-content h4 {
    margin-bottom: 5px;
    font-size: 16px;
    color: var(--dark);
}

.trust-content p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}

/* Testimonial Card */
.testimonial-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.testimonial-card h3 {
    color: white;
}

.quote-icon {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 15px;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.testimonial-author {
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.author-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.author-vehicle {
    font-size: 14px;
    opacity: 0.9;
}

/* FAQ Section */
.faq-section {
    margin-top: 60px;
    padding: 50px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-section h2 {
    color: var(--primary);
    margin-bottom: 10px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 15px;
}

.faq-question {
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h4 {
    font-size: 18px;
    color: var(--dark);
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 0 20px 0;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* Responsive Styles for Enquiry Page */
@media (max-width: 1200px) {
    .enquiry-two-column {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .enquiry-two-column {
        grid-template-columns: 1fr;
    }
    
    .enquiry-form-section {
        position: static;
    }
    
    .duration-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .faq-section {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .enquiry-form-card {
        padding: 30px;
    }
    
    .info-card {
        padding: 25px;
    }
    
    .duration-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .duration-card {
        padding: 15px;
    }
    
    .step-item {
        grid-template-columns: auto 1fr;
        gap: 15px;
    }
    
    .step-icon {
        grid-row: span 2;
    }
    
    .faq-section {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .faq-question h4 {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .enquiry-form-card {
        padding: 25px 20px;
    }
    
    .duration-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .trust-item {
        flex-direction: column;
        text-align: center;
    }
    
    .trust-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .step-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .step-icon {
        margin: 0 auto;
    }
    
    .checkbox-group {
        align-items: flex-start;
    }
    
    .faq-question h4 {
        font-size: 15px;
        padding-right: 15px;
    }
}

/* ========== HOW IT WORKS PAGE STYLES ========== */

.how-it-works-page {
    background-color: var(--white);
}

/* Process Steps Section */
.process-steps-section {
    padding: 60px 0;
}

.process-steps-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-steps-section h2 {
    color: var(--primary);
    margin-bottom: 15px;
}

.steps-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    position: relative;
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateX(10px);
}

.step-number {
   
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    font-weight: 800;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.step-content {
    /* margin-left: 100px; */
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.step-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.02), transparent);
    z-index: 1;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.step-title {
    flex: 1;
}

.step-title h3 {
    margin-bottom: 5px;
    color: var(--dark);
    font-size: 22px;
}

.step-desc {
    color: var(--gray);
    margin: 0;
    font-size: 15px;
}

.step-time {
    flex-shrink: 0;
}

.time-badge {
    background: var(--light);
    color: var(--primary);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    border: 2px solid var(--primary-light);
}

.step-details {
    position: relative;
    z-index: 2;
}

.step-details h4 {
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 18px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(59, 130, 246, 0.05));
    border-radius: 8px;
    transition: var(--transition);
}

.detail-item:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(59, 130, 246, 0.1));
}

.detail-item i {
    color: var(--accent);
    font-size: 16px;
    flex-shrink: 0;
}

.detail-item span {
    font-size: 14px;
    color: var(--dark);
    line-height: 1.5;
}

.step-connector {
    position: absolute;
    left: 35px;
    top: 70px;
    /* width: 2px; */
    height: calc(100% + 40px);
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    opacity: 0.3;
    z-index: 1;
}

.last-step .step-connector {
    display: none;
}

/* Timeline Section */
.timeline-section {
    padding: 40px 0;
}

.timeline-card {
    padding: 40px;
}

.timeline-card .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.timeline-card h2 {
    color: var(--primary);
    margin-bottom: 15px;
}

.timeline-visual {
    position: relative;
    height: 200px;
    overflow: visible;
    margin: 0 auto;
    max-width: 1200px;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    transform: translateY(-50%);
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.timeline-point {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    transition: transform 0.3s ease;
}

.timeline-point:hover {
    transform: translate(-50%, -50%) scale(1.1);
    z-index: 10;
}

.point-dot {
    width: 30px;
    height: 30px;
    background: white;
    border: 4px solid var(--primary);
    border-radius: 50%;
    margin: 0 auto 15px;
    position: relative;
    z-index: 2;
}

.point-content {
    background: var(--white);
    padding: 20px 15px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    min-width: 150px;
    transition: var(--transition);
    position: relative;
}

.timeline-point:hover .point-content {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.point-time {
    font-size: 12px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.point-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.point-title {
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark);
    font-size: 16px;
}

.point-desc {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.4;
}

/* Benefits Section */
.benefits-section {
    padding: 60px 0;
}

.benefits-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--primary);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
    font-size: 20px;
}

.benefit-card p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 40px 0;
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-section h2 {
    color: var(--primary);
    margin-bottom: 15px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    background: var(--white);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light);
    color: var(--primary);
}

.faq-question span {
    flex: 1;
    text-align: left;
    padding-right: 20px;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
    font-size: 14px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    color: var(--gray);
    line-height: 1.7;
    font-size: 15px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 25px;
}

/* CTA Section */
.how-it-works-cta {
    padding: 60px 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-align: center;
    padding: 50px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.cta-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,0V100H1000V0C800,50 200,50 0,0Z" fill="rgba(255,255,255,0.1)"/></svg>') no-repeat bottom;
    background-size: 100% 100px;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.primary-btn {
    background: white !important;
    color: var(--primary) !important;
    padding: 16px 35px !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2) !important;
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    padding: 16px 35px !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(10px) !important;
}

.primary-btn:hover {
    background: linear-gradient(135deg, #e2e8f0, white) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3) !important;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
}

.cta-stats .stat {
    text-align: center;
}

.cta-stats .stat-number {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
    line-height: 1;
}

.cta-stats .stat-label {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

/* Responsive Styles for How It Works Page */
@media (max-width: 992px) {
    .step-content {
        margin-left: 0px;
        padding: 25px;
    }
    
    .timeline-visual {
        height: 250px;
    }
    
    .timeline-point {
        transform: translate(-50%, 0);
        top: auto;
        bottom: 0;
    }
    
    .timeline-point:nth-child(odd) {
        top: 0;
        bottom: auto;
    }
    
    .timeline-line {
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-width: 768px) {
    .process-steps-section {
        padding: 40px 0;
    }
    
    .step-item {
        margin-bottom: 30px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .step-content {
        margin-left: 0px;
        padding: 20px;
    }
    
    .step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .step-time {
        align-self: center;
    }
    
    .step-connector {
        left: 30px;
        top: 60px;
    }
    
    .process-steps-section .step-number {
        top: 0 !important;
        left: 0 !important;
    }
    .timeline-section {
        padding: 20px 0;
    }
    
    .timeline-card {
        padding: 30px 20px;
    }
    
    .timeline-visual {
        height: 400px;
    }
    
    .timeline-point {
        width: 45%;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    
    .timeline-point:nth-child(1),
    .timeline-point:nth-child(3),
    .timeline-point:nth-child(5) {
        top: 0;
        bottom: auto;
    }
    
    .timeline-point:nth-child(2),
    .timeline-point:nth-child(4),
    .timeline-point:nth-child(6) {
        top: auto;
        bottom: 0;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    .cta-card {
        padding: 40px 20px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .primary-btn,
    .secondary-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .step-content {
        margin-left: 0px;
    }
    
    .step-title h3 {
        font-size: 18px;
    }
    
    .step-desc {
        font-size: 14px;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-item {
        padding: 10px;
    }
    
    .timeline-visual {
        height: 500px;
    }
    
    .timeline-point {
        width: 80%;
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    .cta-stats {
        gap: 20px;
    }
    
    .cta-stats .stat-number {
        font-size: 28px;
    }
}

/* ========== DEALER REGISTRATION PAGE STYLES ========== */

.dealer-registration-page {
    background-color: var(--light-gray);
    min-height: 100vh;
}

/* Two Column Layout */
.dealer-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Form Section */
.dealer-form-section {
    position: sticky;
    top: 100px;
}

.dealer-form-card {
    background-color: var(--white);
    padding: 40px;
    margin-bottom: 20px;
}

.form-header h2 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-header h2 i {
    color: var(--secondary);
}

.form-subtitle {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 16px;
}

/* Dealer Form Styles */
.cti-dealer-form {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 14px;
    /* display: flex; */
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--primary);
    width: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    transition: var(--transition);
    background-color: var(--white);
    color: var(--dark);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-hint {
    font-size: 12px;
    color: var(--gray);
    margin-top: 5px;
    font-style: italic;
}

/* Password Field */
.password-field {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-size: 16px;
    padding: 5px;
}

.toggle-password:hover {
    color: var(--primary);
}

.password-strength {
    margin-top: 10px;
}

.strength-meter {
    width: 100%;
    height: 5px;
    background-color: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 5px;
}

.strength-bar {
    height: 100%;
    width: 0;
    background-color: #ef4444;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.strength-text {
    font-size: 12px;
    color: var(--gray);
}

#strengthLabel {
    font-weight: 600;
}

/* Agreement Checkboxes */
.agreement-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--dark);
    position: relative;
}

.checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    width: 20px;
    height: 20px;
    background-color: var(--white);
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.checkbox-label input:checked ~ .checkmark {
    background-color: var(--primary);
    border-color: var(--primary);
}

.checkbox-label input:checked ~ .checkmark:after {
    content: "✓";
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.agreement-text {
    line-height: 1.5;
}

.agreement-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.agreement-text a:hover {
    text-decoration: underline;
}

/* Submit Button */
.dealer-submit-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    width: 100%;
    margin-top: 20px;
}

.dealer-submit-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.2);
}

.dealer-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Info Section */
.dealer-info-section {
    display: grid;
    gap: 30px;
}

/* Benefits Card */
.dealer-benefits-card {
    background-color: var(--white);
    padding: 30px;
}

.card-header {
    margin-bottom: 25px;
}

.card-header h3 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-subtitle {
    color: var(--gray);
    font-size: 15px;
    margin: 0;
}

.benefits-list {
    display: grid;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(59, 130, 246, 0.05));
    border-radius: 10px;
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(59, 130, 246, 0.1));
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.benefit-content h4 {
    margin-bottom: 5px;
    font-size: 16px;
    color: var(--dark);
}

.benefit-content p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}

/* Commission Card */
.commission-card {
    background-color: var(--white);
    padding: 30px;
}

.commission-table-container {
    overflow-x: auto;
    margin: 20px 0;
}

.commission-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.commission-table th {
    background-color: var(--primary);
    color: white;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.commission-table th:first-child {
    border-radius: 8px 0 0 0;
}

.commission-table th:last-child {
    border-radius: 0 8px 0 0;
}

.commission-table td {
    padding: 15px;
    border-bottom: 1px solid #e2e8f0;
    color: var(--dark);
}

.commission-table tr:last-child td {
    border-bottom: none;
}

.commission-table tr:hover td {
    background-color: rgba(30, 58, 138, 0.03);
}

.commission-table tr.highlight td {
    background-color: rgba(16, 185, 129, 0.1);
}

.commission-rate {
    font-weight: 700;
}

.rate-badge {
    display: inline-block;
    padding: 6px 15px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.rate-badge.premium {
    background-color: var(--accent);
    color: white;
}

.commission-note {
    margin-top: 20px;
    padding: 15px;
    background-color: var(--light);
    border-radius: 8px;
    font-size: 14px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.commission-note i {
    color: var(--primary);
}

/* Contact Card */
.contact-card {
    background-color: var(--white);
    padding: 30px;
}

.contact-info {
    display: grid;
    gap: 20px;
    margin: 20px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: var(--light);
    border-radius: 10px;
    transition: var(--transition);
}

.contact-item:hover {
    background-color: rgba(30, 58, 138, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-content h4 {
    margin-bottom: 5px;
    font-size: 16px;
    color: var(--dark);
}

.contact-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-content p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

.support-cta {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(59, 130, 246, 0.05));
    border-radius: 10px;
    margin-top: 20px;
}

.support-cta p {
    margin-bottom: 15px;
    color: var(--dark);
    font-size: 16px;
}

.support-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.support-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

/* Success Stories Card */
.success-stories-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 30px;
}

.success-stories-card .card-header h3 {
    color: white;
}

.success-story {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.story-content p {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.story-author {
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.author-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.author-location {
    font-size: 14px;
    opacity: 0.9;
}

/* Process Steps */
.dealer-process-section {
    margin-top: 60px;
    padding: 40px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.dealer-process-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.dealer-process-section h2 {
    color: var(--primary);
    margin-bottom: 15px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(59, 130, 246, 0.05));
    border-radius: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.process-step:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

/* .step-number {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 15px;
} */

.enquiry-steps .step-number {
    top: -30px;
    left: -35px;
    position: absolute;
}

.process-steps-section .step-number {
    top: -30px;
    left: -35px;
    position: absolute;
}


.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.2);
}

.process-step h3 {
    margin-bottom: 15px;
    color: var(--dark);
    font-size: 20px;
}

.process-step p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Styles for Dealer Registration Page */
@media (max-width: 1200px) {
    .dealer-two-column {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .dealer-two-column {
        grid-template-columns: 1fr;
    }
    
    .dealer-form-section {
        position: static;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .dealer-process-section {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .dealer-form-card {
        padding: 30px 25px;
    }
    
    .form-header h2 {
        font-size: 24px;
    }
    
    .dealer-benefits-card,
    .commission-card,
    .contact-card,
    .success-stories-card {
        padding: 25px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        margin: 0 auto;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
    
    .commission-table {
        font-size: 13px;
    }
    
    .commission-table th,
    .commission-table td {
        padding: 10px;
    }
    
    .dealer-process-section {
        padding: 25px 20px;
        margin-top: 40px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    .dealer-form-card {
        padding: 25px 20px;
    }
    
    .form-header h2 {
        font-size: 22px;
    }
    
    .form-subtitle {
        font-size: 15px;
    }
    
    .dealer-submit-btn {
        padding: 16px;
        font-size: 16px;
    }
    
    .card-header h3 {
        font-size: 20px;
    }
    
    .rate-badge {
        padding: 5px 12px;
        font-size: 13px;
    }
    
    .support-btn {
        width: 100%;
        justify-content: center;
    }
    
    .step-number {
        font-size: 36px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* ========== DEALER DASHBOARD PAGE STYLES ========== */

.dealer-dashboard-page {
    background-color: #f8fafc;
    min-height: 100vh;
    margin-top: 75px;
}

/* Dashboard Header */
.dashboard-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 60px 0 30px;
    margin-bottom: 30px;
}

.dealer-dashboard-page .header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.dealer-dashboard-page .header-content h1 {
    color: white;
    margin-bottom: 10px;
    font-size: 36px;
}

.dealer-dashboard-page .header-content p {
    opacity: 0.9;
    margin-bottom: 0;
    font-size: 18px;
}

.dealer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.dealer-badge .status-badge {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
}

.status-badge.pending {
    background-color: rgba(245, 158, 11, 0.2);
    color: #F59E0B;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.status-badge.active {
    background-color: rgba(16, 185, 129, 0.2);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-badge.approved {
    background-color: rgba(59, 130, 246, 0.2);
    color: var(--primary);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.logout-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.logout-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Dashboard Alert */
.dashboard-alert {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-left: 4px solid #F59E0B;
}

.dashboard-alert.warning {
    background: rgba(245, 158, 11, 0.1);
    border-left-color: #F59E0B;
}

.dashboard-alert i {
    font-size: 24px;
    color: #F59E0B;
    margin-top: 2px;
}

.dashboard-alert h4 {
    color: white;
    margin-bottom: 5px;
    font-size: 16px;
}

.dashboard-alert p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 0;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--gray);
    font-size: 14px;
    font-weight: 500;
}

/* Dashboard Content Layout */
.dashboard-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

/* Dashboard Cards */
.dashboard-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.dashboard-card h2 {
    color: var(--dark);
    margin-bottom: 25px;
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-card h2 i {
    color: var(--primary);
}

/* Quick Actions */
.quick-actions-card {
    margin-bottom: 30px;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.action-btn {
    background: var(--light);
    border: none;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    display: block;
    width: 100%;
    text-decoration: none;
}

.action-btn:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.action-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-bottom: 15px;
}

.action-content h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--dark);
}

.action-content p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
    line-height: 1.4;
}

/* Leads Card */
.leads-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cti-btn.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.leads-table {
    overflow: hidden;
}

.table-responsive {
    overflow-x: auto;
}

.leads-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.leads-table th {
    background-color: var(--light);
    color: var(--gray);
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e2e8f0;
}

.leads-table td {
    padding: 15px;
    border-bottom: 1px solid #f1f5f9;
    color: var(--dark);
}

.leads-table tr:last-child td {
    border-bottom: none;
}

.leads-table tr:hover td {
    background-color: #f8fafc;
}

.lead-id {
    font-weight: 600;
    color: var(--primary);
}

.customer-info .customer-name {
    font-weight: 600;
    margin-bottom: 3px;
}

.customer-info .customer-email {
    font-size: 12px;
    color: var(--gray);
}

.action-link {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 5px;
    transition: var(--transition);
}

.action-link:hover {
    background-color: rgba(59, 130, 246, 0.1);
}

.card-footer {
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    text-align: center;
}

.view-all-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.view-all-link:hover {
    text-decoration: underline;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 40px 20px;
}

.empty-icon {
    width: 80px;
    height: 80px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-light);
    font-size: 32px;
}

.empty-state h3 {
    margin-bottom: 10px;
    color: var(--dark);
}

.empty-state p {
    color: var(--gray);
    margin-bottom: 25px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* Commission Card */
.commission-card {
    margin-bottom: 30px;
}

.commission-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.view-report-link {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.view-report-link:hover {
    text-decoration: underline;
}

.commission-summary {
    display: grid;
    gap: 15px;
    margin-bottom: 25px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--light);
    border-radius: 10px;
}

.summary-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    font-weight: 600;
}

.summary-label i {
    font-size: 16px;
}

.summary-value {
    font-size: 20px;
    font-weight: 700;
}

.total-earned .summary-value {
    color: var(--primary);
}

.monthly-earned .summary-value {
    color: #10B981;
}

.pending-payout .summary-value {
    color: #F59E0B;
}

.next-payout {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    text-align: center;
}

.payout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.payout-header h4 {
    color: white;
    margin-bottom: 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payout-date {
    font-size: 14px;
    opacity: 0.9;
}

.payout-amount {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

.payout-method {
    font-size: 14px;
    opacity: 0.9;
}

.commission-history {
    margin-top: 25px;
}

.commission-history h4 {
    margin-bottom: 15px;
    color: var(--dark);
    font-size: 16px;
}

.history-list {
    display: grid;
    gap: 10px;
}

.history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: var(--light);
    border-radius: 8px;
}

.history-date {
    font-size: 12px;
    color: var(--gray);
    min-width: 70px;
}

.history-details {
    flex: 1;
    padding: 0 15px;
}

.history-customer {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 3px;
}

.history-plan {
    font-size: 12px;
    color: var(--gray);
}

.history-amount {
    font-weight: 700;
    color: #10B981;
    font-size: 16px;
}

/* Performance Card */
.performance-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.performance-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.performance-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.performance-content .performance-value {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.performance-content .performance-label {
    font-size: 13px;
    color: var(--gray);
}

.performance-chart {
    margin-top: 30px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.chart-header h4 {
    color: var(--dark);
    font-size: 16px;
    margin-bottom: 0;
}

.chart-period {
    padding: 8px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    color: var(--dark);
    font-size: 14px;
    cursor: pointer;
}

.chart-placeholder {
    background: var(--light);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 20px;
    height: 150px;
    margin-bottom: 15px;
}

.chart-bar {
    width: 40px;
    background: linear-gradient(to top, var(--primary-light), var(--primary));
    border-radius: 8px 8px 0 0;
    transition: var(--transition);
    position: relative;
}

.chart-bar.active {
    background: linear-gradient(to top, var(--primary), var(--primary-dark));
}

.chart-bar:hover {
    opacity: 0.8;
}

.chart-bar:after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.chart-bar:hover:after {
    opacity: 1;
}

.chart-labels {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.chart-labels span {
    width: 40px;
    text-align: center;
    font-size: 12px;
    color: var(--gray);
}

/* Resources Card */
.resources-list {
    display: grid;
    gap: 15px;
}

.resource-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light);
    border-radius: 10px;
    text-decoration: none;
    transition: var(--transition);
}

.resource-item:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.resource-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.resource-content h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--dark);
}

.resource-content p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
    line-height: 1.4;
}

/* Dealer Modals */
.dealer-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.dealer-modal .modal-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    margin-bottom: 25px;
}

.modal-header h3 {
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-header p {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 0;
}

.dealer-form {
    display: grid;
    gap: 20px;
}

.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: var(--light);
    border: 2px dashed #cbd5e1;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.upload-label:hover {
    background: #f1f5f9;
    border-color: var(--primary-light);
}

.upload-label i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
}

.upload-label span {
    color: var(--dark);
    font-weight: 600;
    font-size: 16px;
}

.file-name {
    margin-top: 10px;
    font-size: 14px;
    color: var(--gray);
    text-align: center;
}

.upload-instructions {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.instruction-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light);
    border-radius: 10px;
}

.instruction-item i {
    font-size: 24px;
    color: var(--primary);
    width: 40px;
    flex-shrink: 0;
}

.instruction-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--dark);
}

.instruction-item p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
    line-height: 1.4;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.download-btn:hover {
    background: var(--primary-dark);
}

.lead-details-content {
    padding: 20px 0;
}

/* Responsive Styles for Dealer Dashboard */
@media (max-width: 1200px) {
    .dashboard-content {
        grid-template-columns: 1fr;
    }
    
    .dashboard-left,
    .dashboard-right {
        width: 100%;
    }
}

@media (max-width: 992px) {
    /* .header-content {
        flex-direction: column;
        gap: 20px;
    } */
    
    .dealer-info {
        align-items: flex-start;
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .performance-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dashboard-header {
        padding: 40px 0 20px;
    }
    
    .header-content h1 {
        font-size: 28px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .actions-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-card {
        padding: 25px 20px;
    }
    
    .leads-table table {
        font-size: 13px;
    }
    
    .leads-table th,
    .leads-table td {
        padding: 10px;
    }
    
    .dealer-modal .modal-content {
        padding: 25px 20px;
    }
}

@media (max-width: 576px) {
    .commission-summary {
        grid-template-columns: 1fr;
    }
    
    .instruction-item {
        flex-direction: column;
        text-align: center;
    }
    
    .instruction-item i {
        margin: 0 auto;
    }
    
    .download-btn {
        width: 100%;
        justify-content: center;
    }
}


/* Button Styles */
.cti-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    white-space: nowrap;
}

.cti-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.cti-btn.secondary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}

.cti-btn.secondary:hover {
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
}

.cti-btn.outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.cti-btn.outline:hover {
    background: var(--primary);
    color: white;
}

/* Card Styles */
.cti-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.cti-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}


