/********** Template CSS **********/
:root {
    --primary: #454904;
    --secondary: #dacfcc;
    --tertiary: #555555;
    --light: #DFE4FD;
    --dark: #011A41;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(53, 94, 252, .07);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 25px 15px;
    color: var(--tertiary);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: #FFFFFF;
    }

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

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

.carousel-control-prev-icon {
    border-radius: 0 3rem 3rem 0;
}

.carousel-control-next-icon {
    border-radius: 3rem 0 0 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: url(../img/aboutus.jpeg) top left no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
    color: #FFFFFF !important;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #FFFFFF !important;
}

.page-header h1,
.page-header .display-3 {
    color: #FFFFFF !important;
}


/*** Facts ***/
.facts {
    background: linear-gradient(#ffbb07, rgb(65 60 22 / 95%)), url(../img/bg.png);


}


/*** Callback ***/
.callback {
    position: relative;
}

.callback::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(53, 94, 252, .95), rgba(53, 94, 252, .95)), url(../img/bg.png);
    z-index: -1;
}


/*** Feature ***/
.feature .feature-box,
.feature .feature-box * {
    transition: .5s;
}

.feature .feature-box:hover {
    background: var(--primary);
    border-color: var(--primary) !important;
}

.feature .feature-box:hover * {
    color: #FFFFFF !important;
}


/*** Service ***/
.service .nav .nav-link {
    transition: .5s;
}

.service .nav .nav-link.active {
    border-color: var(--primary) !important;
    background: var(--primary);
}

.service .nav .nav-link.active h5 {
    color: #FFFFFF !important;
}

.service .nav .nav-link.active h5 i {
    color: #FFFFFF !important;
}


/*** Project ***/
.project-item,
.project-item .project-img {
    position: relative;
}

.project-item .project-img a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover .project-img a {
    opacity: 1;
}

.project-item .project-title {
    position: absolute;
    top: 3rem;
    right: 0;
    bottom: 0;
    left: 3rem;
    border: 1px solid var(--light);
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    z-index: -1;
    transition: .5s;
}

.project-item:hover .project-title {
    background: var(--primary);
    border-color: var(--primary);
}

.project-item .project-title h4 {
    transition: .5s;
}

.project-item:hover .project-title h4 {
    color: #FFFFFF;
}

.project-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Team ***/
.team-item {
    position: relative;
    padding: 4rem 0;
}

.team-item img {
    position: relative;
    z-index: 2;
}

.team-item .team-text {
    position: absolute;
    top: 0;
    right: 3rem;
    bottom: 0;
    left: 3rem;
    padding: 15px;
    border: 1px solid var(--light);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
    z-index: 1;
}

.team-item:hover .team-text {
    background: var(--primary);
    border-color: var(--primary);
}

.team-item .team-text h4 {
    transition: .5s;
}

.team-item:hover .team-text h4 {
    color: #FFFFFF;
}

.team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
}

.team-item:hover .team-social .btn {
    background: #FFFFFF;
}

.team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Testimonial ***/
.testimonial-item {
    position: relative;
    text-align: center;
    padding-top: 30px;
}

.testimonial-item .testimonial-text {
    position: relative;
    text-align: center;
}

.testimonial-item .testimonial-text .btn-square {
    position: absolute;
    width: 60px;
    height: 60px;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-item .testimonial-text::before {
    position: absolute;
    content: "";
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: var(--light) transparent transparent transparent;
}

.testimonial-item .testimonial-text::after {
    position: absolute;
    content: "";
    bottom: -59px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: #FFFFFF transparent transparent transparent;
}

.testimonial-carousel .owl-item img {
    margin: 0 auto;
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots {
    margin-top: 25px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--light);
    border-radius: 30px;
    transition: .5s;
}

.testimonial-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    top: 6px;
    left: 6px;
    border-radius: 16px;
    background: var(--light);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    border-color: var(--primary);
}

.testimonial-carousel .owl-dot.active::after {
    background: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: var(--light);
    background: #000B1C;
}

.copyright a {
    color: var(--light);
}

.copyright a:hover {
    color: var(--primary);
}

