
        :root {
            --primary-cyan: #0891B2;
            --dark-blue: #0C4A6E;
            --primary-orange: #F97316;
            --light-blue: #F0F9FF;
            --white: #ffffff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-blue);
            line-height: 1.6;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 1rem 0;
            background-color: transparent !important;
            box-shadow: none;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-cyan) !important;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand i {
            margin-right: 10px;
            font-size: 1.8rem;
        }
        
        .navbar-nav .nav-link {
            color: var(--dark-blue) !important;
            margin: 0 15px;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-cyan) !important;
        }
        
        .btn-cta {
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange));
            color: var(--white);
            padding: 10px 25px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(8, 145, 178, 0.3);
            color: var(--white);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--light-blue), var(--white));
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content h1 {
            font-size:5rem;
            font-weight: bold;
            color: var(--dark-blue);
            margin-bottom: 20px;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            color: var(--dark-blue);
            margin-bottom: 30px;
        }
        
        .hero-image {
            position: relative;
        }
        
        .hero-image img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--dark-blue);
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-cyan), var(--primary-orange));
            border-radius: 2px;
        }
        
        /* About Section */
        .about-content {
            padding: 20px;
        }
        
        .about-content h3 {
            color: var(--primary-cyan);
            margin-bottom: 20px;
            font-weight: bold;
        }
        
        .about-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--primary-cyan), var(--dark-blue));
            color: var(--white);
            padding: 60px 0;
        }
        
        .counter-box {
            text-align: center;
            padding: 20px;
        }
        
        .counter-icon {
            font-size: 3rem;
            margin-bottom: 15px;
            color: var(--primary-orange);
        }
        
        .counter-number {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .counter-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        /* Vision & Mission */
        .vision-mission-card {
            background: var(--white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .vision-mission-card:hover {
            transform: translateY(-5px);
        }
        
        .vision-mission-card i {
            font-size: 2.5rem;
            color: var(--primary-cyan);
            margin-bottom: 20px;
        }
        
        .vision-mission-card h3 {
            color: var(--dark-blue);
            margin-bottom: 15px;
        }
        
        /* Process Steps */
        .process-step {
            text-align: center;
            padding: 30px 20px;
            background: var(--white);
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            position: relative;
            transition: all 0.3s ease;
        }
        
        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .process-number {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            background: var(--primary-orange);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .process-icon {
            font-size: 2.5rem;
            color: var(--primary-cyan);
            margin-bottom: 15px;
        }
        
        /* Feature Box */
        .feature-box {
            background: var(--white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-orange);
            margin-bottom: 20px;
        }
        
        /* Service Cards */
        .service-card {
            background: var(--light-blue);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .service-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-title {
            color: var(--dark-blue);
            font-weight: bold;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .service-desc {
            color: var(--dark-blue);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        /* Reviews */
        .review-card {
            background: var(--white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .review-stars {
            color: var(--primary-orange);
            margin-bottom: 15px;
        }
        
        .review-author {
            color: var(--primary-cyan);
            font-weight: 600;
            margin-top: 15px;
        }
        
        /* FAQ */
        .accordion-button {
            background: var(--light-blue);
            color: var(--dark-blue);
            font-weight: 600;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--primary-cyan);
            color: var(--white);
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 10px;
            border-radius: 10px !important;
            overflow: hidden;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-cyan), var(--dark-blue));
            color: var(--white);
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        /* Contact Section */
        .contact-info {
            background: var(--white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        
        .contact-info h4 {
            color: var(--primary-cyan);
            margin-bottom: 20px;
        }
        
        .contact-info div {
            margin-bottom: 15px;
            color: var(--dark-blue);
        }
        
        .contact-info i {
            color: var(--primary-orange);
            margin-right: 10px;
            width: 20px;
        }
        
        /* Footer */
        footer {
            background: var(--dark-blue);
            color: var(--white);
            padding: 50px 0 20px;
        }
        
        footer h5 {
            color: var(--primary-cyan);
            margin-bottom: 20px;
        }
        
        .footer-links a {
            color: var(--white);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary-orange);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 30px;
            padding-top: 20px;
            text-align: center;
        }
        
        .footer-bottom a {
            color: var(--white);
            text-decoration: none;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .footer-bottom a:hover {
            color: var(--primary-orange);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }
