/* =========================================================
   ABDULAZIZ AL-OUFI EST
   HOME PAGE
   ========================================================= */


/* =========================
   PAGE
========================= */

body.home-page {
    margin: 0;
    padding: 0;
    background: #020b14;
    color: #ffffff;
    font-family: "Inter", sans-serif;
}


/* =========================
   HERO
========================= */

body.home-page .home-hero {
    position: relative;

    width: 100%;
    min-height: calc(100vh - 98px);

    background-image: url("fork.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    overflow: hidden;
}


/* =========================
   LEFT DARK → RIGHT CLEAR
   GRADIENT

   Dark stays past halfway
========================= */

body.home-page .home-hero-overlay {
    display: block;

    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background: linear-gradient(
        90deg,
        rgba(1, 8, 17, 0.98) 0%,
        rgba(1, 8, 17, 0.97) 20%,
        rgba(1, 8, 17, 0.94) 35%,
        rgba(1, 8, 17, 0.88) 48%,
        rgba(1, 8, 17, 0.72) 60%,
        rgba(1, 8, 17, 0.48) 70%,
        rgba(1, 8, 17, 0.24) 80%,
        rgba(1, 8, 17, 0.08) 90%,
        rgba(1, 8, 17, 0) 100%
    );

    z-index: 1;
    pointer-events: none;
}


/* =========================
   HERO CONTENT
========================= */

body.home-page .home-hero-content {
    position: relative;
    z-index: 2;

    width: min(1380px, calc(100% - 120px));
    min-height: calc(100vh - 98px);

    margin: 0 auto;
    padding: 70px 0 45px;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}


/* =========================
   SMALL BLUE TEXT
========================= */

body.home-page .home-eyebrow {
    display: block;

    margin: 0 0 18px;

    color: #20b9ff;

    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 2px;

    position: relative;
    z-index: 3;
}


/* =========================
   MAIN TITLE
========================= */

body.home-page .home-hero-content h1 {
    margin: 0;

    width: 100%;
    max-width: 820px;

    color: #ffffff;

    font-size: clamp(42px, 4.4vw, 64px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -1.5px;
}


body.home-page .home-hero-content h1 span {
    display: block;

    color: #16aeef;
}


/* =========================
   DESCRIPTION
========================= */

body.home-page .home-hero-text {
    position: relative;
    z-index: 3;

    max-width: 650px;

    margin: 25px 0 0;

    color: #d1d8e0;

    font-size: 18px;
    line-height: 1.65;
    font-weight: 400;
}


/* =========================
   BUTTON AREA
========================= */

body.home-page .home-hero-buttons {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;
    gap: 22px;

    margin-top: 30px;
}


/* BOTH BUTTONS */

body.home-page .home-hero-buttons .main-button,
body.home-page .home-hero-buttons .second-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 58px;

    padding: 0 34px;

    box-sizing: border-box;

    text-decoration: none;

    font-size: 16px;
    font-weight: 700;

    transition: 0.25s ease;
}


/* BLUE BUTTON */

body.home-page .home-hero-buttons .main-button {
    color: #ffffff;

    background: #087cff;

    border: 1px solid #168bff;
}


body.home-page .home-hero-buttons .main-button:hover {
    background: #1598ff;
}


/* OUTLINE BUTTON */

body.home-page .home-hero-buttons .second-button {
    color: #ffffff;

    background: rgba(2, 12, 22, 0.35);

    border: 1px solid rgba(125, 174, 207, 0.55);

    backdrop-filter: blur(4px);
}


body.home-page .home-hero-buttons .second-button:hover {
    background: rgba(20, 100, 155, 0.25);

    border-color: #16aeef;
}


/* =========================
   THREE BOTTOM BENEFITS
========================= */

body.home-page .home-benefits {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;

    width: fit-content;

    margin-top: 85px;

    gap: 0;
}


/* INDIVIDUAL BENEFIT */

body.home-page .home-benefit {
    display: flex;
    align-items: center;

    gap: 16px;

    min-width: 235px;

    padding: 0 35px;

    border-right: 1px solid rgba(255, 255, 255, 0.25);
}


body.home-page .home-benefit:first-child {
    padding-left: 0;
}


body.home-page .home-benefit:last-child {
    border-right: none;
}


/* BENEFIT ICON */

body.home-page .home-benefit svg {
    width: 34px;
    height: 34px;

    stroke: #16aeef;
    stroke-width: 2;

    flex-shrink: 0;
}


/* BENEFIT TITLE */

body.home-page .home-benefit h4 {
    margin: 0 0 5px;

    color: #ffffff;

    font-size: 16px;
    font-weight: 700;
}


/* BENEFIT DESCRIPTION */

body.home-page .home-benefit p {
    margin: 0;

    color: #aebac7;

    font-size: 14px;
    line-height: 1.4;
}


/* =========================================================
   KEY SERVICES SECTION
   ========================================================= */

body.home-page .home-services {
    background: #03101b;

    padding: 70px 0;
}


body.home-page .home-services-wrap {
    width: min(1380px, calc(100% - 120px));

    margin: 0 auto;
}


/* SERVICES TOP HEADING */

body.home-page .services-heading {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 28px;
}


body.home-page .section-label {
    margin: 0;

    color: #20b9ff;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
}


body.home-page .services-heading > span {
    color: #20b9ff;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 1.3px;
}


/* SERVICES GRID */

body.home-page .home-service-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}


