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

:root {

    --ssb-red: #ED1C24;
    --ssb-dark-red: #d20e27;

    --ssb-green: #39B54A;
    --ssb-dark-green: #1B5E20;
    /* --ssb-dark-green:#2E7D32; */

    --ssb-white: #FFFFFF;

    --ssb-bg: #0B1628;

}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

html {
    scroll-behavior: smooth;
}

.heading {
    font-size: 60px;
    font-weight: 700;
}

.xl_heading {}

.lg_heading {
    font-size: 48px;
}

.md_heading {
    font-size: 30px;
}

.sm_heading {
    font-size: 24px;
}

.xs_heading {
    font-size: 20px;
}

/*  */

/* .hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    background-image: url(../assets/images/banner_ssb.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 100px;
    animation: zoomBg 12s ease-in-out infinite alternate;
} */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 650px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 100px;
}

/* BACKGROUND IMAGE */
.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../assets/images/btp-banner.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1);
    animation: zoomBg 12s ease-in-out infinite alternate;
    z-index: -2;
}

/* Navbar */
.custom-navbar {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 20px 100px;
}

.navbar-brand {
    position: absolute;
}

.navbar-brand img {
    width: 150px;
}

.navbar-nav {
    gap: 14px;
}

.navbar-nav .nav-link {
    color: #000;
    font-size: 14px;
    font-weight: 600;
}

.navbar-nav .nav-link:hover {
    color: var(--ssb-dark-red);
}

.enquire-btn {
    background: var(--ssb-dark-green);
    color: #fff;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
    border: 1px solid transparent;
}

.enquire-btn:hover {
    background: transparent;
    border: 1px solid var(--ssb-dark-green);
    color: var(--ssb-dark-green);
}

.custom-dropdown .dropdown-menu {
    display: none;
    margin-top: 0;
}

.custom-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-toggle::after {
    display: none;
}

.nav-item.dropdown.custom-dropdown .mobile_menu {
    display: flex;
    align-items: center;
}

.mobile_menu i {
    font-size: 12px;
    margin-left: 6px;
    transition: 0.3s ease;
    color: var(--ssb-dark-red);
}

.custom-dropdown:hover .mobile_menu i {
    transform: rotate(180deg);
}

.nav-item {
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: .85rem;
    right: .85rem;
    height: 1px;
    background: var(--ssb-dark-red);
    transform: scaleX(0);
    transition: transform .3s;
    transform-origin: left;
}

.navbar-nav .nav-link:hover::after {
    transform: scaleX(1);
}

.custom-dropdown .dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: var(--ssb-dark-green);
}

.custom-dropdown .dropdown-item:hover,
.dropdown-item:focus {
    color: #fff;
    background-color: var(--ssb-dark-green);
}

.custom-dropdown .dropdown-menu {
    /* --bs-dropdown-bg: #1a3d2f; */
    --bs-dropdown-font-size: 14px;
    --bs-dropdown-min-width: 8rem;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 620px;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    width: 80%;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.gold-btn {
    background: var(--ssb-dark-green);
    color: #fff;
    padding: 16px 34px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--ssb-dark-green);
    transition: 0.3s;
}

.gold-btn:hover {
    background: transparent;
    color: #fff;
}

.outline-btn {
    background: transparent;
    color: #fff;
    padding: 16px 34px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.7);
    transition: 0.3s;
}

.outline-btn:hover {
    background: #fff;
    color: var(--ssb-dark-green);
}

/*  */
.stats-section {
    background: #fff;
    padding: 50px 100px 60px;
    ;
}

.stat-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 10px 25px;
    height: 100%;
    position: relative;
}

/* .stat-card::after{
    content:"";
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:70px;
    background:#e3e3e3;
}

.col-lg-3:last-child .stat-card::after{
    display:none;
} */

.icon-box {
    width: 65px;
    height: 65px;
    border: 1px solid #e3e3e3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d2c5a;
    flex-shrink: 0;
}

.icon-box img {
    width: 35px;
}

.stat-content h2 {
    color: #000;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-content p {
    font-size: 16px;
    color: #000;
    margin: 0;
    line-height: 1.4;
}

/*  */
.business-pagination {
    bottom: 0 !important;
}

.business-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;

    background: #d4d4d4;

    opacity: 1;

    transition: .3s;
}

.business-pagination .swiper-pagination-bullet-active {
    width: 28px;

    border-radius: 30px;

    background: var(--ssb-dark-red);
}

.businessSwiper {
    overflow: hidden;
    padding-bottom: 60px;
}

.businessSwiper .swiper-wrapper {
    align-items: stretch;
}

.businessSwiper .swiper-slide {
    height: auto;
    display: flex;
}

/* .business-card {
    width: 100%;
    height: 100%;
    margin-bottom: 0 !important;
} */
.business-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #d5d2d2;
    transition: .5s ease;
    height: 100%;
    position: relative;
    box-shadow: none !important;
    opacity: 0;
    transform: translateY(80px);
    animation: businessReveal 1s ease forwards;
}

.business-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .12);
}

.business-section {
    background: #fff;
    padding: 50px 100px 60px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2::after {
    content: "";
    width: 70px;
    height: 3px;
    background: var(--ssb-dark-red);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 10px;
}

.section-title h2 {
    color: #000;
    margin-bottom: 10px;
    position: relative;
}

.section-title p {
    color: #666;
    margin: 20px 0 0;
}

.business-img {
    position: relative;
    /* overflow:hidden; */
}

.business-img img {
    transition: 0.4s;
    height: 230px;
    object-fit: cover;
    width: 100%;
}

.business-card:hover .business-img img {
    transform: scale(1.05);
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    position: absolute;
    left: 20px;
    bottom: -35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #fff;
    font-size: 28px;
    color: #fff;
    z-index: 2;
}

.icon-circle img {
    width: 30px;
    object-fit: cover;
    height: auto;
}

.blue {
    background: #000;
}

.gold {
    background: var(--ssb-dark-red);
}

.green {
    background: #02672d;
}

.purple {
    background: #6a3c96;
}

.card-content {
    padding: 55px 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 236px;
}

.card-content h3 {
    color: #1d1d1d;
    margin-bottom: 16px;
    line-height: 1.2;
}

.card-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.explore-btn {
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    color: #000;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.explore-btn:hover {
    gap: 14px;
    color: var(--ssb-dark-red);
}

/*  */
.chairman-section {
    padding: 50px 100px 60px;
    ;
    /* background: #fff; */
}

.chairman-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    height: 100%;
    min-height: 520px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

/* .chairman-content {
    padding-left: 40px;
} */

.chairman-content h2 {
    color: #000;
    margin-bottom: 18px;
    line-height: 1.2;
    position: relative;
}

.chairman-content h2::after {
    content: "";
    width: 70px;
    height: 3px;
    background: var(--ssb-dark-red);
    display: block;
    margin-top: 14px;
    border-radius: 10px;
}

.chairman-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 24px;
}

.signature {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.signature h5 {
    font-size: 14px;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 0;
}

.signature span {
    font-size: 16px;
    font-weight: 700;
    color: #1c1c1c;
}

/*  */
.work-section {
    padding: 50px 100px 60px;
    overflow: hidden;
}

.work-section .work-card {
    text-align: center;
    position: relative;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.work-card .work_order_wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    width: max-content;
    background-color: #f5f5f5;
    position: relative;
    z-index: 2;
}

.work-section .step-number {
    color: #000;
    position: absolute;
    left: -60px;
    z-index: 3;
    padding: 0 10px;
    background-color: #f5f5f5;
}

.work-section .step_number_1 {
    position: absolute;
    z-index: 3;
    padding: 0 0px;
    background-color: #f5f5f5;
    color: #fff;
    right: -18px;
}

.work-section .icon-box {
    width: 90px;
    height: 90px;
    border: 2px solid #ececec;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin:0 auto 25px; */
    background: #fff;
    color: #000;
    font-size: 34px;
    position: relative;
    z-index: 2;
    transition: 0.3s;
}

.work-section .work-card:hover .icon-box {
    background: var(--ssb-dark-red);
    color: #fff;
    border-color: var(--ssb-dark-red);
    transform: translateY(-5px);
}

.work-section .work-card h4 {
    color: #1c1c1c;
    margin-bottom: 10px;
    padding-top: 15px;
    min-height: 72px;
}

.work-section .work-card p {
    font-size: 16px;
    color: #666;
    margin: 0;
    width: 50%;
}


.work-section .work-card::after {
    content: "";
    position: absolute;
    top: 45px;
    right: -50%;
    width: 100%;
    height: 2px;
    border-top: 2px dotted #d9d9d9;
    z-index: 1;
}

.work-btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.work-btn-wrapper .gold-btn:hover {
    color: #000;
}

.work_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    padding-bottom: 55px;
}

.work-section .work-card:last-child::after {
    display: none;
}

/*  */

.development-section {
    background: #fff;
    padding-bottom: 20px;
    padding: 50px 100px 60px;
}

.development-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #d5d2d2;
    transition: 0.3s;
    height: 100%;
}

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

.development-image {
    overflow: hidden;
}

.development-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: 0.4s;
}

.development-card:hover .development-image img {
    transform: scale(1.05);
}

.development-content {
    padding: 28px;
}

.development-content h3 {
    color: #000;
    margin-bottom: 8px;
    line-height: 1.3;
}

.development-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 22px;
}

.know-more-btn {
    text-decoration: none;
    color: #000;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.know-more-btn:hover {
    color: var(--ssb-dark-red);
    gap: 14px;
}

.tp-testimonial {
    position: relative;
    padding: 50px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.tp-testimonial::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.93);
    z-index: 1;
    pointer-events: none;
}

.tp-testimonial>* {
    position: relative;
    z-index: 2;
}

