.map-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 42%;
    /* Adjust aspect ratio (height/width). 42% ≈ 600x250) */
    overflow: hidden;
    border-radius: 16px;
    /* Rounded corners */
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

p {
    color: black;
}

li {
    color: black;
}

.we-do-card {
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.we-do-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.we-do-card p {
    font-size: 14px;
    color: #555;
}

/* ===== EXECUTIVE PROFESSIONAL UI ===== */
.services-section-3 {
    background: #ffffff;
}

/* Grid consistency */
.services-section-3 .col-xl-4,
.services-section-3 .col-lg-4,
.services-section-3 .col-md-6 {
    display: flex;
}

/* Card */
.service-card-3 {
    width: 100%;
    min-height: 360px;
    padding: 36px 32px;
    background: linear-gradient(180deg, #ffffff, #f9fafb);
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

/* Hover */
.service-card-3:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.10);
    border-color: #d1d5db;
}

/* Header */
.service-top {
    margin-bottom: 18px;
}

.service-top h4 {
    font-size: 18.5px;
    font-weight: 600;
    color: #111827;
    line-height: 1.45;
    margin-top: 16px;
}

/* Icon container */
.icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(160, 30, 39, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.icon-wrap i {
    font-size: 24px;
    color: #A01E27;
}

/* Icon animation */
.service-card-3:hover .icon-wrap {
    background: #A01E27;
    transform: translateY(-4px) scale(1.05);
}

.service-card-3:hover .icon-wrap i {
    color: #ffffff;
}

/* Content */
.service-content p {
    font-size: 14.8px;
    line-height: 1.7;
    color: #374151;
}

/* Number */
.i-shape {
    position: absolute;
    bottom: 18px;
    right: 22px;
    opacity: 0.25;
    transition: all 0.4s ease;
}

.i-shape h1 {
    font-size: 44px;
    font-weight: 700;
    color: #9ca3af;
    margin: 0;
}

/* Number animation */
.service-card-3:hover .i-shape {
    opacity: 0.6;
    transform: scale(1.1);
}

/* Mobile */
@media (max-width: 768px) {
    .service-card-3 {
        min-height: auto;
    }
}


/* =========================
   PROMOTER / TEAM SECTION
========================= */
.what-we-do-section-2 {
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    position: relative;
}

/* Overlay for readability */
.what-we-do-section-2::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 69, 64, 0.85);
    z-index: 1;
}

.what-we-do-section-2 .container {
    position: relative;
    z-index: 2;
}

.promoter-profile {
    background: #ffffff;
    border-radius: 22px;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    gap: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    transition: all 0.35s ease;
}

.promoter-profile:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 65px rgba(0, 0, 0, 0.25);
}

/* Oval image wrapper */
.profile-img {
    width: 90px;
    height: 150px;
    border-radius: 50px;
    overflow: hidden;
    border: 4px solid #0b5d4b;
    flex-shrink: 0;
}

/* Image inside oval */
.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text styling */
.profile-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0b5d4b;
    margin-bottom: 4px;
}

.profile-info span {
    font-size: 14px;
    font-weight: 600;
    color: #2f8f46;
    display: inline-block;
    margin-bottom: 12px;
}

.profile-info p {
    font-size: 15px;
    line-height: 1.65;
    color: #555;
    margin: 0;
}


.policy-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 22px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.policy-item:hover {
    transform: translateY(-5px);
}

.policy-item i {
    font-size: 22px;
    color: #a01e27;
}

.policy-item p {
    margin: 0;
    font-size: 15px;
    color: #444;
}

.footer-bottom-3 {
    background-color: #a01e27;
    padding: 15px 20px;
}

.footer-bottom-layout-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    color: #ffffff;
    font-size: 14px;
}

/* Center items on mobile */
@media (max-width: 768px) {
    .footer-bottom-layout-2 {
        justify-content: center;
        text-align: center;
    }
}

/* Remove list styling */
.footer-bottom-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-bottom-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.footer-bottom-menu a:hover {
    text-decoration: underline;
}


/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== STICKY WRAPPER ===== */
.header-wrapper {
    position: sticky;
    top: 0;
    z-index: 9999;
}

