* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #ffffff;
}

/* ================= NAVBAR ================= */
.hero-navbar {
    background: #f9b916;
    padding: 20px 0;
    transition: all 0.4s ease;
}

/* Brand */
.hero-navbar .navbar-brand {
    color: #000 !important;
    font-weight: 700;
}

/* Nav links */
.hero-navbar .nav-link {
    color: #000 !important;
    font-weight: 500;
    padding: 6px 0;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

/* Hover effect */
.hero-navbar .nav-link:hover {
    color: #555 !important;
}

/* Contact button */
.contact-btn {
    background: #000;
    color: #fff !important;
    padding: 8px 22px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Logo */
.navbar-logo {
    height: 60px;
    width: auto;
}

/* ================= SCROLLED NAVBAR ================= */
.hero-navbar.scrolled {
    background: #ffc107;
    /* 🔥 YELLOW ON SCROLL */
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Text color after scroll */
.hero-navbar.scrolled .navbar-brand,
.hero-navbar.scrolled .nav-link {
    color: #000 !important;
}

/* Hover after scroll */
.hero-navbar.scrolled .nav-link:hover {
    color: #333 !important;
}

/* Contact button after scroll */
.hero-navbar.scrolled .contact-btn {
    background: #000;
    color: #fff !important;
}

/* Active underline */
.hero-navbar .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
    border-radius: 2px;
}

/* Active underline after scroll */
.hero-navbar.scrolled .nav-link.active::after {
    background-color: #000;
}

/* ================= MOBILE NAVBAR ================= */
@media (max-width: 991px) {
    .hero-navbar {
        padding: 12px 0;
    }

    /* Brand & links */
    .hero-navbar .navbar-brand,
    .hero-navbar .nav-link {
        color: #fff !important;
    }

    /* Hover */
    .hero-navbar .nav-link:hover {
        color: #ddd !important;
    }

    /* Contact button */
    .hero-navbar .contact-btn {
        background: #ffc107;
        color: #000 !important;
    }

    /* Toggler icon */
    .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.6);
    }

    .navbar-toggler-icon {
        filter: invert(1);
    }

    /* Active underline mobile */
    .hero-navbar .nav-link.active::after {
        background-color: #fff;
    }
}





/* ================= HERO ================= */
.hero {
    padding: 200px 0 150px;
    background-color: #fff;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffc107;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #222;
    max-width: 480px;
}

/* CTA */
.cta {
    background: #000;
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 14px;
    border: none;
}

.cta:hover {
    background: #000;
    color: #fff;
}

.ctas {
    background: #f9b916;
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 14px;
    border: none;
}

.ctas:hover {
    background: #000;
    color: #fff;
}

/* ================= HERO VISUAL ================= */
.hero-visual {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1 / 1;
}

/* circles */
.circle-outer {
    inset: 0;
    border: 2px dashed rgba(0, 0, 0, 0.3);
    animation: rotate 18s linear infinite;
}

.circle-inner {
    inset: 30px;
    background: rgba(255, 255, 255, 0.3);
}

/* image */
.hero-img-wrapper {
    width: 75%;
    height: 75%;
    z-index: 2;
}

.hero-man {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* floating card */
.rating-card {
    position: absolute;
    left: -20px;
    top: 30%;
    background: #fff;
    padding: 14px;
    border-radius: 12px;
    font-size: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* animation */
.floating {
    animation: float 3s ease-in-out infinite;
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        margin: 0 auto;
    }

    .rating-card {
        left: 0;
        top: 15px;
    }
}

/* ================= ORBIT ICONS ================= */

.orbit {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: spin 22s linear infinite;
}

.orbit-inner {
    inset: 60px;
    animation-duration: 14s;
    animation-direction: reverse;
}

/* icon style */
.orbit-icon {
    position: absolute;
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: #ff6b00;
    font-size: 18px;
}

/* distribute icons */
.orbit-outer .orbit-icon:nth-child(1) {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-outer .orbit-icon:nth-child(2) {
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
}

.orbit-outer .orbit-icon:nth-child(3) {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-outer .orbit-icon:nth-child(4) {
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
}

.orbit-inner .orbit-icon:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-inner .orbit-icon:nth-child(2) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-inner .orbit-icon:nth-child(3) {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

/* rotation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* subtle hover */
.orbit-icon:hover {
    transform: scale(1.15);
    background: #ff6b00;
    color: #fff;
}

/* ================= HERO MOBILE FIX ================= */
@media (max-width: 768px) {

    /* Scale down hero visual */
    .hero-visual {
        max-width: 300px;
        width: 80%;
        margin: 0 auto;
    }

    /* Scale down outer circle */
    .circle-outer {
        inset: 0;
        border-width: 1.5px;
    }

    .circle-inner {
        inset: 20px;
    }

    /* Orbit wrapper scaling */
    .orbit {
        inset: 0;
    }

    .orbit-inner {
        inset: 30px;
    }

    /* Orbit icons smaller and repositioned */
    .orbit-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    /* Outer orbit icons */
    .orbit-outer .orbit-icon:nth-child(1),
    .orbit-outer .orbit-icon:nth-child(3) {
        top: -8px;
        bottom: -8px;
        transform: translateX(-50%);
    }

    .orbit-outer .orbit-icon:nth-child(2),
    .orbit-outer .orbit-icon:nth-child(4) {
        left: -8px;
        right: -8px;
        transform: translateY(-50%);
    }

    /* Inner orbit icons */
    .orbit-inner .orbit-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .orbit-inner .orbit-icon:nth-child(1),
    .orbit-inner .orbit-icon:nth-child(2) {
        left: 50%;
        transform: translateX(-50%);
    }

    .orbit-inner .orbit-icon:nth-child(3) {
        right: 0;
        transform: translateY(-50%);
    }

    /* Hero content adjustments */
    .hero-content h1 {
        font-size: 28px;
        line-height: 1.3;
        text-align: center;
    }

    .hero-content p {
        font-size: 14px;
        max-width: 100%;
        text-align: center;
        margin: 0 auto 15px;
    }

    /* Rating card */
    .rating-card {
        position: static;
        margin: 15px auto 0;
        left: auto;
        top: auto;
        transform: none;
    }

    /* CTA button */
    .cta {
        padding: 12px 24px;
        font-size: 13px;
    }
}

/* Stop animation on mobile */
@media (max-width: 768px) {
    .circle-outer {
        animation: none;
    }
}

/* Stop animation on mobile */
@media (max-width: 768px) {

    .orbit,
    .orbit-inner {
        animation: none;
    }
}




/* ================= TRUSTED SECTION ================= */
.trusted-section {
    background: #fff;
    padding: 50px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 10;
}

/* LEFT TEXT */
.trusted-text {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin: 0;
    white-space: nowrap;
}

.trusted-text span {
    color: #ffb703;
}

/* MARQUEE */
.logo-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: marquee 20s linear infinite;
    width: max-content;
}

.logo-track img {
    height: 65px;
    width: auto;
    opacity: 0.75;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo-track img:hover {
    opacity: 1;
}

/* ANIMATION */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ================= MOBILE FIX ================= */
@media (max-width: 991px) {

    .trusted-section {
        padding: 35px 0;
    }

    .trusted-text {
        text-align: center;
        font-size: 22px;
        margin-bottom: 15px;
        white-space: normal;
    }

    .logo-marquee {
        padding-top: 10px;
    }

    .logo-track {
        gap: 35px;
        animation-duration: 25s;
        /* smoother on mobile */
    }

    .logo-track img {
        height: 50px;
    }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 575px) {

    .trusted-text {
        font-size: 20px;
    }

    .logo-track {
        gap: 30px;
    }

    .logo-track img {
        height: 45px;
    }
}



/* ================= SERVICES SECTION ================= */
.services-section {
    padding: 100px 0;
    background: #f9f9f9;
}

.service-card h5 {
    text-align: center;
}

.service-card p {
    text-align: center;
}


/* Section Heading */
.section-tag {
    display: inline-block;
    font-size: 40px;
    font-weight: 600;
    color: #ffb703;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    color: #000;
    margin-bottom: 15px;
}

.section-desc {
    max-width: 700px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

.dark-section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 14px;
    background-color: #ffb703;
    color: #000;
    letter-spacing: 1px;
    border-radius: 30px;
    margin-bottom: 12px;
}

.dark-section-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 15px;
}

.dark-section-desc {
    max-width: 700px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}


/* Service Card */
.service-card {
    background: #f9b916;
    /* initial purple */
    padding: 35px 30px;
    border-radius: 18px;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: background 0.4s ease, transform 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: serviceFloat 6s ease-in-out infinite;
}

/* Remove gradient overlay */
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: none;
    opacity: 0;
    z-index: 0;
}

.service-card * {
    position: relative;
    z-index: 1;
}

/* Icon */
.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    color: #7336f5;
}

/* Title & text */
.service-card h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

.service-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #000;
}

/* 🔥 HOVER + CLICK (ACTIVE) STATE */
.service-card:hover,
.service-card:active,
.service-card:focus-within {
    background: #000;
    /* yellow */
    transform: translateY(-12px);
}

/* Text color change */
.service-card:hover h5,
.service-card:hover p,
.service-card:active h5,
.service-card:active p,
.service-card:focus-within h5,
.service-card:focus-within p {
    color: #fff;
}

/* Icon change */
.service-card:hover .icon-box,
.service-card:active .icon-box,
.service-card:focus-within .icon-box {
    background: #fff;
    color: #f9b916;
    transform: rotate(10deg) scale(1.1);
}

/* Floating animation */
@keyframes serviceFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
    }
}





/* =========================
   INDUSTRIES SECTION
========================= */

.industries-section {
    background: #000;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    font-family: "Inter", sans-serif;
}

/* =========================
   LEFT CONTENT
========================= */

.industries-tag {
    background: #ffd400;
    color: #000;
    font-weight: 600;
    padding: 6px 14px;
    display: inline-block;
    border-radius: 4px;
    margin-bottom: 18px;
}

.industries-title {
    color: #fff;
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 16px;
}

.industries-desc {
    color: #e6dcff;
    font-size: 16px;
    margin-bottom: 12px;
}

/* =========================
   INDUSTRY CARDS GRID
========================= */

.industry-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;

    /* SMALLER SQUARE BOX */
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 120px;
    /* max size */
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;
}

/* LOGO IMAGE */
.industry-card img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    display: block;
}

/* HOVER EFFECT */
.industry-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px) scale(1.05);
}

/* RESPONSIVE SIZES */

/* Tablet */
@media (max-width: 992px) {
    .industry-card {
        max-width: 100px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .industry-card {
        max-width: 80px;
    }

    .industry-card img {
        width: 65%;
        height: 65%;
    }
}




/* SECTION BASE */
.why-choose-icon {
    background: #fff;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    font-family: "Inter", sans-serif;
}

/* HEADING */
.section-tag {
    display: inline-block;
    background: #000;
    color: #f9b916;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 14px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #111;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    color: #333;
    max-width: 720px;
    margin: auto;
}

/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
    margin-top: 60px;
}

/* CARD */
.why-icon-card {
    background: #fff;
    border-radius: 18px;
    padding: 36px 24px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    transition: all 0.35s ease;
}

/* ICON */
.icon-box {
    width: 70px;
    height: 70px;
    margin: auto;
    background: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all 0.35s ease;
}

.icon-boxs {
    width: 70px;
    height: 70px;
    margin: auto;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all 0.35s ease;
}

.icon-boxs i {
    font-size: 32px;
    color: #111;
    transition: all 0.35s ease;
}

.icon-box i {
    font-size: 32px;
    color: #111;
    transition: all 0.35s ease;
}

/* TEXT */
.why-icon-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    transition: color 0.35s ease;
}

/* 🔥 HOVER EFFECT */
.why-icon-card:hover {
    background: #000;
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.why-icon-card:hover h4 {
    color: #fff;
}

.why-icon-card:hover .icon-box {
    background: #f9b916;
}

.why-icon-card:hover .icon-box i {
    color: #fff;
}

/* DECOR */
.bg-circle {
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}




.faq-section {
    position: relative;
    background: #fff;
    padding: 100px 0;
    overflow: hidden;
}

/* Decorative Elements */
.faq-shape-top {
    position: absolute;
    top: 40px;
    left: 0;
    width: 220px;
}

.faq-shape-bottom {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 220px;
}

.faq-dot-purple {
    position: absolute;
    top: 120px;
    right: 80px;
    width: 50px;
}

.faq-bg-dot {
    position: absolute;
    bottom: 80px;
    right: 40px;
    width: 260px;
}

/* Layout */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

/* Left */
.faq-left {
    color: #fff;
}

.faq-tag {
    display: inline-block;
    background: #000;
    padding: 6px 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.faq-left h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffc107;
}

.faq-left p {
    font-size: 16px;
    opacity: 0.9;
    color: #ffc107;
}

/* Card */
.faq-card {
    background: #ffd15c;
    border-radius: 6px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.faq-image {
    text-align: center;
    margin-bottom: 30px;
}

.faq-image img {
    max-width: 100%;
}

/* Accordion */
.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    padding: 18px 0;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 20px;
}

.faq-item.active .faq-question::after {
    content: "−";
}

.faq-answer {
    display: none;
    padding-bottom: 20px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.7;
}

.faq-image {
    text-align: center;
    margin-bottom: 30px;
}

.faq-icon {
    font-size: 100px;
    color: rgba(0, 0, 0, 0.15);
}


.testimonial-wrapper {
    background: #fff;
    padding: 80px 0;
}

/* Heading */
.testimonial-heading {
    text-align: center;
    margin-bottom: 70px;
}

.testimonial-heading h2 {
    font-size: 46px;
    font-weight: 800;
    color: #2c2f4a;
    line-height: 1.2;
}

.testimonial-heading span {
    color: #f9b916;
    /* Primary */
}

/* Grid */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 65px;
}

