
        :root {
            --primary-color: #335c67;
            --accent-color: #fff3b0;
            --white-color: #ffffff;
            --text-dark: #2c3e50;
            --text-light: #6c757d;
            --border-color: #dee2e6;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 1rem 0;
            background: transparent !important;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        
        .navbar-brand i {
            font-size: 2rem;
            margin-right: 0.5rem;
            color: var(--primary-color);
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-color) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: width 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }
        
        .btn-cta {
            background: var(--primary-color);
            color: var(--white-color);
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            border: 2px solid var(--primary-color);
        }
        
        .btn-cta:hover {
            background: var(--white-color);
            color: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(51, 92, 103, 0.3);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, #2a4d57 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: -50%;
            width: 100%;
            height: 100%;
            background: var(--accent-color);
            opacity: 0.1;
            transform: skewX(-25deg);
        }
        
        .hero-content h1 {
            font-size: 4.5rem;
            font-weight: 700;
            color: var(--white-color);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
        }
        
        .hero-image {
            position: relative;
        }
        
        .hero-image img {
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        
        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .section-title p {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* About Section */
        .about-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .about-content h3 {
            color: var(--primary-color);
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }
        
        .about-content p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }
        
        /* Counter Section */
        .counter-section {
            background: var(--primary-color);
            padding: 60px 0;
        }
        
        .counter-item {
            text-align: center;
            color: var(--white-color);
        }
        
        .counter-item i {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--accent-color);
        }
        
        .counter-item h3 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .counter-item p {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        /* Vision Mission */
        .vm-card {
            background: var(--white-color);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .vm-card:hover {
            transform: translateY(-5px);
        }
        
        .vm-card i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        
        .vm-card h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        /* Why Choose Us */
        .feature-box {
            text-align: center;
            padding: 2rem;
            background: var(--white-color);
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(51, 92, 103, 0.2);
        }
        
        .feature-box i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        
        .feature-box h4 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        /* Work Process */
        .process-box {
            text-align: center;
            position: relative;
        }
        
        .process-number {
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            color: var(--white-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
        }
        
        .process-box h4 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        /* Services Section */
        .service-card {
            background: var(--accent-color);
            border-radius: 15px;
            overflow: hidden;
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(51, 92, 103, 0.3);
        }
        
        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 1.5rem;
        }
        
        .service-card-body h4 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .service-card-body p {
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            min-height: 140px;
        }
        
        /* Reviews Section */
        .review-card {
            background: var(--white-color);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 2rem;
            position: relative;
        }
        
        .review-card::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 4rem;
            color: var(--accent-color);
            opacity: 0.3;
        }
        
        .review-stars {
            color: #ffc107;
            margin-bottom: 1rem;
        }
        
        .review-text {
            color: var(--text-light);
            font-style: italic;
            margin-bottom: 1.5rem;
        }
        
        .review-author {
            display: flex;
            align-items: center;
        }
        
        .review-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 1rem;
        }
        
        .review-author h5 {
            color: var(--primary-color);
            margin-bottom: 0;
        }
        
        .review-author small {
            color: var(--text-light);
        }
        
        /* FAQ Section */
        .accordion-button {
            background: var(--white-color);
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--primary-color);
            color: var(--white-color);
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary-color);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, #2a4d57 100%);
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-section h2 {
            color: var(--white-color);
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        .cta-section p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        
        /* Contact Section */
        .contact-info {
            background: var(--accent-color);
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 2rem;
        }
        
        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .contact-info-item i {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-right: 1rem;
            width: 40px;
        }
        
        .contact-form {
            background: var(--white-color);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }
        
        .form-control, .form-select {
            border: 2px solid var(--border-color);
            border-radius: 10px;
            padding: 0.75rem;
            transition: border-color 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(51, 92, 103, 0.25);
        }
        
        /* Footer */
        footer {
            background: var(--primary-color);
            color: var(--white-color);
            padding: 60px 0 30px;
        }
        
        .footer-widget h4 {
            color: var(--accent-color);
            margin-bottom: 1.5rem;
        }
        
        .footer-widget ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-widget ul li {
            margin-bottom: 0.75rem;
        }
        
        .footer-widget ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-widget ul li a:hover {
            color: var(--accent-color);
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 1rem;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 0.75rem;
            border: none;
            border-radius: 5px 0 0 5px;
        }
        
        .newsletter-form button {
            padding: 0.75rem 1.5rem;
            background: var(--accent-color);
            color: var(--primary-color);
            border: none;
            border-radius: 0 5px 5px 0;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background: var(--white-color);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 3rem;
            padding-top: 2rem;
            text-align: center;
        }
        
        .footer-bottom a {
            color: var(--accent-color);
            text-decoration: none;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .navbar-nav {
                text-align: center;
                margin-top: 1rem;
            }
        }