/* SERVICE CARD */

body.home-page .home-service-card {
    min-height: 190px;

    padding: 28px;

    box-sizing: border-box;

    background: rgba(7, 22, 35, 0.65);

    border: 1px solid rgba(38, 106, 145, 0.35);
}


body.home-page .home-service-card svg {
    width: 32px;
    height: 32px;

    margin-bottom: 20px;

    stroke: #16aeef;
}


body.home-page .home-service-card h3 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: 18px;
    font-weight: 700;
}


body.home-page .home-service-card p {
    margin: 0;

    color: #aebac7;

    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   ABOUT BUSINESS SECTION
   ========================================================= */

body.home-page .home-about {
    background: #020c16;

    padding: 80px 0;
}


body.home-page .home-about-wrap {
    width: min(1380px, calc(100% - 120px));

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1.3fr 0.7fr;

    align-items: center;

    gap: 80px;
}


/* ABOUT TEXT */

body.home-page .home-about-text h2 {
    max-width: 700px;

    margin: 18px 0 25px;

    color: #ffffff;

    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
}


body.home-page .home-about-text > p:not(.section-label) {
    max-width: 760px;

    margin: 0 0 10px;

    color: #b6c2cd;

    font-size: 15px;
    line-height: 1.7;
}


/* ABOUT BUTTON */

body.home-page .home-about-link {
    display: inline-flex;

    margin-top: 20px;

    padding: 14px 22px;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    border: 1px solid rgba(125, 174, 207, 0.45);

    transition: 0.25s ease;
}


body.home-page .home-about-link:hover {
    color: #20b9ff;

    border-color: #20b9ff;
}


/* ABOUT IMAGE */

body.home-page .home-about-image {
    width: 100%;

    overflow: hidden;

    border: 1px solid rgba(38, 106, 145, 0.35);
}


body.home-page .home-about-image img {
    display: block;

    width: 100%;
    height: 420px;

    object-fit: cover;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    body.home-page .home-hero-content,
    body.home-page .home-services-wrap,
    body.home-page .home-about-wrap {
        width: calc(100% - 60px);
    }


    body.home-page .home-benefits {
        margin-top: 65px;
    }


    body.home-page .home-benefit {
        min-width: 200px;

        padding: 0 22px;
    }


    body.home-page .home-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    body.home-page .home-about-wrap {
        grid-template-columns: 1fr 1fr;

        gap: 45px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {

    body.home-page .home-hero {
        min-height: 100vh;

        background-position: 60% center;
    }


    body.home-page .home-hero-overlay {
        background: linear-gradient(
            90deg,
            rgba(1, 8, 17, 0.98) 0%,
            rgba(1, 8, 17, 0.95) 50%,
            rgba(1, 8, 17, 0.75) 75%,
            rgba(1, 8, 17, 0.45) 100%
        );
    }


    body.home-page .home-hero-content {
        width: calc(100% - 40px);

        min-height: 100vh;

        padding: 70px 0 40px;
    }


    body.home-page .home-eyebrow {
        font-size: 13px;

        letter-spacing: 1.5px;
    }


    body.home-page .home-hero-content h1 {
        font-size: 44px;

        letter-spacing: -1px;
    }


    body.home-page .home-hero-text {
        font-size: 16px;
    }


    body.home-page .home-hero-buttons {
        width: 100%;

        flex-direction: column;

        align-items: stretch;

        gap: 12px;
    }


    body.home-page .home-hero-buttons .main-button,
    body.home-page .home-hero-buttons .second-button {
        width: 100%;
    }


    body.home-page .home-benefits {
        width: 100%;

        flex-direction: column;

        align-items: flex-start;

        gap: 25px;

        margin-top: 55px;
    }


    body.home-page .home-benefit {
        width: 100%;

        min-width: 0;

        padding: 0;

        border-right: none;
    }


    body.home-page .home-services-wrap,
    body.home-page .home-about-wrap {
        width: calc(100% - 40px);
    }


    body.home-page .services-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 10px;
    }


    body.home-page .home-service-grid {
        grid-template-columns: 1fr;
    }


    body.home-page .home-about-wrap {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    body.home-page .home-about-text h2 {
        font-size: 34px;
    }


    body.home-page .home-about-image img {
        height: 320px;
    }
}
/* ==========================================
   ABOUT BUSINESS + ABUL PROFILE
========================================== */

body.home-page .home-about {
    background: #020d17;
    padding: 90px 0 100px;
}


body.home-page .home-about-wrap {
    width: min(1360px, calc(100% - 120px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);

    gap: 55px;
    align-items: start;
}


/* ABOUT TEXT */

body.home-page .home-about-text {
    min-width: 0;
}


body.home-page .section-label {
    color: #18b8ff;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2.5px;

    margin: 0 0 18px;
}


body.home-page .home-about-text > h2 {
    color: #ffffff;

    font-size: 44px;
    line-height: 1.12;
    font-weight: 700;

    margin: 0 0 25px;
}


body.home-page .home-about-text > p {
    color: #bdcad7;

    font-size: 16px;
    line-height: 1.75;

    max-width: 760px;

    margin: 0 0 16px;
}



/* ==========================================
   ABUL GRADIENT BOX
========================================== */

body.home-page .abul-box {
    position: relative;
    overflow: hidden;

    margin-top: 38px;

    padding: 38px 42px 40px;

    border-radius: 16px;

    border: 1px solid rgba(42, 164, 255, 0.55);

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(20, 125, 255, 0.35),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #07192b 0%,
            #09274b 48%,
            #0a3b79 100%
        );

    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}


/* subtle glow */

body.home-page .abul-box::before {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    right: -130px;
    bottom: -170px;

    border-radius: 50%;

    background: rgba(0, 140, 255, 0.22);

    filter: blur(50px);

    pointer-events: none;
}


/* TOP ROW */

body.home-page .abul-box-top {
    position: relative;
    z-index: 1;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    gap: 30px;
}


body.home-page .abul-label {
    color: #7ccaff !important;

    font-size: 13px !important;
    font-weight: 700;
    letter-spacing: 3px;

    margin: 0 !important;
}


/* 20+ YEARS */

body.home-page .abul-years {
    display: flex;
    align-items: center;
    gap: 12px;

    padding-left: 24px;

    border-left: 1px solid rgba(74, 179, 255, 0.5);
}


body.home-page .abul-years strong {
    color: #68b9ff;

    font-size: 38px;
    line-height: 1;
}


body.home-page .abul-years span {
    color: #7eb5e5;

    font-size: 10px;
    line-height: 1.6;

    letter-spacing: 2px;
}


/* NAME */

body.home-page .abul-name {
    position: relative;
    z-index: 1;

    color: white;

    font-size: 36px;
    font-weight: 700;

    margin: 20px 0 7px;
}


body.home-page .abul-title {
    position: relative;
    z-index: 1;

    color: #9ed7ff !important;

    font-size: 12px !important;
    font-weight: 600;

    letter-spacing: 2px;

    margin: 0 0 25px !important;
}


/* DESCRIPTION */

body.home-page .abul-box > p:not(.abul-title) {
    position: relative;
    z-index: 1;

    color: #c3d1df;

    font-size: 15px;
    line-height: 1.65;

    margin: 0 0 15px;
}


/* ==========================================
   LEARN MORE BUTTON
========================================== */

body.home-page .abul-button {
    position: relative;
    z-index: 1;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    gap: 55px;

    min-width: 285px;

    margin-top: 18px;
    padding: 16px 22px;

    border-radius: 50px;

    color: white;
    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    background:
        linear-gradient(
            100deg,
            #109cff 0%,
            #1679f5 52%,
            #334fbd 100%
        );

    border: 1px solid rgba(126, 204, 255, 0.75);

    box-shadow:
        0 10px 30px rgba(0, 125, 255, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


body.home-page .abul-button span {
    font-size: 22px;

    transition: transform 0.25s ease;
}


body.home-page .abul-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 14px 38px rgba(0, 150, 255, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}


body.home-page .abul-button:hover span {
    transform: translateX(5px);
}



/* ==========================================
   ABUL IMAGE
========================================== */

body.home-page .home-about-image {
    position: sticky;
    top: 125px;

    overflow: hidden;

    min-height: 620px;

    border-radius: 14px;

    border: 1px solid rgba(74, 160, 215, 0.35);

    background: #071725;
}


body.home-page .home-about-image img {
    display: block;

    width: 100%;
    height: 620px;

    object-fit: cover;
    object-position: center top;
}



/* ==========================================
   MOBILE
========================================== */

@media (max-width: 900px) {

    body.home-page .home-about-wrap {
        width: calc(100% - 40px);

        grid-template-columns: 1fr;

        gap: 35px;
    }


    body.home-page .home-about-text > h2 {
        font-size: 35px;
    }


    body.home-page .abul-box {
        padding: 28px 25px;
    }


    body.home-page .abul-box-top {
        flex-direction: column;
    }


    body.home-page .abul-years {
        padding-left: 0;

        border-left: none;
    }


    body.home-page .abul-name {
        font-size: 30px;
    }


    body.home-page .abul-button {
        min-width: 0;
        width: 100%;
    }


    body.home-page .home-about-image {
        position: relative;
        top: auto;

        min-height: 450px;
    }


    body.home-page .home-about-image img {
        height: 450px;
    }

}/* ==========================================
   ABUL CONSULTANT STRIP
   #4 layout + #5 description style
========================================== */

body.home-page .abul-strip {
    width: 100%;

    margin-top: 42px;

    display: grid;
    grid-template-columns: 170px 1fr auto;

    align-items: center;

    gap: 34px;

    padding: 28px 32px;

    box-sizing: border-box;

    background:
        linear-gradient(
            90deg,
            rgba(5, 24, 41, 0.96) 0%,
            rgba(7, 32, 55, 0.92) 60%,
            rgba(8, 45, 78, 0.88) 100%
        );

    border-top: 1px solid rgba(51, 177, 255, 0.32);
    border-bottom: 1px solid rgba(51, 177, 255, 0.32);

    border-radius: 10px;
}


/* LEFT 20+ */

body.home-page .abul-strip-stat {
    padding-right: 30px;

    border-right: 1px solid rgba(255,255,255,0.18);
}


body.home-page .abul-strip-stat strong {
    display: block;

    color: #38bdf8;

    font-size: 44px;
    line-height: 1;
    font-weight: 700;
}


body.home-page .abul-strip-stat span {
    display: block;

    margin-top: 8px;

    color: #b9c7d5;

    font-size: 12px;
    line-height: 1.4;

    letter-spacing: 1px;
}


/* CENTER CONTENT */

body.home-page .abul-strip-content {
    min-width: 0;
}


body.home-page .abul-strip-label {
    margin: 0 0 8px;

    color: #38bdf8;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2.2px;
}


body.home-page .abul-strip-content h3 {
    margin: 0 0 4px;

    color: #ffffff;

    font-size: 24px;
    font-weight: 700;
}


body.home-page .abul-role {
    margin: 0 0 10px !important;

    color: #9fd7f8 !important;

    font-size: 13px !important;
    font-weight: 600;
}


body.home-page .abul-strip-description {
    max-width: 680px;

    margin: 0 !important;

    color: #bdcad7 !important;

    font-size: 14px !important;
    line-height: 1.6 !important;
}


/* RIGHT BUTTON */

body.home-page .abul-strip-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}


body.home-page .abul-strip-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 26px;

    white-space: nowrap;

    padding: 14px 22px;

    border-radius: 30px;

    color: #ffffff;

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    background:
        linear-gradient(
            90deg,
            #0b7cff 0%,
            #315edc 100%
        );

    border: 1px solid rgba(111, 200, 255, 0.65);

    box-shadow: 0 8px 24px rgba(0, 125, 255, 0.18);

    transition: 0.25s ease;
}


body.home-page .abul-strip-button span {
    font-size: 18px;

    transition: transform 0.25s ease;
}


body.home-page .abul-strip-button:hover {
    transform: translateY(-2px);

    box-shadow: 0 12px 30px rgba(0, 145, 255, 0.30);
}


body.home-page .abul-strip-button:hover span {
    transform: translateX(4px);
}


/* MOBILE */

@media (max-width: 900px) {

    body.home-page .abul-strip {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    body.home-page .abul-strip-stat {
        padding-right: 0;
        padding-bottom: 18px;

        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.16);
    }

    body.home-page .abul-strip-action {
        justify-content: flex-start;
    }

}
/* ==========================================
   ABUL CONSULTANT FEATURE
========================================== */

body.home-page .consultant-feature {
    width: 100%;
    margin-top: 40px;

    display: grid;
    grid-template-columns: 1.65fr 0.75fr;

    background: linear-gradient(
        120deg,
        #071d30 0%,
        #0a2945 55%,
        #0c3559 100%
    );

    border: 1px solid rgba(25, 174, 239, 0.35);
    border-radius: 14px;

    overflow: hidden;
}


/* LEFT SIDE */

body.home-page .consultant-info {
    display: grid;
    grid-template-columns: 140px 1px 1fr;
    gap: 34px;
    align-items: center;

    padding: 42px 45px;
}


/* 20+ */

body.home-page .consultant-experience strong {
    display: block;

    color: #18b5f5;

    font-size: 48px;
    line-height: 1;
    font-weight: 700;
}

body.home-page .consultant-experience span {
    display: block;

    margin-top: 8px;

    color: #d2e4f1;

    font-size: 13px;
    letter-spacing: 1px;
}


/* DIVIDER */

body.home-page .consultant-divider {
    width: 1px;
    height: 75px;

    background: rgba(255, 255, 255, 0.20);
}


/* DESCRIPTION */

body.home-page .consultant-label {
    margin: 0 0 10px !important;

    color: #18b5f5 !important;

    font-size: 12px !important;
    font-weight: 700;
    letter-spacing: 2px;
}


body.home-page .consultant-description h3 {
    margin: 0;

    color: #ffffff;

    font-size: 28px;
    font-weight: 700;
}


body.home-page .consultant-description h4 {
    margin: 5px 0 15px;

    color: #3dc2ff;

    font-size: 14px;
    font-weight: 600;
}


body.home-page .consultant-description > p:last-of-type {
    max-width: 600px;

    margin: 0;

    color: #d3e0ea;

    font-size: 15px;
    line-height: 1.6;
}


/* BUTTON */

body.home-page .consultant-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;

    margin-top: 22px;

    padding: 13px 20px;

    color: #ffffff;

    background: #087cff;

    border: 1px solid #35a7ff;
    border-radius: 30px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: 0.25s ease;
}

body.home-page .consultant-button:hover {
    background: #169cff;
    transform: translateY(-2px);
}


/* ==========================================
   RIGHT ABUL PHOTO
========================================== */

body.home-page .consultant-photo {
    position: relative;

    min-height: 330px;

    overflow: hidden;
}


body.home-page .consultant-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center top;
}


/* FADE PHOTO INTO CARD */

body.home-page .consultant-photo::before {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        #0a2945 0%,
        rgba(10, 41, 69, 0.65) 12%,
        rgba(10, 41, 69, 0.15) 32%,
        transparent 55%
    );

    z-index: 1;
    pointer-events: none;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 950px) {

    body.home-page .consultant-feature {
        grid-template-columns: 1fr;
    }

    body.home-page .consultant-photo {
        min-height: 400px;
    }

    body.home-page .consultant-info {
        grid-template-columns: 110px 1px 1fr;

        padding: 35px 30px;
    }
}
/* =========================================================
   ABOUT BUSINESS - CLEAN WIDE VERSION
========================================================= */

