.navbar-brand img {
    width: 150px;
    height: auto;
    max-height: 100px;
    object-fit: contain;
}

@media (max-width: 576px) {
    .navbar-brand img {
        width: 115px;
        max-height: 80px;
    }
}


/* ==========================
   HERO HEADER OVERLAY
========================== */

.single_slider {
    position: relative;
    isolation: isolate;
}

/* Dark overlay */
.single_slider::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.60) 0%,
        rgba(0, 0, 0, 0.40) 50%,
        rgba(0, 0, 0, 0.25) 100%
    );
    z-index: -1;
}

/* Keep the text above the overlay */
.single_slider .container {
    position: relative;
    z-index: 1;
}


    /* === Improved equal-height cards with better padding & spacing === */

    /* --- 1. Tighter column gutters (less wasted space between cards) --- */
    .services_area .col-lg-3,
    #capabilities .col-lg-4,
    #capabilities .col-sm-6 {
        padding-left: 12px;
        padding-right: 12px;
    }

    /* Make the row handle the flex properly */
    .services_area .row,
    #capabilities .row {
        display: flex;
        flex-wrap: wrap;
        margin-left: -12px;
        margin-right: -12px;  /* offset the tighter column padding */
    }

    /* --- 2. Card styling – roomier inside --- */
    .single_service {
        display: flex;
        flex-direction: column;
        height: 100%;
        padding: 32px 24px 28px;   /* more breathing room (top/left/right/bottom) */
        background: #ffffff;
        border-radius: 10px;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        border: 1px solid rgba(0, 0, 0, 0.03);
    }

    /* --- 3. Icon spacing (gap between icon and title) --- */
    .single_service .services_icon {
        margin-bottom: 18px;
        line-height: 1;
    }

    .single_service .services_icon i {
        font-size: 38px;   /* slightly larger to balance the new padding */
        display: inline-block;
    }

    /* --- 4. Content area – grows to fill height --- */
    .single_service .services_content {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    /* --- 5. Title – well-proportioned --- */
    .single_service .services_content .title {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 14px;   /* extra space before description */
        line-height: 1.3;
        color: #1a1a2e;
    }

    /* --- 6. Description – clean and readable --- */
    .single_service .services_content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 0;
        flex: 1;               /* pushes any extra space downward */
        color: #555;
    }

    /* --- 7. Capabilities section (3-column layout) gets slightly smaller text --- */
    #capabilities .single_service .services_content .title {
        font-size: 17px;
    }

    #capabilities .single_service .services_content p {
        font-size: 13.5px;
    }

    /* --- 8. Responsive fine-tuning --- */
    @media (max-width: 767px) {
        .single_service {
            padding: 24px 18px 22px;
        }
        .single_service .services_content .title {
            font-size: 16px;
        }
        .single_service .services_content p {
            font-size: 13px;
        }
        .services_area .col-lg-3,
        #capabilities .col-lg-4,
        #capabilities .col-sm-6 {
            padding-left: 8px;
            padding-right: 8px;
        }
        .services_area .row,
        #capabilities .row {
            margin-left: -8px;
            margin-right: -8px;
        }
    }

    /* --- 9. Optional hover lift (adds polish) --- */
    .single_service:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
        border-color: rgba(0, 0, 0, 0.06);
    }

    
/* ===== SERVICES HERO ===== */
.services-hero {
    background-image: url(assets/images/services-hero.jpg);
    min-height: 50vh;
    height: 50vh;
}

/* ===== SERVICE DETAIL SECTIONS ===== */
.service_detail {
    padding: 100px 0;
}

.service-alt-bg {
    background: #f9fafc;
}

.service_detail .service_detail_image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.service_detail .service_icon {
    font-size: 48px;
    color: #f9a51a;
    margin-bottom: 20px;
}

.service_detail .service_title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service_detail .service_title span {
    color: #f9a51a;
}

.service_detail .service_detail_content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.service_detail .service-features {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.service_detail .service-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    color: #555;
}

.service_detail .service-features li:last-child {
    border-bottom: none;
}

.service_detail .service-features li::before {
    content: "\f00c";
    font-family: "LineIcons";
    color: #f9a51a;
    margin-right: 10px;
}

.service_detail .main-btn {
    margin-top: 30px;
}

/* ===== CTA SECTION ===== */
.cta_area {
    background: #1a1a2e;
    color: #fff;
    padding: 80px 0;
}