/* Card */
.testimonial-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 45px 35px 40px;
    position: relative;
    box-shadow: 0 20px 40px rgba(123, 63, 242, 0.18);
}

/* Logo */
.logo-circle {
    position: absolute;
    top: -40px;
    left: 30px;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    padding: 5px;
    background: #7b3ff2;
    /* Solid primary */
}

.logo-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #fff;
}

/* Text */
.testimonial-card p {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.7;
    margin-top: 30px;
}

/* Name */
.testimonial-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 18px;
    color: #2c2f4a;
}

/* Stars */
.stars {
    margin-top: 10px;
    color: #f9b916;
    /* Accent */
    font-size: 16px;
    letter-spacing: 3px;
}

/* Quote */
.quote-icon {
    position: absolute;
    bottom: 20px;
    right: 25px;
    font-size: 44px;
    color: #7b3ff2;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 991px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}



.site-footer {
    background: #0b0b0f;
    color: #FFD700;
    /* Main yellow text */
    padding-top: 70px;
    font-family: "Poppins", sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    color: #FFD700;
    /* Yellow headings */
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #FFD700;
    /* Yellow links */
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #FFC200;
    /* Slightly darker yellow on hover */
}

.footer-col p {
    color: #FFD700;
    /* Yellow text */
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-col i {
    color: #FFD700;
    /* Yellow icons */
}

.footer-subtitle {
    color: #FFD700;
    font-weight: 600;
    margin-top: 10px;
}

.footer-subtitle.mt {
    margin-top: 20px;
}

.footer-desc {
    margin-bottom: 15px;
    color: #FFD700;
}

.social-icons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    background: #FFD700;
    /* Yellow circle */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a i {
    color: #0b0b0f;
    /* Dark icon inside yellow */
    font-size: 17px;
}

.social-icons a:hover {
    background: #FFC200;
    transform: translateY(-4px);
}

/* COPYRIGHT */
.footer-bottom {
    margin-top: 60px;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    text-align: center;
    padding: 20px 0;
}

.footer-bottom span {
    color: #FFD700;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}


/* Visible state */
#goTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* Button styling */
#goTopBtn {
    position: fixed;
    bottom: 40px;
    right: 30px;
    z-index: 999;
    width: 50px;
    height: 50px;
    background-color: #f9b916;
    /* Purple */
    color: #000;
    /* Yellow */
    border: none;
    border-radius: 50%;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s, transform 0.3s ease;
}

/* Hover effect */
#goTopBtn:hover {
    transform: scale(1.2);
    opacity: 0.9;
}

/* WhatsApp Button */
#whatsappBtn {
    position: fixed;
    bottom: 100px;
    /* ABOVE goTopBtn */
    right: 30px;
    z-index: 999;
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    /* White background */
    color: #25D366;
    /* WhatsApp green icon */
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hover effect */
#whatsappBtn:hover {
    transform: scale(1.2);
    opacity: 0.9;
}



/*planning*/

.service-tabs {
    flex-wrap: wrap;
    gap: 10px;
}

.text-justify {
    text-align: justify;
}


.service-tabs .nav-link {
    background: #f9b916;
    border-radius: 12px;
    padding: 10px 16px;
    font-weight: 500;
    color: #fff;
    border: none;
    transition: 0.3s;
}

.service-tabs .nav-link:hover {
    background: #000;
    color: #fff;
}



.service-section h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

.service-section p {
    color: #555;
    line-height: 1.8;
}

/* Mobile */
@media (max-width: 768px) {
    .service-tabs {
        justify-content: center;
    }
}