/* ===== DARK BAR ===== */
.main-header {
    background: #A01E27;
    height: 70px;
    position: relative;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 100%;
}

/* ===== LOGO ===== */
.logo-holder {
    position: absolute;
    left: 40px;
    top: 25px;
    z-index: 10;
}

.logo-holder img {
    width: 95px;
    height: 95px;
    background: #fff;
    border-radius: 50%;
    object-fit: contain;
}

/* ===== DESKTOP MENU ===== */
.menu {
    list-style: none;
    display: flex;
    gap: 32px;
    margin-left: auto;
    padding-top: 25px;
}

.menu li a {
    color: #fff;
    font-size: 17px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu li a:hover,
.menu li.active a {
    color: #f2c94c;
    font-weight: 600;
}

/* ===== MOBILE TOGGLE ===== */
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-toggle span {
    width: 26px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    border-radius: 2px;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #A01E27;
    display: none;
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 20px;
}

.mobile-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.mobile-menu li a {
    color: #fff;
    display: block;
    padding: 12px 0;
    text-decoration: none;
    font-size: 18px;
}

.mobile-menu li.active a {
    color: #f2c94c;
    font-weight: 600;
}

/* ==============================
   RESPONSIVE BREAKPOINTS
================================ */

/* Tablets & Mobile */
@media (max-width: 991px) {

    .header-inner {
        padding: 0 20px;
    }

    /* Reset logo position */
    .logo-holder {
        position: static;
    }

    .logo-holder img {
        width: 60px;
        height: 60px;
        margin: 0;
    }

    /* Hide desktop menu */
    .menu {
        display: none;
    }

    /* Show hamburger */
    .mobile-toggle {
        display: flex;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .logo-holder img {
        width: 55px;
        height: 55px;
    }
}

/* ===== WHITE INFO BAR ===== */
.info-bar {
    background: #ffffff;
    height: 55px;
    border-bottom: 1px solid #eee;
}

.info-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 40px;
    height: 100%;
}

.info-right {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
}

/* ===== MOBILE TOGGLE ===== */
.mobile-toggle {
    display: none;
    cursor: pointer;
    position: absolute;
    right: 40px;
    /* RIGHT SIDE */
    top: 50%;
    transform: translateY(-50%);
}


.mobile-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    margin: 6px 0;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #22272b;
    transform: translateY(-100%);
    transition: 0.3s ease-in-out;
    z-index: 9998;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu ul {
    list-style: none;
    padding: 20px;
}

.mobile-menu ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu ul li a {
    display: block;
    padding: 14px 0;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
}

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

    .menu {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .logo-holder {
        left: 20px;
        top: 30px;
    }

    .logo-holder img {
        width: 75px;
        height: 75px;
    }

    .info-right {
        font-size: 12px;
        gap: 12px;
    }
}

/* DEMO CONTENT */
.content {
    padding: 40px;
    background: #f5f5f5;
}


/* =========================
   BENEFITS / SDGs SECTION
========================= */
#Benefits .service-card-2 {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

#Benefits .service-card-2:hover {
    transform: translateY(-10px);
}

#Benefits .service-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

#Benefits .sdg-icon {
    width: 50px;
    height: 50px;
    background: #00b894;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
}

/* Responsive */
@media (max-width: 1200px) {
    #Benefits .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    #Benefits .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


/* =========================
   CONTACT SECTION
========================= */

#Contact {
    background-color: #f9f9f9;
    padding-top: 80px;
    padding-bottom: 80px;
}

.contact-card {
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    padding: 30px 20px;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-card .icon i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #007bff;
}

.contact-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .contact-card {
        padding: 25px 20px;
    }

    .contact-card .icon i {
        font-size: 42px;
    }

    .contact-card h4 {
        font-size: 18px;
    }

    .contact-card p {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .contact-card {
        padding: 20px 15px;
    }

    .contact-card .icon i {
        font-size: 36px;
    }

    .contact-card h4 {
        font-size: 18px;
    }

    .contact-card p {
        font-size: 14px;
    }
}