/* ─── HEADING ─────────────────────────────────────────── */
.tp-heading {
    text-align: center;
    margin-bottom: 48px;
}

.tp-heading .eyebrow {
    color: #d6202a;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tp-heading h2 {
    font-size: clamp(36px, 4.5vw, 64px);
    font-weight: 800;
    color: #111;
    line-height: 1.15;
    margin: 14px 0 10px;
}

.tp-heading h2 span {
    color: #d6202a;
}

.tp-heading .underline-bar {
    width: 60px;
    height: 4px;
    background: #d6202a;
    border-radius: 2px;
    margin: 0 auto 16px;
}

.tp-heading p {
    font-size: 17px;
    color: #888;
}

/* ─── FLOATING PEOPLE ─────────────────────────────────── */
.people-wrap {
    position: relative;
    min-height: 620px;
    pointer-events: none;
}

.person {
    position: absolute;
    width: 260px;
    display: flex;
    gap: 18px;
    align-items: center;
    text-align: left;
    pointer-events: auto;
    cursor: pointer;
    transition: transform .35s ease, opacity .35s ease;
    z-index: 5;
}

.person:hover {
    transform: translateY(-7px) scale(1.04);
}

.person.active {
    transform: scale(1.07);
    z-index: 20;
}

.person img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e8e8e8;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    transition: border-color .35s, box-shadow .35s;
}

.person .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.person.active img {
    border-color: #d6202a;
    box-shadow: 0 0 0 4px rgba(214, 29, 46, .18), 0 8px 28px rgba(0, 0, 0, .15);
}

.person h4 {
    font-size: 15px;
    font-weight: 600;
    margin-top: 10px;
    color: #1a1a1a;
}

.person .subject {
    margin-top: -12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ssb-red);
    line-height: 1.2;
}

.person p {
    font-size: 12px;
    color: #888;
    /* margin-top: 3px; */
}

.person .stars {
    color: #d6202a;
    font-size: 18px;
    margin-top: -12px;
    letter-spacing: 1px;
}

/* ─── MAIN CARD ───────────────────────────────────────── */
.main-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(60%, 90vw);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .09);
    text-align: center;
    z-index: 50;
}

.quote-icon {
    font-size: 100px;
    color: #d6202a;
    line-height: 0.7;
    margin-bottom: -10px;
}

.card-desc {
    font-size: 16px;
    line-height: 1.85;
    color: #333;
    min-height: 210px;
}

#mainImage {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #d6202a;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
}

#mainName {
    font-size: 22px;
    font-weight: 700;
    margin-top: 14px;
    color: #111;
}

#mainRole {
    color: #d6202a;
    font-size: 14px;
    font-weight: 500;
    margin-top: 4px;
}

#mainRating {
    font-size: 22px;
    color: #FFB400;
    margin-top: 10px;
    letter-spacing: 2px;
}

/* ─── NAV ARROWS ──────────────────────────────────────── */
.nav-btn {
    position: absolute;
    bottom: 0;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: none;
    background: #fff;
    border-radius: 50%;
    font-size: 26px;
    color: #333;
    cursor: pointer;
    box-shadow: 0 6px 22px rgba(0, 0, 0, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s, box-shadow .2s;
    z-index: 9999 !important;
    pointer-events: auto !important;
}

.nav-btn:hover {
    background: #d6202a;
    color: #fff;
    box-shadow: 0 8px 28px rgba(214, 29, 46, .28);
}

.nav-btn.prev {
    left: 10px;
}

.nav-btn.next {
    right: 10px;
}

/* ─── STATS ───────────────────────────────────────────── */
.tp-stats {
    background: #fff;
    margin-top: 60px;
    padding: 52px 0;
    border-top: 1px solid #f0f0f0;
}

.stat-item {
    text-align: center;
    padding: 16px 10px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    color: #555;
}

.stat-item h2 {
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 800;
    color: #111;
    line-height: 1;
}

.stat-item span {
    font-size: 15px;
    color: #888;
    display: block;
    margin-top: 6px;
}

/*  */
.testimonial-section {
    padding: 50px 100px 60px;
    ;
}

.testimonial-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-left {
    flex: 1;
    min-width: 320px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding-right: 40px;
    border-right: 1px solid #e4e4e4;
}

.quote-icon img {
    width: 100px;
}

.testimonial-content h3 {
    color: #222;
    font-weight: 600;
    margin-bottom: 18px;
}

.testimonial-content p {
    margin: 0;
    font-size: 16px;
    color: #222;
    font-weight: 700;
}

.testimonial-right {
    flex: 1;
    min-width: 320px;
}

.logo-wrapper {
    display: grid;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.logo-item {
    font-size: 38px;
    font-weight: 700;
    color: #1b1b1b;
    opacity: 0.9;
    transition: 0.3s;
}

.logo-item:hover {
    transform: scale(1.05);
    opacity: 1;
}

.tcs {
    color: #f57c00;
}

.wipro {
    color: #7b1fa2;
}

.capgemini {
    color: #1565c0;
}

.deloitte {
    color: #111;
}

.pwc {
    color: #f57c00;
}

/* Pertners section */
.partners {
    position: relative;
    padding: 50px 100px 60px;
    overflow: hidden;
}

.partners .partners-wrap {
    display: grid;
    grid-template-columns: 430px 1fr;
    gap: 60px;
    align-items: center;
}

.partners .left-side {
    max-width: 420px;
    position: relative;
    padding-right: 70px;
}

.partners .label {
    display: inline-block;
    color: #e31e24;
    margin-bottom: 25px;
    font-size: 15px;
    font-weight: 700;
}

.partners .title {
    color: #000;
    margin-bottom: 10px;
    position: relative;
    font-size: 48px;
    animation: titleFade 1s ease;
    font-weight: 700;
}

/* .partners .title span {
    color: var(--ssb-dark-red);
} */

.partners .red-line {
    width: 60px;
    height: 2px;
    background: var(--ssb-dark-red);
    margin: 32px 0;
}

.partners .desc {
    color: #000;
    margin: 0;
    font-size: 16px;
    animation: textSlide 1s ease forwards;
}

.partners .feature-list {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.partners .feature {
    text-align: center;
}

.partners .icon {
    width: 70px;
    height: 70px;
    border: 1px solid rgba(255, 50, 50, .5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 16px;
    font-size: 26px;
    color: #ff2e47;
}

.partners .feature span {
    color: #000;
    margin: 0;
    font-size: 16px;
    animation: textSlide 1s ease forwards;
}

.partners .btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 55px;

    padding: 18px 32px;

    border: 1px solid rgba(255, 255, 255, .35);

    text-decoration: none;

    color: #fff;

    transition: .3s;
}

.partners .btn:hover {
    background: var(--ssb-dark-red);
}

.partners .right-side {
    overflow: hidden;
    padding-top: 12px;
}

.partners .slider {
    display: flex;
    transition: .6s;
}

.partners .slide {
    min-width: 100%;
    padding-top: 10px;
}

.partners .logo-grid {
    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 14px;
}

.partners .logo-card {
    height: 150px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    /* background: linear-gradient(135deg,
            #EEF3FA 0%,
            #E6EDF8 50%,
            #DDE7F5 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: .35s;
    position: relative;
}

.partners .logo-card:hover {
    transform: translateY(-6px);
    z-index: 2;
    border-color: var(--ssb-dark-red);
    box-shadow:
        0 0 25px rgba(255, 40, 70, .2);
}

.partners .logo-card img {

    max-width: 150px;

    max-height: 100%;

    object-fit: contain;

    filter: brightness(1);

}

.partners .controls {

    display: flex;

    justify-content: center;

    gap: 14px;

    margin-top: 34px;

}

.partners .arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--ssb-dark-red);
    cursor: pointer;
    background: none;
    color: var(--ssb-dark-red);
    font-size: 22px;
}

.partners .arrow:hover {
    border-color: 1px solid #000;
    color: #000;
}

.partners .dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.partners .dot {
    width: 8px;
    height: 8px;
    background: #666;
    border-radius: 50%;
    cursor: pointer;
}

.partners .dot.active {
    background: var(--ssb-dark-red);
}

.partners .stats {
    margin-top: 70px;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    display: grid;
    grid-template-columns:
        repeat(6, 1fr);
    background:
        rgba(255, 255, 255, .03);
}

.partners .stat {
    text-align: center;
}

.partners .stat h3 {
    font-size: 48px;
}

.partners .stat p {
    margin-top: 10px;
    opacity: .7;
}

/*  */
.footer-section {
    background:
        linear-gradient(rgb(8 28 10 / 95%), rgb(3 28 5 / 91%)),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1400&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 60px 100px 0;
}

.footer-top {
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-top h2 {
    margin-bottom: 12px;
    line-height: 1.3;
}

.footer-top p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-btns {
    display: flex;
    gap: 18px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.gold-btn {
    background: var(--ssb-dark-red);
    color: #fff;
    padding: 16px 34px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border: 2px solid var(--ssb-dark-red);
    transition: 0.3s;
}

.gold-btn:hover {
    background: transparent;
    color: #fff;
}

.outline-btn {
    background: transparent;
    color: #fff;
    padding: 16px 34px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: 0.3s;
}

.outline-btn:hover {
    background: #fff;
    color: #000;
}

/* Footer Main */
.footer-main {
    padding: 50px 0 35px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 10px;
}

.footer-about {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    gap: 14px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--ssb-dark-red);
    border-color: var(--ssb-dark-red);
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #fff;
    margin-top: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a,
.tel_class {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    transition: 0.3s;
}

.tel_class {
    display: flex;
    gap: 14px;
}

.footer-links a:hover,
.tel_class:hover {
    color: var(--ssb-dark-red);
    padding-left: 5px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info a {
    text-decoration: none;
    color: inherit;
}

.contact-info a:hover {
    color: var(--ssb-dark-red);
}

.contact-info li {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.7;
}

.contact-info i {
    color: #fff;
    margin-top: 4px;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 20px 0;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 auto;
    text-align: center;
}

.copyright a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.copyright a:hover {
    color: var(--ssb-dark-red);
}

.footer-policy {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-policy a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: 0.3s;
}

.footer-policy a:hover {
    color: var(--ssb-dark-red);
}

/* animation use */

/* Background Zoom */
@keyframes zoomBg {

    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }

}

/* Dark Overlay Animation */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.35));
    animation: overlayFade 5s ease infinite alternate;
    z-index: -1;
}

@keyframes overlayFade {
    0% {
        opacity: .7;
    }

    100% {
        opacity: 1;
    }
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
}

span.red-sp {
    color: var(--ssb-dark-red);
}

/* Heading Animation */
.hero-content h1 {
    opacity: 0;
    transform: translateY(80px);
    animation: heroText 1s ease forwards;
}

/* Paragraph Animation */
.hero-content p {
    opacity: 0;
    transform: translateY(60px);
    animation: heroText 1s ease forwards;
    animation-delay: .4s;
}

/* Button Animation */
.hero-buttons {
    opacity: 0;
    transform: translateY(40px);
    animation: heroText 1s ease forwards;
    animation-delay: .8s;
}

/* Common Animation */
@keyframes heroText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button Hover */
.gold-btn,
.outline-btn {
    position: relative;
    overflow: hidden;
    transition: all .4s ease;
}

/* Hover Lift */
.gold-btn:hover,
.outline-btn:hover {
    transform: translateY(-6px);
}

/* Shine Effect */
.gold-btn::before,
.outline-btn::before,
.business-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60px;
    height: 100%;
    background: rgba(255, 255, 255, .35);
    transform: skewX(-20deg);
    z-index: 2;
}

/* Shine Animation */
.gold-btn:hover::before,
.outline-btn:hover::before,
.business-img:hover::before {
    animation: shine .8s;
}

@keyframes shine {
    100% {
        left: 130%;
    }
}

.enquire-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(27, 94, 32, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(201, 162, 75, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(201, 162, 75, 0);
    }
}

/* STATS SECTION */
.stats-section {
    overflow: hidden;
}

/* Card Animation */
.stat-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    transition: all .4s ease;
    animation: cardUp 1s ease forwards;
    opacity: 0;
    transform: translateY(60px);
}

/* Delay Animation */
.col-lg-3:nth-child(1) .stat-card {
    animation-delay: .2s;
}

.col-lg-3:nth-child(2) .stat-card {
    animation-delay: .4s;
}

.col-lg-3:nth-child(3) .stat-card {
    animation-delay: .6s;
}

.col-lg-3:nth-child(4) .stat-card {
    animation-delay: .8s;
}

/* Card Entry */
@keyframes cardUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Effect */
.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
    background: #fff;
}