/* Service section image sizing */
.service-img {
    /* max-width: 480px; */
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

/* Slight hover effect (optional, looks premium) */
.service-img:hover {
    transform: scale(1.05);
}

/* Tablet */
@media (max-width: 992px) {
    .service-img {
        max-width: 420px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .service-img {
        max-width: 100%;
        margin-top: 20px;
    }
}

/* Active service tab */
.service-tabs .nav-link.active {
    background: #000 !important;
    color: #fff !important;
}





/* SECTION */
.contact-section {
    position: relative;

    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

}

/* MAIN BOX */
.contact-box {
    max-width: 820px;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    z-index: 10;
}

/* LEFT SIDE */
.contact-info {
    padding: 2.3rem;
    position: relative;
    z-index: 2;
}

.contact-info .title {
    color: #f9b916;
    font-size: 1.5rem;
}

.text {
    color: #333;
    margin: 1.5rem 0;
}

.information {
    display: flex;
    align-items: center;
    margin-bottom: 0.7rem;
    color: #555;
}

.icon {
    width: 28px;
    margin-right: 10px;
}

/* RIGHT FORM */
.contact-form {
    background: #f9b916;
    position: relative;
    z-index: 2;
}

.contact-form::before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    background: #f9b916;
    transform: rotate(45deg);
    top: 50px;
    left: -13px;
}

/* FORM */
form {
    padding: 2.3rem;
    position: relative;
    z-index: 3;
}

.contact-form .title {
    color: #fff;
}

/* DECORATIVE CIRCLES */
.circle {
    position: absolute;
    border-radius: 50%;
    background: #f9b916;
    z-index: 1;
}

.circle.one {
    width: 130px;
    height: 130px;
    top: 130px;
    right: -40px;
}

.circle.two {
    width: 80px;
    height: 80px;
    top: 15px;
    right: 30px;
}

/* INPUTS */
.input-container {
    position: relative;
    margin: 1rem 0;
}

.input {
    width: 100%;
    background: transparent;
    border: 2px solid #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    color: #fff;
    outline: none;
}

textarea.input {
    min-height: 150px;
    resize: none;
}

/* FLOAT LABEL */
.input-container label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #fff;
    pointer-events: none;
    transition: 0.4s;
}

.input:focus+label,
.input:not(:placeholder-shown)+label {
    top: -8px;
    font-size: 0.8rem;
}

/* BUTTON */
.btns {
    background: #000;
    color: #fff;
    border-radius: 25px;
    padding: 0.6rem 1.5rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btns:hover {
    background: #000;
    color: #fff;
    border: #000;
}

/* BIG CIRCLE BACKGROUND */
.big-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    background: #f9b916;
    border-radius: 50%;
    bottom: 65%;
    right: 50%;
    transform: translate(-40%, 38%);
    z-index: 0;
}

.big-circle::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background: #fafafa;
    border-radius: 50%;
    top: 70px;
    left: 70px;
}

/* SQUARE SHAPE */
.square {
    position: absolute;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(180%, 10%);
    opacity: 0.2;
    z-index: 0;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .contact-form::before {
        display: none;
    }
}

@media (max-width: 576px) {

    .big-circle,
    .square {
        display: none;
    }
}




/* Section */
.round-gallery {
    background: #f8f9ff;
}

/* Track */
.gallery-track {
    display: flex;
    gap: 32px;
    /* better left-right spacing */
    width: max-content;
    padding-left: 10px;
    padding-right: 10px;
    animation: scrollGallery 28s linear infinite;
}

/* Card (bigger) */
.gallery-card {
    min-width: 260px;
    /* increased */
    height: 330px;
    /* increased */
    border-radius: 30px;
    overflow: hidden;
    background: #ddd;
    transition: transform 0.4s ease;
}

/* Image */
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* fills card nicely */
    transition: transform 0.4s ease;
}

/* Hover effects */
.gallery-card:hover {
    transform: scale(1.06);
}

.gallery-card:hover img {
    transform: scale(1.12);
}

/* Smooth infinite movement */
@keyframes scrollGallery {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .gallery-card {
        min-width: 200px;
        height: 260px;
    }

    .gallery-track {
        gap: 20px;
    }
}

/* ================= MODAL POPUP ================= */
#galleryModal .modal-content {
    background: rgba(0, 0, 0, 0.8);
    border: none;
    border-radius: 12px;
}

#galleryModal .modal-dialog {
    max-width: 90%;
}

#galleryCarousel .carousel-item img {
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
}

#galleryCarousel .carousel-control-prev-icon,
#galleryCarousel .carousel-control-next-icon {
    filter: invert(1);
    /* White arrows */
}

#galleryModal .btn-close {
    z-index: 1055;
    /* Make sure it’s above the carousel */
}




/* ============================
   Testimonial Section
============================ */
.testimonial-v2 {
    background: #000;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Heading */
.testi-tag {
    font-size: 36px;
    font-weight: 700;
    color: #f9b916;
    display: block;
    margin-bottom: 8px;
}

.testi-title {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
}

/* Testimonial Box */
.testi-box {
    background: #fff;
    border-radius: 25px;
    padding: 45px 50px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

/* Quote */
.quote {
    font-size: 90px;
    color: #f9b916;
    position: absolute;
    top: -25px;
    left: 30px;
    font-weight: 800;
}

/* Text */
.testi-text {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 30px;
}

/* Footer */
.testi-footer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testi-footer img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid #7b3ff2;
}

.testi-footer h6 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 3px;
    color: #000;
}

.stars {
    color: #f9b916;
    font-size: 18px;
}

/* Make the yellow background always visible on arrows */
.testimonial-v2 .testi-arrow {
    width: 55px;
    height: 55px;
    border: 2px solid #f9b916;
    background: #f9b916;
    /* Apply yellow background permanently */
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s ease;
}

