
        :root {
            --baby-blue: #A8DADC;
            --lavender: #E6E6FA;
            --white: #FFFFFF;
            --dark-blue: #1D3557;
            --light-gray: #F8F9FA;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--dark-blue) !important;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand i {
            margin-right: 10px;
            color: var(--baby-blue);
            font-size: 1.8rem;
        }
        
        .navbar-nav .nav-link {
            color: var(--dark-blue) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--baby-blue) !important;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--baby-blue);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
            left: 0;
        }

        .nav-item{
            margin-left:25px;
        }
        
        .btn-cta {
            background: linear-gradient(to right, var(--baby-blue), var(--lavender));
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            color: white;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(168, 218, 220, 0.9), rgba(230, 230, 250, 0.9)), url('https://images.pexels.com/photos/1571460/pexels-photo-1571460.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
            background-size: cover;
            background-position: center;
            padding: 150px 0;
            color: var(--dark-blue);
            text-align: center;
        }
        
        .hero h1 {
            font-size:5.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .btn-hero {
            background-color: var(--dark-blue);
            color: white;
            padding: 12px 30px;
            font-size: 1.1rem;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-hero:hover {
            background-color: var(--baby-blue);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            color: white;
        }
        
        /* About Section */
        .about {
            padding: 80px 0;
        }
        
        .about h2 {
            color: var(--dark-blue);
            font-weight: 700;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }
        
        .about h2::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            bottom: -10px;
            left: 25%;
            background: linear-gradient(to right, var(--baby-blue), var(--lavender));
        }
        
        .about img {
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .btn-read {
            background: linear-gradient(to right, var(--baby-blue), var(--lavender));
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-read:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            color: white;
        }
        
        /* Counter Section */
        .counter {
            background: linear-gradient(to right, var(--baby-blue), var(--lavender));
            padding: 60px 0;
            color: white;
        }
        
        .counter-item {
            text-align: center;
        }
        
        .counter-item i {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .counter-item h3 {
            font-size: 2.5rem;
            font-weight: 700;
        }
        
        .counter-item p {
            font-size: 1.1rem;
            margin: 0;
        }
        
        /* Vision & Mission */
        .vision-mission {
            padding: 80px 0;
            background-color: var(--light-gray);
        }
        
        .vision-mission h2 {
            color: var(--dark-blue);
            font-weight: 700;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }
        
        .vision-mission h2::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            bottom: -10px;
            left: 25%;
            background: linear-gradient(to right, var(--baby-blue), var(--lavender));
        }
        
        .vision-box, .mission-box {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            height: 100%;
        }
        
        .vision-box i, .mission-box i {
            font-size: 2.5rem;
            color: var(--baby-blue);
            margin-bottom: 20px;
        }
        
        .vision-box h3, .mission-box h3 {
            color: var(--dark-blue);
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        /* Why Choose Us */
        .why-choose {
            padding: 80px 0;
        }
        
        .why-choose h2 {
            color: var(--dark-blue);
            font-weight: 700;
            margin-bottom: 50px;
            position: relative;
            display: inline-block;
        }
        
        .why-choose h2::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            bottom: -10px;
            left: 25%;
            background: linear-gradient(to right, var(--baby-blue), var(--lavender));
        }
        
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            background-color: var(--light-gray);
        }
        
        .feature-box i {
            font-size: 3rem;
            color: var(--baby-blue);
            margin-bottom: 20px;
        }
        
        .feature-box h4 {
            color: var(--dark-blue);
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        /* Work Process */
        .work-process {
            padding: 80px 0;
            background-color: var(--light-gray);
        }
        
        .work-process h2 {
            color: var(--dark-blue);
            font-weight: 700;
            margin-bottom: 50px;
            position: relative;
            display: inline-block;
        }
        
        .work-process h2::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            bottom: -10px;
            left: 25%;
            background: linear-gradient(to right, var(--baby-blue), var(--lavender));
        }
        
        .process-box {
            text-align: center;
            position: relative;
            padding: 30px 20px;
        }
        
        .process-box::after {
            content: '\f054';
            font-family: 'Bootstrap Icons';
            position: absolute;
            right: -15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--baby-blue);
            font-size: 1.5rem;
            z-index: 1;
        }
        
        .process-box:last-child::after {
            display: none;
        }
        
        .process-step {
            width: 70px;
            height: 70px;
            background: linear-gradient(to right, var(--baby-blue), var(--lavender));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        .process-box h4 {
            color: var(--dark-blue);
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        /* Services Section */
        .services {
            padding: 80px 0;
        }
        
        .services h2 {
            color: var(--dark-blue);
            font-weight: 700;
            margin-bottom: 50px;
            position: relative;
            display: inline-block;
        }
        
        .services h2::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            bottom: -10px;
            left: 25%;
            background: linear-gradient(to right, var(--baby-blue), var(--lavender));
        }
        
        .service-card {
            background-color: var(--light-gray);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-card img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        
        .service-card-body {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-card h4 {
            color: var(--dark-blue);
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .service-card p {
            flex-grow: 1;
            margin-bottom: 20px;
        }
        
        .btn-service {
            background: linear-gradient(to right, var(--baby-blue), var(--lavender));
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            align-self: flex-start;
        }
        
        .btn-service:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            color: white;
        }
        
        /* Reviews Section */
        .reviews {
            padding: 80px 0;
            background-color: var(--light-gray);
        }
        
        .reviews h2 {
            color: var(--dark-blue);
            font-weight: 700;
            margin-bottom: 50px;
            position: relative;
            display: inline-block;
        }
        
        .reviews h2::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            bottom: -10px;
            left: 25%;
            background: linear-gradient(to right, var(--baby-blue), var(--lavender));
        }
        
        .review-card {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            height: 100%;
        }
        
        .review-card .rating {
            color: #FFC107;
            margin-bottom: 15px;
        }
        
        .review-card p {
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .review-card .reviewer {
            display: flex;
            align-items: center;
        }
        
        .review-card .reviewer img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .review-card .reviewer h5 {
            margin: 0;
            color: var(--dark-blue);
            font-weight: 600;
        }
        
        .review-card .reviewer span {
            color: #6c757d;
            font-size: 0.9rem;
        }
        
        /* FAQ Section */
        .faq {
            padding: 80px 0;
        }
        
        .faq h2 {
            color: var(--dark-blue);
            font-weight: 700;
            margin-bottom: 50px;
            position: relative;
            display: inline-block;
        }
        
        .faq h2::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            bottom: -10px;
            left: 25%;
            background: linear-gradient(to right, var(--baby-blue), var(--lavender));
        }
        
        .accordion-button {
            background-color: var(--light-gray);
            color: var(--dark-blue);
            font-weight: 600;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--baby-blue);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--baby-blue);
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 10px !important;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, rgba(168, 218, 220, 0.9), rgba(230, 230, 250, 0.9)), url('https://images.pexels.com/photos/1450360/pexels-photo-1450360.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            text-align: center;
            color: var(--dark-blue);
        }
        
        .cta-section h2 {
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 2.5rem;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .btn-cta-large {
            background-color: var(--dark-blue);
            color: white;
            padding: 15px 40px;
            font-size: 1.2rem;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-cta-large:hover {
            background-color: var(--baby-blue);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            color: white;
        }
        
        /* Contact Section */
        .contact {
            padding: 80px 0;
            background-color: var(--light-gray);
        }
        
        .contact h2 {
            color: var(--dark-blue);
            font-weight: 700;
            margin-bottom: 50px;
            position: relative;
            display: inline-block;
        }
        
        .contact h2::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            bottom: -10px;
            left: 25%;
            background: linear-gradient(to right, var(--baby-blue), var(--lavender));
        }
        
        .contact-info {
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            height: 100%;
        }
        
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }
        
        .contact-info-item i {
            font-size: 1.5rem;
            color: var(--baby-blue);
            margin-right: 15px;
            margin-top: 5px;
        }
        
        .contact-info-item h4 {
            color: var(--dark-blue);
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .contact-form {
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        
        .form-control, .form-select {
            border: 1px solid #e0e0e0;
            border-radius: 5px;
            padding: 12px 15px;
            margin-bottom: 20px;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--baby-blue);
            box-shadow: 0 0 0 0.25rem rgba(168, 218, 220, 0.25);
        }
        
        .btn-submit {
            background: linear-gradient(to right, var(--baby-blue), var(--lavender));
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            color: white;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-blue);
            color: white;
            padding: 70px 0 20px;
        }
        
        footer h4 {
            color: var(--baby-blue);
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        footer h4::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--baby-blue);
        }
        
        footer p {
            margin-bottom: 15px;
            line-height: 1.8;
        }
        
        footer ul {
            list-style: none;
            padding: 0;
        }
        
        footer ul li {
            margin-bottom: 10px;
        }
        
        footer ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        footer ul li a:hover {
            color: var(--baby-blue);
            padding-left: 5px;
        }
        
        .newsletter-form {
            display: flex;
            margin-bottom: 20px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 10px 15px;
            border: none;
            border-radius: 5px 0 0 5px;
        }
        
        .newsletter-form button {
            background: linear-gradient(to right, var(--baby-blue), var(--lavender));
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background: linear-gradient(to right, var(--lavender), var(--baby-blue));
        }
        
        .social-icons {
            display: flex;
            margin-top: 20px;
        }
        
        .social-icons a {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background-color: var(--baby-blue);
            transform: translateY(-3px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 50px;
            padding-top: 20px;
            text-align: center;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .copyright a {
            color: var(--baby-blue);
            text-decoration: none;
            margin: 0 5px;
        }
        
        .copyright a:hover {
            text-decoration: underline;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .process-box::after {
                display: none;
            }
            
            .process-box {
                margin-bottom: 30px;
            }
        }
