* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-color: #FF6B35;
            --secondary-color: #004E89;
            --accent-color: #1A936F;
            --dark-color: #2C3E50;
            --light-color: #F7F9FC;
            --white: #FFFFFF;
            --text-color: #333333;
            --shadow: 0 5px 15px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            overflow-x: hidden;
        }
        
        /* Header & Navigation */
        .header {
            background: var(--white);
            box-shadow: var(--shadow);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: var(--transition);
        }
        
        .top-bar {
            background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
            color: var(--white);
            padding: 10px 0;
            font-size: 14px;
        }
        
        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .top-bar-left, .top-bar-right {
            display: flex;
            gap: 20px;
            align-items: center;
        }
        
        .top-bar a {
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .top-bar a:hover {
            color: var(--primary-color);
        }
        
        .navbar {
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            min-height: 80px;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--secondary-color);
            text-decoration: none;
        }
        
        .logo span {
            color: var(--primary-color);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }
        
        .nav-menu li {
            position: relative;
        }
        
        .nav-menu a {
            color: var(--dark-color);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            padding: 10px 7px;
            display: block;
        }
        
        .nav-menu a:hover {
            color: var(--primary-color);
        }
        
        /* Dropdown Menu */
        .dropdown {
            position: relative;
        }
        
        .dropdown-toggle::after {
            content: '\f107';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            margin-left: 5px;
            font-size: 12px;
        }
        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--white);
            min-width: 250px;
            box-shadow: var(--shadow);
            border-radius: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            list-style: none;
            padding: 10px 0;
            margin-top: 10px;
        }
        
        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-menu li a {
            padding: 12px 20px;
            display: block;
            color: var(--text-color);
        }
        
        .dropdown-menu li a:hover {
            background: var(--light-color);
            color: var(--primary-color);
            padding-left: 25px;
        }
        
        .cta-button {
            background: linear-gradient(135deg, var(--primary-color), #FF8C42);
            color: var(--white);
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        }
        
        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }
        
        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--dark-color);
            border-radius: 3px;
            transition: var(--transition);
        }
        
        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }
        
        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(0, 78, 137, 0.95), rgba(26, 147, 111, 0.95)), url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1600') center/cover;
            padding: 180px 20px 100px;
            color: var(--white);
            text-align: center;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.2;
            animation: fadeInUp 0.8s ease;
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1.2s ease;
        }
        
        .btn-primary, .btn-secondary {
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            display: inline-block;
        }
        
        .btn-primary {
            background: var(--primary-color);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
        }
        
        .btn-secondary {
            background: var(--white);
            color: var(--secondary-color);
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
        }
        
        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
        }


        /* Main About Section */
        
         .main-about h2{
            text-align: center;
            margin-top: 10px;
            margin-bottom: 10px;
            color: var(--secondary-color);

         }

         .main-about p{
            padding-left: 20px;

         }
        /* Features Section */
        .features {
            padding: 80px 20px;
            background: var(--light-color);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 38px;
            color: var(--secondary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 2px;
        }
        
        .section-title p {
            color: var(--text-color);
            font-size: 18px;
            margin-top: 20px;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, var(--primary-color), #FF8C42);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 35px;
            color: var(--white);
        }
        
        .feature-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }
        
        .feature-card p {
            color: #666;
            line-height: 1.8;
        }
        
        /* Services Section */
        .services {
            padding: 80px 20px;
            background: var(--white);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(319px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }
        
        .service-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: fill;
            transition: var(--transition);
        }
        
        .service-card:hover .service-image img {
            transform: scale(1.1);
        }
        
        .service-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--primary-color);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
        }
        
        .service-content {
            padding: 30px;
        }
        
        .service-content h3 {
            font-size: 24px;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        .service-content p {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .service-features {
            list-style: none;
            margin-bottom: 25px;
        }
        
        .service-features li {
            padding: 8px 0;
            color: #555;
            position: relative;
            padding-left: 25px;
        }
        
        .service-features li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--accent-color);
        }
        
        .service-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
        }
        
        .service-link:hover {
            gap: 12px;
        }
        
        /* About Section */
        .about {
            padding: 80px 20px;
            background: var(--light-color);
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .about-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
        }
        
        .about-image img {
            width: 332px;
            height: 498px;
            object-fit: cover;
        }
        
        .about-badge {
            position: absolute;
            bottom: 30px;
            right: 30px;
            background: var(--white);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            box-shadow: var(--shadow);
        }
        
        .about-badge h4 {
            font-size: 36px;
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        .about-badge p {
            color: var(--text-color);
            font-weight: 600;
        }
        
        .about-text h2 {
            font-size: 36px;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        .about-text p {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .about-highlights {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin: 30px 0;
        }
        
        .highlight-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .highlight-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color), #FF8C42);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 24px;
            flex-shrink: 0;
        }
        
        .highlight-item h4 {
            color: var(--secondary-color);
            font-size: 18px;
        }

         
        
        /* Testimonials Section */
        .testimonials {
            padding: 80px 20px;
            background: var(--white);
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial-card {
            background: var(--light-color);
            padding: 35px;
            border-radius: 15px;
            position: relative;
            transition: var(--transition);
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        
        .quote-icon {
            font-size: 40px;
            color: var(--primary-color);
            opacity: 0.3;
            margin-bottom: 20px;
        }
        
        .testimonial-text {
            color: #555;
            line-height: 1.8;
            margin-bottom: 25px;
            font-style: italic;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
        }
        
        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            color: var(--secondary-color);
            font-size: 18px;
            margin-bottom: 5px;
        }
        
        .author-info p {
            color: #666;
            font-size: 14px;
        }
        
        .rating {
            color: #FFA500;
            margin-top: 5px;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
            color: var(--white);
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 38px;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 20px;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .cta-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .cta-form input {
            flex: 1;
            min-width: 250px;
            padding: 15px 25px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
        }
        
        .cta-form button {
            padding: 15px 40px;
            background: var(--primary-color);
            color: var(--white);
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .cta-form button:hover {
            background: #FF8C42;
            transform: translateY(-2px);
        }
        
        /* Footer */
        .footer {
            background: var(--dark-color);
            color: var(--white);
            padding: 60px 20px 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto 40px;
        }
        
        .footer-section h3 {
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .footer-section p {
            line-height: 1.8;
            color: #ccc;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #ccc;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .top-bar {
                display: none;
            }
            
            .menu-toggle {
                display: flex;
            }
            
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: var(--white);
                width: 100%;
                text-align: left;
                transition: 0.3s;
                box-shadow: var(--shadow);
                padding: 20px 0;
                gap: 0;
            }
            
            .nav-menu.active {
                position: fixed;
                left: 0;
                width: 100%;
                height: 100vh; /* full height */
                background: white;
                overflow-y: auto; /* allow scrolling inside */
                z-index: 999;
            }
                
            
            
            .nav-menu li {
                width: 100%;
                border-bottom: 1px solid var(--light-color);
            }
            
            .nav-menu li a {
                padding: 15px;
            }
            
            /* Mobile Dropdown */
            .dropdown-menu {
                position: static;
                opacity: 0;
                visibility: hidden;
                max-height: 0;
                overflow: hidden;
                transform: none;
                box-shadow: none;
                margin-top: 0;
                transition: max-height 0.3s ease, opacity 0.3s ease;
            }
            
            .dropdown.active .dropdown-menu {
                opacity: 1;
                visibility: visible;
                max-height: 500px;
            }
            
            .dropdown-toggle::after {
                float: right;
                margin-right: 20px;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .about-highlights {
                grid-template-columns: 1fr;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .cta-form {
                flex-direction: column;
            }
            
            .cta-form input {
                min-width: 100%;
            }
        }










        /* Page Hero/Banner */
        .page-hero {
            background: linear-gradient(135deg, rgba(0, 78, 137, 0.95), rgba(26, 147, 111, 0.95)), url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1600') center/cover;
            padding: 150px 20px 80px;
            color: var(--white);
            text-align: center;
        }
        
        .page-hero h1 {
            font-size: 48px;
            margin-bottom: 15px;
            font-weight: 700;
            animation: fadeInUp 0.8s ease;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            font-size: 16px;
            animation: fadeInUp 1s ease;
        }
        
        .breadcrumb a {
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .breadcrumb a:hover {
            color: var(--primary-color);
        }
        
        .breadcrumb i {
            font-size: 12px;
        }
        
        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Section Title */
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 38px;
            color: var(--secondary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 2px;
        }
        
        .section-title p {
            color: var(--text-color);
            font-size: 18px;
            margin-top: 20px;
        }
        
        /* Company Overview Section */
        .company-overview {
            padding: 80px 20px;
            background: var(--white);
        }
        
        .overview-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .overview-image {
            position: relative;
        }
        
        .overview-image img {
            width: 100%;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        
        .experience-badge {
            position: absolute;
            bottom: 30px;
            left: 30px;
            background: var(--white);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .experience-badge h3 {
            font-size: 48px;
            color: var(--primary-color);
            margin-bottom: 5px;
            font-weight: 700;
        }
        
        .experience-badge p {
            color: var(--secondary-color);
            font-weight: 600;
            font-size: 16px;
        }
        
        .overview-text h2 {
            font-size: 36px;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        .overview-text p {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.8;
            font-size: 16px;
        }
        
        .overview-text .highlight {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        /* Stats Section */
        .stats-section {
            padding: 60px 20px;
            background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
            color: var(--white);
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        
        .stat-card {
            text-align: center;
        }
        
        .stat-icon {
            font-size: 50px;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .stat-number {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 10px;
            display: block;
        }
        
        .stat-label {
            font-size: 18px;
            opacity: 0.9;
        }
        
        /* Mission & Vision Section */
        .mission-vision {
            padding: 80px 20px;
            background: var(--light-color);
        }
        
        .mission-vision-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        
        .mission-box, .vision-box {
            background: var(--white);
            padding: 50px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }
        
        .mission-box::before, .vision-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--primary-color);
        }
        
        .mission-box h3, .vision-box h3 {
            font-size: 28px;
            color: var(--secondary-color);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .mission-box h3 i, .vision-box h3 i {
            font-size: 40px;
            color: var(--primary-color);
        }
        
        .mission-box p, .vision-box p {
            color: #666;
            line-height: 1.8;
            font-size: 16px;
        }
        
        /* Core Values Section */
        .core-values {
            padding: 80px 20px;
            background: var(--white);
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .value-card {
            background: var(--light-color);
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            transition: var(--transition);
            border: 2px solid transparent;
        }
        
        .value-card:hover {
            border-color: var(--primary-color);
            transform: translateY(-10px);
            box-shadow: var(--shadow);
        }
        
        .value-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, var(--primary-color), #FF8C42);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 35px;
            color: var(--white);
        }
        
        .value-card h3 {
            font-size: 22px;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        .value-card p {
            color: #666;
            line-height: 1.8;
        }
        
        /* Why Choose Us Section */
        .why-choose {
            padding: 80px 20px;
            background: var(--light-color);
        }
        
        .why-choose-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .why-choose-list {
            list-style: none;
        }
        
        .why-choose-item {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            padding: 25px;
            background: var(--white);
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .why-choose-item:hover {
            transform: translateX(10px);
        }
        
        .why-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), #FF8C42);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: var(--white);
            flex-shrink: 0;
        }
        
        .why-content h3 {
            font-size: 20px;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }
        
        .why-content p {
            color: #666;
            line-height: 1.7;
            font-size: 15px;
        }
        
        .why-choose-image img {
            width: 100%;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        
        /* Team Section */
        .team-section {
            padding: 80px 20px;
            background: var(--white);
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .team-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
        }
        
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }
        
        .team-image {
            width: 100%;
            height: 300px;
            overflow: hidden;
            position: relative;
        }
        
        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .team-card:hover .team-image img {
            transform: scale(1.1);
        }
        
        .team-social {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            opacity: 0;
            transition: var(--transition);
        }
        
        .team-card:hover .team-social {
            opacity: 1;
        }
        
        .team-social a {
            width: 40px;
            height: 40px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary-color);
            transition: var(--transition);
        }
        
        .team-social a:hover {
            background: var(--primary-color);
            color: var(--white);
        }
        
        .team-info {
            padding: 25px;
        }
        
        .team-info h3 {
            font-size: 22px;
            color: var(--secondary-color);
            margin-bottom: 8px;
        }
        
        .team-info p {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .team-info span {
            color: #666;
            font-size: 14px;
            display: block;
        }
        
        /* Certifications Section */
        .certifications {
            padding: 80px 20px;
            background: var(--light-color);
        }
        
        .cert-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .cert-card {
            background: var(--white);
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .cert-card:hover {
            transform: translateY(-5px);
        }
        
        .cert-icon {
            font-size: 60px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .cert-card h3 {
            font-size: 20px;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }
        
        .cert-card p {
            color: #666;
            font-size: 14px;
        }
        
        /* Coverage Area Section */
        .coverage-area {
            padding: 80px 20px;
            background: var(--white);
        }
        
        .coverage-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }
        
        .coverage-item {
            background: var(--light-color);
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            transition: var(--transition);
            border: 2px solid transparent;
        }
        
        .coverage-item:hover {
            border-color: var(--primary-color);
            background: var(--white);
            box-shadow: var(--shadow);
        }
        
        .coverage-item i {
            font-size: 30px;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .coverage-item h4 {
            color: var(--secondary-color);
            font-size: 18px;
        }
        
        /* Timeline Section */
        .timeline-section {
            padding: 80px 20px;
            background: var(--light-color);
        }
        
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: var(--primary-color);
        }
        
        .timeline-item {
            margin-bottom: 50px;
            position: relative;
        }
        
        .timeline-content {
            width: 45%;
            background: var(--white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            position: relative;
        }
        
        .timeline-item:nth-child(odd) .timeline-content {
            margin-left: auto;
        }
        
        .timeline-date {
            display: inline-block;
            background: var(--primary-color);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .timeline-content h3 {
            color: var(--secondary-color);
            margin-bottom: 10px;
            font-size: 20px;
        }
        
        .timeline-content p {
            color: #666;
            line-height: 1.7;
        }
        
        .timeline-icon {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 50px;
            background: var(--white);
            border: 4px solid var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 20px;
            z-index: 1;
        }

         /* CTA Section */
        
        
        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn-primary, .btn-secondary {
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .btn-primary {
            background: var(--primary-color);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
        }
        
        .btn-secondary {
            background: var(--white);
            color: var(--secondary-color);
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
        }
        
        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
        }

         /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
       /* Mobile Responsive */
         @media (max-width: 768px) {
            /* .top-bar {
                display: none;
            }
            
            .menu-toggle {
                display: flex;
            }
            
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: var(--white);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: var(--shadow);
                padding: 20px 0;
                gap: 0;
                max-height: calc(100vh - 70px);
                overflow-y: auto;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                width: 100%;
                border-bottom: 1px solid var(--light-color);
            }
            
            .nav-menu li a {
                padding: 15px;
            }
            
            .dropdown-menu {
                position: static;
                opacity: 0;
                visibility: hidden;
                max-height: 0;
                overflow: hidden;
                transform: none;
                box-shadow: none;
                margin-top: 0;
                transition: max-height 0.3s ease, opacity 0.3s ease;
            }
            
            .dropdown.active .dropdown-menu {
                opacity: 1;
                visibility: visible;
                max-height: 500px;
            }
            
            .dropdown-toggle::after {
                float: right;
                margin-right: 20px;
            } */
            
            .page-hero h1 {
                font-size: 32px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .overview-content,
            .mission-vision-grid,
            .why-choose-content {
                grid-template-columns: 1fr;
            }
            
            .experience-badge {
                bottom: 20px;
                left: 20px;
                padding: 20px;
            }
            
            .experience-badge h3 {
                font-size: 36px;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .stat-number {
                font-size: 36px;
            }
            
            .timeline::before {
                left: 30px;
            }
            
            .timeline-content {
                width: calc(100% - 80px);
                margin-left: 80px !important;
            }
            
            .timeline-icon {
                left: 30px;
            }
            
            .cta-buttons {
                flex-direction: column;
            }
            
            .btn-primary, .btn-secondary {
                width: 100%;
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }






         /* Quick Contact Section */
        .quick-contact {
            padding: 80px 20px;
            background: var(--light-color);
            margin-top: -40px;
            position: relative;
        }
        
        .quick-contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .quick-contact-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 2px solid transparent;
        }
        
        .quick-contact-card:hover {
            border-color: var(--primary-color);
            transform: translateY(-10px);
        }
        
        .contact-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, var(--primary-color), #FF8C42);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 35px;
            color: var(--white);
        }
        
        .quick-contact-card h3 {
            font-size: 22px;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        .quick-contact-card p {
            color: #666;
            margin-bottom: 10px;
            line-height: 1.8;
        }
        
        .quick-contact-card a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            display: inline-block;
            margin-top: 10px;
            transition: var(--transition);
        }
        
        .quick-contact-card a:hover {
            color: var(--secondary-color);
        }
        
        /* Contact Form Section */
        .contact-form-section {
            padding: 80px 20px;
            background: var(--white);
        }
        
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }
        
        .contact-form {
            background: var(--light-color);
            padding: 50px;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--secondary-color);
            font-weight: 600;
            font-size: 15px;
        }
        
        .form-group label span {
            color: var(--primary-color);
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            font-size: 15px;
            transition: var(--transition);
            background: var(--white);
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .submit-btn {
            background: linear-gradient(135deg, var(--primary-color), #FF8C42);
            color: var(--white);
            padding: 15px 50px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        }
        
        .submit-btn i {
            font-size: 18px;
        }
        
        /* Contact Info Sidebar */
        .contact-info-sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .info-box {
            background: var(--light-color);
            padding: 30px;
            border-radius: 15px;
            border-left: 5px solid var(--primary-color);
        }
        
        .info-box h3 {
            font-size: 24px;
            color: var(--secondary-color);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .info-box h3 i {
            color: var(--primary-color);
        }
        
        .info-item {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            align-items: start;
        }
        
        .info-item:last-child {
            margin-bottom: 0;
        }
        
        .info-item i {
            width: 45px;
            height: 45px;
            background: var(--white);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--primary-color);
            flex-shrink: 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .info-item-content h4 {
            color: var(--secondary-color);
            margin-bottom: 5px;
            font-size: 16px;
        }
        
        .info-item-content p {
            color: #666;
            line-height: 1.6;
        }
        
        .info-item-content a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
        }
        
        .info-item-content a:hover {
            color: var(--secondary-color);
        }
        
        /* Office Locations Section */
        .office-locations {
            padding: 80px 20px;
            background: var(--light-color);
        }
        
        .locations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .location-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .location-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .location-header {
            background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
            color: var(--white);
            padding: 25px;
            text-align: center;
        }
        
        .location-header h3 {
            font-size: 24px;
            margin-bottom: 5px;
        }
        
        .location-header p {
            opacity: 0.9;
        }
        
        .location-body {
            padding: 30px;
        }
        
        .location-detail {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            align-items: start;
        }
        
        .location-detail:last-child {
            margin-bottom: 0;
        }
        
        .location-detail i {
            color: var(--primary-color);
            font-size: 18px;
            margin-top: 3px;
            flex-shrink: 0;
        }
        
        .location-detail p {
            color: #666;
            line-height: 1.8;
        }
        
        .location-detail a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
        }
        
        .location-detail a:hover {
            color: var(--secondary-color);
        }
        
        /* Map Section */
        .map-section {
            padding: 80px 20px;
            background: var(--white);
        }
        
        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 500px;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 20px;
            background: var(--light-color);
        }
        
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--white);
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--secondary-color);
            font-size: 18px;
            transition: var(--transition);
            user-select: none;
        }
        
        .faq-question:hover {
            color: var(--primary-color);
        }
        
        .faq-question i {
            font-size: 20px;
            color: var(--primary-color);
            transition: var(--transition);
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-answer-content {
            padding: 0 30px 25px;
            color: #666;
            line-height: 1.8;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
        }
        
        /* Working Hours Section */
        .working-hours {
            padding: 80px 20px;
            background: var(--white);
        }
        
        .hours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hours-card {
            background: var(--light-color);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            border: 2px solid transparent;
            transition: var(--transition);
        }
        
        .hours-card:hover {
            border-color: var(--primary-color);
            box-shadow: var(--shadow);
        }
        
        .hours-card h3 {
            color: var(--secondary-color);
            margin-bottom: 15px;
            font-size: 20px;
        }
        
        .hours-card p {
            color: #666;
            font-size: 16px;
            margin-bottom: 10px;
        }
        
        .hours-card .highlight {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 18px;
        }
        
        /* Social Media Section */
        .social-media {
            padding: 80px 20px;
            background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
            color: var(--white);
            text-align: center;
        }
        
        .social-media h2 {
            font-size: 38px;
            margin-bottom: 15px;
        }
        
        .social-media p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.9;
        }
        
        .social-links-large {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .social-link {
            width: 70px;
            height: 70px;
            background: var(--white);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary-color);
            font-size: 30px;
            transition: var(--transition);
            text-decoration: none;
        }
        
        .social-link:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: translateY(-10px);
        }
        
        .social-link.facebook:hover { background: #1877F2; }
        .social-link.twitter:hover { background: #1DA1F2; }
        .social-link.instagram:hover { background: #E4405F; }
        .social-link.linkedin:hover { background: #0A66C2; }
        .social-link.youtube:hover { background: #FF0000; }
        .social-link.whatsapp:hover { background: #25D366; }
        
       
        
        /* Success Message */
        .success-message {
            display: none;
            background: #4CAF50;
            color: white;
            padding: 15px 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            align-items: center;
            gap: 10px;
        }
        
        .success-message.show {
            display: flex;
        }
        
        .success-message i {
            font-size: 20px;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            
            
            .contact-content {
                grid-template-columns: 1fr;
            }
            
            .contact-form {
                padding: 30px 20px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .submit-btn {
                width: 100%;
                justify-content: center;
            }
            
            .map-container {
                height: 350px;
            }
            
            .social-links-large {
                gap: 15px;
            }
            
            .social-link {
                width: 60px;
                height: 60px;
                font-size: 25px;
            }
        }
        
        @media (max-width: 480px) {
            .quick-contact-grid {
                grid-template-columns: 1fr;
            }
            
            .page-hero h1 {
                font-size: 26px;
            }
            
            .section-title h2 {
                font-size: 24px;
            }
            
            .faq-question {
                padding: 20px 15px;
                font-size: 16px;
            }
            
            .faq-answer-content {
                padding: 0 15px 20px;
            }
        }


        .price-list-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e3e9f0 100%);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Table Wrapper */
.table-wrapper {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

.sub-heading {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

/* Main Price Table */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.price-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.price-table th {
    padding: 18px 15px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.3s ease;
}

.price-table tbody tr:hover {
    background: #f8f9fa;
}

.price-table tbody tr.highlight {
    background: #fff9e6;
}

.price-table tbody tr.highlight:hover {
    background: #fff3cd;
}

.price-table td {
    padding: 18px 15px;
    text-align: center;
    color: #555;
    border: 1px solid #e0e0e0;
}

.price-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #333;
    background: #f8f9fa;
}

/* Additional Table */
.additional-table {
    width: 100%;
    border-collapse: collapse;
}

.additional-table thead {
    background: #4CAF50;
    color: white;
}

.additional-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.additional-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.3s ease;
}

.additional-table tbody tr:hover {
    background: #f5f5f5;
}

.additional-table td {
    padding: 15px;
    color: #555;
}

.additional-table td:nth-child(2) {
    font-weight: 600;
    color: #4CAF50;
}

/* Info Boxes */
.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.info-box {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #4CAF50;
}

.info-box.excluded {
    border-left-color: #f44336;
}

.info-box.note {
    border-left-color: #ff9800;
}

.info-box h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-box ul li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.info-box ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-size: 1.5rem;
    line-height: 1;
}

.info-box.excluded ul li:before {
    color: #f44336;
}

.info-box.note ul li:before {
    color: #ff9800;
}

/* CTA Section */
/* .cta-section {
    text-align: center;
    margin-top: 40px;
}

.quote-btn,
.call-btn {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin: 10px;
    transition: all 0.3s ease;
}

.quote-btn {
    background: #4CAF50;
    color: white;
}

.quote-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.call-btn {
    background: #2196F3;
    color: white;
}

.call-btn:hover {
    background: #0b7dda;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
} */

/* Mobile Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .table-wrapper {
        padding: 15px;
        overflow-x: scroll;
    }

    .price-table,
    .additional-table {
        font-size: 0.85rem;
    }

    .price-table th,
    .price-table td,
    .additional-table th,
    .additional-table td {
        padding: 10px 8px;
        white-space: nowrap;
    }

    .info-boxes {
        grid-template-columns: 1fr;
    }

    .quote-btn,
    .call-btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .price-list-section {
        padding: 40px 10px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .price-table,
    .additional-table {
        font-size: 0.75rem;
    }

    .price-table th,
    .price-table td {
        padding: 8px 5px;
    }

    .main-about h2{
        text-align: center;
        margin-top: 10px;
        margin-bottom: 10px;
        color: var(--secondary-color);
        padding: 10px;
    }
    .main-about P{
        margin-top: 10px;
        margin-bottom: 10px;
        padding: 10px;
    }
}








        /* Testimonials Section */
        .testimonials-section {
            padding: 80px 20px;
            background: var(--light-color);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: var(--white);
            border-radius: 15px;
            padding: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .testimonial-rating {
            position: absolute;
            top: 20px;
            right: 20px;
            color: var(--primary-color);
            font-size: 18px;
        }

        .testimonial-content {
            font-style: italic;
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 16px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--primary-color);
        }

        .author-info h4 {
            color: var(--secondary-color);
            margin-bottom: 3px;
            font-size: 16px;
        }

        .author-info p {
            color: #666;
            font-size: 14px;
            margin-bottom: 5px;
        }

        .author-info .service-type {
            display: inline-block;
            background: var(--light-color);
            color: var(--primary-color);
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
        }

        .testimonial-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #666;
            font-size: 14px;
            margin-top: 10px;
        }

        .testimonial-meta i {
            color: var(--primary-color);
            margin-right: 5px;
        }

        /* Testimonial Categories */
        .testimonial-categories {
            padding: 80px 20px;
            background: var(--white);
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 800px;
            margin: 0 auto;
        }

        .category-card {
            background: var(--light-color);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            border: 2px solid transparent;
            transition: var(--transition);
            cursor: pointer;
        }

        .category-card:hover {
            border-color: var(--primary-color);
            box-shadow: var(--shadow);
        }

        .category-card i {
            font-size: 40px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .category-card h3 {
            color: var(--secondary-color);
            margin-bottom: 10px;
            font-size: 20px;
        }

        .category-card p {
            color: #666;
            font-size: 14px;
        }

        /* Video Testimonial Section */
        .video-testimonial {
            padding: 80px 20px;
            background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
            color: var(--white);
            text-align: center;
        }

        .video-container {
            max-width: 800px;
            margin: 0 auto 40px;
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Customer Stories Section */
        .customer-stories {
            padding: 80px 20px;
            background: var(--light-color);
        }

        .stories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .story-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .story-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .story-image {
            height: 200px;
            overflow: hidden;
        }

        .story-image img {
            width: 100%;
            height: 100%;
            object-fit: fill;
            transition: var(--transition);
        }

        .story-card:hover .story-image img {
            transform: scale(1.05);
        }

        .story-content {
            padding: 25px;
        }

        .story-content h3 {
            color: var(--secondary-color);
            margin-bottom: 10px;
            font-size: 20px;
        }

        .story-content p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .story-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            color: #666;
            font-size: 14px;
        }

        .story-meta i {
            color: var(--primary-color);
        }

        /* Trust Badges Section */
        .trust-badges {
            padding: 80px 20px;
            background: var(--white);
        }

        .badges-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            max-width: 900px;
            margin: 0 auto;
        }

        .badge-card {
            background: var(--light-color);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            border: 2px solid transparent;
            transition: var(--transition);
        }

        .badge-card:hover {
            border-color: var(--primary-color);
            box-shadow: var(--shadow);
        }

        .badge-card i {
            font-size: 40px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .badge-card h3 {
            color: var(--secondary-color);
            margin-bottom: 10px;
            font-size: 20px;
        }

        .badge-card p {
            color: #666;
            font-size: 14px;
        }

        /* Call to Action Section */
        .cta-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
            color: var(--white);
            text-align: center;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-section h2 {
            font-size: 38px;
            margin-bottom: 15px;
        }

        .cta-section p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cta-button {
            background: var(--white);
            color: var(--secondary-color);
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
        }

        .cta-button i {
            font-size: 18px;
        }

        

        /* Mobile Responsive */
        @media (max-width: 768px) {
            

            .testimonials-grid, .stories-grid, .categories-grid, .badges-container {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 15px;
            }

            .cta-button {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .page-hero h1 {
                font-size: 26px;
            }

            .section-title h2 {
                font-size: 24px;
            }

            .testimonial-card, .category-card, .badge-card {
                padding: 25px;
            }

            .video-container {
                max-width: 100%;
            }
        }







        /* Stats Section */
    .stats-section {
        background: var(--light-color);
        padding: 60px 20px;
        margin-top: -50px;
        position: relative;
        z-index: 1;
    }
    
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    
    .stat-card {
        background: var(--white);
        padding: 40px 20px;
        border-radius: 15px;
        text-align: center;
        box-shadow: var(--shadow);
        transition: var(--transition);
    }
    
    .stat-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }
    
    .stat-number {
        font-size: 42px;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 10px;
    }
    
    .stat-label {
        color: var(--text-color);
        font-size: 16px;
        font-weight: 500;
    }
    
    /* Service Overview Section */
    .service-overview {
        padding: 80px 20px;
        background: var(--white);
    }
    
    .overview-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }
    
    .overview-image {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--shadow);
    }
    
    .overview-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }
    
    .overview-image:hover img {
        transform: scale(1.05);
    }
    
    .overview-text h2 {
        font-size: 38px;
        color: var(--secondary-color);
        margin-bottom: 20px;
    }
    
    .overview-text p {
        color: #666;
        line-height: 1.8;
        margin-bottom: 20px;
        font-size: 16px;
    }
    
    .feature-list {
        list-style: none;
        margin: 30px 0;
    }
    
    .feature-list li {
        padding: 12px 0;
        display: flex;
        align-items: center;
        gap: 15px;
        color: var(--text-color);
        font-size: 16px;
    }
    
    .feature-list li i {
        color: var(--primary-color);
        font-size: 20px;
        flex-shrink: 0;
    }
    
    /* Process Section */
    .process-section {
        padding: 80px 20px;
        background: var(--light-color);
    }
    
    .process-steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }
    
    .step-card {
        background: var(--white);
        padding: 40px 30px;
        border-radius: 15px;
        text-align: center;
        position: relative;
        box-shadow: var(--shadow);
        transition: var(--transition);
    }
    
    .step-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--primary-color), #FF8C42);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: 700;
        margin: 0 auto 25px;
    }
    
    .step-card h3 {
        color: var(--secondary-color);
        margin-bottom: 15px;
        font-size: 22px;
    }
    
    .step-card p {
        color: #666;
        line-height: 1.8;
    }
    
    /* Service Types Section */
    .service-types {
        padding: 80px 20px;
        background: var(--white);
    }
    
    .types-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .type-card {
        background: var(--light-color);
        border-radius: 15px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
    }
    
    .type-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }
    
    .type-icon {
        background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
        padding: 40px;
        text-align: center;
    }
    
    .type-icon i {
        font-size: 50px;
        color: var(--white);
    }
    
    .type-content {
        padding: 30px;
    }
    
    .type-content h3 {
        color: var(--secondary-color);
        margin-bottom: 15px;
        font-size: 22px;
    }
    
    .type-content p {
        color: #666;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    
    .type-content ul {
        list-style: none;
        margin-bottom: 20px;
    }
    
    .type-content ul li {
        padding: 8px 0;
        color: #666;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .type-content ul li i {
        color: var(--primary-color);
        font-size: 14px;
    }
    
    .type-content a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: var(--transition);
    }
    
    .type-content a:hover {
        gap: 12px;
    }
    
    /* Why Choose Us Section */
    .why-choose {
        padding: 80px 20px;
        background: var(--light-color);
    }
    
    .choose-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    
    .choose-card {
        background: var(--white);
        padding: 40px 30px;
        border-radius: 15px;
        text-align: center;
        box-shadow: var(--shadow);
        transition: var(--transition);
        border-top: 4px solid var(--primary-color);
    }
    
    .choose-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }
    
    .choose-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--primary-color), #FF8C42);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        font-size: 35px;
        color: var(--white);
    }
    
    .choose-card h3 {
        color: var(--secondary-color);
        margin-bottom: 15px;
        font-size: 22px;
    }
    
    .choose-card p {
        color: #666;
        line-height: 1.8;
    }
    
    /* Pricing Section */
    .pricing-section {
        padding: 80px 20px;
        background: var(--white);
    }
    
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .pricing-card {
        background: var(--light-color);
        border-radius: 20px;
        padding: 40px 30px;
        text-align: center;
        box-shadow: var(--shadow);
        transition: var(--transition);
        border: 3px solid transparent;
    }
    
    .pricing-card:hover {
        border-color: var(--primary-color);
        transform: translateY(-10px);
    }
    
    .pricing-card.featured {
        background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
        color: var(--white);
        transform: scale(1.05);
    }
    
    .pricing-card.featured h3,
    .pricing-card.featured .price {
        color: var(--white);
    }
    
    .pricing-card.featured p,
    .pricing-card.featured ul li {
        color: rgba(255, 255, 255, 0.9);
    }
    
    .pricing-badge {
        background: var(--primary-color);
        color: var(--white);
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        display: inline-block;
        margin-bottom: 20px;
    }
    
    .pricing-card h3 {
        font-size: 26px;
        color: var(--secondary-color);
        margin-bottom: 15px;
    }
    
    .price {
        font-size: 42px;
        font-weight: 700;
        color: var(--primary-color);
        margin: 20px 0;
    }
    
    .price span {
        font-size: 18px;
        font-weight: 400;
    }
    
    .pricing-card p {
        color: #666;
        margin-bottom: 30px;
    }
    
    .pricing-features {
        list-style: none;
        margin-bottom: 30px;
        text-align: left;
    }
    
    .pricing-features li {
        padding: 12px 0;
        color: #666;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .pricing-features li i {
        color: var(--primary-color);
        font-size: 18px;
    }
    
    .pricing-card.featured .pricing-features li i {
        color: var(--white);
    }
    
    /* Service Areas Section */
    .service-areas {
        padding: 80px 20px;
        background: var(--light-color);
    }
    
    .areas-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .area-card {
        background: var(--white);
        padding: 25px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: var(--shadow);
        transition: var(--transition);
    }
    
    .area-card:hover {
        transform: translateX(10px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }
    
    .area-card i {
        font-size: 24px;
        color: var(--primary-color);
    }
    
    .area-card h4 {
        color: var(--secondary-color);
        font-size: 18px;
    }
    
    /* Testimonials Section */
    .testimonials {
        padding: 80px 20px;
        background: var(--white);
    }
    
    
    
    
    
    
    
    .quote-icon {
        font-size: 40px;
        color: var(--primary-color);
        opacity: 0.3;
        margin-bottom: 20px;
    }
    
    .testimonial-text {
        color: #666;
        line-height: 1.8;
        margin-bottom: 25px;
        font-style: italic;
    }
    
    
    .author-avatar {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--primary-color), #FF8C42);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 24px;
        font-weight: 600;
    }
    
    .author-info h4 {
        color: var(--secondary-color);
        font-size: 18px;
        margin-bottom: 5px;
    }
    
    .author-info p {
        color: #666;
        font-size: 14px;
    }
    
    .rating {
        color: #FFD700;
        margin-top: 5px;
    }
    
    
    /* Quote Form Section */
    .quote-form-section {
        padding: 80px 20px;
        background: var(--white);
    }
    
    .quote-form-container {
        max-width: 800px;
        margin: 0 auto;
        background: var(--light-color);
        padding: 50px;
        border-radius: 20px;
        box-shadow: var(--shadow);
    }
    
    
    
    
    /* Mobile Responsive */
    @media (max-width: 768px) {
        
        
        .overview-content {
            grid-template-columns: 1fr;
        }
        
        .overview-image {
            order: -1;
        }
        
        .form-row {
            grid-template-columns: 1fr;
        }
        
        .submit-btn {
            width: 100%;
            justify-content: center;
        }
        
        .quote-form-container {
            padding: 30px 20px;
        }
        
        .hero-buttons,
        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }
        
        .btn-primary,
        .btn-secondary {
            width: 100%;
            max-width: 300px;
            justify-content: center;
        }
        
        .cta-content h2 {
            font-size: 32px;
        }
        
        .cta-content p {
            font-size: 16px;
        }
    }
    
    @media (max-width: 480px) {
        .page-hero h1 {
            font-size: 26px;
        }
        
        .section-title h2 {
            font-size: 24px;
        }
        
        .overview-text h2 {
            font-size: 28px;
        }
        
        .stat-number {
            font-size: 32px;
        }
        
        .price {
            font-size: 36px;
        }
        
        .faq-question {
            padding: 20px 15px;
            font-size: 16px;
        }
        
        .faq-answer-content {
            padding: 0 15px 20px;
        }
    }





       /* Floating Buttons Container */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

/* Base Button Style */
.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    position: relative;
}

/* WhatsApp Button */
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Call Button */
.call-btn {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
}

.call-btn:hover {
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

/* Tooltip Style */
.tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Tooltip Arrow */
.tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid #333;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* Show Tooltip on Hover */
.float-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15),
                    0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    /* Hide tooltips on mobile (optional) */
    .tooltip {
        display: none;
    }
}

@media (max-width: 920px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    /* Hide tooltips on mobile (optional) */
    .tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    /* Hide tooltips on mobile (optional) */
    .tooltip {
        display: none;
    }
}


.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 ratio */
    overflow: hidden;
    border-radius: 8px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Changed from 50% to 100% */
    border: 0;
}

/* Mobile view adjustments */
@media (max-width: 600px) {
    .map-container {
        padding-bottom: 75%; /* Taller map for small screens */
    }
}