
        :root {
            --sky-blue: #87CEEB;
            --lemon-yellow: #FFF700;
            --white: #FFFFFF;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.4rem;
            color: #333;
        }
        
        .navbar-brand i {
            color: var(--sky-blue);
            margin-right: 8px;
        }
        
        .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--sky-blue);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: var(--sky-blue);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
            left: 10%;
        }
        
        .cta-btn {
            background-color: var(--lemon-yellow);
            color: #333;
            border-radius: 30px;
            padding: 8px 20px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
        }
        
        .cta-btn:hover {
            background-color: var(--sky-blue);
            color: white;
            transform: translateY(-2px);
        }

        .nav-item{
            margin-left:35px !important;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(135,206,235,0.2)), url('https://static.vecteezy.com/system/resources/thumbnails/011/383/560/small/businessman-point-increase-arrow-graph-corporate-future-growth-planning-goal-target-challenge-and-business-strategy-finance-investment-development-concept-free-photo.jpg');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            margin-bottom: 80px;
        }
        
        .hero-content h1 {
            font-weight: 700;
            font-size:5rem;
            margin-bottom: 20px;
            color: #333;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #555;
        }
        
        .hero-cta {
            background-color: var(--lemon-yellow);
            color: #333;
            padding: 12px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .hero-cta:hover {
            background-color: var(--sky-blue);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        
        /* About Section */
        .about-section {
            padding: 80px 0;
        }
        
        .section-title {
            font-weight: 700;
            font-size: 2.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: var(--sky-blue);
        }
        
        .about-content {
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .read-more-btn {
            color: var(--sky-blue);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .read-more-btn:hover {
            color: #333;
            text-decoration: underline;
        }
        
        /* Counter Section */
        .counter-section {
            background-color: var(--sky-blue);
            padding: 60px 0;
            color: white;
        }
        
        .counter-item {
            text-align: center;
        }
        
        .counter-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .counter-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .counter-text {
            font-size: 1.1rem;
        }
        
        /* Vision & Mission Section */
        .vision-mission-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .vision-box, .mission-box {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .vision-box:hover, .mission-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        
        .vision-box h3, .mission-box h3 {
            color: var(--sky-blue);
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        /* Why Choose Us Section */
        .why-choose-section {
            padding: 80px 0;
        }
        
        .feature-item {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .feature-item:hover {
            background-color: rgba(135,206,235,0.1);
            transform: translateY(-5px);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--sky-blue);
            margin-bottom: 20px;
        }
        
        .feature-title {
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        
        /* Work Process Section */
        .process-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .process-step {
            text-align: center;
            position: relative;
            padding: 30px 15px;
        }
        
        .process-step::after {
            content: '';
            position: absolute;
            top: 60px;
            right: -50%;
            width: 100%;
            height: 2px;
            background-color: var(--sky-blue);
            z-index: -1;
        }
        
        .process-step:last-child::after {
            display: none;
        }
        
        .process-icon {
            width: 80px;
            height: 80px;
            background-color: var(--sky-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
        }
        
        .process-title {
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        /* Services Section */
        .services-section {
            padding: 80px 0;
        }
        
        .service-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px 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-img {
            height: 200px;
            width: 100%;
            object-fit: cover;
        }
        
        .service-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-title {
            font-weight: 700;
            margin-bottom: 15px;
            color: #333;
        }
        
        .service-desc {
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .service-link {
            color: var(--sky-blue);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            align-self: flex-start;
        }
        
        .service-link:hover {
            color: #333;
            text-decoration: underline;
        }
        
        /* Reviews Section */
        .reviews-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .review-card {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            height: 100%;
        }
        
        .review-text {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
        }
        
        .review-text::before {
            content: '"';
            font-size: 3rem;
            color: var(--sky-blue);
            position: absolute;
            top: -15px;
            left: -10px;
            opacity: 0.3;
        }
        
        .review-author {
            display: flex;
            align-items: center;
        }
        
        .author-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .author-info h5 {
            margin: 0;
            font-weight: 600;
        }
        
        .author-info .rating {
            color: var(--lemon-yellow);
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 10px !important;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        
        .accordion-button {
            background-color: white;
            color: #333;
            font-weight: 600;
            padding: 20px;
            box-shadow: none;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--sky-blue);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border: none;
        }
        
        .accordion-button::after {
            filter: invert(1);
        }
        
        .accordion-body {
            padding: 20px;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--sky-blue), #5aa3d0);
            padding: 80px 0;
            color: white;
            text-align: center;
        }
        
        .cta-section h2 {
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 2.5rem;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-big-btn {
            background-color: var(--lemon-yellow);
            color: #333;
            padding: 15px 40px;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .cta-big-btn:hover {
            background-color: white;
            color: var(--sky-blue);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        
        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .contact-info {
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
        }
        
        .contact-item {
            margin-bottom: 25px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-icon {
            font-size: 1.5rem;
            color: var(--sky-blue);
            margin-right: 15px;
            min-width: 30px;
        }
        
        .contact-form {
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .form-control, .form-select {
            border-radius: 8px;
            padding: 12px 15px;
            border: 1px solid #e0e0e0;
            margin-bottom: 20px;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--sky-blue);
            box-shadow: 0 0 0 0.25rem rgba(135,206,235,0.25);
        }
        
        .submit-btn {
            background-color: var(--sky-blue);
            color: white;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s ease;
            border: none;
        }
        
        .submit-btn:hover {
            background-color: #5aa3d0;
            color: white;
        }
        
        /* Footer */
        footer {
            background-color: #333;
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-title {
            font-weight: 700;
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--sky-blue);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--sky-blue);
            padding-left: 5px;
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }
        
        .newsletter-input {
            flex-grow: 1;
            padding: 10px 15px;
            border: none;
            border-radius: 30px 0 0 30px;
        }
        
        .newsletter-btn {
            background-color: var(--sky-blue);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 0 30px 30px 0;
            transition: all 0.3s ease;
        }
        
        .newsletter-btn:hover {
            background-color: var(--lemon-yellow);
            color: #333;
        }
        
        .copyright {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #555;
            text-align: center;
            color: #bbb;
        }
        
        .copyright a {
            color: var(--sky-blue);
            text-decoration: none;
            margin: 0 5px;
        }
        
        .copyright a:hover {
            text-decoration: underline;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .process-step::after {
                display: none;
            }
            
            .navbar-nav {
                text-align: center;
                margin-top: 20px;
            }
            
            .cta-section h2 {
                font-size: 1.8rem;
            }
        }