body.home-page .home-about {
    background: #020d17;
    padding: 85px 0 95px;
}

body.home-page .home-about-wrap {
    width: min(1380px, calc(100% - 120px));
    margin: 0 auto;
}


/* ABOUT THE BUSINESS - BLUE */

body.home-page .home-about .section-label {
    color: #18b7ff !important;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin: 0 0 18px;
}


/* BIG BUSINESS HEADING - ALLOW IT TO EXTEND */

body.home-page .home-about-text {
    width: 100%;
    max-width: none !important;
}

body.home-page .home-about-text > h2 {
    color: #ffffff;

    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.08;

    max-width: 1100px !important;
    width: 100%;

    margin: 0 0 25px;
    letter-spacing: -1.5px;
}


/* BUSINESS DESCRIPTION */

body.home-page .home-about-text > p {
    max-width: 920px;

    color: #c4d2df;

    font-size: 16px;
    line-height: 1.7;

    margin: 0 0 12px;
}



/* =========================================================
   ABUL - HORIZONTAL EXECUTIVE STRIP
========================================================= */

body.home-page .consultant-feature {
    position: relative;

    display: grid;

    grid-template-columns:
        160px
        1px
        minmax(420px, 1fr)
        230px;

    align-items: center;
    gap: 28px;

    width: 100%;

    margin-top: 45px;

    padding: 27px 32px;

    box-sizing: border-box;

    /* NO BIG GRADIENT */
    background: #062037;

    border: 1px solid rgba(31, 181, 255, 0.32);

    border-radius: 7px;

    overflow: hidden;
}