.navbar {
    background-color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Make both top-bar and navbar white */
.top-bar,
.navbar {
    background-color: #ffffff !important;
    color: #000000 !important;
    /* Optional: ensures text stays visible */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Make sure icons and links look good on white */
.top-bar i,
.top-bar small,
.navbar a {
    color: #000000 !important;
}

.navbar a:hover {
    color: #d4af37 !important;
    /* optional: gold hover color for luxury feel */
}

#header-carousel {
    margin-top: 120px;
}

/* ===== Scoped team cards layout (safe) ===== */

/* Only target columns inside the team-row so other .row/.col layouts stay intact */
.team-row>.col-lg-3,
.team-row>.col-md-6 {
    display: flex;
    align-items: stretch;
}

/* Team card: use flex-column so content grows evenly */
.team-item {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 6px 18px rgba(17, 24, 39, 0.06);
    transition: transform .25s ease, box-shadow .25s ease;
    width: 100%;
}

/* Hover lift */
.team-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
}

/* Fix image box: same height for all, crop using object-fit */
.team-item img {
    height: 260px;
    /* adjust if you want taller/shorter visible image */
    object-fit: cover;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 16px;
    flex-shrink: 0;
}

/* Make text area take remaining vertical space so cards stay equal height */
.team-item .team-text,
.team-item h4,
.team-item p {
    /* ensure content participates in flex layout: 
     NOTE: your current HTML puts h4 and p directly in .team-item (not .team-text),
     these rules still keep layout stable */
    display: block;
}

/* If you want strict vertical alignment inside the card, wrap title+text in .team-text.
   But current markup will work with equal heights thanks to column flexing. */

/* Title & description styling */
.team-item h4 {
    margin: 0 0 8px;
    font-weight: 700;
    color: #0b2540;
    font-size: 1.15rem;
    text-align: center;
}

.team-item p {
    margin: 0;
    color: #555;
    line-height: 1.6;
    text-align: center;
    margin-top: 8px;
    flex-grow: 1;
}

/* Responsive image heights */
@media (max-width: 991px) {
    .team-item img {
        height: 220px;
    }
}

@media (max-width: 575px) {
    .team-item img {
        height: 180px;
    }
}

/* Certificates — Masonry Grid look (modern & distinct) */
#certificates {
    background: #f7f7f9;
}

/* grid container */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 120px;
    gap: 22px;
}

/* tile sizes (place differently on grid) */
.cert-tile {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(11, 37, 64, 0.06);
    padding: 0;
    background: #fff;
    box-shadow: 0 6px 18px rgba(11, 37, 64, 0.06);
    cursor: pointer;
    transition: transform .22s ease, box-shadow .22s ease;
}

.cert-tile img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* hover */
.cert-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(11, 37, 64, 0.12);
}

/* overlay */
.tile-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 14px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.36) 100%);
    opacity: 0;
    transition: opacity .18s ease;
}

.cert-tile:hover .tile-overlay {
    opacity: 1;
}

.tile-title {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    background: rgba(0, 0, 0, 0.45);
    padding: 6px 10px;
    border-radius: 8px;
}

/* tile size placement (grid spans) */
.tile-large {
    grid-column: span 6;
    grid-row: span 2;
}

.tile-medium {
    grid-column: span 4;
    grid-row: span 2;
}

.tile-small {
    grid-column: span 2;
    grid-row: span 1;
}

/* responsive rearrange */
@media (max-width: 1199px) {
    .cert-grid {
        grid-auto-rows: 110px;
        gap: 18px;
    }

    .tile-large {
        grid-column: span 6;
        grid-row: span 2;
    }

    .tile-medium {
        grid-column: span 6;
        grid-row: span 1;
    }

    .tile-small {
        grid-column: span 3;
        grid-row: span 1;
    }
}

@media (max-width: 767.98px) {
    .cert-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: 90px;
        gap: 12px;
    }

    .tile-large {
        grid-column: span 6;
        grid-row: span 2;
    }

    .tile-medium {
        grid-column: span 3;
        grid-row: span 1;
    }

    .tile-small {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 420px) {
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 80px;
    }

    .tile-large,
    .tile-medium {
        grid-column: span 2;
        grid-row: span 2;
    }

    .tile-small {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* heading/label styles */
#certificates .display-5 {
    font-size: 2.6rem;
}

