/* =========================================
   ABOUT PAGE FIXES
========================================= */

/* page base */
.about-page-home-style {
    background: #f4f1eb;
    color: #23242b;
}

/* hero */
.about-home-hero {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.about-home-hero img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.about-home-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(244, 122, 44, 0.62),
        rgba(255, 95, 88, 0.48)
    ) !important;
    z-index: 1;
}

.about-home-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.about-home-hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.06;
    color: #ffffff !important;
    margin: 0;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

/* intro layout */
.about-home-intro {
    padding: 70px 0 80px;
}

.about-home-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 52px;
    align-items: start;
}

/* left side text fix */
.about-home-intro-left h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 52px;
    line-height: 1.04;
    font-weight: 800;
    color: #23242b !important;
    margin-bottom: 24px;
    letter-spacing: -0.8px;
}

.about-home-intro-left p {
    color: #666d78 !important;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 16px;
}

/* right card fix */
.about-home-service-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 30px 28px;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.06);
}

.about-home-service-card h3 {
    font-family: 'Poppins', sans-serif;
    color: #23242b !important;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-home-service-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-home-service-card li {
    color: #6a717b !important;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 12px;
    padding-left: 22px;
    position: relative;
}

.about-home-service-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f47a2c;
    box-shadow: 0 0 0 4px rgba(244, 122, 44, 0.12);
}

/* vision / mission cards */
.about-home-info-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px 24px;
    margin-top: 22px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
}

.about-home-info-card h3 {
    font-family: 'Poppins', sans-serif;
    color: #23242b !important;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-home-info-card p {
    color: #6a717b !important;
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 0;
}

/* quality section */
.about-home-quality {
    padding: 80px 0;
}

.about-home-quality-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 28px;
    align-items: center;
}

.about-home-quality-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.05);
}

