
        :root {
            --primary-color: #003566;
            --secondary-color: #ffc300;
            --accent-color: #ffd60a;
            --light-color: #ffffff;
            --dark-text: #333;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-text);
        }

        /* --- Navbar --- */
        .navbar {
            padding: 1rem 0;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        .navbar-nav .nav-link {
            color: var(--primary-color) !important;
            font-weight: 600;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        .navbar-nav .nav-link:hover {
            color: var(--secondary-color) !important;
        }
        .cta-btn-nav {
            background-color: var(--secondary-color);
            color: var(--primary-color) !important;
            border: 2px solid var(--secondary-color);
            padding: 8px 20px !important;
            border-radius: 50px;
            font-weight: 700;
            transition: all 0.3s ease;
        }
        .cta-btn-nav:hover {
            background-color: transparent;
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }

        /* --- Hero Section --- */
        .hero-section {
            background: linear-gradient(rgba(0, 53, 102, 0.7), rgba(0, 53, 102, 0.7)), url('https://cdn.pixabay.com/photo/2020/05/15/16/52/painter-5174316_1280.jpg');
            background-size: cover;
            background-position: center;
            color: var(--light-color);
            padding: 150px 0;
            text-align: center;
        }
        .hero-section h1 {
            font-weight: 700;
            font-size:6rem;
            margin-bottom: 20px;
        }
        .hero-section p {
            font-size: 1.2rem;
            font-weight: 300;
            max-width: 700px;
            margin: 0 auto 40px auto;
        }
        .cta-btn-hero {
            background-color: var(--secondary-color);
            color: var(--primary-color);
            border: none;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }
        .cta-btn-hero:hover {
            background-color: var(--accent-color);
            color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        /* --- Section Styling --- */
        .section-title {
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background-color: var(--secondary-color);
        }
        .section-padding {
            padding: 80px 0;
        }
        .text-primary-custom { color: var(--primary-color); }
        .bg-light-custom { background-color: #f8f9fa; }

        /* --- About Us --- */
        .about-img {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .read-more-btn {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        .read-more-btn:hover {
            color: var(--secondary-color);
        }

        /* --- Counter --- */
        .counter-box {
            text-align: center;
            padding: 30px;
            border-radius: 10px;
            background-color: var(--light-color);
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        .counter-box:hover {
            transform: translateY(-5px);
        }
        .counter-box i {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        .counter {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        .counter-text {
            font-weight: 600;
            color: #555;
        }

        /* --- Vision & Mission --- */
        .vm-box {
            background-color: var(--light-color);
            padding: 40px;
            border-radius: 10px;
            border-left: 5px solid var(--secondary-color);
            height: 100%;
        }
        .vm-box h4 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 20px;
        }

        /* --- Why Choose Us --- */
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        .feature-box:hover {
            background-color: #f8f9fa;
            transform: translateY(-5px);
        }
        .feature-box i {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        .feature-box h5 {
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        /* --- Services --- */
        .service-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            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.15);
        }
        .service-card .card-img-top {
            height: 200px;
            object-fit: cover;
        }
        .service-card .card-body {
            background-color: var(--light-color);
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        .service-card .card-title {
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        .service-card .card-text {
            flex-grow: 1;
            color: #666;
        }
        .service-card .btn {
            background-color: var(--secondary-color);
            color: var(--primary-color);
            border: none;
            font-weight: 600;
            border-radius: 50px;
            align-self: flex-start;
            transition: all 0.3s ease;
        }
        .service-card .btn:hover {
            background-color: var(--accent-color);
            color: var(--primary-color);
        }

        /* --- Reviews --- */
        .review-card {
            background-color: var(--light-color);
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            margin-bottom: 30px;
        }
        .review-card .stars {
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        .review-card p {
            font-style: italic;
            margin-bottom: 20px;
        }
        .reviewer-info h6 {
            font-weight: 700;
            color: var(--primary-color);
            margin: 0;
        }
        .reviewer-info small {
            color: #888;
        }

        /* --- Work Process --- */
        .process-box {
            text-align: center;
            position: relative;
        }
        .process-box:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 40px;
            right: -15%;
            width: 30%;
            height: 2px;
            background-color: var(--secondary-color);
        }
        .process-icon {
            width: 80px;
            height: 80px;
            background-color: var(--primary-color);
            color: var(--light-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px auto;
            font-size: 1.8rem;
            font-weight: 700;
        }
        .process-box h5 {
            color: var(--primary-color);
            font-weight: 700;
        }

        /* --- FAQ's --- */
        .accordion-button:not(.collapsed) {
            background-color: var(--primary-color);
            color: var(--light-color);
            font-weight: 600;
        }
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--secondary-color);
        }
        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }
        .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        /* --- CTA Section --- */
        .cta-section {
            background-color: var(--primary-color);
            color: var(--light-color);
            padding: 80px 0;
            text-align: center;
        }
        .cta-section h2 {
            font-weight: 700;
            margin-bottom: 20px;
        }
        .cta-section p {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 40px auto;
        }
        .cta-btn-final {
            background-color: var(--secondary-color);
            color: var(--primary-color);
            border: none;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }
        .cta-btn-final:hover {
            background-color: var(--accent-color);
            color: var(--primary-color);
            transform: translateY(-3px);
        }

        /* --- Contact Section --- */
        .contact-info-box {
            background-color: var(--light-color);
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            height: 100%;
        }
        .contact-info-box i {
            font-size: 2rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        .contact-info-box h5 {
            font-weight: 700;
            color: var(--primary-color);
        }
        .contact-form .form-control, .contact-form .form-select {
            border-radius: 0;
            border: 1px solid #ddd;
            padding: 12px;
        }
        .contact-form .form-control:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 0.2rem rgba(255, 195, 0, 0.25);
        }
        .submit-btn {
            background-color: var(--primary-color);
            color: var(--light-color);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 0;
            transition: background-color 0.3s ease;
        }
        .submit-btn:hover {
            background-color: #002244;
        }

        /* --- Footer --- */
        footer {
            background-color: var(--primary-color);
            color: #ccc;
            padding: 60px 0 20px 0;
        }
        footer h5 {
            color: var(--light-color);
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        footer h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--secondary-color);
        }
        footer ul {
            list-style: none;
            padding: 0;
        }
        footer ul li {
            margin-bottom: 12px;
        }
        footer ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer ul li a:hover {
            color: var(--secondary-color);
        }
        .newsletter-form .form-control {
            background-color: transparent;
            border: 1px solid #555;
            color: var(--light-color);
            border-radius: 0;
        }
        .newsletter-form .form-control::placeholder {
            color: #aaa;
        }
        .newsletter-form .btn {
            background-color: var(--secondary-color);
            color: var(--primary-color);
            border: none;
            border-radius: 0;
            font-weight: 600;
            padding: 0 20px;
            transition: background-color 0.3s ease;
        }
        .newsletter-form .btn:hover {
            background-color: var(--accent-color);
        }
        .copyright-area {
            border-top: 1px solid #444;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
        }
        .copyright-area a {
            color: var(--secondary-color);
            text-decoration: none;
        }
        .copyright-area a:hover {
            text-decoration: underline;
        }