.cta_area h3 {
    font-size: 28px;
    font-weight: 700;
}

.cta_area p {
    font-size: 16px;
    color: #ccc;
    margin-top: 10px;
}

.cta_area .cta-btn {
    background: #f9a51a;
    color: #1a1a2e;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta_area .cta-btn:hover {
    background: #e8950e;
    color: #1a1a2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 165, 26, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .service_detail .service_detail_image {
        margin-bottom: 40px;
    }
    .service_detail .row {
        flex-direction: column !important;
    }
    .service_detail .row .col-lg-6 {
        width: 100%;
    }
    .cta_area .text-lg-right {
        text-align: center !important;
        margin-top: 20px;
    }
}


    /* =========================================
   VISION & MISSION SECTION
========================================= */

.vision_mission_section {
    padding: 100px 0;
    overflow: hidden;
}

.vision_mission_content {
    padding-right: 50px;
}

.vision_mission_content .title {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 25px;
}

.vision_mission_content .title span {
    color: #f5c400;
}

.vision_mission_content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.vision_mission_image {
    width: 100%;
    height: 460px;
    overflow: hidden;
    border-radius: 0 80px 0 0;
}

.vision_mission_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* TABLET */
@media (max-width: 991px) {

    .vision_mission_content {
        padding-right: 0;
        margin-bottom: 45px;
    }

    .vision_mission_image {
        height: 400px;
    }
}


/* MOBILE */
@media (max-width: 767px) {

    .vision_mission_section {
        padding: 70px 0;
    }

    .vision_mission_content .title {
        font-size: 30px;
    }

    .vision_mission_image {
        height: 320px;
        border-radius: 0 50px 0 0;
    }
}



/* === Service Detail Sections === */
.service_detail {
    padding: 100px 0;
}

.service_detail .service_detail_image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.service_detail .service_detail_content ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    color: #555;
}

.service_detail .service_detail_content ul li:last-child {
    border-bottom: none;
}

/* === CTA Section === */
.cta_area {
    background: #1a1a2e;
    color: #fff;
}

.cta_area .main-btn {
    background: #f9a51a;
    color: #1a1a2e;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta_area .main-btn:hover {
    background: #e8950e;
    color: #1a1a2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 165, 26, 0.3);
}

/* === Responsive === */
@media (max-width: 991px) {
    .service_detail .service_detail_image {
        margin-bottom: 40px;
    }
    .service_detail .row {
        flex-direction: column !important;
    }
    .service_detail .row .col-lg-6 {
        width: 100%;
    }
}



/* ===== CONTACT HERO ===== */
.contact-hero {
    background-image: url(assets/images/contact-hero.jpg);
    min-height: 50vh;
    height: 50vh;
}

/* ===== CONTACT PAGE ===== */
.contact_page {
    background: #f9fafc;
}

/* Contact Info Left */
.contact_info_wrapper {
    padding: 40px 0;
}

.contact_info_wrapper .section_title p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact_info_item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.contact_info_item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.contact_info_icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(249, 165, 26, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #f9a51a;
    margin-right: 18px;
}

.contact_info_text h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1a1a2e;
}

.contact_info_text p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
    line-height: 1.5;
}

.contact_info_text a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact_info_text a:hover {
    color: #f9a51a;
}

.contact_social h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.contact_social .social {
    padding-left: 0;
    list-style: none;
    display: flex;
    gap: 12px;
}

.contact_social .social li a {
    display: inline-block;
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 44px;
    font-size: 16px;
    color: #1a1a2e;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.contact_social .social li a:hover {
    background: #f9a51a;
    color: #fff;
    transform: translateY(-3px);
}

