
        :root {
            --primary-orange: #E2852E;
            --primary-blue: #ABE0F0;
            --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;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 20px 0;
            background: transparent !important;
            box-shadow: none;
        }
        
        .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
            color: var(--primary-orange) !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .navbar-brand i {
            font-size: 2rem;
        }
        
        .navbar-nav {
            justify-content: center;
            width: 100%;
            gap: 30px;
        }
        
        .navbar-nav .nav-link {
            color: var(--dark-text) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-orange) !important;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-orange);
            transition: width 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .btn-cta {
            background: var(--primary-orange);
            color: var(--white);
            padding: 10px 25px;
            border-radius: 50px;
            border: none;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-cta:hover {
            background: #d17420;
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(226, 133, 46, 0.3);
        }
        
        /* Hero Section */
        .hero-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--white) 100%);
            min-height: 80vh;
            display: flex;
            align-items: center;
        }
        
        .hero-content h1 {
            font-size: 3rem;
            font-weight: bold;
            color: var(--dark-text);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero-content .highlight {
            color: var(--primary-orange);
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #555;
        }
        
        .hero-image img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        /* Section Padding */
        .section-padding {
            padding: 80px 0;
        }
        
        /* About Section */
        .about-section {
            background: var(--light-gray);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--dark-text);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--primary-orange);
        }
        
        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--primary-orange) 0%, #f4a460 100%);
            color: var(--white);
        }
        
        .counter-box {
            text-align: center;
            padding: 30px;
        }
        
        .counter-box i {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .counter-box h3 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .counter-box p {
            font-size: 1.1rem;
            margin: 0;
        }
        
        /* Vision Mission */
        .vision-mission-card {
            background: var(--white);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .vision-mission-card:hover {
            transform: translateY(-10px);
        }
        
        .vision-mission-card i {
            font-size: 3rem;
            color: var(--primary-orange);
            margin-bottom: 20px;
        }
        
        /* Work Process */
        .process-step {
            text-align: center;
            padding: 30px;
            position: relative;
        }
        
        .process-step::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -50%;
            width: 100%;
            height: 2px;
            background: var(--primary-blue);
            transform: translateY(-50%);
        }
        
        .process-step:last-child::after {
            display: none;
        }
        
        .process-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: var(--primary-orange);
            transition: all 0.3s ease;
        }
        
        .process-step:hover .process-icon {
            background: var(--primary-orange);
            color: var(--white);
            transform: scale(1.1);
        }
        
        /* Why Choose Us Cards */
        .choose-card {
            background: var(--white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            height: 100%;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .choose-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-orange);
            box-shadow: 0 15px 35px rgba(226, 133, 46, 0.2);
        }
        
        .choose-card i {
            font-size: 2.5rem;
            color: var(--primary-orange);
            margin-bottom: 20px;
        }
        
        .choose-card h4 {
            font-weight: bold;
            color: var(--dark-text);
            margin-bottom: 15px;
        }
        
        /* Services Cards */
        .service-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 25px;
        }
        
        .service-card h4 {
            font-weight: bold;
            color: var(--dark-text);
            margin-bottom: 15px;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-orange) 0%, #f4a460 100%);
            padding: 80px 0;
            text-align: center;
            color: var(--white);
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        .btn-cta-white {
            background: var(--white);
            color: var(--primary-orange);
            padding: 15px 40px;
            border-radius: 50px;
            border: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-cta-white:hover {
            background: var(--light-gray);
            color: var(--primary-orange);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        
        /* FAQ Section */
        .accordion-button {
            background: var(--primary-blue);
            color: var(--dark-text);
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--primary-orange);
            color: var(--white);
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary-orange);
        }
        
        /* Reviews */
        .review-card {
            background: var(--white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }
        
        .review-stars {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .review-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-bottom: 15px;
        }
        
        /* Contact Section */
        .contact-section {
            background: var(--light-gray);
        }
        
        .contact-info-box {
            background: var(--white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .contact-info-box:hover {
            transform: translateX(10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }
        
        .contact-info-box i {
            font-size: 2rem;
            color: var(--primary-orange);
            margin-bottom: 15px;
        }
        
        .contact-form {
            background: var(--white);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .form-control, .form-select {
            border: 2px solid var(--primary-blue);
            border-radius: 10px;
            padding: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-orange);
            box-shadow: 0 0 0 0.2rem rgba(226, 133, 46, 0.25);
        }
        
        /* Footer */
        footer {
            background: #2c3e50;
            color: var(--white);
            padding: 60px 0 20px;
        }
        
        footer h5 {
            color: var(--primary-orange);
            margin-bottom: 25px;
            font-weight: bold;
        }
        
        footer ul {
            list-style: none;
            padding: 0;
        }
        
        footer ul li {
            margin-bottom: 12px;
        }
        
        footer ul li a {
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        footer ul li a:hover {
            color: var(--primary-orange);
            padding-left: 5px;
        }
        
        .footer-subscribe {
            background: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 10px;
        }
        
        .footer-subscribe input {
            background: rgba(255,255,255,0.2);
            border: 1px solid rgba(255,255,255,0.3);
            color: var(--white);
            padding: 10px;
            border-radius: 5px;
            width: 100%;
            margin-bottom: 15px;
        }
        
        .footer-subscribe input::placeholder {
            color: rgba(255,255,255,0.7);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
        }
        
        .footer-bottom a {
            color: var(--primary-orange);
            text-decoration: none;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .footer-bottom a:hover {
            text-decoration: underline;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .process-step::after {
                display: none;
            }
            
            .navbar-nav {
                gap: 10px;
            }
        }