/* Glow Border */
.stat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg,
            var(--ssb-dark-red),
            transparent,
            var(--ssb-dark-green));

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    opacity: 0;
    transition: .4s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

/* Floating Icon */
.icon-box {
    animation: floatIcon 3s ease-in-out infinite;
    transition: .4s ease;
}

@keyframes floatIcon {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Icon Hover */
.stat-card:hover .icon-box {
    transform: rotate(8deg) scale(1.08);
}

/* Number Animation */
.stat-content h2 {
    animation: numberPop 1s ease;
}

@keyframes numberPop {
    0% {
        transform: scale(.5);
        opacity: 0;
    }

    70% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Text Animation */
.stat-content p {
    letter-spacing: 1px;
    transition: .4s;
}

.stat-card:hover .stat-content p {
    letter-spacing: 2px;
    color: var(--ssb-dark-red);
}

/* BUSINESS SECTION */
.business-section {
    overflow: hidden;
}


/* Stagger Animation */
.col-lg-3:nth-child(1) .business-card {
    animation-delay: .2s;
}

.col-lg-3:nth-child(2) .business-card {
    animation-delay: .4s;
}

.col-lg-3:nth-child(3) .business-card {
    animation-delay: .6s;
}

.col-lg-3:nth-child(4) .business-card {
    animation-delay: .8s;
}

/* Reveal */
@keyframes businessReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gradient Glow Border */
.business-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 1px;
    background: linear-gradient(135deg,
            var(--ssb-dark-red),
            transparent,
            var(--ssb-dark-green));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: .5s ease;
    pointer-events: none;
}

.business-card:hover::before {
    opacity: 1;
}

/* ICON CIRCLE */
.icon-circle {
    transition: all .5s ease;
    animation: floatIcon 3s ease-in-out infinite;
}

/* Floating Animation */
@keyframes floatIcon {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Hover Rotate */
.business-card:hover .icon-circle {
    transform: rotate(12deg) scale(1.08);
}

/* CONTENT */
.card-content h3 {
    transition: .4s ease;
}

.business-card:hover .card-content h3 {
    color: var(--ssb-dark-red);
}

.business-card:hover .card-content .explore-btn {
    color: var(--ssb-dark-red);
}

/* TEXT */
.card-content p {
    transition: .4s ease;
}

.business-card:hover .card-content p {
    color: #444;
}

/* BUTTON */
.explore-btn {
    position: relative;
    overflow: hidden;
    transition: .4s ease;
}

/* Arrow Animation */
.explore-btn i {
    transition: .4s ease;
}

.business-card:hover .explore-btn i {
    transform: translateX(8px);
}

.section-title h2 {
    animation: titleFade 1s ease;
}

.section-title p {
    animation: titleFade 1.4s ease;
}

@keyframes titleFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   OUR LEADERSHIP SECTION
========================================= */

.leadership-section {
    padding: 50px 100px 60px;
    ;
    background: #f5f5f5;
    overflow: hidden;
}

/* TITLE */

.leadership-title {
    margin-bottom: 70px;
}

.leadership-title h2 {
    font-size: 95px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    color: #111;
    margin-bottom: 28px;
    letter-spacing: -2px;
}

.title-line {
    width: 110px;
    height: 4px;
    background: #e31e24;
    border-radius: 100px;
    margin: 0 auto 25px;
}

.leadership-title p {
    font-size: 22px;
    color: #666;
    margin: 0;
}

/* WRAPPER */

/* .leadership-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
} */

/* CARD */

.leader-card {
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 34px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: 0.4s ease;
}

.leader-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
}

/* IMAGE */

.leader-image {
    width: 54%;
    flex-shrink: 0;
}

.leader-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

/* CONTENT */

.leader-content {
    width: 46%;
}

.leader-content h3 {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 800;
    color: #111;
    margin-bottom: 28px;
}

.small-line {
    width: 70px;
    height: 4px;
    background: #e31e24;
    border-radius: 100px;
    margin-bottom: 28px;
}

.leader-content span {
    display: inline-block;
    color: #e31e24;
    margin-bottom: 25px;
    font-size: 15px;
    font-weight: 700;
}

.leader-content p {
    color: #444;
    margin: 0;
    font-size: 16px;
}

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

@media(max-width:1600px) {

    .leadership-title h2 {
        font-size: 72px;
    }

    .leader-content h3 {
        font-size: 46px;
    }

}

@media(max-width:1200px) {

    .leadership-wrapper {
        grid-template-columns: 1fr;
    }

    .leader-image img {
        height: 400px;
    }

}

@media(max-width:991px) {
    .tp-testimonial {
        padding: 70px 0 0;
    }

    .dropdown-menu.show {
        background-color: unset;
        border: none;
    }

    .main-card {
        width: min(100%, 90vw) !important;
    }

    .leadership-section {
        padding: 90px 0;
    }

    .leadership-title {
        margin-bottom: 45px;
    }

    .leadership-title h2 {
        font-size: 52px;
    }

    .leader-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .leader-image,
    .leader-content {
        width: 100%;
    }

    .people-wrap {
        min-height: 0;
    }

    .person {
        display: none;
    }

    .main-card {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0 auto 40px;
    }

    .people-wrap {
        display: flex;
        justify-content: center;
        padding: 0 16px 40px;
    }
}

@media(max-width:767px) {

    .leadership-section {
        padding: 70px 0;
    }

    .leadership-title h2 {
        font-size: 36px;
        line-height: 1.2;
    }

    .leadership-title p {
        font-size: 16px;
        line-height: 1.7;
    }

    .leader-card {
        padding: 16px;
        gap: 24px;
    }

    .leader-image img {
        height: 360px;
    }

    .leader-content h3 {
        font-size: 34px;
        margin-bottom: 18px;
    }

    .leader-content span {
        font-size: 15px;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .leader-content p {
        font-size: 15px;
        line-height: 1.9;
    }

    .partners .left-side {
        padding-right: 0;
    }

}

/*  */
/* CHAIRMAN SECTION */
.chairman-section {
    overflow: hidden;
    position: relative;
}

/* IMAGE AREA */
.chairman-image {
    position: relative;
    overflow: hidden;
}

/* IMAGE */
.chairman-image img {
    width: 100%;
    transition: transform 1s ease;
    animation: imageReveal 1.4s ease forwards;
    opacity: 0;
    transform: scale(1.2);
}

/* Image Reveal */
@keyframes imageReveal {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hover Zoom */
.chairman-image:hover img {
    transform: scale(1.08);
}

/* Overlay Shine */
.chairman-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 80px;
    height: 100%;
    background: rgba(255, 255, 255, .25);
    transform: skewX(-20deg);
    z-index: 2;
}

.chairman-image:hover::before {
    animation: shineMove 1s;
}

@keyframes shineMove {
    100% {
        left: 130%;
    }
}

/* CONTENT */
.chairman-content {
    position: relative;
    z-index: 2;
}

/* Heading Animation */
.chairman-content h2 {
    opacity: 0;
    transform: translateX(80px);
    animation: textSlide 1s ease forwards;
}

/* Paragraph Animation */
.chairman-content p {
    opacity: 0;
    transform: translateX(60px);
    animation: textSlide 1s ease forwards;
}

/* Delays */
.chairman-content p:nth-child(2) {
    animation-delay: .3s;
}

.chairman-content p:nth-child(3) {
    animation-delay: .5s;
}

.chairman-content p:nth-child(4) {
    animation-delay: .7s;
}

.chairman-content p:nth-child(5) {
    animation-delay: .9s;
}

/* Text Slide */
@keyframes textSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Signature */
.signature {
    opacity: 0;
    transform: translateY(40px);
    animation: signatureFade 1s ease forwards;
    animation-delay: 1.2s;
}

/* Signature Animation */
@keyframes signatureFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Signature Image */
.signature img {
    transition: .5s ease;
}

/* Hover Effect */
.signature:hover img {
    transform: scale(1.04) rotate(-2deg);
}

/* DEVELOPMENT SECTION */
.development-section {
    overflow: hidden;
    position: relative;
}

/* CARD */
.development-card {
    position: relative;
    overflow: hidden;
    transition: all .5s ease;
    opacity: 0;
    transform: translateY(80px);
    animation: devReveal 1s ease forwards;
    background: #fff;
}

/* Stagger Animation */
.col-lg-4:nth-child(1) .development-card {
    animation-delay: .2s;
}

.col-lg-4:nth-child(2) .development-card {
    animation-delay: .5s;
}

.col-lg-4:nth-child(3) .development-card {
    animation-delay: .8s;
}

/* Reveal Animation */
@keyframes devReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Lift */
.development-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .12);
}