/* VERY LIGHT BLUE GLOW ONLY AROUND 20+ */

body.home-page .consultant-feature::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 180px;

    left: -60px;
    top: 50%;

    transform: translateY(-50%);

    background: radial-gradient(
        circle,
        rgba(19, 174, 255, 0.11) 0%,
        rgba(19, 174, 255, 0.045) 40%,
        rgba(19, 174, 255, 0) 72%
    );

    pointer-events: none;
}



/* =========================================================
   20+ EXPERIENCE
========================================================= */

body.home-page .consultant-experience {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;

    justify-content: center;

    min-width: 0;
}


body.home-page .consultant-experience strong {
    color: #27baff;

    font-size: 47px;
    line-height: 0.95;

    font-weight: 700;

    letter-spacing: -2px;
}


body.home-page .consultant-experience span {
    color: #c9d9e7;

    font-size: 12px;
    line-height: 1.25;

    margin-top: 7px;

    letter-spacing: 0.6px;
}



/* DIVIDER */

body.home-page .consultant-divider {
    width: 1px;
    height: 70px;

    background: rgba(133, 193, 224, 0.28);
}



/* =========================================================
   ABUL DESCRIPTION
========================================================= */

body.home-page .consultant-info {
    display: contents;
}


body.home-page .consultant-description {
    position: relative;
    z-index: 2;

    max-width: 650px;
}