#certificates p.text-uppercase {
    font-size: 0.88rem;
}

/* ensure modal image fits well */
#certLightbox .modal-body {
    background: #fff;
}





/* What We Buy – theme correct */
.what-we-buy {
    margin-top: 80px;
    /* SPACE from previous section */
    padding: 60px 0;
    background: #f7f7f9;
    /* SAME light background used site-wide */
}

/* Section heading */
.what-we-buy h2 {
    color: #222;
    /* normal dark text */
}

/* Divider – gold accent only */
.what-we-buy .divider {
    width: 60px;
    height: 3px;
    background: #d4af37;
    /* existing gold color */
    margin-top: 12px;
}

/* Cards */
.buy-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.buy-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.buy-card h5 {
    color: #222008;
    font-weight: 700;
    margin-bottom: 10px;
}

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

.buy-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.trusted-gold h2 {
    font-size: 34px;
}

.gold-steps li {
    margin-bottom: 8px;
    font-size: 15px;
}

.video-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(177, 15, 58, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.home-blog {
    background: #f7f7f9;
}

.blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-body {
    padding: 22px;
}

.blog-date {
    font-size: 13px;
    color: #ffc21c;
    font-weight: 500;
    display: block;
    margin-bottom: 6px;
}

.blog-body h5 {
    color: #222;
    font-weight: 600;
    line-height: 1.4;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.arrow-btn {
    position: absolute;
    bottom: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    color: #f5e12f;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    /* WhatsApp green (brand standard) */
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    line-height: 55px;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    color: #fff;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    /* WhatsApp green (brand standard) */
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    line-height: 55px;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    color: #fff;
}

/* ================================
   HOW WE WORK SECTION
================================ */
.how-we-work {
    padding: 90px 0;
    background: linear-gradient(135deg, #f2c94c, #f2994a);
    /* same gold tone as your design */
}

/* Heading */
.how-we-work h2 {
    font-weight: 700;
    color: #b10f3a;
    letter-spacing: 1px;
}

.how-we-work .subtitle {
    margin-top: 8px;
    font-weight: 500;
    color: #222;
}

/* Divider */
.how-we-work .divider {
    width: 60px;
    height: 3px;
    background: #d4af37;
    margin: 15px auto 0;
}

/* ================================
   STEP CARD
================================ */
.work-step {
    background: #ffffff;
    border-radius: 16px;
    padding: 38px 22px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover (very light) */
.work-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

/* Step number circle */
.step-no {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 3px solid #b10f3a;
    border-radius: 50%;
    font-weight: 700;
    color: #b10f3a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* Icon */
.work-step img {
    width: 56px;
    margin: 28px auto 16px;
}

/* Title */
.work-step h5 {
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

/* Text */
.work-step p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* ================================
   SOFT LOAD ANIMATION
================================ */
.animate-step {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.9s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

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

/* ================================
   RESPONSIVE FIX
================================ */
@media (max-width: 767px) {
    .how-we-work {
        padding: 70px 0;
    }

    .work-step {
        padding: 32px 20px;
    }
}

/* ================================
   HOW WE WORK SECTION
================================ */
.how-we-work {
    padding: 90px 0;
    background: linear-gradient(135deg, #f2c94c, #f2994a);
    /* same gold tone as your design */
}

/* Heading */
.how-we-work h2 {
    font-weight: 700;
    color: #b10f3a;
    letter-spacing: 1px;
}

.how-we-work .subtitle {
    margin-top: 8px;
    font-weight: 500;
    color: #222;
}

/* Divider */
.how-we-work .divider {
    width: 60px;
    height: 3px;
    background: #d4af37;
    margin: 15px auto 0;
}

/* ================================
   STEP CARD
================================ */
.work-step {
    background: #ffffff;
    border-radius: 16px;
    padding: 38px 22px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover (very light) */
.work-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

/* Step number circle */
.step-no {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 3px solid #b10f3a;
    border-radius: 50%;
    font-weight: 700;
    color: #b10f3a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* Icon */
.work-step img {
    width: 56px;
    margin: 28px auto 16px;
}

/* Title */
.work-step h5 {
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

/* Text */
.work-step p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* ================================
   SOFT LOAD ANIMATION
================================ */
.animate-step {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.9s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

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

/* ================================
   RESPONSIVE FIX
================================ */
@media (max-width: 767px) {
    .how-we-work {
        padding: 70px 0;
    }

    .work-step {
        padding: 32px 20px;
    }

}

/* ================= PAGE BANNER ================= */
.page-banner {
    background: url("../img/how-we-work-banner.jpg") center/cover no-repeat;
    padding: 120px 0;
    position: relative;
    color: #fff;
}

.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner h1 {
    font-size: 42px;
    font-weight: 700;
}

.page-banner p {
    margin-top: 10px;
    font-size: 16px;
}

/* ================= BREADCRUMB ================= */
.breadcrumb-wrap {
    background: #fff;
    padding: 15px 0;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb-list li::after {
    content: ">";
    margin-left: 8px;
}

.breadcrumb-list li:last-child::after {
    content: "";
}

.breadcrumb-list li.active {
    color: #b10f3a;
    font-weight: 600;
}

/* ================= HOW WE WORK ================= */
.how-we-work-page {
    background: linear-gradient(135deg, #f2c94c, #f2994a);
    padding: 90px 0;
}

.how-we-work-page h2 {
    color: #b10f3a;
    font-weight: 700;
}

.how-we-work-page .subtitle {
    font-weight: 500;
}

.divider {
    width: 60px;
    height: 3px;
    background: #b10f3a;
    margin: 15px auto 0;
}

/* Step Card */
.work-step {
    background: #fff;
    border-radius: 16px;
    padding: 35px 22px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.step-no {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background: #fff;
    border: 3px solid #b10f3a;
    border-radius: 50%;
    font-weight: 700;
    color: #b10f3a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-step img {
    width: 55px;
    margin: 25px auto 15px;
}

.work-step h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.section-red-title {
    background: #f4c044;
    /* brand yellow */
    color: #222;
    /* dark text for contrast */
    padding: 12px 18px;
    font-size: 22px;
    font-weight: 700;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* ===============================
   HOW WE WORK – PERFECT ALIGNMENT
   =============================== */

.how-we-work {
    background: linear-gradient(180deg, #f6c25b, #f2a94b);
    padding: 80px 0;
}

/* Card */
.work-step {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 22px;
    text-align: center;
    position: relative;

    /* 🔑 alignment magic */
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Step Number */
.work-step .step-no {
    width: 42px;
    height: 42px;
    border: 2px solid #b10f3a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #b10f3a;
    background: #fff;

    /* Absolute positioning for badge effect */
    position: absolute;
    top: -21px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    z-index: 10;
}

/* Icon */
.work-step img {
    height: 55px;
    /* 🔑 same icon height */
    margin: 25px auto 15px;
}

/* Title */
.work-step h5 {
    min-height: 52px;
    /* 🔑 aligns titles */
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

/* Description */
.work-step p {
    flex-grow: 1;
    /* 🔑 equal text height */
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

/* Hover animation (optional, subtle) */
.work-step:hover {
    transform: translateY(-6px);
    transition: 0.3s ease;
}

/* Responsive */
@media (max-width: 991px) {
    .work-step {
        margin-bottom: 20px;
    }
}

/* Custom PNG feature icons */
.feature-icon {
    width: 30px;
    /* control icon size */
    height: 30px;
    object-fit: contain;
}

.buy-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    text-align: center;
}

.buy-card img {
    margin-bottom: 10px;
}

.buy-card h5 {
    margin-bottom: 10px;
    font-weight: 600;
}

.buy-card p {
    flex-grow: 1;
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
}

/* WhatsApp Button */
.whatsapp-btn {
    margin-top: auto;
    padding: 10px 18px;
    border-radius: 30px;
    background-color: #25D366;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #1ebe5d;
    transform: translateY(-2px);
}