
        :root {
            --indigo: #4f46e5;
            --indigo-dark: #3730a3;
            --rose-gold: #e8b4b8;
            --rose-gold-light: #f8d7da;
            --white: #ffffff;
            --light-gray: #f8f9fa;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        a {
            text-decoration: none;
            color: var(--indigo);
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: var(--indigo-dark);
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--indigo);
        }
        
        .navbar-brand i {
            font-size: 2rem;
            margin-right: 0.5rem;
            color: var(--rose-gold);
        }
        
        .navbar-nav .nav-link {
            font-weight: 500;
            margin: 0 0.5rem;
            color: #333;
            position: relative;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--rose-gold);
            transition: width 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .btn-cta {
            background-color: var(--rose-gold);
            color: var(--white);
            border: none;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-cta:hover {
            background-color: var(--indigo);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .nav-item{
            margin-left:25px !important;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(79, 70, 229, 0.7), rgba(232, 180, 184, 0.7)), 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: 12rem 0 8rem;
            color: var(--white);
            text-align: center;
        }
        
        .hero h1 {
            font-size:6rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .hero p {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto 2rem;
        }
        
        .btn-hero {
            background-color: var(--white);
            color: var(--indigo);
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .btn-hero:hover {
            background-color: var(--rose-gold);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        /* About Section */
        .about {
            padding: 5rem 0;
        }
        
        .about-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .about-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .about-img:hover img {
            transform: scale(1.05);
        }
        
        .section-title {
            font-size: 2.5rem;
            color: var(--indigo);
            position: relative;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: var(--rose-gold);
        }
        
        /* Counter Section */
        .counter {
            background-color: var(--indigo);
            color: var(--white);
            padding: 4rem 0;
        }
        
        .counter-item {
            text-align: center;
        }
        
        .counter-item i {
            font-size: 2.5rem;
            color: var(--rose-gold);
            margin-bottom: 1rem;
        }
        
        .counter-item h3 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .counter-item p {
            font-size: 1.1rem;
            margin-bottom: 0;
        }
        
        /* Vision & Mission Section */
        .vision-mission {
            padding: 5rem 0;
            background-color: var(--light-gray);
        }
        
        .vision-mission-card {
            background-color: var(--white);
            border-radius: 10px;
            padding: 2rem;
            height: 100%;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .vision-mission-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .vision-mission-card i {
            font-size: 2.5rem;
            color: var(--rose-gold);
            margin-bottom: 1rem;
        }
        
        /* Why Choose Us Section */
        .why-choose {
            padding: 5rem 0;
        }
        
        .feature-item {
            text-align: center;
            padding: 2rem 1rem;
            transition: all 0.3s ease;
        }
        
        .feature-item:hover {
            transform: translateY(-5px);
        }
        
        .feature-item i {
            font-size: 3rem;
            color: var(--rose-gold);
            margin-bottom: 1rem;
        }
        
        .feature-item h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--indigo);
        }
        
        /* Work Process Section */
        .work-process {
            padding: 5rem 0;
            background-color: var(--light-gray);
        }
        
        .process-step {
            text-align: center;
            position: relative;
            padding: 0 1rem;
        }
        
        .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 40px;
            right: -15px;
            width: 30px;
            height: 2px;
            background-color: var(--rose-gold);
        }
        
        .process-icon {
            width: 80px;
            height: 80px;
            background-color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .process-icon i {
            font-size: 2rem;
            color: var(--indigo);
        }
        
        .process-step h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--indigo);
        }
        
        /* Services Section */
        .services {
            padding: 5rem 0;
        }
        
        .service-card {
            background-color: var(--light-gray);
            border-radius: 10px;
            overflow: hidden;
            height: 100%;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-img {
            height: 200px;
            overflow: hidden;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .service-img img {
            transform: scale(1.05);
        }
        
        .service-content {
            padding: 1.5rem;
        }
        
        .service-content h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--indigo);
        }
        
        .service-content p {
            margin-bottom: 1.5rem;
            color: #555;
        }
        
        .btn-service {
            background-color: var(--rose-gold);
            color: var(--white);
            border: none;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .btn-service:hover {
            background-color: var(--indigo);
            color: var(--white);
        }
        
        /* Reviews Section */
        .reviews {
            padding: 5rem 0;
            background-color: var(--light-gray);
        }
        
        .review-card {
            background-color: var(--white);
            border-radius: 10px;
            padding: 2rem;
            height: 100%;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .review-rating {
            color: var(--rose-gold);
            margin-bottom: 1rem;
        }
        
        .review-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            color: #555;
        }
        
        .review-author {
            display: flex;
            align-items: center;
        }
        
        .review-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 1rem;
        }
        
        .review-author h5 {
            margin-bottom: 0;
            font-size: 1.1rem;
            color: var(--indigo);
        }
        
        .review-author p {
            margin-bottom: 0;
            font-size: 0.9rem;
            color: #777;
        }
        
        /* FAQ Section */
        .faq {
            padding: 5rem 0;
        }
        
        .accordion-button {
            background-color: var(--light-gray);
            color: var(--indigo);
            font-weight: 500;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--rose-gold-light);
            color: var(--indigo-dark);
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--rose-gold);
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 1rem;
            border-radius: 10px !important;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(rgba(79, 70, 229, 0.8), rgba(232, 180, 184, 0.8)), url('https://images.pexels.com/photos/1642127/pexels-photo-1642127.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
            background-size: cover;
            background-position: center;
            padding: 5rem 0;
            color: var(--white);
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        .btn-cta-large {
            background-color: var(--white);
            color: var(--indigo);
            border: none;
            padding: 0.75rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .btn-cta-large:hover {
            background-color: var(--rose-gold);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        /* Contact Section */
        .contact {
            padding: 5rem 0;
            background-color: var(--light-gray);
        }
        
        .contact-info {
            background-color: var(--white);
            border-radius: 10px;
            padding: 2rem;
            height: 100%;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }
        
        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .contact-info-item i {
            font-size: 1.5rem;
            color: var(--rose-gold);
            margin-right: 1rem;
            width: 40px;
            text-align: center;
        }
        
        .contact-form {
            background-color: var(--white);
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }
        
        .form-control, .form-select {
            border-radius: 10px;
            border: 1px solid #ddd;
            padding: 0.75rem 1rem;
            margin-bottom: 1rem;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--rose-gold);
            box-shadow: 0 0 0 0.25rem rgba(232, 180, 184, 0.25);
        }
        
        .btn-submit {
            background-color: var(--indigo);
            color: var(--white);
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .btn-submit:hover {
            background-color: var(--indigo-dark);
            color: var(--white);
        }
        
        /* Footer */
        footer {
            background-color: var(--indigo);
            color: var(--white);
            padding: 3rem 0 1rem;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--white);
        }
        
        .footer-logo i {
            font-size: 2rem;
            margin-right: 0.5rem;
            color: var(--rose-gold);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--rose-gold);
            padding-left: 5px;
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 1rem;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 0.75rem;
            border: none;
            border-radius: 50px 0 0 50px;
        }
        
        .newsletter-form button {
            background-color: var(--rose-gold);
            color: var(--white);
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 0 50px 50px 0;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background-color: var(--white);
            color: var(--indigo);
        }
        
        .copyright {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .copyright a {
            color: var(--rose-gold);
        }
        
        /* Responsive */
        @media (max-width: 991px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .process-step:not(:last-child)::after {
                display: none;
            }
        }
        
        @media (max-width: 767px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .cta-section h2 {
                font-size: 1.8rem;
            }
        }