body.home-page .consultant-label {
    display: none;
}


body.home-page .consultant-description h3 {
    color: #ffffff;

    font-size: 22px;
    line-height: 1.1;

    margin: 0 0 5px;

    font-weight: 700;
}


body.home-page .consultant-description h4 {
    color: #79cfff;

    font-size: 13px;
    font-weight: 600;

    margin: 0 0 10px;
}


body.home-page .consultant-description p {
    color: #c7d6e3;

    font-size: 13px;
    line-height: 1.55;

    margin: 0;

    max-width: 620px;
}


/* HIDE SECOND PARAGRAPH TO KEEP STRIP CLEAN */

body.home-page .consultant-description p + p {
    display: none;
}



/* =========================================================
   MEET THE CONSULTANT BUTTON
========================================================= */

body.home-page .consultant-button {
    position: relative;
    z-index: 2;

    justify-self: end;

    width: 210px;
    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    box-sizing: border-box;

    padding: 0 22px;

    border-radius: 30px;

    color: #ffffff;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    /*
       LIGHT GRADIENT ONLY HERE
    */

    background:
        linear-gradient(#062037, #062037) padding-box,
        linear-gradient(
            90deg,
            rgba(19, 184, 255, 0.95),
            rgba(83, 141, 255, 0.65)
        ) border-box;

    border: 1px solid transparent;

    box-shadow:
        0 0 18px rgba(18, 168, 255, 0.06);

    transition: 0.25s ease;
}


body.home-page .consultant-button:hover {
    background:
        linear-gradient(
            90deg,
            rgba(8, 105, 174, 0.30),
            rgba(34, 85, 170, 0.20)
        ) padding-box,
        linear-gradient(
            90deg,
            #19baff,
            #6691ff
        ) border-box;

    transform: translateY(-1px);
}



/* =========================================================
   ABUL PHOTO
   Hide it in this compact strip.
   The about page can show the full portrait.
========================================================= */

body.home-page .consultant-photo {
    display: none;
}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    body.home-page .home-about-wrap {
        width: calc(100% - 40px);
    }

    body.home-page .consultant-feature {
        grid-template-columns: 1fr;

        gap: 18px;

        padding: 25px;
    }

    body.home-page .consultant-divider {
        width: 100%;
        height: 1px;
    }

    body.home-page .consultant-button {
        justify-self: start;
    }

}
/* your existing home.css stuff above */