/* Change icon color on hover for contrast */
.testimonial-v2 .testi-arrow:hover .carousel-control-prev-icon,
.testimonial-v2 .testi-arrow:hover .carousel-control-next-icon {
    filter: invert(1);
}


.testimonial-v2 .carousel-control-prev {
    left: 90px;
}

.testimonial-v2 .carousel-control-next {
    right: 90px;
}

/* Arrow Icon Color */
.testimonial-v2 .carousel-control-prev-icon,
.testimonial-v2 .carousel-control-next-icon {
    width: 22px;
    height: 22px;
    filter: invert(77%) sepia(77%) saturate(566%) hue-rotate(359deg);
}

/* Hover Effect */
.testimonial-v2 .testi-arrow:hover {
    background: #f9b916;
}

.testimonial-v2 .testi-arrow:hover .carousel-control-prev-icon,
.testimonial-v2 .testi-arrow:hover .carousel-control-next-icon {
    filter: invert(1);
}

/* ============================
   Responsive
============================ */
@media (max-width: 991px) {
    .testimonial-v2 .carousel-control-prev {
        left: 10px;
    }

    .testimonial-v2 .carousel-control-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .testi-title {
        font-size: 30px;
    }

    .testi-box {
        padding: 35px 30px;
    }

    .quote {
        font-size: 70px;
        left: 20px;
    }
}


/* ---------------------------------------------------
------------------------------------------------------

Promition section css files...

------------------------------------------------------
------------------------------------------------------*/


/* ================= YELLOW PAGE BANNER ================= */
.yellow-banner {
    padding: 210px 0 120px;
    background-color: #fff;
    /* same as hero */
    position: relative;
    overflow: hidden;
}

/* subtle design shapes (NO gradient) */
.yellow-banner::before,
.yellow-banner::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    z-index: 0;
}

.yellow-banner::before {
    width: 220px;
    height: 220px;
    top: -80px;
    left: -80px;
}

.yellow-banner::after {
    width: 300px;
    height: 300px;
    bottom: -120px;
    right: -120px;
}

/* heading */
.page-banner-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #000;
    position: relative;
    z-index: 1;
}

.page-banner-title span {
    display: block;
    color: #f9b916;
    margin-top: 10px;
}

/* CTA wrapper */
.banner-cta {
    position: relative;
    z-index: 1;
}

/* buttons */
.banner-btn {
    padding: 15px 32px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* WhatsApp */
.banner-btn.whatsapp {
    background: #000;
    color: #fff;
}

.banner-btn.whatsapp:hover {
    background: #000;
    transform: translateY(-3px);
}

/* Outline dark */
.banner-btn.outline-dark {
    background: transparent;
    border: 2px solid #000;
    color: #000;
}

.banner-btn.outline-dark:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .page-banner-title {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .yellow-banner {
        padding: 110px 0 90px;
    }

    .page-banner-title {
        font-size: 28px;
    }
}

/* ================= INFLUENCER FAIL SECTION ================= */
.influencer-fail {
    padding: 100px 0;
    background: #fff;
}

/* section heading */
.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #000;
}

/* black box */
.fail-box {
    background: #000;
    padding: 50px 45px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* box title */
.fail-box-title {
    font-size: 26px;
    font-weight: 700;
    color: #ffc107;
    margin-bottom: 18px;
}

.fail-box-title span {
    color: #fff;
}

/* description */
.fail-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #ddd;
    max-width: 620px;
    margin: 0 auto 30px;
}

/* points */
.fail-points {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px;
    max-width: 520px;
}

.fail-points li {
    font-size: 14px;
    color: #fff;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255, 193, 7, 0.3);
}

/* ❌ icon color */
.fail-points li::first-letter {
    color: #ffc107;
}

/* quote */
.fail-quote {
    font-size: 14px;
    font-weight: 600;
    color: #ffc107;
    /* border-top: 1px solid rgba(255, 193, 7, 0.3); */
    padding-top: 20px;
    margin-top: 20px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .section-title {
        font-size: 34px;
    }

    .fail-box {
        padding: 40px 30px;
    }

    .fail-box-title {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 28px;
    }

    .fail-desc {
        font-size: 14px;
    }
}


/* ================= YELLOW BACKGROUND ================= */
.yellow-bg {
    background: #fff;
    padding: 100px 0;
}

/* dark text override */
.section-tag.dark {
    background: #000;
    color: #ffc107;
}

.section-title.dark,
.section-desc.dark,
.ads-subtitle.dark,
.ads-desc.dark,
.ads-platform-title.dark {
    color: #000;
}