/* Animated Border Glow */
.development-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 1px;
    background: linear-gradient(135deg,
            var(--ssb-dark-red),
            transparent,
            var(--ssb-dark-green));

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;

    opacity: 0;
    transition: .5s ease;
}

.development-card:hover::before {
    opacity: 1;
}

/* IMAGE */
.development-image {
    overflow: hidden;
    position: relative;
}

/* Image Zoom */
.development-image img {
    transition: transform 1s ease;
}

.development-card:hover .development-image img {
    transform: scale(1.12);
}

/* Dark Overlay */
.development-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .5),
            transparent);

    opacity: 0;
    transition: .5s ease;
}

.development-card:hover .development-image::after {
    opacity: 1;
}

/* Shine Effect */
.development-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 80px;
    height: 100%;
    background: rgba(255, 255, 255, .3);
    transform: skewX(-20deg);
    z-index: 2;
}

.development-card:hover .development-image::before {
    animation: shineMove .9s;
}

@keyframes shineMove {
    100% {
        left: 130%;
    }
}

/* CONTENT */
.development-content {
    position: relative;
    z-index: 2;
}

/* Title Animation */
.development-content h3 {
    transition: .4s ease;
}

.development-card:hover .development-content h3 {
    color: var(--ssb-dark-red);
}

/* Text Animation */
.development-content p {
    transition: .4s ease;
}

.development-card:hover .development-content p {
    color: #444;
}

/* BUTTON */
.know-more-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: .4s ease;
}

/* Button Hover */
.development-card:hover .know-more-btn {
    color: var(--ssb-dark-red);
}

/*  */
/* TESTIMONIAL SECTION */
.testimonial-section {
    position: relative;
    overflow: hidden;
}


/* WRAPPER */
.testimonial-wrapper {
    position: relative;
    z-index: 2;
}

/* LEFT SIDE */
.testimonial-left {
    opacity: 0;
    transform: translateX(-80px);
    animation: leftReveal 1s ease forwards;
}

@keyframes leftReveal {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* CONTENT */
.testimonial-content h3 {
    opacity: 0;
    transform: translateY(40px);
    animation: textReveal 1s ease forwards;
    animation-delay: .3s;
}

.testimonial-content p {
    opacity: 0;
    transform: translateY(30px);
    animation: textReveal 1s ease forwards;
    animation-delay: .6s;
}

@keyframes textReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Effect */
.testimonial-content h3 {
    transition: .4s ease;
}

.testimonial-content h3:hover {
    color: var(--ssb-dark-red);
}

/* MODAL */
.customModal_1 .modal-content {
    background: rgba(8, 28, 10, 0.8);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .15);
    padding: 20px;
}

.customModal_1 .btn-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 50%;
    background: none;
    background-color: rgba(255, 255, 255, .18);
    color: #fff;
    cursor: pointer;
    transition: .4s ease;
    z-index: 1;
}

.customModal_1 .btn-close:hover {
    transform: rotate(90deg);
    background: var(--ssb-dark-green);
}

.custom-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: .4s ease;
    background: rgba(0, 0, 0, .65);
    backdrop-filter: blur(8px);
    overflow-y: auto;
}

/* ACTIVE */
.custom-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 20px;
    border-radius: 24px;
    background: rgba(20, 33, 61, 0.85);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .15);
    padding: 45px;
    transform: translateY(80px) scale(.9);
    opacity: 0;
    transition: .5s ease;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
}

/* OPEN EFFECT */
.custom-modal.active .modal-box {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* CLOSE BUTTON */
.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    cursor: pointer;
    transition: .4s ease;
}

.modal-close:hover {
    transform: rotate(90deg);
    background: var(--ssb-dark-red);
}

/* CONTENT */
.modal-content-wrapper {
    color: #fff;
}

/* TAG */
.modal-tag {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 40px;
    font-size: 13px;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

/* TITLE */
.modal-content-wrapper h2 {
    margin-bottom: 15px;
}

/* TEXT */
.modal-content-wrapper p {
    color: rgba(255, 255, 255, .8);
    margin-bottom: 30px;
    line-height: 1.7;
}

/* INPUTS */
.input-group {
    margin-bottom: 18px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 16px 18px;
    color: #fff;
    border-radius: 14px;
    transition: .4s ease;
}

.input-group textarea {
    min-height: 120px;
    resize: none;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--ssb-dark-green);
    background: rgba(255, 255, 255, .12);
}

/* PLACEHOLDER */
.input-group input::placeholder,
.input-group textarea::placeholder {
    color: rgba(255, 255, 255, .6);
}

/* BUTTON */
.submit-btn {
    width: 100%;
    border: none;
    padding: 16px;
    border-radius: 14px;
    background: var(--ssb-dark-green);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: .4s ease;
}

/* HOVER */
.submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(200, 16, 46, .35);
}

.heart {
    display: inline-block;
    animation: blink 2s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .4;
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* 2nd modal */
/* MODAL */
.expert-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: .4s ease;
}

/* ACTIVE */
.expert-modal.active {
    opacity: 1;
    visibility: visible;
}

/* OVERLAY */
.expert-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .72);
    backdrop-filter: blur(10px);
}

/* MODAL BOX */
.expert-modal-box {
    position: relative;
    width: 100%;
    max-width: 1100px;
    background: linear-gradient(135deg,
            #14213d,
            #0b1222);
    border-radius: 28px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    transform: translateY(80px) scale(.92);
    opacity: 0;
    transition: .5s ease;
    z-index: 2;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .45);
}

/* OPEN */
.expert-modal.active .expert-modal-box {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* LEFT */
.expert-left {
    padding: 60px;
    color: #fff;
    background:
        linear-gradient(rgba(20, 33, 61, .92), rgba(20, 33, 61, .92)),
        url('../assets/images/banner_ssb.png');
    background-size: cover;
    background-position: center;
}

/* TAG */
.expert-tag {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 40px;
    margin-bottom: 25px;
    font-size: 13px;
    letter-spacing: 1px;
}

.input-group input[type="date"] {
    color: #fff;
}

.input-group input[type="date"]::-webkit-datetime-edit {
    color: rgba(255, 255, 255, .6);
}

.input-group input[type="date"]:valid {
    color: #fff;
}

/* calendar icon */
.input-group input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: .7;
    cursor: pointer;
    transition: .3s ease;
    filter: invert(1) !important;
}

.input-group input[type="date"]::-webkit-calendar-picker-indicator:hover {
    transform: scale(1.1);
    opacity: 1;
}

input[type="datetime-local"] {
    width: 100%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    padding: 16px 18px;
    color: #fff !important;
    outline: none;
}

/* Date + Time Text */
input[type="datetime-local"]::-webkit-datetime-edit {
    color: rgba(255, 255, 255, .6);
}

/* Calendar Icon */
input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* TEXT */
.expert-left p {
    color: rgba(255, 255, 255, .78);
    line-height: 1.8;
    margin-bottom: 35px;
}

/* INFO */
.expert-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #fff;
}

.expert-info-item i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* RIGHT */
.expert-right {
    padding: 60px;
    background: #fff;
}

/* INPUT */
.expert-input {
    margin-bottom: 18px;
}

.expert-input input,
.expert-input textarea {
    width: 100%;
    border: none;
    outline: none;
    background: #f5f7fb;
    border: 1px solid #edf0f5;
    border-radius: 14px;
    padding: 12px 18px;
    transition: .4s ease;
}

.expert-input textarea {
    min-height: 140px;
    resize: none;
}

/* FOCUS */
.expert-input input:focus,
.expert-input textarea:focus {
    border-color: var(--ssb-dark-green);
    background: #fff;
}

/* BUTTON */
.expert-submit {
    width: 100%;
    border: none;
    background: var(--ssb-dark-green);
    color: #fff;
    padding: 18px;
    border-radius: 14px;
    font-weight: 700;
    transition: .4s ease;
}

/* HOVER */
.expert-submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(196, 155, 71, .3);
}

/* CLOSE */
.expert-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgb(21 34 59);
    color: #fff;
    cursor: pointer;
    z-index: 10;
    transition: .4s ease;
}

.expert-close:hover {
    transform: rotate(90deg);
    background: var(--ssb-dark-green);
}

