
        :root {
            --primary-pink: #ff99c8;
            --primary-blue: #a9def9;
            --white: #FFFFFF;
            --dark-text: #2c3e50;
            --light-gray: #f8f9fa;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navbar Styles */
        .navbar {
            background: transparent !important;
            padding: 20px 0;
            transition: all 0.3s ease;
            box-shadow: none;
        }

        .navbar.scrolled {
            background: var(--white) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 10px 0;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: bold;
            font-size: 1.5rem;
            color: var(--dark-text) !important;
        }

        .navbar-brand i {
            font-size: 2rem;
            margin-right: 10px;
            background: linear-gradient(135deg, var(--primary-pink), var(--primary-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-link {
            color: var(--dark-text) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: var(--primary-pink) !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary-pink);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after {
            width: 80%;
        }

        .cta-btn {
            background: linear-gradient(135deg, var(--primary-pink), var(--primary-blue));
            color: var(--white) !important;
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            font-weight: 600;
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 153, 200, 0.4);
            color: var(--white) !important;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(255, 153, 200, 0.1), rgba(169, 222, 249, 0.1)),
                        url('https://img.freepik.com/premium-photo/black-leather-office-table-with-calculator-notebook-stationery-green-plant-top-view-with-copy-space-flat-lay-composition_135892-209.jpg') center/cover;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
        }

        .nav-item{
            margin-left:25px !important;
        }

        .hero-content h1 {
            font-size:4rem;
            font-weight: bold;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--primary-pink), var(--primary-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            color: var(--dark-text);
        }

        /* About Section */
        .about-section {
            padding: 80px 0;
            background: var(--white);
        }

        .about-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .about-content {
            padding: 20px;
        }

        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--dark-text);
        }

        .about-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 15px;
            color: #555;
        }

        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--primary-pink), var(--primary-blue));
            padding: 60px 0;
            color: var(--white);
        }

        .counter-item {
            text-align: center;
        }

        .counter-item i {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .counter-item h3 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .counter-item p {
            font-size: 1.1rem;
            margin: 0;
        }

        /* Vision Mission Section */
        .vision-mission-section {
            padding: 80px 0;
            background: var(--light-gray);
        }

        .vm-card {
            background: var(--white);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
            transition: all 0.3s ease;
        }

        .vm-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .vm-card i {
            font-size: 3rem;
            color: var(--primary-pink);
            margin-bottom: 20px;
        }

        /* Why Choose Us */
        .why-choose-section {
            padding: 80px 0;
            background: var(--white);
        }

        .feature-box {
            text-align: center;
            padding: 30px;
            transition: all 0.3s ease;
        }

        .feature-box:hover {
            transform: translateY(-10px);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--primary-pink), var(--primary-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .feature-box:hover .feature-icon {
            transform: scale(1.1);
        }

        .feature-icon i {
            font-size: 2rem;
            color: var(--white);
        }

        /* Work Process */
        .process-section {
            padding: 80px 0;
            background: var(--light-gray);
        }

        .process-step {
            text-align: center;
            position: relative;
            padding: 30px;
        }

        .process-step::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -50%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-pink), var(--primary-blue));
            transform: translateY(-50%);
        }

        .process-step:last-child::after {
            display: none;
        }

        .process-number {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--primary-pink), var(--primary-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            font-weight: bold;
        }

        /* Services Section */
        .services-section {
            padding: 80px 0;
            background: var(--white);
        }

        .service-card {
            background: var(--light-gray);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .service-card-body {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .service-card h4 {
            font-weight: bold;
            margin-bottom: 15px;
            color: var(--dark-text);
        }

        .service-card p {
            color: #666;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        /* Reviews Section */
        .reviews-section {
            padding: 80px 0;
            background: var(--light-gray);
        }

        .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);
        }

        .stars {
            color: #ffc107;
            margin-bottom: 15px;
        }

        .reviewer-info {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }

        .reviewer-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            background: linear-gradient(135deg, var(--primary-pink), var(--primary-blue));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: bold;
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: var(--white);
        }

        .accordion-button {
            background: var(--light-gray);
            color: var(--dark-text);
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .accordion-button:not(.collapsed) {
            background: linear-gradient(135deg, rgba(255, 153, 200, 0.2), rgba(169, 222, 249, 0.2));
            color: var(--dark-text);
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary-pink);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-pink), var(--primary-blue));
            padding: 80px 0;
            color: var(--white);
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .cta-btn-white {
            background: var(--white);
            color: var(--primary-pink) !important;
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .cta-btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            color: var(--primary-pink) !important;
        }

        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            background: var(--light-gray);
        }

        .contact-info {
            background: var(--white);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }

        .contact-item i {
            font-size: 1.5rem;
            color: var(--primary-pink);
            margin-right: 15px;
            width: 40px;
        }

        .contact-form {
            background: var(--white);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .form-control, .form-select {
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            padding: 12px;
            transition: all 0.3s ease;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--primary-pink);
            box-shadow: 0 0 0 0.2rem rgba(255, 153, 200, 0.25);
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #2c3e50, #34495e);
            color: var(--white);
            padding: 60px 0 20px;
        }

        .footer-widget h4 {
            margin-bottom: 25px;
            color: var(--primary-blue);
        }

        .footer-widget ul {
            list-style: none;
            padding: 0;
        }

        .footer-widget ul li {
            margin-bottom: 10px;
        }

        .footer-widget ul li a {
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-widget ul li a:hover {
            color: var(--primary-pink);
            padding-left: 5px;
        }

        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 5px 0 0 5px;
        }

        .newsletter-form button {
            background: var(--primary-pink);
            color: var(--white);
            border: none;
            padding: 10px 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            background: var(--primary-blue);
        }

        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .copyright a {
            color: var(--primary-pink);
            text-decoration: none;
            margin: 0 10px;
        }

        .copyright a:hover {
            color: var(--primary-blue);
            text-decoration: underline;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .process-step::after {
                display: none;
            }
            
            .navbar-nav {
                background: var(--white);
                padding: 20px;
                border-radius: 10px;
                margin-top: 20px;
            }
        }

        /* Loading Animation */
        .fade-in {
            animation: fadeIn 0.8s ease-in;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