/* ads box (black card) */
.ads-box {
    background: #000;
    padding: 30px;
    border-radius: 18px;
    margin-top: 30px;
}

/* box title */
.ads-box-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffc107;
    margin-bottom: 15px;
}

/* list */
.ads-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ads-list li {
    font-size: 14px;
    color: #fff;
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.ads-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ffc107;
    font-weight: 700;
}

/* image */
.ads-image img {
    max-width: 420px;
}

/* platforms */
.platform-btn {
    background: #000;
    color: #ffc107;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 30px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .ads-subtitle {
        font-size: 24px;
    }

    .ads-image img {
        max-width: 320px;
    }
}

@media (max-width: 576px) {
    .ads-subtitle {
        font-size: 22px;
    }

    .ads-desc {
        font-size: 14px;
    }
}

/* ================= HOW IT WORKS ================= */
.work-process {
    padding: 120px 0;
    background: #f8fbff;
    position: relative;
}

/* heading */
.process-title {
    font-size: 48px;
    font-weight: 800;
    color: #2a2a2a;
}

.process-title span {
    color: #8b5cf6;
}

.process-desc {
    font-size: 15px;
    color: #555;
    max-width: 520px;
    margin: 10px auto 0;
}

/* wrapper */
.process-wrapper {
    position: relative;
    margin-top: 80px;
    min-height: 420px;
}

/* step base */
.process-step {
    position: absolute;
    width: 350px;
    text-align: center;
    z-index: 2;
}

/* positions */
.step-1 {
    top: 0;
    left: 0;
}

.step-2 {
    top: 0;
    left: 35%;
}

.step-3 {
    top: 0;
    right: 0;
}

.step-4 {
    bottom: 0;
    right: 0;
}

.step-5 {
    bottom: 0;
    left: 35%;
}

.step-6 {
    bottom: 0;
    left: 0;
}

/* circles */
.step-circle {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 18px;
    font-weight: 800;
    background: #FFC107;
    border: 3px solid #111;
    box-shadow: 0 12px 25px rgba(0, 0, 0, .25);
    margin: 0 auto;
}

/* ================= ARROW CONNECTORS ================= */

.line-right::after {
    content: "";
    position: absolute;
    top: -15px;
    left: 72%;
    width: 290px;
    height: 80px;
    background: url(../img/bgr.png) no-repeat center / contain;
    z-index: 1;
}

.line-left::before {
    content: "";
    position: absolute;
    top: -23px;
    right: 67%;
    width: 298px;
    height: 101px;
    background: url(../img/bgr.png) no-repeat center / contain;
    transform: scaleX(-1);
    z-index: 1;
}

/* ================= CURVED 3 → 4 ================= */

.curve-connect::after {
    content: "";
    position: absolute;
    top: -33px;
    left: 95%;
    transform: translateX(-50%);
    width: 235px;
    height: 326px;
    background: url(../img/bg4.png) no-repeat center / contain;
    z-index: 0;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .process-wrapper {
        display: grid;
        gap: 40px;
        min-height: auto;
    }

    .process-step {
        position: static;
        width: 100%;
    }

    .line-left::before,
    .line-right::after,
    .curve-connect::after {
        display: none;
    }
}


.comparison-section {
    padding: 80px 0;
    background: #fff;
    /* your yellow color */
}

.comparison-title {
    font-size: 36px;
    font-weight: 800;
    color: #111;
}

.comparison-title span {
    color: #e53935;
}

.comparison-subtitle {
    color: #111;
    max-width: 600px;
    margin: 10px auto 0;
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: stretch;
    margin-top: 50px;
}

/* columns */
.comparison-column {
    background: #fff;
    /* keep cards white for readability */
    border-radius: 18px;
    padding: 35px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
    position: relative;
}

.comparison-column h3 {
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 25px;
}

/* influencer */
.influencer h3 {
    color: #e53935;
}

.influencer li::before {
    content: "✖";
    color: #e53935;
}

/* ads */
.ads h3 {
    color: #2e7d32;
}

.ads li::before {
    content: "✔";
    color: #2e7d32;
}

/* list */
.comparison-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-column li {
    font-size: 15px;
    padding: 12px 0;
    display: flex;
    gap: 12px;
    align-items: center;
    border-bottom: 1px dashed #ddd;
}

.comparison-column li:last-child {
    border-bottom: none;
}

/* VS badge */
.comparison-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 22px;
    color: #111;
    background: #FF9800;
    /* darker orange for contrast */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    align-self: center;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .comparison-table {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .comparison-vs {
        display: none;
    }
}


/* ================= COMING SOON (WHITE BASE) ================= */
.coming-soon-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Full-width background */
.coming-soon-inner {
    width: 100%;
    padding: 120px 0;
    background: #fff;
}