/* responsive */
@media (max-width: 1536px) {
    .person img {
        width: 60px;
        height: 60px;
    }

    #mainImage {
        width: 60px;
        height: 60px;
    }

    .people-wrap {
        min-height: 430px;
    }

    div#p1,
    div#p4 {
        top: 0 !important;
    }

    div#p2,
    div#p5 {
        top: 138px !important;
    }

    div#p3,
    div#p6 {
        top: 276px !important;
    }


    /*  */
    .leader-image img {
        height: 400px;
    }

    .heading {
        font-size: 40px;
    }

    .lg_heading {
        font-size: 30px;
    }

    .md_heading {
        font-size: 24px;
    }

    .sm_heading {
        font-size: 20px;
    }

    .xs_heading {
        font-size: 18px;
    }

    .hero-section {
        min-height: 550px;
    }

    .card-content p,
    .leader-content p,
    .work-section .work-card p,
    .development-content p,
    .footer-top p {
        font-size: 14px;
    }

    .stat-content p {
        font-size: 14px;
    }

    /*  */
    .footer-section {
        padding: 50px 80px 0;
    }

    .testimonial-section {
        padding: 50px 80px;
    }

    .development-section {
        padding: 60px 80px 60px;
    }

    .chairman-section {
        padding: 0 60px 80px;
    }

    .business-section {
        padding: 0 80px 60px;
    }

    .stats-section {
        padding: 50px 80px;
    }

    .hero-section {
        padding: 0 80px;
    }

    .custom-navbar {
        padding: 25px 80px;
    }

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

    .partners .desc {
        font-size: 14px;
    }

    .partners .feature span {
        font-size: 14px;
    }

    .partners .label {
        margin-bottom: 10px;
    }

    .partners .red-line {
        margin: 20px 0;
    }

    .partners .logo-card {
        height: 140px;
    }

    .partners .logo-card {
        height: 82px;
        padding: 2px;
    }

    .main-card {
        width: min(45%, 90vw);
    }

    div#p1 {
        left: 8% !important;
    }

    div#p2 {
        left: 0% !important;
    }

    div#p3 {
        left: 7% !important;
    }

    div#p4 {
        right: 4% !important;
    }

    div#p5 {
        right: -1% !important;
    }

    div#p6 {
        right: 3% !important;
    }

    .modal-content-wrapper p {
        font-size: 14px;
    }

    .input-group input,
    .input-group textarea {
        padding: 13px 18px;
    }

    .expert-submit {
        padding: 12px;
    }

    .modal-content-wrapper p {
        font-size: 14px;
    }

    .submit-btn {
        padding: 12px;
    }

    .form-field input,
    .form-field textarea,
    .form-field select {
        padding: 13px 18px;
    }
}

@media (max-width: 1400px) {
    .partners .logo-grid {
        grid-template-columns: repeat(4, minmax(120px, 1fr));
        gap: 24px;
    }

    .card-desc {
        min-height: 290px;
    }

    .people-wrap {
        min-height: 530px;
    }
}

@media (max-width: 1366px) {
    .heading {
        font-size: 36px;
    }

    .tp-testimonial {
        padding-bottom: 70px;
    }

    .card-desc {
        min-height: 360px;
    }

    .people-wrap {
        min-height: 590px;
    }

    div#p4 {
        right: 0 !important;
    }

    div#p5 {
        right: -4% !important;
    }

    div#p6 {
        right: 1% !important;
    }

    div#p2,
    div#p5 {
        top: 34% !important;
    }

    div#p3,
    div#p6 {
        top: 70% !important;
    }

    .lg_heading {
        font-size: 28px;
    }

    .md_heading {
        font-size: 22px;
    }

    .sm_heading {
        font-size: 18px;
    }

    .xs_heading {
        font-size: 18px;
    }

    .footer-section {
        padding: 50px 60px 0;
    }

    .testimonial-section {
        padding: 50px 60px;
    }

    .development-section {
        padding: 50px 60px 50px;
    }

    .chairman-section {
        padding: 0 60px 60px;
    }

    .business-section {
        padding: 0 60px 60px;
    }

    .stats-section {
        padding: 50px 60px;
    }

    .hero-section {
        padding: 0 60px;
    }

    .custom-navbar {
        padding: 25px 60px;
    }

    .gold-btn,
    .outline-btn {
        font-size: 14px;
    }

    .card-content {
        padding: 55px 15px 28px;
    }

    .footer-about,
    .contact-info li {
        font-size: 14px;
    }

    .development-content {
        padding: 20px;
    }

    .footer-links a,
    .tel_class {
        font-size: 14px;
    }

    .stat-card {
        padding: 10px;
    }

    .work-section .work-card p {
        width: 75%;
    }

    .stat-content p {
        font-size: 12px;
    }

    .work-section .step-number {
        left: -49px;
    }
}

@media (max-width: 1199px) {
    .heading {
        font-size: 30px;
    }

    .lg_heading {
        font-size: 26px;
    }

    .md_heading {
        font-size: 20px;
    }

    .sm_heading {
        font-size: 18px;
    }

    .xs_heading {
        font-size: 16px;
    }

    .footer-section {
        padding: 50px 60px 0;
    }

    .development-section {
        padding: 50px 60px 50px;
    }

    .work-section {
        padding: 50px 60px 50px;
    }

    .work_wrapper {
        display: flex;
        flex-wrap: nowrap;
        overflow: scroll;
    }

    .work-section .work-card {
        min-width: 300px;
    }

    /*  */
    .expert-modal-box {
        grid-template-columns: 1fr;
        max-height: 90vh;
        overflow-y: auto;
    }

    .expert-left,
    .expert-right {
        padding: 35px 25px;
    }
}

@media (max-width: 1024px) {}

