
        :root {
            --light-blue: #a3d5ff;
            --mint-green: #98e2c6;
            --white: #ffffff;
            --dark-blue: #0066cc;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
        }
        
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--dark-blue) !important;
        }
        
        .navbar-nav .nav-link {
            color: #333 !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--dark-blue) !important;
        }
        
        .btn-cta {
            background-color: var(--dark-blue);
            color: white;
            border-radius: 50px;
            padding: 8px 20px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .btn-cta:hover {
            background-color: #0052a3;
            color: white;
            transform: translateY(-2px);
        }
        
        .hero-section {
            background: linear-gradient(135deg, var(--light-blue), var(--mint-green));
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content h1 {
            font-size:4rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--dark-blue);
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #333;
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-blue);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--mint-green);
        }
        
        .about-image {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .counter-box {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            background-color: var(--light-blue);
            margin-bottom: 30px;
            transition: transform 0.3s;
        }
        
        .counter-box:hover {
            transform: translateY(-10px);
        }
        
        .counter-box i {
            font-size: 2.5rem;
            color: var(--dark-blue);
            margin-bottom: 15px;
        }
        
        .counter-box h3 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-blue);
        }
        
        .vision-mission-box {
            background-color: var(--light-blue);
            padding: 40px;
            border-radius: 10px;
            margin-bottom: 30px;
            height: 100%;
        }
        
        .vision-mission-box h3 {
            color: var(--dark-blue);
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            transition: all 0.3s;
            height: 100%;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .feature-box i {
            font-size: 3rem;
            color: var(--dark-blue);
            margin-bottom: 20px;
        }
        
        .process-step {
            text-align: center;
            position: relative;
            padding: 0 15px;
        }
        
        .process-step:not(:last-child):after {
            content: '';
            position: absolute;
            top: 35px;
            right: -50%;
            width: 100%;
            height: 2px;
            background-color: var(--mint-green);
            z-index: -1;
        }
        
        .process-icon {
            width: 70px;
            height: 70px;
            background-color: var(--light-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
            color: var(--dark-blue);
        }
        
        .service-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 30px;
            transition: all 0.3s;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 25px;
        }
        
        .service-card-body h4 {
            font-weight: 700;
            color: var(--dark-blue);
            margin-bottom: 15px;
        }
        
        .testimonial-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            position: relative;
        }
        
        .testimonial-card:before {
            content: '\f10d';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 2rem;
            color: var(--mint-green);
            opacity: 0.3;
        }
        
        .testimonial-content {
            margin-bottom: 20px;
            font-style: italic;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .testimonial-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
        }
        
        .faq-item {
            background-color: white;
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        
        .faq-question {
            padding: 20px;
            font-weight: 600;
            color: var(--dark-blue);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question i {
            transition: transform 0.3s;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 500px;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .cta-section {
            background: linear-gradient(135deg, var(--light-blue), var(--mint-green));
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-blue);
            margin-bottom: 20px;
        }

        .nav-item{
            margin-left:25px !important;
        }
        
        .contact-section {
            padding: 80px 0;
        }
        
        .contact-info {
            margin-bottom: 30px;
        }
        
        .contact-info i {
            font-size: 1.5rem;
            color: var(--dark-blue);
            margin-right: 15px;
            width: 30px;
        }
        
        .contact-form {
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        footer {
            background-color: #1a1a1a;
            color: white;
            padding: 70px 0 30px;
        }
        
        .footer-widget h4 {
            color: var(--mint-green);
            margin-bottom: 25px;
            font-weight: 700;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-widget h4:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--mint-green);
        }
        
        .footer-widget ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-widget ul li {
            margin-bottom: 10px;
        }
        
        .footer-widget ul li a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-widget ul li a:hover {
            color: var(--mint-green);
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 5px 0 0 5px;
        }
        
        .newsletter-form button {
            background-color: var(--dark-blue);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .newsletter-form button:hover {
            background-color: #0052a3;
        }
        
        .copyright {
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid #333;
            text-align: center;
            color: #bbb;
        }
        
        .copyright a {
            color: var(--mint-green);
            text-decoration: none;
        }
        
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .process-step:not(:last-child):after {
                display: none;
            }
        }