/* =========================
   WHAT WE DO / SERVICES SECTION
========================= */
#services .we-do-card {
    background: #fff;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

#services .we-do-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

#services .we-do-card .card-content i {
    font-size: 28px;
    margin-bottom: 10px;
    color: #00b894;
}

#services .we-do-card .card-content h5 {
    font-size: 18px;
    margin-bottom: 8px;
}

#services .we-do-card .card-content p {
    font-size: 14px;
    color: #555;
}

/* Responsive Grid */
@media (max-width: 1200px) {
    #services .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    #services .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


/* =========================
   PROMOTER / TEAM SECTION
========================= */
/* TEAM SECTION */
#Team {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
}

/* Intro Text */
#Team .promoter-intro img {
    max-width: 80px;
}

#Team .promoter-intro p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 15px;
}

#Team .promoter-intro h2 {
    font-size: 32px;
    font-weight: 700;
}

/* Promoter Profile Card */
#Team .promoter-profile {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 22px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    transition: transform 0.35s ease;
    flex-wrap: wrap;
}

#Team .promoter-profile:hover {
    transform: translateY(-5px);
}

/* Profile Image */
#Team .profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

#Team .profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Profile Info */
#Team .profile-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0b5d4b;
    margin-bottom: 5px;
}

#Team .profile-info span {
    font-size: 14px;
    font-weight: 600;
    color: #2f8f46;
    display: block;
    margin-bottom: 8px;
}

#Team .profile-info p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 991px) {
    #Team .promoter-profile {
        flex-direction: row;
        gap: 15px;
        padding: 15px;
    }

    #Team .profile-img {
        width: 80px;
        height: 80px;
    }

    #Team .profile-info h3 {
        font-size: 18px;
    }

    #Team .profile-info p {
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    #Team .promoter-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #Team .profile-img {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }

    #Team .profile-info h3 {
        font-size: 18px;
    }

    #Team .profile-info p {
        font-size: 14px;
    }
}

.company-achievements-section {
    padding: 60px 0;
    background: #f8f9fb;
}

.company-achievements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.achievement {
    background: #ffffff;
    padding: 35px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.achievement:hover {
    transform: translateY(-6px);
}

.achievement .icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement .icon i {
    font-size: 26px;
    color: #A01E27;
}

.achievement h2 {
    font-size: 36px;
    font-weight: 700;
    color: #22272b;
    margin-bottom: 5px;
}

.achievement p {
    font-size: 15px;
    color: #555;
    margin: 0;
    font-weight: 500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .company-achievements {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .company-achievements {
        grid-template-columns: 1fr;
    }
}

.offer-section-2 {
    background: #f8f9fb;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
}

.section-desc {
    max-width: 750px;
    margin: 0 auto;
    color: #555;
}

.offer-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 14px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: #A01E27;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    transition: transform 0.4s ease;
}

.offer-card:hover .icon-box {
    transform: rotate(10deg) scale(1.1);
}

.offer-card p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}
.project-images img {
    width: 100%;
    display: block;
    margin-bottom: 10px;
    border-radius: 8px;      /* corner curve */
}

/* extra gap AFTER every 2nd image */
.project-images img:nth-child(2),
.project-images img:nth-child(4) {
    margin-bottom: 25px;
}
.hero-slide-3 {
    position: relative;
    min-height: 50vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

/* Overlay for readability */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.65) 0%,
        rgba(0,0,0,0.45) 35%,
        rgba(0,0,0,0.15) 60%,
        rgba(0,0,0,0) 100%
    );
    z-index: 1;
}

/* Content */
.hero-content-3.hero-left {
    position: relative;
    z-index: 2;
    max-width: 620px;
    text-align: left;
margin-left:-30px;
}

/* Subtitle */
.hero-content-3 .subtitle span {
    font-size: 18px;
    font-weight: 500;
    color: black;
    display: block;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Title */
.hero-content-3 .title h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    color: black;
    margin-bottom: 28px;
}

.hero-content-3 .title span {
    color: #A01E27;
}

/* Button */
.e-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #A01E27;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.e-primary-btn:hover {
    background: #ffffff;
    color: #A01E27;
}