@media (max-width: 991px) {
    .partners .logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .partners .partners-wrap {
        display: flex !important;
        flex-direction: column;
        gap: 40px;
    }

    .partners .left-side {
        max-width: 100%;
        width: 100%;
        padding-right: 0;
    }

    .partners .right-side {
        width: 100%;
        overflow: visible;
    }

    .partners .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .partners .logo-card {
        height: 90px !important;
        background: #fff;
    }

    .partners .logo-card img {
        width: 100%;
        height: 100%;
        object-fit: contain;

        max-width: 110px;

        display: block;
        margin: auto;
    }

    .partners .title {
        font-size: 28px;
    }

    .heading {
        font-size: 28px;
    }

    .lg_heading {
        font-size: 24px;
    }

    .md_heading {
        font-size: 20px;
    }

    .sm_heading {
        font-size: 18px;
    }

    .xs_heading {
        font-size: 16px;
    }

    .footer-section {
        padding: 50px 40px 0;
    }

    .testimonial-section {
        padding: 50px 40px;
    }

    .development-section {
        padding: 50px 40px 50px;
    }

    .chairman-section {
        padding: 0 40px 50px;
    }

    .business-section {
        padding: 0 40px 50px;
    }

    .stats-section {
        padding: 50px 40px;
    }

    .hero-section {
        padding: 0 40px;
    }

    .custom-navbar {
        padding: 10px 40px;
    }

    .work-section {
        padding: 50px 40px 50px;
    }

    .navbar-brand {
        position: relative;
    }


    .hero-section {
        min-height: 550px;
    }

    .navbar-toggler {
        border: 0;
        box-shadow: none !important;
        padding: 0;
    }

    .custom-navbar .navbar-toggler {
        border: none;
    }

    .custom-navbar .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-toggler-icon {
        background-image: none !important;
        position: relative;
        width: 30px;
        height: 22px;
        display: inline-block;
    }

    .navbar-toggler-icon::after,
    .navbar-toggler-icon {
        display: block;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .navbar-toggler-icon::after {
        content: "\2630";
        position: absolute;
        left: 0;
        font-size: 30px;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
        content: "\2715";
        transform: rotate(90deg);
    }

    .custom-dropdown .mobile_menu {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .custom-dropdown:hover .dropdown-menu {
        display: none;
    }

    .custom-dropdown:hover .mobile_menu i {
        transform: none;
    }

    .navbar-nav {
        gap: 0;
    }

    .dropdown-menu {
        display: none;
    }

    .dropdown-menu.show {
        display: block !important;
        background-color: #fcf6e8;
    }

    .navbar-nav {
        padding: 10px 0;
    }

    .enquire-btn {
        margin-top: 10px;
        width: 100%;
    }

    .stat-card {
        justify-content: flex-start;
        padding: 25px 10px;
    }

    .stat-card::after {
        display: none;
    }

    .stats-section .row {
        row-gap: 20px;
    }

    .business-card {
        margin-bottom: 30px;
    }

    .chairman-content {
        padding-left: 0;
        padding-top: 40px;
    }

    .chairman-image img {
        min-height: auto;
    }

    .work-card {
        margin-bottom: 50px;
    }

    /* .work-card::after{
        display:none;
    } */
    /*  */
    .development-card {
        margin-bottom: 30px;
    }

    /*  */
    .testimonial-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .testimonial-left {
        border-right: none;
        border-bottom: 1px solid #ececec;
        padding-right: 0;
        padding-bottom: 35px;
    }

    .testimonial-right {
        width: 100%;
    }

    .logo-wrapper {
        justify-content: center;
    }

    /*  */

    .footer-btns {
        justify-content: flex-start;
        margin-top: 30px;
    }

    .footer-title {
        margin-bottom: 10px;
        margin-top: 25px;
    }

    .footer-links li {
        margin-bottom: 5px;
    }
}

@media (max-width: 767px) {
    .heading {
        font-size: 26px;
    }

    .lg_heading {
        font-size: 22px;
    }

    .md_heading {
        font-size: 18px;
    }

    .sm_heading {
        font-size: 16px;
    }

    .xs_heading {
        font-size: 16px;
    }

    .stats-section .row {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .copyright {
        text-align: center;
    }

    .footer-policy {
        justify-content: center;
    }

    .modal-box {
        padding: 30px 20px;
        border-radius: 18px;
    }

    .business-section {
        padding: 0 20px 50px;
    }

    .businessSwiper .swiper-slide {
        width: 100% !important;
    }

    .business-card {
        border-radius: 12px;
    }

    .business-img img {
        height: 220px;
    }

    .card-content {
        min-height: auto;
    }

    .business-img .icon-circle img {
        width: 26px;
        height: auto;
    }

    /*  */

    .work-section .work-card {
        min-width: 100%;
        flex-direction: row;
        gap: 15px;
    }

    .work_wrapper {
        overflow: hidden;
        flex-direction: column;
    }

    .work-section .work-card::after {
        border-left: 2px dotted #eb0a0a;
        border-top: 0;
        left: 28px;
        height: 100%;
    }

    .work-card .work_order_wrapper {
        width: 30%;
        justify-content: flex-end;
    }

    .work-section .work-card h4 {
        width: 35%;
        min-height: 100%;
        padding-top: 0;
    }

    .work-section .work-card p {
        width: 35%;
    }

    .work-section .step_number_1 {
        display: none;
    }

    .work-section .icon-box {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .work-card {
        margin-bottom: 40px;
    }

    .work-section .step-number {
        left: -10px;
        font-size: 26px;
    }

    .work-section .icon-box {
        animation: none;
        transform: none;
    }

    .work-section .work-card:hover .icon-box {
        background: none;
        border: none;
        transform: none;
    }

    .work-section .work-card:hover .icon-box.grey {
        background-color: #9CA3AF;
    }

    .work-section .work-card:hover .icon-box.green_1 {
        background-color: #86ca89;
    }

    .work-section .work-card:hover .icon-box.green_2 {
        background-color: #4CAF50;
    }

    .work-section .work-card:hover .icon-box.green_3 {
        background-color: #2E7D32;
    }

    .work-section .work-card:hover .icon-box.green_4 {
        background-color: #0B3D0B;
    }

    .icon-box.grey {
        color: #fff;
        background-color: #9CA3AF;
    }

    .icon-box.green_1 {
        color: #fff;
        background-color: #86ca89;
    }

    .icon-box.green_2 {
        color: #fff;
        background-color: #4CAF50;
    }

    .icon-box.green_3 {
        color: #fff;
        background-color: #2E7D32;
    }

    .icon-box.green_4 {
        color: #fff;
        background-color: #0B3D0B;
    }

    .work-card:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {

    .footer-links a,
    .tel_class {
        font-size: 13px !important;
    }

    .footer-about {
        font-size: 13px !important;
    }

    .contact-info li {
        font-size: 13px !important;
    }

    .partners {
        padding: 50px 20px;
    }

    .partners .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .gold-btn,
    .outline-btn {
        width: 100%;
        text-align: center;
    }

    .stat-card {
        gap: 15px;
    }

    .icon-box {
        width: 55px;
        height: 55px;
    }

    .stat-content p {
        font-size: 12px;
    }


    /*  */

    .step-number {
        font-size: 30px;
    }

    /* .icon-box{
        width:75px;
        height:75px;
        font-size:28px;
    } */

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

    /*  */

    .development-image img {
        height: 200px;
    }

    .development-content {
        padding: 22px;
    }

    /*  */

    /*  */
    .footer-section {
        padding: 40px 20px 0;
    }

    .testimonial-section {
        padding: 50px 20px;
    }

    .development-section {
        padding: 50px 20px 50px;
    }

    .chairman-section {
        padding: 0 20px 50px;
    }

    .business-section {
        padding: 0 20px 50px;
    }

    .stats-section {
        padding: 50px 20px;
    }

    .hero-section {
        padding: 0 20px;
    }

    .custom-navbar {
        padding: 10px 20px;
    }

    .work-section {
        padding: 50px 20px 50px;
    }

    .gold-btn,
    .outline-btn {
        width: 100%;
        text-align: center;
    }

    .footer-main {
        padding: 50px 0 25px;
    }

    .work-section .step-number {
        left: -57px;
    }

    .work-section .step-number {
        left: 0;
        font-size: 24px;
    }

    .work-section .work-card::after {
        left: 36px;
    }

    .main-card {
        padding: 36px 28px 32px;
    }

    .tp-stats .col-6+.col-6 {
        border-left: 1px solid #eee;
    }
}

@media (max-width: 480px) {
    .work-section .step-number {
        left: -15px;
        padding: 0;
        font-size: 20px;
    }

    .work-section .work-card h4 {
        font-size: 14px;
    }

    .work-section .work-card p {
        font-size: 12px;
    }

    .work-section .work-card::after {
        left: 10px;
    }

    .work-section .icon-box {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
}

@media (max-width: 400px) {}

/* ============================================================
   CAREERS PAGE — STYLES MOVED FROM careers.html <style> BLOCK
   (Merged here so careers.html only needs css/custom.css)
   ============================================================ */

/* ============================================
           SERVICE PAGE — ADDITIONAL STYLES
           Uses BTP design tokens from custom.css
        ============================================ */

/* ── SERVICE HERO ──────────────────────────── */
.service-hero {
    position: relative;
    width: 100%;
    min-height: 320px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 0 100px 70px;
}

.service-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../assets/images/facility.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1);
    animation: zoomBg 12s ease-in-out infinite alternate;
    z-index: -2;
}

.service-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.45) 50%,
            rgba(0, 0, 0, 0.18) 100%);
    z-index: -1;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 760px;
}

.service-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.service-breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: 0.3s;
}

.service-breadcrumb a:hover {
    color: var(--ssb-dark-red);
}

.service-breadcrumb i {
    font-size: 10px;
}

.service-breadcrumb .current {
    color: #fff;
}

.service-hero-content h1 {
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
    opacity: 0;
    transform: translateY(50px);
    animation: heroText 1s ease forwards 0.2s;
}

.service-hero-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.88);
    max-width: 580px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(40px);
    animation: heroText 1s ease forwards 0.5s;
}

.service-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: heroText 1s ease forwards 0.8s;
}

/* SECTION COMMON */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    color: #000;
    margin-bottom: 10px;
    position: relative;
}

.section-title h2::after {
    content: "";
    width: 70px;
    height: 3px;
    background: var(--ssb-dark-red);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 10px;
}

/* WHY BTP */
.why-section {
    background: #f5f5f5;
    padding: 70px 100px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.why-card {
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 34px 28px;
    position: relative;
    overflow: hidden;
    transition: 0.35s ease;
    background: #fff;
}

.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--ssb-dark-red);
    border-radius: 0 0 4px 4px;
    transition: height 0.4s ease;
}

.why-card:hover::before {
    height: 100%;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
    border-color: transparent;
}

.why-card .icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f0f7f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 26px;
    color: var(--ssb-dark-green);
    transition: 0.3s;
}

.why-card:hover .icon-wrap {
    background: var(--ssb-dark-green);
    color: #fff;
}

.why-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.7;
}

/* OPEN ROLES */
.roles-section {
    background: #f5f5f5;
    padding: 70px 100px;
}

.roles-filter {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    border: 1.5px solid #d0d0d0;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    border-radius: 40px;
    transition: 0.25s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--ssb-dark-green);
    border-color: var(--ssb-dark-green);
    color: #fff;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.role-card {
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    padding: 28px 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.role-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--ssb-dark-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.role-card:hover::after {
    transform: scaleX(1);
}

.role-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transform: translateY(-4px);
}

.role-info {
    flex: 1;
}

.role-dept {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ssb-dark-green);
    background: #eaf5eb;
    padding: 4px 12px;
    border-radius: 30px;
    margin-bottom: 12px;
}

.role-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.role-meta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.role-meta span {
    font-size: 13px;
    color: #777;
    display: flex;
    align-items: center;
    gap: 5px;
}

.role-meta span i {
    color: var(--ssb-dark-red);
    font-size: 12px;
}

.apply-btn {
    flex-shrink: 0;
    padding: 12px 24px;
    background: var(--ssb-dark-green);
    color: #fff;
    border: 2px solid var(--ssb-dark-green);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
    white-space: nowrap;
    align-self: center;
}

.apply-btn:hover {
    background: transparent;
    color: var(--ssb-dark-green);
}

/* HOW WE HIRE */
.process-section {
    background: #fff;
    padding: 70px 100px;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.process-steps {
    display: flex;
    gap: 0;
    margin-top: 50px;
    position: relative;
}

.process-steps::before {
    content: "";
    position: absolute;
    top: 38px;
    left: 60px;
    right: 60px;
    height: 2px;
    border-top: 2px dashed #e0e0e0;
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    border: 2.5px solid #e0e0e0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--ssb-dark-green);
    transition: 0.35s;
}

.process-step:hover .step-circle {
    background: var(--ssb-dark-red);
    border-color: var(--ssb-dark-red);
    color: #fff;
    transform: translateY(-6px);
}

.process-step h4 {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: #777;
    margin: 0;
    line-height: 1.6;
}

/* CTA STRIP */
.cta-strip {
    background: linear-gradient(rgb(8 28 10 / 95%), rgb(3 28 5 / 91%)),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1400&auto=format&fit=crop') center/cover no-repeat;
    padding: 70px 100px;
    text-align: center;
    color: #fff;
}

.cta-strip h2 {
    color: #fff;
    margin-bottom: 16px;
}

.cta-strip p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    margin-bottom: 36px;
}