/* =========================================
   PASTE THE NEW ABUL CSS BELOW THIS LINE
========================================= */

body.home-page .consultant-strip {
    width: 100%;
    min-height: 135px;

    margin-top: 38px;
    padding: 22px 30px;

    box-sizing: border-box;

    display: grid;
    grid-template-columns: 105px 1px 1fr 230px;
    align-items: center;
    column-gap: 28px;

    background: linear-gradient(
        90deg,
        #061a2b 0%,
        #062039 55%,
        #041726 100%
    );

    border-top: 1px solid rgba(32, 181, 255, 0.35);
    border-bottom: 1px solid rgba(32, 181, 255, 0.25);

    border-radius: 3px;
}


/* 20+ */

body.home-page .consultant-years {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

body.home-page .consultant-years strong {
    color: #5dbaff;
    font-size: 43px;
    line-height: 0.95;
    font-weight: 700;

    text-shadow: 0 0 15px rgba(37, 174, 255, 0.18);
}

body.home-page .consultant-years span {
    margin-top: 7px;

    color: #c1cfdd;

    font-size: 12px;
    line-height: 1.25;
}


/* DIVIDER */

body.home-page .consultant-line {
    width: 1px;
    height: 90px;

    background: linear-gradient(
        to bottom,
        transparent,
        rgba(49, 182, 255, 0.55),
        transparent
    );
}


/* ABUL TEXT */

body.home-page .consultant-summary h3 {
    margin: 0 0 3px;

    color: #ffffff;

    font-size: 18px;
    font-weight: 700;
}

body.home-page .consultant-summary h4 {
    margin: 0 0 12px;

    color: #8fcfff;

    font-size: 12px;
    font-weight: 500;
}

body.home-page .consultant-summary p {
    margin: 0;

    color: #c7d2dc;

    font-size: 13px;
    line-height: 1.55;
}


/* MEET CONSULTANT BUTTON */

body.home-page .consultant-strip-button {
    width: 225px;
    min-height: 48px;

    padding: 0 20px;

    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #ffffff;
    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    border-radius: 30px;

    background: linear-gradient(
        90deg,
        rgba(16, 105, 174, 0.14),
        rgba(26, 91, 153, 0.08)
    );

    border: 1px solid rgba(35, 181, 255, 0.75);

    box-shadow: 0 0 14px rgba(31, 164, 255, 0.05);

    transition: 0.25s ease;
}

body.home-page .consultant-strip-button:hover {
    background: linear-gradient(
        90deg,
        rgba(20, 130, 210, 0.22),
        rgba(32, 105, 180, 0.12)
    );

    border-color: #36c0ff;

    transform: translateY(-1px);
}


/* MOBILE */

@media (max-width: 800px) {

    body.home-page .consultant-strip {
        grid-template-columns: 90px 1px 1fr;
        gap: 18px;
    }

    body.home-page .consultant-strip-button {
        grid-column: 1 / -1;
        width: 100%;
    }
}
/* ==========================================
   ABUL CONSULTANT STRIP - FINAL
========================================== */

body.home-page .consultant-strip {
    width: 100%;
    max-width: 1180px;
    min-height: 165px;

    margin-top: 38px;

    display: grid;
    grid-template-columns: 130px 1px minmax(350px, 1fr) 220px 145px;
    align-items: center;
    gap: 26px;

    padding: 20px 22px 20px 28px;

    background:
        linear-gradient(
            90deg,
            rgba(5, 35, 58, 0.72) 0%,
            rgba(5, 40, 67, 0.52) 55%,
            rgba(4, 25, 43, 0.35) 100%
        );

    border: 1px solid rgba(24, 174, 239, 0.38);
    border-radius: 4px;

    box-sizing: border-box;
}


/* 20+ */

body.home-page .consultant-years strong {
    display: block;

    color: #27b9ff;

    font-size: 46px;
    line-height: 1;
    font-weight: 700;

    text-shadow: 0 0 22px rgba(39, 185, 255, 0.18);
}

body.home-page .consultant-years span {
    display: block;

    margin-top: 8px;

    color: #d5e5f2;

    font-size: 13px;
    line-height: 1.25;
    letter-spacing: 0.4px;
}


/* DIVIDER */

body.home-page .consultant-line {
    width: 1px;
    height: 82px;

    background: rgba(54, 166, 225, 0.32);
}


/* ABUL INFORMATION */

body.home-page .consultant-summary h3 {
    margin: 0 0 3px;

    color: #ffffff;

    font-size: 20px;
    font-weight: 700;
}

body.home-page .consultant-summary h4 {
    margin: 0 0 10px;

    color: #28b9ff;

    font-size: 13px;
    font-weight: 600;
}

body.home-page .consultant-summary p {
    max-width: 500px;

    margin: 0;

    color: #d0deea;

    font-size: 13px;
    line-height: 1.55;
}


/* SMALL EXPERIENCE TAGS */

body.home-page .consultant-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;

    margin-top: 11px;
}