/* Contact Form Right */
.contact_form_wrapper {
    background: #fff;
    padding: 45px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.contact_form_title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.contact_form_title span {
    color: #f9a51a;
}

.contact-form .single_form {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e8e8e8;
    border-radius: 8px;
    font-size: 15px;
    color: #1a1a2e;
    background: #f9fafc;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #f9a51a;
    outline: none;
    box-shadow: 0 0 0 3px rgba(249, 165, 26, 0.1);
    background: #fff;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    background: #f9a51a;
    color: #1a1a2e;
    border: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-form .submit-btn:hover {
    background: #e8950e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 165, 26, 0.3);
}

/* ===== MAP SECTION ===== */
.map_section .map_wrapper iframe {
    width: 100%;
    height: 400px;
    display: block;
}

/* ===== CTA SECTION ===== */
.cta_area {
    background: #1a1a2e;
    color: #fff;
    padding: 80px 0;
}

.cta_area h3 {
    font-size: 28px;
    font-weight: 700;
}

.cta_area p {
    font-size: 16px;
    color: #ccc;
    margin-top: 10px;
}

.cta_area .cta-btn {
    background: #f9a51a;
    color: #1a1a2e;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta_area .cta-btn i {
    margin-right: 8px;
}

.cta_area .cta-btn:hover {
    background: #e8950e;
    color: #1a1a2e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 165, 26, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .contact_info_wrapper {
        padding: 0 0 40px 0;
    }
    .contact_form_wrapper {
        padding: 30px 20px;
    }
    .cta_area .text-lg-right {
        text-align: center !important;
        margin-top: 20px;
    }
    .map_section .map_wrapper iframe {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .contact_page {
        padding: 60px 0;
    }
    .contact_form_title {
        font-size: 22px;
    }
    .contact_info_item {
        padding: 15px 18px;
    }
    .cta_area {
        padding: 50px 0;
    }
    .cta_area h3 {
        font-size: 22px;
    }
}

.footer_about img {
    height: 80px !important;          /* increase from 40px to your desired size */
    width: auto;
}


 /* ===== FOOTER ===== */
        .footer_area {
            padding: 60px 0 30px;
        }
        .footer_grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        .footer_about img {
            height: 40px;
            width: auto;
            filter: brightness(0) invert(1);
            margin-bottom: 16px;
        }
        .footer_about p {
            font-size: 0.9rem;
            line-height: 1.8;
            max-width: 360px;
            color: rgba(255, 255, 255, 0.60);
        }
        .footer_about .social {
            list-style: none;
            display: flex;
            gap: 12px;
            margin-top: 18px;
            padding: 0;
        }
        .footer_about .social li a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            color: rgba(255, 255, 255, 0.50);
            font-size: 1rem;
            transition: var(--transition);
        }
        .footer_about .social li a:hover {
            background: var(--accent);
            color: var(--gray-900);
            transform: translateY(-3px);
        }

        .footer_title {
            font-size: 0.9rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 18px;
            letter-spacing: 0.5px;
        }
        .footer_link ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer_link ul li {
            margin-bottom: 10px;
        }
        .footer_link ul li a {
            color: rgba(255, 255, 255, 0.60);
            font-size: 0.9rem;
            transition: var(--transition);
        }
        .footer_link ul li a:hover {
            color: var(--accent-light);
        }
        .footer_link ul li:not(:has(a)) {
            color: rgba(255, 255, 255, 0.55);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .footer_subscribe p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.55);
            margin-bottom: 16px;
        }
        .footer_subscribe .subscribe_form {
            display: flex;
            gap: 8px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 50px;
            padding: 4px;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        .footer_subscribe .subscribe_form input {
            flex: 1;
            background: none;
            border: none;
            padding: 10px 18px;
            color: #fff;
            font-size: 0.9rem;
            outline: none;
            font-family: 'Inter', sans-serif;
        }
        .footer_subscribe .subscribe_form input::placeholder {
            color: rgba(255, 255, 255, 0.30);
        }
        .footer_subscribe .subscribe_form button {
            background: var(--accent);
            border: none;
            color: var(--gray-900);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .footer_subscribe .subscribe_form button:hover {
            background: var(--accent-light);
            transform: scale(1.04);
        }

        .footer_bottom {
            margin-top: 30px;
            text-align: center;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.30);
        }
        .footer_bottom a {
            color: rgba(255, 255, 255, 0.40);
            transition: var(--transition);
        }
        .footer_bottom a:hover {
            color: var(--accent-light);
        }

        @media (max-width: 991px) {
            .footer_grid {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
            .footer_about p {
                max-width: 100%;
            }
        }
        @media (max-width: 600px) {
            .footer_grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
        }


        .footer_about .social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: #fff;               /* makes icons white and visible */
    font-size: 18px;
    transition: 0.3s;
}
.footer_about .social li a:hover {
    background: #f9a51a;       /* accent colour on hover */
    color: #1a1a2e;
    transform: translateY(-3px);
}