.cta-btns {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.gold-btn {
    background: var(--ssb-dark-red);
    color: #fff;
    padding: 16px 34px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border: 2px solid var(--ssb-dark-red);
    transition: 0.3s;
}

.gold-btn:hover {
    background: transparent;
    color: #fff;
}

.outline-btn {
    background: transparent;
    color: #fff;
    padding: 16px 34px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: 0.3s;
}

.outline-btn:hover {
    background: #fff;
    color: #000;
}

/* FOOTER */
.footer-section {
    background: linear-gradient(rgb(8 28 10 / 95%), rgb(3 28 5 / 91%)),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1400&auto=format&fit=crop') center/cover no-repeat;
    color: #fff;
    padding: 60px 100px 0;
}

.footer-top {
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-top h2 {
    margin-bottom: 12px;
    line-height: 1.3;
}

.footer-top p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-btns {
    display: flex;
    gap: 18px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-main {
    padding: 50px 0 35px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 10px;
}

.footer-about {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    margin-bottom: 22px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--ssb-dark-red);
    border-color: var(--ssb-dark-red);
}

.footer-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    margin-top: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--ssb-dark-red);
    padding-left: 4px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.7;
}

.contact-info i {
    color: #fff;
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 20px 0;
}

.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    text-align: center;
}

.copyright a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
}

.copyright a:hover {
    color: var(--ssb-dark-red);
}

.heart {
    display: inline-block;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .4;
        transform: scale(1.2)
    }
}

/* APPLICATION MODAL */
.modal-backdrop-custom {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    z-index: 9998;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-backdrop-custom.show {
    display: flex;
}

.app-modal {
    background: rgba(8, 28, 10, 0.88);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 40px;
    width: 100%;
    max-width: 520px;
    position: relative;
    color: #fff;
    animation: modalIn 0.4s ease;
}

@keyframes modalIn {
    from {
        transform: translateY(60px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.modal-close-btn:hover {
    background: var(--ssb-dark-red);
    transform: rotate(90deg);
}

.modal-tag {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.app-modal h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.app-modal p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.7;
}

.form-field {
    margin-bottom: 16px;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 14px 16px;
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: var(--ssb-dark-green);
    background: rgba(255, 255, 255, 0.12);
}

.form-field select option {
    background: #1a1a1a;
}

.form-field textarea {
    min-height: 100px;
    resize: none;
}

.form-field .file-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px dashed rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s;
}

.form-field .file-label:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.form-field input[type="file"] {
    display: none;
}

.submit-btn {
    width: 100%;
    border: none;
    padding: 15px;
    border-radius: 10px;
    background: var(--ssb-dark-green);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(27, 94, 32, 0.35);
}

/* NAVBAR MOBILE */
@media (max-width: 991px) {
    .custom-navbar {
        padding: 14px 20px;
        background: #fff;
    }

    .navbar-collapse {
        padding-top: 20px;
    }

    .navbar-nav {
        width: 100%;
        gap: 0;
    }

    .navbar-nav .nav-item {
        border-bottom: 1px solid #ececec;
    }

    .navbar-nav .nav-link {
        padding: 18px 0;
        font-weight: 700;
        color: #162238;
    }

    /* Business row */
    .mobile_menu {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .mobile_menu .nav-link {
        flex: 1;
        margin: 0;
    }

    .mobile_down_icon {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .mobile_down_icon i {
        color: #15803d;
        transition: .3s ease;
    }

    .mobile_down_icon.active i {
        transform: rotate(180deg);
    }

    /* Dropdown box */
    .custom-dropdown .dropdown-menu {
        display: none;
        position: static !important;
        width: 100%;
        margin: 0 0 16px;
        padding: 8px 0;
        border-radius: 14px;
        box-shadow: none;
        overflow: hidden;
        background: #fafafa !important;
        border: 1px solid #ececec;
        box-shadow: 0 4px 12px rgba(0, 0, 0, .03);
    }

    .custom-dropdown .dropdown-menu.show {
        display: block !important;
    }

    .custom-dropdown .dropdown-item {
        padding: 12px 18px;
        font-weight: 500;
        color: #162238;
        border-bottom: 1px solid #e9e9e9;
        transition: .25s;
    }

    .custom-dropdown .dropdown-item:last-child {
        border-bottom: 0;
    }

    .custom-dropdown .dropdown-item:hover {
        background: #f4f8f4;
        color: #15803d;
    }

    /* remove desktop underline */
    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-brand {
        position: relative;
    }

    .page-hero {
        padding: 0 24px 40px;
        min-height: 260px;
    }

    .why-section,
    .roles-section,
    .process-section,
    .cta-strip {
        padding: 50px 24px;
    }

    .footer-section {
        padding: 50px 24px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .roles-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
        gap: 30px;
    }

    .process-steps::before {
        display: none;
    }

    .footer-btns {
        justify-content: flex-start;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .lg_heading {
        font-size: 26px;
    }

    .md_heading {
        font-size: 20px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .roles-grid {
        grid-template-columns: 1fr;
    }

    .role-card {
        flex-direction: column;
    }

    .apply-btn {
        width: 100%;
        text-align: center;
    }
}

/* ============================================================
   FACILITY MANAGEMENT PAGE — STYLES MOVED FROM
   facility-management.html <style> BLOCK
   (Merged here so facility-management.html only needs css/custom.css)
   ============================================================ */

/* ============================================
           SERVICE PAGE — ADDITIONAL STYLES
           Uses BTP design tokens from custom.css
        ============================================ */

/* ── SERVICE HERO ──────────────────────────── */
.service-hero {
    position: relative;
    width: 100%;
    min-height: 320px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 0 100px 70px;
}

.service-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../assets/images/facility.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1);
    animation: zoomBg 12s ease-in-out infinite alternate;
    z-index: -2;
}

.service-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.45) 50%,
            rgba(0, 0, 0, 0.18) 100%);
    z-index: -1;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 760px;
}

.service-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.service-breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: 0.3s;
}

.service-breadcrumb a:hover {
    color: var(--ssb-dark-red);
}

.service-breadcrumb i {
    font-size: 10px;
}

.service-breadcrumb .current {
    color: #fff;
}

.service-hero-content h1 {
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
    opacity: 0;
    transform: translateY(50px);
    animation: heroText 1s ease forwards 0.2s;
}

.service-hero-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.88);
    max-width: 580px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(40px);
    animation: heroText 1s ease forwards 0.5s;
}

.service-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: heroText 1s ease forwards 0.8s;
}

/* ── SERVICE QUICK STATS BAR ───────────────── */
.service-stats-bar {
    background: #1B5E20;
    padding: 22px 100px;
}

.service-stats-bar .stats-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.service-stats-bar .stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
}

.service-stats-bar .stat-item i {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.7);
}

.service-stats-bar .stat-item h3 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin: 0 0 4px;
}

.service-stats-bar .stat-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.service-stats-bar .stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* ── OVERVIEW SECTION ──────────────────────── */
.service-overview {
    padding: 80px 100px;
    background: #fff;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.overview-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.overview-image img {
    width: 100%;
    /*height: 480px;*/
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.overview-image:hover img {
    transform: scale(1.04);
}

.overview-image-badge {
    position: absolute;
    bottom: 28px;
    left: 28px;
    background: #fff;
    padding: 16px 22px;
    border-left: 4px solid var(--ssb-dark-red);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.overview-image-badge h4 {
    font-size: 22px;
    font-weight: 800;
    color: #000;
    margin: 0 0 4px;
}

.overview-image-badge p {
    font-size: 13px;
    color: #555;
    margin: 0;
}

.overview-content .section-label {
    display: inline-block;
    color: var(--ssb-dark-red);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.overview-content h2 {
    color: #111;
    margin-bottom: 14px;
    line-height: 1.25;
    position: relative;
    /* display: inline-block; */
}

.overview-content h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--ssb-dark-red);
    margin-top: 14px;
    border-radius: 10px;
}

.overview-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-top: 20px;
    margin-bottom: 16px;
}

.overview-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px;
}

.highlight-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #f7f9f7;
    border-left: 3px solid var(--ssb-dark-green);
    font-size: 14px;
    font-weight: 600;
    color: #222;
    transition: 0.3s;
}

.highlight-chip:hover {
    background: #edf5ee;
    transform: translateX(4px);
}

.highlight-chip i {
    color: var(--ssb-dark-green);
    font-size: 16px;
    flex-shrink: 0;
}

/* ── WHAT WE OFFER ─────────────────────────── */
.service-offerings {
    background: #f5f5f5;
    padding: 80px 100px;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.offering-card {
    background: #fff;
    padding: 36px 28px;
    border-bottom: 3px solid transparent;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.offering-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ssb-dark-red), var(--ssb-dark-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.4s ease;
}

.offering-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.09);
}

.offering-card:hover::before {
    transform: scaleX(1);
}

.offering-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f0f8f0;
    border: 2px solid #d4ead5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--ssb-dark-green);
    margin-bottom: 22px;
    transition: 0.4s;
}

.offering-card:hover .offering-icon {
    background: var(--ssb-dark-green);
    color: #fff;
    border-color: var(--ssb-dark-green);
}

.offering-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
    transition: 0.3s;
}

.offering-card:hover h3 {
    color: var(--ssb-dark-red);
}

.offering-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.75;
    margin: 0;
}

/* ── WHY CHOOSE US ─────────────────────────── */
.why-choose {
    background: #fff;
    padding: 80px 100px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.why-image-stack {
    position: relative;
    height: 500px;
}

.why-image-stack .img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 75%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

.why-image-stack .img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 65%;
    height: 60%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
    z-index: 3;
    border: 6px solid #fff;
}

.why-accent-box {
    position: absolute;
    top: 55%;
    left: 0;
    width: 120px;
    height: 120px;
    background: var(--ssb-dark-red);
    z-index: 1;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: 0.3s;
}

.why-item:first-child {
    padding-top: 0;
}

.why-item:last-child {
    border-bottom: none;
}

.why-item:hover {
    transform: translateX(6px);
}

.why-num {
    font-size: 38px;
    font-weight: 900;
    color: #eeeeee;
    line-height: 1;
    flex-shrink: 0;
    width: 48px;
    transition: 0.3s;
}