.about-home-quality-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.about-home-quality-caption {
    background: linear-gradient(135deg, #f47a2c, #ff8c4a);
    padding: 14px 16px;
    text-align: center;
}

.about-home-quality-caption h3 {
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

/* accordion fix */
.about-home-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-home-accordion-box {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.about-home-accordion-title {
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-home-accordion-title h3 {
    color: #23242b !important;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.about-home-accordion-title span {
    color: #f47a2c !important;
    font-size: 22px;
    font-weight: 800;
}

/* team section heading fix */
.about-home-team .section-heading h2 {
    color: #23242b !important;
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
}

/* responsive */
@media (max-width: 1100px) {
    .about-home-intro-grid,
    .about-home-quality-grid {
        grid-template-columns: 1fr;
    }

    .about-home-intro-left h2 {
        font-size: 40px;
    }

    .about-home-hero-content h1 {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .about-home-hero img {
        height: 280px;
    }

    .about-home-hero-content h1 {
        font-size: 32px;
        line-height: 1.12;
    }

    .about-home-intro-left h2,
    .about-home-team .section-heading h2 {
        font-size: 30px;
    }

    .about-home-service-card,
    .about-home-info-card {
        padding: 22px 20px;
    }
}
/* =========================================
   ABOUT HERO MATCH HOME HERO
========================================= */

.about-home-hero {
    position: relative;
    min-height: 560px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.about-home-hero img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
}

.about-home-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(244, 122, 44, 0.88) 0%,
        rgba(255, 95, 88, 0.72) 33%,
        rgba(255, 255, 255, 0.00) 58%
    ) !important;
    z-index: 1;
}

.about-home-hero-content {
    position: absolute;
    top: 50%;
    left: 56px;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 470px;
    text-align: left;
    display: block;
}

.about-home-hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 68px;
    line-height: 0.98;
    font-weight: 800;
    color: #ffffff !important;
    letter-spacing: -1.2px;
    margin-bottom: 18px;
    text-shadow: none;
}

.about-home-hero-content p {
    color: rgba(255, 255, 255, 0.94) !important;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 26px;
    max-width: 430px;
}

.about-home-hero-content .btn-primary {
    background: linear-gradient(135deg, #ff8b36, #ff6d57);
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 14px 28px;
    font-weight: 700;
    box-shadow: none;
}

.about-home-hero-content .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(244, 122, 44, 0.25);
}

/* responsive */
@media (max-width: 1100px) {
    .about-home-hero-content h1 {
        font-size: 52px;
    }
}

@media (max-width: 768px) {
    .about-home-hero {
        min-height: 360px;
        border-radius: 22px;
    }

    .about-home-hero img {
        height: 360px;
    }

    .about-home-hero-content {
        left: 24px;
        right: 24px;
        max-width: 100%;
    }

    .about-home-hero-content h1 {
        font-size: 36px;
        line-height: 1.08;
    }

    .about-home-hero-content p {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* =========================================
   ABOUT PAGE HEADER ONLY
   match second image
========================================= */

.about-page-home-style .site-header {
    background: #f4f1eb !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03) !important;
}

.about-page-home-style .header-container {
    min-height: 96px;
}

.about-page-home-style .logo img {
    height: 68px;
    width: auto;
}

.about-page-home-style .main-nav a {
    color: #2f3137 !important;
    font-weight: 600 !important;
}

.about-page-home-style .main-nav a:hover,
.about-page-home-style .main-nav a.active {
    color: #f47a2c !important;
}

.about-page-home-style .main-nav a::after {
    background: #f47a2c !important;
}

.about-page-home-style .dropdown-menu {
    background: #ffffff !important;
    border-radius: 16px !important;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10) !important;
}

.about-page-home-style .dropdown-menu li a {
    color: #555d69 !important;
}

.about-page-home-style .dropdown-menu li a:hover {
    color: #f47a2c !important;
    background: #fff5ee !important;
}

.about-page-home-style .menu-toggle span {
    background: #2f3137 !important;
}

/* FORCE ABOUT PAGE FOOTER/TOP DARK AREA TO MATCH */
.about-page-home-style .site-footer,
.about-page-home-style .footer-bottom,
.about-page-home-style .footer-grid,
.about-page-home-style .footer-col,
.about-page-home-style .footer-about {
    background: #12345a !important;
}

/* keep text readable */
.about-page-home-style .site-footer,
.about-page-home-style .site-footer p,
.about-page-home-style .site-footer li,
.about-page-home-style .site-footer a,
.about-page-home-style .site-footer h3 {
    color: #ffffff !important;
}

/* subtle divider */
.about-page-home-style .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08) !important;
}

/* =========================
   FOOTER DARK NAVY FIX
========================= */

.about-page-home-style .site-footer {
    background: #0f2f4f !important; /* deep navy */
    padding-top: 60px;
}

.about-page-home-style .footer-bottom {
    background: #0f2f4f !important;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.about-page-home-style .site-footer h3,
.about-page-home-style .site-footer p,
.about-page-home-style .site-footer a,
.about-page-home-style .site-footer li {
    color: #ffffff !important;
}

.about-page-home-style .site-footer a:hover {
    color: #f47a2c !important;
}

/* =========================
   SPACE ABOVE FOOTER
========================= */

.about-page-home-style .team-section {
    margin-bottom: 80px;
}

.about-page-home-style .team-card {
    margin-bottom: 30px;
}

/* extra breathing before footer */
.about-page-home-style .site-footer {
    margin-top: 60px;
}

.about-page-home-style .team-card-content {
    padding: 20px 15px;
}

/* =========================
   FINAL FOOTER COLOR MATCH
========================= */

.about-page-home-style .site-footer,
.about-page-home-style .footer-bottom {
    background: #0b0f1a !important; /* exact dark navy */
}

/* text styling */
.about-page-home-style .site-footer h3,
.about-page-home-style .site-footer p,
.about-page-home-style .site-footer a,
.about-page-home-style .site-footer li {
    color: #ffffff !important;
}

/* slightly softer paragraph text */
.about-page-home-style .site-footer p {
    opacity: 0.75;
}

/* hover color */
.about-page-home-style .site-footer a:hover {
    color: #f47a2c !important;
}

/* bottom copyright line */
.about-page-home-style .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* =========================================
   ABOUT PAGE FOOTER - FORCE SINGLE COLOR
========================================= */

.about-page-home-style .site-footer,
.about-page-home-style .footer-grid,
.about-page-home-style .footer-bottom,
.about-page-home-style .footer-col,
.about-page-home-style .footer-about {
    background: #0b0f1a !important;
}

/* remove boxed inner footer look */
.about-page-home-style .footer-grid {
    box-shadow: none !important;
    border: none !important;
}

/* text colors */
.about-page-home-style .site-footer h3,
.about-page-home-style .site-footer p,
.about-page-home-style .site-footer a,
.about-page-home-style .site-footer li {
    color: #ffffff !important;
}

.about-page-home-style .site-footer p {
    opacity: 0.78;
}

.about-page-home-style .site-footer a:hover {
    color: #f47a2c !important;
}

/* divider line above copyright */
.about-page-home-style .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06) !important;
}
.quality-section {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.quality-image-card {
    width: 40%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.quality-image-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.quality-label {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #ff7a2f;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-weight: bold;
    font-size: 20px;
}

.quality-accordion {
    width: 60%;
}

.accordion-item {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.accordion-item:hover {
    background: #eee;
}

.accordion-item h3 {
    display: flex;
    justify-content: space-between;
}
.about-home-accordion-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.about-home-accordion-text {
    flex: 1;
}

.about-home-accordion-text h3 {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 700;
    color: #1d2233;
}

.about-home-accordion-text p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #6a7183;
    max-width: 760px;
}

.about-home-accordion-title span {
    flex-shrink: 0;
    font-size: 34px;
    font-weight: 700;
    color: #f9853b;
    line-height: 1;
}