/* Pagination */
.hero-slider-pagination-3 {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content-3 .title h1 {
        font-size: 42px;
    }
}

@media (max-width: 576px) {
    .hero-content-3 .title h1 {
        font-size: 32px;
    }

    .hero-content-3 .subtitle span {
        font-size: 18px;
    }
}



/* =====================================================
   GLOBAL RESET
===================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}



/* =====================================================
   CONTAINER (IMPORTANT FOR 2560px)
===================================================== */
.container {
    width: 100%;
    max-width: 1320px;
    margin: auto;
    padding: 0 16px;
}

@media (min-width: 1920px) {
    .container {
        max-width: 1440px;
    }
}

/* =====================================================
   MAP RESPONSIVE
===================================================== */
.map-responsive {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7;
    overflow: hidden;
    border-radius: 16px;
}

.map-responsive iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* =====================================================
   COMMON CARDS
===================================================== */
.we-do-card,
.offer-card,
.policy-item,
.achievement,
.contact-card,
.service-card-3 {
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.we-do-card:hover,
.offer-card:hover,
.policy-item:hover,
.achievement:hover,
.contact-card:hover,
.service-card-3:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* =====================================================
   SERVICES CARD
===================================================== */
.service-card-3 {
    padding: 36px 32px;
    min-height: 360px;
    border: 1px solid #e5e7eb;
    background: linear-gradient(180deg, #fff, #f9fafb);
    position: relative;
}

.service-top h4 {
    font-size: clamp(16px, 2vw, 18.5px);
    font-weight: 600;
    margin-top: 16px;
}

.service-content p {
    font-size: clamp(14px, 1.2vw, 15px);
    color: #374151;
}

/* =====================================================
   ICON
===================================================== */
.icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(160, 30, 39, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrap i {
    font-size: 24px;
    color: #A01E27;
}

.service-card-3:hover .icon-wrap {
    background: #A01E27;
}

.service-card-3:hover .icon-wrap i {
    color: #fff;
}

/* =====================================================
   HERO SECTION (FIXED FOR 2560)
===================================================== */
.hero-slide-3 {
    position: relative;
    min-height: 50vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0)
    );
}

.hero-content-3 {
    position: relative;
    max-width: 620px;
}

.hero-content-3 .subtitle span {
    font-size: clamp(16px, 1.5vw, 18px);
    color: #000;
}

.hero-content-3 .title h1 {
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.15;
    font-weight: 700;
}

.hero-content-3 .title span {
    color: #A01E27;
}

/* =====================================================
   GRID (2560 SAFE)
===================================================== */
.company-achievements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* =====================================================
   SECTION TITLES
===================================================== */
.section-title {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700;
}

.section-desc {
    max-width: 750px;
    margin: auto;
    color: #555;
}

/* =====================================================
   FOOTER
===================================================== */
.footer-bottom-3 {
    background: #A01E27;
    padding: 15px;
}

.footer-bottom-layout-2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
    color: #fff;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 991px) {
    .service-card-3 {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .footer-bottom-layout-2 {
        justify-content: center;
        text-align: center;
    }
}



/* ABOUT US BLOCK */
.about-us-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

/* Background Image */
.bg-about {
    background: url("about.jpg") no-repeat center right;
    background-size: cover;
}

/* Optional soft overlay for readability */
.bg-about::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.95) 0%,
        rgba(255,255,255,0.85) 45%,
        rgba(255,255,255,0.2) 100%
    );
    z-index: 1;
}

.about-us-section .container {
    position: relative;
    z-index: 2;
}

/* TEXT STYLES */
.common-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #8b1d1d;
    margin-bottom: 12px;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    color: #7c1414;
    margin-bottom: 20px;
}

.about-text {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Timeline */
.timeline-item {
    margin-bottom: 18px;
}

.timeline-item h5 {
    color: #7c1414;
    font-weight: 600;
    margin-bottom: 6px;
}

.timeline-item p {
    font-size: 18px;
    color: #666;
}

/* Button */
.btn-learn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    border-radius: 30px;
    background: #7c1414;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-learn:hover {
    background: #5e0f0f;
}