.why-item:hover .why-num {
    color: var(--ssb-dark-red);
}

.why-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
}

.why-text p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.7;
}

/* ── PROCESS SECTION ───────────────────────── */
.service-process {
    background: #f5f5f5;
    padding: 80px 100px;
}

.process-timeline {
    position: relative;
    margin-top: 50px;
}

.process-timeline::before {
    content: "";
    position: absolute;
    top: 38px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--ssb-dark-red), var(--ssb-dark-green));
}

.process-steps {
    /* display: grid; */
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
}

.process-step {
    text-align: center;
    padding-top: 10px;
}

.process-dot {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 20px;
    color: #bbb;
    position: relative;
    z-index: 2;
    transition: 0.4s;
}

.process-step:hover .process-dot {
    background: var(--ssb-dark-red);
    border-color: var(--ssb-dark-red);
    color: #fff;
    transform: scale(1.1);
}

.process-step h4 {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
}

.process-step-num {
    font-size: 11px;
    font-weight: 800;
    color: var(--ssb-dark-red);
    letter-spacing: 2px;
    margin-bottom: 6px;
    display: block;
}

/* ── GALLERY ───────────────────────────────── */
.service-gallery {
    background: #fff;
    padding: 80px 100px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 240px 240px;
    gap: 14px;
    margin-top: 50px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    border-radius: 2px;
}

.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 30px;
    color: #fff;
}

/* ── PROJECTS / CASE STUDIES ───────────────── */
.service-projects {
    background: #f5f5f5;
    padding: 80px 100px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.project-card {
    background: #fff;
    overflow: hidden;
    transition: 0.4s ease;
    position: relative;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.project-img {
    overflow: hidden;
    height: 200px;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.project-card:hover .project-img img {
    transform: scale(1.06);
}

.project-info {
    padding: 24px;
}

.project-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--ssb-dark-red);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.project-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    transition: 0.3s;
}

.project-card:hover .project-info h3 {
    color: var(--ssb-dark-red);
}

.project-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.project-meta {
    display: flex;
    gap: 20px;
    border-top: 1px solid #f0f0f0;
    padding-top: 14px;
    margin-top: 6px;
}

.project-meta span {
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

.project-meta span i {
    color: var(--ssb-dark-green);
}

/* ── TESTIMONIAL STRIP ─────────────────────── */
.service-testimonial {
    background: var(--ssb-dark-green);
    padding: 70px 100px;
    position: relative;
    overflow: hidden;
}

.service-testimonial::before {
    content: "\201C";
    position: absolute;
    top: -30px;
    right: 80px;
    font-size: 300px;
    color: rgba(255, 255, 255, 0.05);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
    gap: 40px;
    align-items: start;
}

.testimonial-strip-divider {
    background: rgba(255, 255, 255, 0.15);
    width: 1px;
    height: 100%;
    min-height: 120px;
}

.strip-testimonial-item .quote-mark {
    font-size: 40px;
    color: var(--ssb-dark-red);
    line-height: 1;
    margin-bottom: 10px;
}

.strip-testimonial-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 18px;
}

.strip-testimonial-item .reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.strip-testimonial-item .reviewer img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.strip-testimonial-item .reviewer h5 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 3px;
}

.strip-testimonial-item .reviewer span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.stars-row {
    color: #FFB400;
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* ── FAQ ───────────────────────────────────── */
.service-faq {
    background: #fff;
    padding: 80px 100px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
    align-items: start;
}

.faq-intro p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-top: 20px;
}

.faq-contact-box {
    margin-top: 36px;
    padding: 28px;
    background: #f5f5f5;
    border-left: 4px solid var(--ssb-dark-green);
}

.faq-contact-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.faq-contact-box p {
    font-size: 14px;
    color: #555;
    margin-bottom: 16px;
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-item {
    border-bottom: 1px solid #efefef;
}

.faq-item:first-child {
    border-top: 1px solid #efefef;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: 0.3s;
}

.faq-question span {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    transition: 0.3s;
}

.faq-question:hover span {
    color: var(--ssb-dark-red);
}

.faq-question i {
    font-size: 18px;
    color: var(--ssb-dark-green);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-question i {
    transform: rotate(45deg);
    color: var(--ssb-dark-red);
}

.faq-answer {
    display: none;
    padding-bottom: 18px;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 15px;
    color: #666;
    line-height: 1.75;
    margin: 0;
}

/* ── CTA SECTION ───────────────────────────── */
.service-cta {
    background: linear-gradient(135deg,
            rgba(8, 28, 10, 0.96),
            rgba(3, 28, 5, 0.92)),
        url('./assets/images/btp-banner.webp') center/cover no-repeat;
    padding: 90px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(237, 28, 36, 0.1), transparent 70%);
}

.service-cta-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
}

.service-cta-content .section-label {
    display: inline-block;
    color: var(--ssb-dark-red);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.service-cta-content h2 {
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.25;
}

.service-cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 38px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── RELATED SERVICES ──────────────────────── */
.related-services {
    background: #f5f5f5;
    padding: 80px 100px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.related-card {
    background: #fff;
    overflow: hidden;
    transition: 0.4s;
    text-decoration: none;
    display: block;
    position: relative;
}

.related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.related-card-img {
    height: 160px;
    overflow: hidden;
}

.related-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.related-card:hover .related-card-img img {
    transform: scale(1.06);
}

.related-card-body {
    padding: 20px;
}

.related-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ssb-dark-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    margin-bottom: 12px;
    margin-top: -42px;
    position: relative;
    z-index: 2;
    border: 3px solid #fff;
}

.related-card-body h4 {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
    transition: 0.3s;
}

.related-card:hover .related-card-body h4 {
    color: var(--ssb-dark-red);
}

.related-card-body p {
    font-size: 13px;
    color: #888;
    margin: 0;
    line-height: 1.6;
}

.related-card-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ssb-dark-green);
    margin-top: 12px;
    transition: 0.3s;
}

.related-card:hover .related-card-link {
    gap: 10px;
    color: var(--ssb-dark-red);
}

/* ── STICKY SIDEBAR CONTACT WIDGET (optional) */
.service-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 50px;
    align-items: start;
}

.sidebar-widget {
    background: #fff;
    border: 1px solid #e8e8e8;
    padding: 30px;
    position: sticky;
    top: 100px;
}

.sidebar-widget h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
    position: relative;
    padding-bottom: 14px;
}

.sidebar-widget h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--ssb-dark-red);
    border-radius: 4px;
}

.sidebar-widget p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 14px 0 20px;
}

.sidebar-form .form-field {
    margin-bottom: 14px;
}

.sidebar-form input,
.sidebar-form textarea,
.sidebar-form select {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #e5e5e5;
    background: #fafafa;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: 0.3s;
    border-radius: 2px;
}

.sidebar-form input:focus,
.sidebar-form textarea:focus,
.sidebar-form select:focus {
    border-color: var(--ssb-dark-green);
    background: #fff;
}

.sidebar-form textarea {
    min-height: 90px;
    resize: none;
}

.sidebar-form .submit-btn {
    width: 100%;
    background: var(--ssb-dark-green);
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 0.5px;
}

.sidebar-form .submit-btn:hover {
    background: var(--ssb-dark-red);
    transform: translateY(-2px);
}

.sidebar-contact-info {
    margin-top: 22px;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.sidebar-contact-info a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s;
}

.sidebar-contact-info a:hover {
    color: var(--ssb-dark-red);
}

.sidebar-contact-info a i {
    color: var(--ssb-dark-green);
    width: 16px;
}

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 1536px) {

    .service-hero,
    .service-stats-bar,
    .service-overview,
    .service-offerings,
    .why-choose,
    .service-process,
    .service-gallery,
    .service-projects,
    .service-testimonial,
    .service-faq,
    .service-cta,
    .related-services {
        padding-left: 80px;
        padding-right: 80px;
    }

    .card-desc {
        min-height: 290px;
    }

    .people-wrap {
        min-height: 525px;
    }
}

@media (max-width: 1199px) {

    .overview-grid,
    .why-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .why-image-stack {
        height: 380px;
    }

    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-strip-inner {
        grid-template-columns: 1fr;
    }

    .testimonial-strip-divider {
        display: none;
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-timeline::before {
        display: none;
    }

    .service-layout {
        grid-template-columns: 1fr;
    }

    .sidebar-widget {
        position: static;
    }
}

@media (max-width: 991px) {
    .tp-testimonial {
        padding: 50px 0 !important;
        padding-bottom: 0 !important;
    }

    .service-hero {
        padding: 0 40px 60px;
        min-height: 460px;
    }

    .service-stats-bar {
        padding: 22px 40px;
    }

    .service-overview,
    .service-offerings,
    .why-choose,
    .service-process,
    .service-gallery,
    .service-projects,
    .service-testimonial,
    .service-faq,
    .service-cta,
    .related-services {
        padding: 60px 40px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 1;
        height: 240px;
    }

    .gallery-item {
        height: 180px;
    }

    .projects-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .card-desc {
        min-height: 480px;
    }

    .service-hero {
        padding: 0 20px 50px;
        min-height: 420px;
    }

    .service-stats-bar {
        padding: 20px;
    }

    .service-stats-bar .stats-inner {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .service-stats-bar .stat-divider {
        display: none;
    }

    .service-overview,
    .service-offerings,
    .why-choose,
    .service-process,
    .service-gallery,
    .service-projects,
    .service-testimonial,
    .service-faq,
    .service-cta,
    .related-services {
        padding: 50px 20px;
    }

    .offerings-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item:first-child {
        grid-column: span 1;
    }

    .gallery-item {
        height: 200px;
    }

    .projects-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .overview-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 440px) {
    .card-desc {
        min-height: 590px;
    }
}