body.home-page .consultant-tags span {
    padding: 5px 9px;

    color: #9edcff;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3px;

    background: rgba(20, 150, 220, 0.07);

    border: 1px solid rgba(31, 180, 245, 0.20);
    border-radius: 3px;
}


/* MEET THE CONSULTANT BUTTON */

body.home-page .consultant-strip-button {
    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    padding: 0 20px;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;
    text-decoration: none;

    background:
        linear-gradient(
            90deg,
            rgba(13, 120, 205, 0.18),
            rgba(20, 165, 235, 0.07)
        );

    border: 1px solid #18aef0;
    border-radius: 30px;

    transition: 0.25s ease;
}

body.home-page .consultant-strip-button:hover {
    background: rgba(18, 158, 230, 0.16);
    transform: translateX(2px);
}

body.home-page .consultant-strip-button .arrow {
    font-size: 18px;
    font-weight: 400;
}


/* ABUL PHOTO - SMALL RIGHT BOX */

body.home-page .consultant-photo {
    width: 125px;
    height: 125px;

    justify-self: end;

    overflow: hidden;

    border: 1px solid rgba(34, 181, 245, 0.40);
    border-radius: 4px;

    background: #061827;
}

body.home-page .consultant-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center top;
}


/* RESPONSIVE */

@media (max-width: 1050px) {

    body.home-page .consultant-strip {
        grid-template-columns: 110px 1px 1fr 170px;
    }

    body.home-page .consultant-photo {
        display: none;
    }
}
/* ==========================================
   ABUL STRIP - CLEAN VERSION
========================================== */

body.home-page .consultant-strip {
    width: 100%;
    max-width: 1250px;
    min-height: 145px;

    margin-top: 38px;
    padding: 20px 22px 20px 28px;

    display: grid;
    grid-template-columns: 145px 1px 1fr 220px 130px;
    align-items: center;
    gap: 26px;

    background: linear-gradient(
        90deg,
        rgba(6, 35, 57, 0.65),
        rgba(4, 27, 46, 0.38)
    );

    border-top: 1px solid rgba(24, 174, 239, 0.45);
    border-bottom: 1px solid rgba(24, 174, 239, 0.25);

    box-sizing: border-box;
}


/* 20+ */

body.home-page .consultant-years strong {
    display: block;

    color: #28baff;
    font-size: 52px;
    line-height: 0.95;
    font-weight: 700;
}

body.home-page .consultant-years span {
    display: block;

    margin-top: 10px;

    color: #d9e8f3;
    font-size: 14px;
    line-height: 1.2;
}


/* LINE */

body.home-page .consultant-line {
    width: 1px;
    height: 82px;

    background: rgba(39, 174, 235, 0.4);
}


/* ABUL TEXT */

body.home-page .consultant-summary h3 {
    margin: 0 0 3px;

    color: #fff;
    font-size: 21px;
    font-weight: 700;
}

body.home-page .consultant-summary h4 {
    margin: 0 0 11px;

    color: #25b9ff;
    font-size: 13px;
    font-weight: 600;
}

body.home-page .consultant-summary p {
    margin: 0;
    max-width: 460px;

    color: #d3e0ea;
    font-size: 13px;
    line-height: 1.55;
}


/* BUTTON */

body.home-page .consultant-strip-button {
    min-height: 48px;

    padding: 0 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;

    border: 1px solid #16aeef;
    border-radius: 30px;

    background: linear-gradient(
        90deg,
        rgba(16, 128, 205, 0.18),
        rgba(16, 128, 205, 0.03)
    );

    transition: 0.25s ease;
}

body.home-page .consultant-strip-button:hover {
    background: rgba(22, 174, 239, 0.15);
}


/* ABUL PICTURE */

body.home-page .consultant-photo {
    width: 110px;
    height: 110px;

    overflow: hidden;
    justify-self: end;

    border-radius: 4px;

    border: 1px solid rgba(36, 184, 247, 0.4);

    background: #061725;
}

body.home-page .consultant-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center top;
}
/* =========================================================
   ABOUT BUSINESS - FINAL LEFT + RIGHT LAYOUT
========================================================= */

body.home-page .home-about {
    background: #020d17;
    padding: 85px 0 95px;
}


/* WHOLE SECTION */

body.home-page .about-business-layout {
    width: min(1420px, calc(100% - 90px));

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        330px;

    gap: 55px;

    align-items: center;
}


/* =========================
   LEFT SIDE
========================= */

body.home-page .about-business-main {
    min-width: 0;
}