/* Badge */
.coming-badge {
    display: inline-block;
    padding: 6px 18px;
    background: #f9b916;
    color: #000;
    font-weight: 600;
    border-radius: 30px;
    font-size: 14px;
}

/* Title */
.coming-title {
    font-size: 42px;
    font-weight: 800;
    color: #000;
}

/* Description */
.coming-desc {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
}

/* Button */
.coming-btn {
    background: #000;
    color: #fff;
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.coming-btn:hover {
    background: #f9b916;
    color: #000;
}

/* Mobile */
@media (max-width: 768px) {
    .coming-soon-inner {
        padding: 80px 20px;
    }

    .coming-title {
        font-size: 28px;
    }
}

.results-section {
    padding: 80px 0;
    background: #fff;
}

.results-grid {
    display: flex;
    flex-wrap: wrap;
    /* allow wrapping to next row */
    justify-content: center;
    /* center all items */
    gap: 30px;
    /* optional max-width for better centering */
    margin: 0 auto;
}

/* result box */
.result-box {
    display: flex;
    gap: 18px;
    background: #fff;
    border-radius: 16px;
    padding: 26px 30px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    border-left: 6px solid #FFC107;
    width: 320px;
    /* fixed width for uniform boxes */
}

/* icon */
.result-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #FFC107;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 22px;
    flex-shrink: 0;
}

/* result box heading only */
.result-content h4 {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    margin: 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .results-grid {
        flex-direction: column;
        align-items: center;
    }

    .result-box {
        width: 100%;
        max-width: 400px;
    }
}

.best-for-section {
    padding: 80px 0;
    background: #fff;
    /* yellow background */
}

.best-for-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

/* Card Box */
.best-for-item {
    background: #fff;
    /* white box */
    border-radius: 16px;
    padding: 25px 20px 40px;
    text-align: center;
    width: 220px;
    /* fixed width for all cards */
    height: 220px;
    /* fixed height for all cards */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

/* Heading inside card */
.best-for-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 15px 0 0;
    /* small top margin */
}

/* Icon below heading */
.best-for-icon {
    width: 70px;
    height: 70px;
    background: #FFC107;
    /* yellow circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #111;
    margin: 10px 0 0;
    /* small top margin */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .best-for-row {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .best-for-row {
        flex-direction: column;
        align-items: center;
    }

    .best-for-item {
        max-width: 300px;
        width: 100%;
        height: auto;
        /* let height adjust on mobile */
        padding-bottom: 40px;
    }
}


.cta-section {
    padding: 80px 0;
    background: #fff;
    /* white background */
    color: #111;
    text-align: center;
}

.cta-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

/* Strategy call button */
.btn-strategy {
    background: #FFC107;
    /* yellow */
    color: #111;
}

.btn-strategy:hover {
    background: #e6b307;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

.site-footer {
    overflow: hidden;
}

.footer-left-img {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    /* adjust size */
    opacity: 0.9;
}

/* Mobile fix */
@media (max-width: 768px) {
    .footer-left-img {
        position: static;
        transform: none;
        display: block;
        margin: 0 auto 20px;
    }
}

.what-you-get {
    padding: 100px 0;
    position: relative;
}

.what-you-get .section-tag {
    font-size: 16px;
    font-weight: 600;
}

.what-you-get .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2a2a2a;
    margin-top: 10px;
}

.get-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 60px;
    gap: 30px;
}

.get-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    flex: 1 1 30%;
    min-width: 280px;
    text-align: left;
}

.get-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #111;
    display: flex;
    flex-direction: column;
    /* stack icon above text */
    align-items: center;
    /* center horizontally */
    text-align: center;
    /* ensure text is centered */
    gap: 10px;
    /* space between icon and heading text */
}

/* get-card list with same tick as ads-list */
.get-card ul {
    list-style: none;
    /* remove default bullets */
    padding: 0;
    margin: 0;
}

.get-card ul li {
    font-size: 16px;
    /* same as your get list */
    color: #555;
    /* text color */
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
    /* space for tick */
}

.get-card ul li::before {
    content: "✔";
    /* tick symbol */
    position: absolute;
    left: 0;
    color: #ffc107;
    /* same yellow tick */
    font-weight: 700;
}

.get-note {
    font-size: 16px;
    color: #555;
    max-width: 600px;
    margin: 20px auto 30px;
}

.get-buttons .btn {
    padding: 12px 25px;
    margin: 5px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}


.get-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #111;
    display: flex;
    /* use flex to align icon and text */
    align-items: center;
    /* vertical center */
}

.get-card h4 i.bi {
    font-size: 65px;
    /* size of the icon */
    color: #ffc107;
    /* icon color */
}