body.home-page .about-business-main .section-label {
    color: #20b9ff !important;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2.5px;

    margin: 0 0 22px;
}


body.home-page .about-business-main > h2 {
    max-width: 920px;

    margin: 0 0 28px;

    color: #ffffff;

    font-size: clamp(42px, 4.4vw, 64px);
    line-height: 1.08;
    font-weight: 700;

    letter-spacing: -1.8px;
}


body.home-page .about-business-copy {
    max-width: 900px;

    margin: 0 0 14px;

    color: #c5d4e0;

    font-size: 16px;
    line-height: 1.7;
}



/* =========================================================
   ABUL STRIP
========================================================= */

body.home-page .consultant-strip {
    width: 100%;

    margin-top: 42px;
    padding: 24px 28px;

    box-sizing: border-box;

    display: grid;

    grid-template-columns:
        145px
        1px
        minmax(320px, 1fr)
        230px;

    gap: 28px;

    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(7, 38, 61, 0.72) 0%,
            rgba(5, 29, 47, 0.50) 100%
        );

    border: 1px solid rgba(31, 180, 245, 0.38);

    border-radius: 4px;
}



/* 20+ */

body.home-page .consultant-years strong {
    display: block;

    color: #27baff;

    font-size: 52px;
    line-height: 0.95;

    font-weight: 700;
}


body.home-page .consultant-years span {
    display: block;

    margin-top: 9px;

    color: #d8e6f1;

    font-size: 13px;
    line-height: 1.25;
}



/* DIVIDER */

body.home-page .consultant-line {
    width: 1px;
    height: 85px;

    background: linear-gradient(
        to bottom,
        transparent,
        rgba(39, 184, 255, 0.55),
        transparent
    );
}



/* ABUL TEXT */

body.home-page .consultant-summary h3 {
    margin: 0 0 4px;

    color: #ffffff;

    font-size: 21px;
    font-weight: 700;
}


body.home-page .consultant-summary h4 {
    margin: 0 0 11px;

    color: #21b8ff;

    font-size: 13px;
    font-weight: 600;
}


body.home-page .consultant-summary p {
    max-width: 470px;

    margin: 0;

    color: #d1deea;

    font-size: 13px;
    line-height: 1.55;
}



/* BUTTON */

body.home-page .consultant-strip-button {
    min-height: 50px;

    padding: 0 22px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    box-sizing: border-box;

    color: #ffffff;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    border: 1px solid #17b3fa;

    border-radius: 30px;

    background:
        linear-gradient(
            90deg,
            rgba(18, 125, 200, 0.16),
            rgba(18, 125, 200, 0.02)
        );

    transition: 0.25s ease;
}


body.home-page .consultant-strip-button:hover {
    background:
        rgba(22, 174, 239, 0.14);

    transform: translateY(-1px);
}


body.home-page .consultant-strip-button .arrow {
    font-size: 18px;
}



/* =========================================================
   BIG RIGHT PHOTO BOX
========================================================= */

body.home-page .abul-main-photo {
    width: 100%;
    height: 430px;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid rgba(39, 184, 255, 0.38);

    overflow: hidden;
}


/* WHEN YOU ADD THE PHOTO LATER */

body.home-page .abul-main-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center top;
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    body.home-page .about-business-layout {
        grid-template-columns: 1fr 270px;

        width: calc(100% - 60px);

        gap: 35px;
    }


    body.home-page .abul-main-photo {
        height: 390px;
    }


    body.home-page .consultant-strip {
        grid-template-columns:
            115px
            1px
            1fr;

        gap: 20px;
    }


    body.home-page .consultant-strip-button {
        grid-column: 1 / -1;

        width: 230px;

        margin-left: auto;
    }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    body.home-page .about-business-layout {
        grid-template-columns: 1fr;

        width: calc(100% - 40px);
    }


    body.home-page .abul-main-photo {
        width: 100%;
        height: 420px;
    }


    body.home-page .consultant-strip {
        grid-template-columns:
            95px
            1px
            1fr;

        padding: 22px;

        gap: 18px;
    }


    body.home-page .consultant-strip-button {
        grid-column: 1 / -1;

        width: 100%;
    }

}
/* =========================================================
   HERO → ABOUT SMOOTH FADE
========================================================= */

body.home-page .home-hero {
    position: relative;
    overflow: hidden;
}


/* Fade the bottom of the warehouse image into the next section */

body.home-page .home-hero::after {
    content: "";

    position: absolute;
    z-index: 2;

    left: 0;
    right: 0;
    bottom: 0;

    height: 190px;

    pointer-events: none;

    background: linear-gradient(
        to bottom,
        rgba(2, 13, 23, 0) 0%,
        rgba(2, 13, 23, 0.08) 18%,
        rgba(2, 13, 23, 0.28) 38%,
        rgba(2, 13, 23, 0.58) 62%,
        rgba(2, 13, 23, 0.86) 82%,
        #020d17 100%
    );
}


/* Keep hero content above the fade */

body.home-page .home-hero-content {
    position: relative;
    z-index: 3;
}


/* About section starts with exactly the same colour */

body.home-page .home-about {
    position: relative;
    z-index: 3;

    background: #020d17;

    margin-top: 0;
}   