* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
}

/* NAVBAR */

html {
    scroll-behavior: smooth;
}

#header {
    position: fixed;
    top: 30.23px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0px 60px;

    background-color: transparent;
    transition:
        top 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        border-bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-outer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 70px;

    padding: 0px 24px;
    border-radius: 12px;
    background-color: white;
    transition:
        border-radius 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#header.scrolled {
    top: 0;
    background-color: #ffffff;
    box-shadow: 0px 4px 20px rgba(43, 54, 67, 0.05);
}

#header.scrolled .header-outer {
    border-radius: 0;
    background-color: transparent;
    padding: 0px !important;
    transition: all 0.3s ease-in-out;
}

/* LOGO */
.logo {
    width: 64.48275756835938px;
    height: 33px;
    z-index: 1000;
}

.logo a {
    display: inline-block;
}

.logo img:hover {
    transform: scale(1.1);
    transition: all 0.4s ease-in-out;
}

.logo img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

/* NAV LINKS */

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    background: #eaf6fc;
    padding: 11px 24px;
    border-radius: 12px;
    flex-wrap: nowrap;
    max-width: 100%;
}

@media (max-width: 768px) {
    .nav-links {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
    }

    .nav-links::-webkit-scrollbar {
        display: none;
    }
}

.nav-links a {
    text-decoration: none;
    color: #6b7280;
    font-size: 16px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}

.nav-links a:hover {
    color: #000000;
}

.nav-links a.active {
    color: #000000;
    font-weight: 500;
}
.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-right: 20px;
    margin-left: auto;
}

.header-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #2b3643;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    transition: 0.3s;
}

.header-contact a svg {
    color: #25a8e0;
    width: 20px;
    height: 20px;
}

.header-contact a:hover {
    color: #25a8e0;
    transition: all;
}

/* Desktop */
.header-contact {
    display: none;
}
.mobile-social-wrapper {
    display: none;
    width: fit-content;
    margin: 0px auto;
}

.mobile-social-wrapper a {
    display: flex !important;
    width: 50px !important;
    height: 50px;
    align-items: center;
    justify-content: center;
    background-color: #25a8e0;
    border-radius: 50%;
    color: white !important;
    border: 1px solid transparent;
}

.mobile-social-wrapper a:hover {
    background-color: transparent;
    border-color: #25a8e0;
    transition: all 0.3s ease-in;
    color: #25a8e0 !important;
}
/* Tablet & Mobile */
@media (max-width: 992px) {
    .desktop-only-join {
        display: none;
    }
    .mobile-social-wrapper {
        display: flex;
        align-items: center;
        width: fit-content;
        gap: 20px;
    }

    .header-contact {
        display: flex;
    }
}

@media screen and (max-width: 500px) {
    .header-contact a {
        font-size: 13px;
    }
    .mobile-social-wrapper a svg {
        width: 20px;
        height: 20px;
    }
    .mobile-social-wrapper a {
        width: 40px !important;
        height: 40px;
    }
}

@media screen and (max-width: 440px) {
    .header-contact a span {
        display: none;
    }
}
.join-btn {
    width: fit-content;
    text-decoration: none;
    background: #25a8e0;
    color: white;
    padding: 12px 24px;
    border: solid 1px transparent;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;

    /* ADD THESE */
    position: relative;
    overflow: hidden;
    display: inline-block;
    transition: all 0.5s ease;
    z-index: 1;
}

.join-btn:hover {
    border-color: #25a8e0;
    color: #25a8e0;
}

/* BEFORE EFFECT */
.join-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50px;

    width: 0;
    height: 100%;

    background: white;

    transform: skewX(45deg);
    transition: width 0.8s ease;

    z-index: -1;
}

/* HOVER */
.join-btn:hover {
    transform: translateY(-4px);
}

/* ANIMATION */
.join-btn:hover::before {
    width: 250%;
}

.hero {
    width: 100%;

    position: relative;

    overflow: hidden;

    background-image: url("../image/hero.webp");
    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 25, 47, 0.7) 0%,
        rgba(43, 54, 67, 0.3) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* CONTENT */

.hero-content-outer {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 80vh;
    min-height: 629px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px 60px;
}

.hero-content-wrapper {
    width: 759.419921875px;
    z-index: 1;
    position: relative;
}

/* TOP TAG */
.hero-title {
    overflow: hidden;
}

.hero-title .word {
    display: inline-block;
}

.hero-tag {
    display: inline-block;

    padding: 8px 16px;

    border: 1px solid #ffffff80;

    border-radius: 12px;

    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    line-height: 20px;
    margin-bottom: 12px;
    color: #ffffff;
    background-color: #ffffff36;
}

/* HEADING */

.hero-content-wrapper h1 {
    font-size: 48px;
    line-height: 60px;
    font-weight: 600;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    margin-bottom: 24px;
}

.blue-text {
    color: #25a8e0;
}

/* PARAGRAPH */

.hero-content-wrapper p {
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    margin-bottom: 35px;
    line-height: 24px;
}

.hero-animated-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 14px 28px;
    font-size: 16px;
    background-color: #25a8e0;
    color: white;
    border: 1px solid #25a8e0;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    width: fit-content;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    box-shadow: 0 4px 15px rgba(37, 168, 224, 0.3);
    z-index: 2;
}

.hero-animated-button .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 0;
}

.hero-animated-button .text {
    position: relative;
    z-index: 1;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-animated-button:hover {
    color: #25a8e0;
    box-shadow: 0 6px 20px rgba(37, 168, 224, 0.4);
}

.hero-animated-button:active {
    transform: scale(0.96);
}

.hero-animated-button:hover .circle {
    width: 260px;
    height: 260px;
    opacity: 1;
}

.business-outer {
    padding: 120px 60px;
}

.business-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.section-tag {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    line-height: 20px;
    color: #111;
    padding-left: 8px;
    border-left: 1px solid #000000;
    margin-bottom: 36px;
    display: inline-block;
}

/* HEADING */

.business-content h2 {
    font-size: 32px;
    line-height: 42px;
    color: #000000;
    margin-bottom: 24px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    max-width: 478px;
}

/* PARAGRAPH */

.business-content p {
    font-size: 16px;
    font-weight: 300;
    font-family: "Poppins", sans-serif;
    line-height: 24px;
    color: #6b7280;
    margin-bottom: 35px;
    text-align: justify;
    max-width: 500px;
}

.view-btn {
    width: fit-content;
    text-decoration: none;
    background: #25a8e0;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-size: 16px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    display: inline-block;

    /* ADD THESE */
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.view-btn:hover {
    border-color: #25a8e0;
}

/* FIRST LAYER */
.view-btn::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.25);
    top: 100%;
    width: 140%;
    height: 180%;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}

/* SECOND LAYER */
.view-btn::after {
    content: "";
    position: absolute;
    left: 55%;
    transform: translateX(-50%) scaleY(1) scaleX(1.45);
    top: 180%;
    width: 160%;
    height: 190%;
    background-color: white;
    border-radius: 50%;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}

/* HOVER */
.view-btn:hover {
    color: #25a8e0;
}

/* HOVER EFFECT */
.view-btn:hover::before {
    top: -35%;
    background-color: white;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.view-btn:hover::after {
    top: -45%;
    background-color: white;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

/* RIGHT GRID */

.stats-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 24px;
}

/* CARD */

.stat-card {
    background: white;

    border: 1px solid #25a8e0;

    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 152px;
    padding: 0px 32px;
}

.stat-card:hover {
    background-color: #25a8e0;
    transition: all 1s ease;
}

.stat-card:hover h3 {
    color: white;
}

.stat-card:hover h4 {
    color: white;
}

.stat-card:hover span {
    color: #ffffff80;
}

/* CARD TEXT */

.stat-card h3 {
    font-size: 36px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #25a8e0;
    line-height: 48px;
}

.stat-card h4 {
    font-size: 16px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    color: #000000;
    line-height: 24px;
    text-align: center;
    margin-bottom: 2px;
}

.stat-card span {
    font-size: 14px;
    font-weight: 300;
    color: #6b7280;
    line-height: 18px;
    font-family: "Poppins", sans-serif;
    text-align: center;
}

/* ABOUT SECTION */
.about-section {
    overflow: hidden;
}

.about-section-outer {
    padding: 120px 60px;
}

.about-section-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* IMAGE SIDE */

.about-image {
    position: relative;

    overflow: hidden;

    border-radius: 18px;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    height: 100%;
    object-fit: cover;
}

/* PLAY BUTTON */

.play-btn {
    position: absolute;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 62px;
    height: 62px;
    background: white;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
        background-color 0.2s ease;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.15);
    background-color: #f8fafc;
}

.play-btn svg {
    color: #bbbbbb;
    height: 25px;
    width: 25px;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.play-btn:hover svg {
    color: #25a8e0;
    transform: scale(1.05);
}

/* HEADING */

.about-content h2 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    color: #000000;
    border-left: 4px solid #000000;
    padding-left: 12px;
    max-width: 346.9296875px;
    width: 100%;
    margin-bottom: 12px;
}

/* SMALL TEXT */

.sub-title {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 18px;
    color: #6b7280;
    margin-bottom: 40px;
    display: inline-block;
}

/* PARAGRAPHS */

.about-content p {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: #6b7280;
    margin-bottom: 20px;
    text-align: justify;
}

.about-content p + p {
    margin-bottom: 0px;
}

/* CTA SECTION */
.cta-section {
    overflow: hidden;
}

.cta-outer {
    padding: 120px 60px;
}

.cta-wrapper {
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* BACKGROUND IMAGE */
    background-image: url("../image/cta-bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0px 76.21px;
    height: 280px;
}

/* CONTENT */

.cta-content h2 {
    font-size: 32px;
    line-height: 42px;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    max-width: 701px;
}

.cta-content p {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    line-height: 24px;
    color: #d9f3ff;
}

/* BUTTON */

.cta-btn {
    text-decoration: none;
    background: white;
    color: #25a8e0;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    text-transform: capitalize;
    text-align: center;
    box-shadow: 0px 4px 0px #b7eff8;
    letter-spacing: 1px;
}

.cta-btn:hover {
    background-color: #60cfff;
    box-shadow: 0px 2px 0px #b7eff8;
    transform: translateY(3px);
    color: white;
    transform: all 0.5s ease;
}

/* MAIN SECTION */

.achivement-outer {
    padding: 120px 60px;
}

.achivement-wrapper {
    display: flex;
    flex-direction: column;

    gap: 30px;
}

/* TOP GRID */

.achievement-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* TAG */
.achievement-section {
    overflow: hidden;
}

.achievement-section-tag {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    line-height: 20px;
    color: #000000;
    padding-left: 10px;
    margin-bottom: 36px;
    border-left: 1px solid #000000;
    width: fit-content;
    display: inline-block;
}

/* HEADING */

.achievement-content h2 {
    font-size: 32px;
    line-height: 42px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: #000000;
    margin-bottom: 24px;
}

/* PARAGRAPH */

.achievement-content p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    font-family: "Poppins", sans-serif;
    color: #6b7280;
    margin-bottom: 36px;
    text-align: justify;
}

/* BUTTON */

.join-btn {
    width: fit-content;

    text-decoration: none;

    background: #25a8e0;
    color: white;

    padding: 12px 24px;
    font-family: "Poppins", sans-serif;

    border-radius: 8px;

    font-size: 16px;
    font-weight: 600;
}

.join-btn:hover {
    background: #1497db;
}

.achivement-join-btn {
    width: fit-content;
    text-decoration: none;
    background: #25a8e0;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-size: 16px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    display: inline-block;

    /* ADD THESE */
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.achivement-join-btn:hover {
    border-color: #25a8e0;
}

/* FIRST LAYER */
.achivement-join-btn::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.25);
    top: 100%;
    width: 140%;
    height: 180%;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}

/* SECOND LAYER */
.achivement-join-btn::after {
    content: "";
    position: absolute;
    left: 55%;
    transform: translateX(-50%) scaleY(1) scaleX(1.45);
    top: 180%;
    width: 160%;
    height: 190%;
    background-color: white;
    border-radius: 50%;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}

/* HOVER */
.achivement-join-btn:hover {
    color: #25a8e0;
}

/* HOVER EFFECT */
.achivement-join-btn:hover::before {
    top: -35%;
    background-color: white;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.achivement-join-btn:hover::after {
    top: -45%;
    background-color: white;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

/* IMAGE */
.achievement-image {
    overflow: hidden;
    border-radius: 18px;
}

.achievement-image img {
    width: 100%;

    border-radius: 18px;

    display: block;
    height: 100%;
    object-fit: cover;
}

.achievement-image img:hover {
    transform: scale(1.1);
    transition: all 0.5s ease;
}

/* BOTTOM GRID */

.achievement-stats-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 24px;
}

/* CARD */

.achievement-stat-box {
    background: white;
    padding: 35px 24px;
    border-radius: 12px;
    box-shadow: 0px 0px 4px 2px #0000000d;
}

.achievement-stat-box:hover {
    background-color: #25a8e0;
    transition: all 0.5s ease;
    cursor: pointer;
    box-shadow: 0px 0px 4px 2px #aee7ff;
}

.achievement-stat-box:hover h3 {
    color: white;
}

.achievement-stat-box:hover p {
    color: #eeeded;
}

/* CARD TEXT */

.achievement-stat-box h3 {
    font-size: 36.78px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    line-height: 40.01px;
    color: #25a8e0;
    margin-bottom: 8px;
}

.achievement-stat-box p {
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: #333333;
}

.footer {
    background: #253242;
}

.footer-outer {
    padding: 42px 60px;
}

.footer-bottom {
    border-top: 1px solid #d3d3d3;
    padding-top: 24px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Main Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 24px;
}

/* Left Section */
.footer-left img {
    width: 65px;
    height: 43px;
    margin-bottom: 20px;
    object-fit: contain;
}

.footer-left p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #ffffff;
    text-align: justify;
    max-width: 353px;
}

/* Center Section */
.footer-center {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.footer-column h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    margin-bottom: 16px;
    white-space: nowrap;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
}

.footer-column ul li a {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #c7cdd4;
    text-decoration: none;
    white-space: nowrap;
}

.footer-column ul li a:hover {
    color: white;
    transition: all 0.3s ease-in-out;
}

.footer-social-media {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.footer-social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-media a:hover {
    transform: scale(1.2);
    transition: all 0.5s ease;
}

.footer-social-media a svg {
    color: #25a8e0;
}

.footer-social-media a:hover svg {
    color: white;
}

.footer-right h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-right p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #c7cdd4f2;
    margin-bottom: 16px;
}

.privacy-text {
    margin: 0px !important;
}

.subscribe-box {
    display: grid;
    grid-template-columns: 1fr 96px;
    gap: 20px;
    margin-bottom: 24px;
}

.subscribe-box input {
    outline: none;
    border: none;
    padding: 0px 13px;
    background-color: #25a8e0;
    height: 40px;
    color: #ffffff;
}

.subscribe-box input::placeholder {
    font-size: 14px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    color: #ffffff;
}

.subscribe-box button {
    background-color: #25a8e0;
    padding: 0px 12px;
    height: 40px;
    width: 100%;
    border: 1px solid transparent;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subscribe-box button:hover {
    border-color: #25a8e0;
    transition: all 0.5s ease;
    background-color: transparent;
}

.subscribe-box button:hover svg {
    color: #25a8e0;
}

.subscribe-box button svg {
    width: 20px;
    height: 20px;
    color: white;
}

.footer-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 26px;
    border-top: 1px solid #d3d3d3;
}

.footer-bottom-copyright-wrapper p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #c7cdd4f2;
}

.footer-bottom-links-wrapper {
    display: flex;
    gap: 32px;
}

.footer-bottom-links-wrapper a {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #c7cdd4f2;
    text-decoration: none;
}

.footer-bottom-links-wrapper a:hover {
    color: white;
    transition: all 0.5s ease;
}

/* INSIGHTS SECTION */

.insight-section {
    overflow: hidden;
}

.insights-section-outer {
    padding: 120px 60px;
    background-color: #f9fafb;
}

/* Header */
.insights-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 35px;
}

.insights-sub-title {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    line-height: 20px;
    color: #000000;
    display: inline-block;
    margin-bottom: 36px;
    position: relative;
    padding-left: 14px;
    border-left: 1px solid #000000;
}

.insights-heading h2 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
    color: #2b3643;
    margin-bottom: 24px;
    font-family: "Poppins", sans-serif;
}

.insights-heading p {
    font-size: 20px;
    line-height: 28px;
    color: #6b7280;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    text-align: justify;
}

/* Container Grid */
.insights-container {
    display: grid;
    grid-template-columns: 1fr 367px;
    gap: 30px;
}

/* Main Card */
.insights-main-card {
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.insights-main-image {
    position: relative;
    width: 100%;
    height: 350px;
}

.insights-main-image-wrapper {
    overflow: hidden;
    height: 350px;
}

.insights-main-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.insights-main-image-wrapper:hover img {
    transform: scale(1.1);
    transition: all 0.5s ease;
}

/* .insights-main-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
} */

.insights-tag {
    position: absolute;
    top: 24px;
    left: 24px;
    background: #25a8e0;
    color: white;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    z-index: 2;
}

.insights-main-title {
    position: absolute;
    bottom: 32px;
    left: 24px;
    right: 20px;
    z-index: 2;
}

.insights-main-title h3 {
    font-size: 28px;
    line-height: 33.6px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    font-family: "Poppins", sans-serif;
}

.insights-main-content {
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.insights-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 13px;
    color: #9ca3af;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item svg {
    width: 16px;
    height: 16px;
}

.insights-main-content p {
    font-size: 15px;
    font-weight: 400;
    line-height: 21px;
    color: #6b7280;
    font-family: "Poppins", sans-serif;
    margin-bottom: 12px;
    text-align: justify;
}

.insights-btn {
    display: inline-block;
    background: #25a8e0;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    margin-top: auto;
    width: fit-content;
    border: 1px solid transparent;
}

.insights-btn:hover {
    background: transparent;
    color: #25a8e0;
    border-color: #25a8e0;
    transition: all 0.5s ease;
}

/* List Side */
.insights-right {
    display: flex;
    flex-direction: column;
}

.insights-right-header {
    margin-bottom: 35px;
}

.insights-right-header h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
}

.insights-right-header p {
    font-size: 14px;
    line-height: 20px;
    color: #6b7280;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

.insights-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-height: 421px;
    overflow-y: auto;
    padding-right: 8px;
}

.insights-list::-webkit-scrollbar {
    width: 6px;
}

.insights-list::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 4px;
}

.insights-list::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 4px;
}

.insights-list-card {
    display: flex;
    gap: 16px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 21.7px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    flex-shrink: 0;
    height: 124px;
    box-sizing: border-box;
}

.insights-list-card:hover {
    border-color: #25a8e0;
}

.insights-list-card.active {
    border-color: #25a8e0;
}

.list-card-img {
    width: 120px;
    height: 100%;
    flex-shrink: 0;
    overflow: hidden;
}

.list-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.list-card-img img:hover {
    transform: scale(1.1);
    transition: all 0.5s ease;
}

.list-card-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px 16px 16px 0px;
}

.list-tag {
    color: #25a8e0;
    font-size: 10.85px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.list-card-info h4 {
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    color: #000000;
    font-family: "Poppins", sans-serif;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.list-meta {
    font-size: 13px;
    font-weight: 400;
    color: #9ca3af;
    font-family: "Poppins", sans-serif;
    display: flex;
    align-items: center;
    gap: 2px;
}

.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 960px) {
    .insights-container {
        grid-template-columns: 1fr;
    }

    .insights-list {
        max-height: 400px;
    }
}

/* HIGHLIGHT SECTION */
.highlight-section {
    overflow: hidden;
}

.highlight-section-outer {
    padding: 120px 60px;
}

/* Heading */

.left-highlight-section-heading h2 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
    color: #2b3643;
    margin-bottom: 24px;
    font-family: "Poppins", sans-serif;
}

.left-highlight-section-heading p {
    font-size: 20px;
    line-height: 28px;
    color: #6b7280;
    font-family: "Poppins", sans-serif;
    margin-bottom: 35px;
    font-weight: 400;
    max-width: 684px;
    width: 100%;
    text-align: justify;
}

.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.highlight-section-sub-title {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    line-height: 20px;
    color: #000000;
    display: inline-block;
    margin-bottom: 36px;
    position: relative;
    padding-left: 14px;
    border-left: 1px solid #000000;
    width: fit-content;
}

.section-heading h2 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
    color: #2b3643;
    margin-bottom: 24px;
    font-family: "Poppins", sans-serif;
}

.section-heading p {
    font-size: 20px;
    line-height: 28px;
    color: #6b7280;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    text-align: justify;
}

/* Cards Grid */

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Card */

.highlight-card {
    border: 1px solid #d9eaf3;
    border-radius: 16px;
    overflow: hidden;
    padding: 12px;
}

.card-image:hover {
    overflow: hidden;
    border-radius: 12px;
}

.card-image img {
    width: 100%;
    height: 212px;
    object-fit: cover;
    border-radius: 12px;
    object-fit: cover;
}

.card-image img:hover {
    transform: scale(1.1);
    transition: all 0.5s ease;
}

.card-content {
    padding: 24px 12px;
    border: 1px solid #d9eaf3;
    border-radius: 12px;
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 25px;
}

.card-content h3 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    color: #2b3643;
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
}

.card-content p {
    font-size: 14px;
    line-height: 18px;
    color: #6b7280;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    text-align: justify;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
}

.btn-wrapper {
    display: flex;
    justify-content: end;
}

.card-content a {
    text-decoration: none;
    color: #2b3643;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    border-bottom: 1px solid #000000;
}

.card-content a:hover {
    color: #25a8e0;
    border-color: #25a8e0;
    transition: all 0.5s ease;
}

.steps-section {
    overflow: hidden;
}

.steps-section-outer {
    padding: 120px 60px;
    background: linear-gradient(136deg, #2b3643 31%, #243646 14%, #25a8e0 102%);
    position: relative;
    overflow: hidden;
}

/* Background Dots */

.steps-section-outer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../image/steps-bg-img.webp") center center no-repeat;
    background-size: contain;
    pointer-events: none;
}

/* Heading */

.steps-heading {
    position: relative;
    z-index: 2;

    margin-bottom: 65px;
}

.steps-sub-title {
    color: #ffffff;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    line-height: 20px;
    padding-left: 10px;
    display: inline-block;
    margin-bottom: 36px;
    border-left: 1px solid #ffffff;
}

.steps-heading h2 {
    font-size: 32px;
    line-height: 42px;
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

.steps-heading p {
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    line-height: 28px;
    color: #ffffff99;
    max-width: 652px;
    width: 100%;
    text-align: justify;
}

/* Steps Grid */

.steps-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Step Card */

.step-card {
    position: relative;
    text-align: center;
}

/* Top */

.step-top {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
    justify-content: center;
}

/* Circle */

.step-number {
    width: 72px;
    height: 72px;
    border-radius: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number p {
    font-size: 20px;
    line-height: 32.92px;
    font-family: "Poppins", sans-serif;
    color: #25a8e0;
    font-weight: 300;
}

.step-arrow {
    position: absolute;
    width: 250px;
    left: calc(100% + 20px);
    /* Centers the arrow in the gap between cards */
    top: 36px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.step-arrow img {
    width: 250px;
    height: auto;
    display: block;
}

/* Content */

.step-card h3 {
    font-size: 22px;
    line-height: 30px;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.step-card-para {
    max-width: 222px;
    margin: auto;
    font-size: 16px;
    line-height: 24px;
    color: #ffffffa6;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    text-align: justify;
}

/* Responsive adjustments */
/* Responsive adjustments */
@media (max-width: 1024px) {
    .step-arrow {
        display: none;
    }
}

.testimonial-outer {
    padding: 120px 60px;
    overflow: hidden;
}

/* Top Label */

.testimonial-section {
    overflow: hidden;
}

.testimonial-section-label {
    font-size: 14px;
    color: #000000;
    position: relative;
    padding-left: 14px;
    display: inline-block;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    line-height: 20px;
    border-left: 1px solid #000000;
    margin-bottom: 36px;
}

/* Main Grid */

.testimonial-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    /* Main wrapper top aligned */
}

/* LEFT SIDE */

.testimonial-left {
    max-width: 650px;
    width: 100%;
    min-width: 0;
    /* Fix for Swiper in flex/grid */
}

.swiper-wrapper.left-swiper-wrapper {
    margin-bottom: 40px;
}

.testimonial-swiper {
    width: 100%;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.user-info img {
    width: 72px;
    height: 72px;
    border-radius: 100%;
    object-fit: cover;
}

.user-info h4 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    color: #000000;
    margin-bottom: 4px;
}

.user-info span {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    color: #6b7280;
}

.testimonial-left h2 {
    font-size: 24px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    color: #1f2937;
    text-align: justify;
    line-height: 35px;
}

/* Slider Button */

.slider-btn {
    background: #25a8e0;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    user-select: none;
    padding: 12px 24px;
    width: fit-content;
}

.slider-btn span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn:hover,
.next-btn:hover {
    opacity: 0.7;
}

.nav-fraction {
    font-size: 16px;
    text-align: center;
    color: white;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}

/* RIGHT SIDE */

.testimonial-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: fit-content;
    align-items: flex-start;
    /* Container height for 4-card column */
}

.vertical-swiper-1 {
    height: 455px !important;
    /* full slide (170px) + half of top & bottom slides (85px each) + spacing */
    overflow: hidden;
    width: 100%;
    align-self: center;
    /* Vertically center the left slider */
}

.vertical-swiper-2 {
    height: 748px !important;
    /* padding: 0 !important; */
    width: 100%;
    overflow: hidden;
    /* hide overflow to ensure only four slides visible */
    /* hide any overflow to ensure only four slides visible */
}

.vertical-swiper-1 .testimonial-card,
.vertical-swiper-2 .testimonial-card {
    width: 100%;
}

/* Columns */

/* Card */

.testimonial-card {
    background: white;
    border: 1px solid rgba(37, 168, 224, 0.3);
    /* Light blue border from image */
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
}

/* Stars */

.stars {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
    margin-bottom: 11px;
}

.stars svg {
    color: #fbbf24;
    width: 10px;
    height: 10px;
}

.testimonial-card p {
    font-size: 14px;
    line-height: 18px;
    color: #6b7280;
    font-family: "Poppins", sans-serif;
    margin-bottom: 20px;
    font-weight: 400;
    display: block;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.testimonial-card p::before {
    content: '" ';
}

.testimonial-card p::after {
    content: ' "';
}

/* Card User */

.card-user {
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-user img {
    width: 35px;
    height: 35px;
    border-radius: 100%;
    object-fit: cover;
}

.card-user h5 {
    font-size: 14.63px;
    color: #000000;
    margin-bottom: 2px;
    line-height: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

.card-user span {
    font-size: 13px;
    color: #6b7280;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}

/* Responsive */

@media (max-width: 1200px) {
    .testimonial-section-label {
        margin-bottom: 24px;
    }

    .swiper-vertical > .swiper-wrapper {
        flex-direction: row;
    }

    .testimonial-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonial-left {
        max-width: 100%;
        padding: 0px 5px;
    }

    .testimonial-left h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .testimonial-right {
        grid-template-columns: 1fr;
        height: auto;
        gap: 20px;
    }

    .vertical-swiper-2,
    .vertical-swiper-1 {
        height: unset !important;
        padding: 0px 5px;
        box-sizing: border-box;
    }

    .vertical-swiper-1 .swiper-slide,
    .vertical-swiper-2 .swiper-slide {
        height: auto !important;
    }
}

@media (max-width: 640px) {
    .testimonial-left h2 {
        font-size: 20px;
        line-height: 28px;
    }

    .user-info {
        gap: 12px;
        margin-bottom: 24px;
    }

    .user-info img {
        width: 56px;
        height: 56px;
    }

    .user-info span {
        font-size: 12px;
    }

    .slider-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .testimonial-right {
        height: auto;
        gap: 16px;
    }

    .vertical-swiper-1 {
        height: auto !important;
    }

    .vertical-swiper-2 {
        height: auto !important;
    }

    .vertical-swiper-1 .swiper-slide,
    .vertical-swiper-2 .swiper-slide {
        height: auto !important;
    }

    .testimonial-card {
        padding: 12px;
        border-radius: 12px;
    }

    .stars {
        font-size: 10px;
        margin-bottom: 6px;
    }

    .testimonial-card p {
        font-size: 11px;
        line-height: 15px;
        margin-bottom: 8px;
    }

    .card-user img {
        width: 28px;
        height: 28px;
    }

    .card-user h5 {
        font-size: 11px;
    }

    .card-user span {
        font-size: 8px;
    }
}

/* small banner  */

.members-benefit-small-banner-content h1 {
    font-family: "Poppins", sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 50px;
    color: #ffffff;
    margin-bottom: 12px;
    text-align: center;
    max-width: 940px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.members-benefit-small-banner-content h1 span {
    color: #25a8e0;
}

.members-benefit-small-banner-content p {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #ffffff;
    text-align: justify;
}

.small-banner-franchise-outer {
    position: relative;
    background-image: url("../image/franchise.webp");
    background-size: cover;
    background-position: center;
    overflow: hidden;
    height: 50vh;
    min-height: 420px;

    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 160px;
}

.small-banner-franchise-content p {
    max-width: 709px;
    width: 100%;
    margin: 0 auto;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #ffffff;
    text-align: justify;
}

.small-banner-franchise-content h1 {
    font-family: "Poppins", sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 50px;
    color: #ffffff;
    margin-bottom: 12px;
    text-align: center;
    max-width: 878px;
    margin-left: auto;
    margin-right: auto;
}

.small-banner-franchise-content h1 span {
    color: #25a8e0;
}

.small-banner-faq-ask-outer {
    position: relative;
    background-image: url("../image/askbanner.webp");
    background-size: cover;
    background-position: center;
    overflow: hidden;
    height: 50vh;
    min-height: 420px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 160px;
}

.small-banner-faq-ask-content h1 {
    font-family: "Poppins", sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 50px;
    color: #ffffff;
    margin-bottom: 12px;
    text-align: center;
    max-width: 878px;
    margin-left: auto;
    margin-right: auto;
}

.small-banner-faq-ask-content h1 span {
    color: #25a8e0;
}

.small-banner-faq-ask-content p {
    max-width: 631px;
    width: 100%;
    margin: 0 auto;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #ffffff;
    text-align: justify;
}

.small-banner-highlight-outer {
    position: relative;

    background-image: url("../image/resources-banner-img.webp");
    background-size: cover;
    background-position: center;

    overflow: hidden;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.small-banner-resources-outer {
    position: relative;

    background-image: url("../image/resources-banner-img.webp");
    background-size: cover;
    background-position: center;

    overflow: hidden;
    height: 50vh;
    min-height: 420px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 160px;
}

.small-banner-outer {
    position: relative;

    background-image: url("../image/benefit-banner-img.webp");
    background-size: cover;
    background-position: center;

    overflow: hidden;
    height: 50vh;
    min-height: 420px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 160px;
}

.small-banner-overlay {
    position: absolute;
    inset: 0;
    background: #ffffff0d;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.small-banner .container {
    position: relative;
    z-index: 2;
}

.small-banner-content {
    /* margin-top: 80px; */
    width: 100%;
}

.small-banner-content h1 {
    font-family: "Poppins", sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 50px;
    color: #ffffff;
    margin-bottom: 12px;
    text-align: center;
    max-width: 878px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.small-banner-content h1 span {
    color: #25a8e0;
}

.small-banner-content p {
    max-width: 668px;
    width: 100%;
    margin: 0 auto;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #ffffff;
    text-align: justify;
}

/* why Join ibc  */
.why-ibc-section {
    overflow: hidden;
}

.why-ibc-section-outer {
    padding: 120px 60px;
    background: #ffffff;
}

/* GRID */

.why-ibc-grid {
    display: grid;
    grid-template-columns: 1fr 406px;
    gap: 30px;
    align-items: center;
}

/* LEFT CONTENT */
.why-ibc-section-header {
    margin-bottom: 36px;
}

.why-ibc-section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Poppins", sans-serif;
    color: #253242;
    padding-left: 10px;
    border-left: 1px solid #000000;
}

.why-ibc-content h2 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    color: #2b3643;
    margin-bottom: 24px;
    max-width: 552px;
}

.why-ibc-content h2 span {
    color: #25a8e0;
}

/* TITLE INFO */

.title-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.arrow-icon svg {
    color: #25a8e0;
}

.title-info h3 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #000000;
}

/* PARAGRAPH */

.why-ibc-content p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;

    font-family: "Poppins", sans-serif;

    color: #6b7280;

    margin-bottom: 12px;

    text-align: justify;
}

.why-ibc-content p + P + p {
    margin-bottom: 0px;
}

/* TAGS */

.why-ibc-tags {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
    margin-top: 35px;
}

.why-ibc-tags-wrapper {
    border: 1px solid #25a8e026;
    padding: 8px 16px;
    border-radius: 8px;
    background: #25a8e012;
    display: flex;
    align-items: center;
    gap: 8px;
}

.why-ibc-tags-wrapper svg {
    color: #25a8e0;
}

.why-ibc-tags span {
    font-size: 13px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    color: #25a8e0;
}

/* IMAGE */

.why-ibc-image {
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.why-ibc-image img:hover {
    transform: scale(1.05);
    transition: all 0.5s ease;
}

.why-ibc-image img {
    width: 100%;
    height: 100%;

    border-radius: 12px;

    object-fit: cover;
    display: block;
}

.contact-form-section {
    overflow: hidden;
}

.contact-form-section-outer {
    padding: 120px 60px;
    background: #f0f6fb;
}

/* HEADING */

.contact-form-tag {
    display: inline-block;
    background: #25a8e01a;
    border: 1px solid #25a8e038;
    color: #25a8e0;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    line-height: 17.6px;
    font-family: "Poppins", sans-serif;
    letter-spacing: 1.43px;
    margin-bottom: 36px;
}

.contact-form-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form-heading h2 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
    color: #2b3643;
    margin-bottom: 25px;
    font-family: "Poppins", sans-serif;
}

.contact-form-heading h2 span {
    color: #25a8e0;
}

.contact-form-heading p {
    font-size: 20px;
    line-height: 28px;
    color: #6b7280;
    font-family: "Poppins", sans-serif;
    margin-bottom: 35px;
    font-weight: 400;
    text-align: justify;
}

/* FORM */

.contact-form-wrapper {
    background: #ffffff;
    border: 1px solid #25a8e01a;
    border-radius: 22px;
    padding: 40px 48px;
    box-shadow: 0px 10px 30px #2b364312;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #25a8e0 0%, #2b3643 100%);
}

.membership-form-section {
    overflow: hidden;
}

.membership-form-section-outer {
    padding: 120px 60px;
    background: #f0f6fb;
}

/* HEADING */

.membership-tag {
    display: inline-block;
    background: #25a8e01a;
    border: 1px solid #25a8e038;
    color: #25a8e0;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    line-height: 17.6px;
    font-family: "Poppins", sans-serif;
    letter-spacing: 1.43px;
    margin-bottom: 36px;
}

.membership-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.membership-heading h2 {
    font-size: 44px;
    line-height: 51.92px;
    font-weight: 700;

    font-family: "Poppins", sans-serif;

    color: #2b3643;

    margin-bottom: 24px;
    text-align: center;
}

.membership-heading h2 span {
    color: #25a8e0;
}

.membership-heading p {
    font-size: 20px;
    line-height: 28px;
    color: #6b7280;
    font-family: "Poppins", sans-serif;
    margin-bottom: 35px;
    font-weight: 400;
    text-align: justify;
    max-width: 682px;
    width: 100%;
}

/* FORM */

.membership-form-wrapper {
    background: #ffffff;
    border: 1px solid #25a8e01a;
    border-radius: 22px;
    padding: 40px 48px;
    box-shadow: 0px 10px 30px #2b364312;
    position: relative;
    overflow: hidden;
}

.membership-form-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #25a8e0 0%, #2b3643 100%);
}

.form-group-box {
    margin-bottom: 50px;
}

.form-group-title {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    margin-bottom: 28px;
    border-bottom: 1px solid #edf2f7;
}

.form-group-title span {
    width: 38px;
    height: 38px;

    background: #25a8e0;
    color: #ffffff;

    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.form-group-title h3 {
    font-size: 16px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    line-height: 24px;
    color: #2b3643;
}

/* GRID */

.form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* INPUT */

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    font-family: "Poppins", sans-serif;
    color: #2b3643;
    margin-bottom: 7px;
}

.input-group label span {
    color: #25a8e0;
    font-size: 20px;
}

.input-group input::placeholder {
    color: #b0bdc9;
}

.input-group textarea::placeholder {
    color: #b0bdc9;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    border: 1px solid #dde6ef;
    background: #f8fbfe;
    height: 54px;
    border-radius: 10px;
    padding: 0px 16px;
    outline: none;
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: #b0bdc9;
}

.input-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("../image/dropdown.svg");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 12px;
    padding-right: 45px;
    cursor: pointer;
}

.input-group select:invalid {
    color: #b0bdc9;
}

.input-group select option {
    color: #2b3643;
}

.input-group textarea {
    height: 140px;
    resize: none;
    padding-top: 16px;

    padding-bottom: 16px;
}

.pure-custom-dropdown {
    position: relative;
    width: 100%;
}

.pure-custom-dropdown .dropdown-trigger {
    cursor: pointer;
    width: 100%;
    padding-right: 40px !important;
}

.pure-custom-dropdown .dropdown-arrow {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    pointer-events: none;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
}

.pure-custom-dropdown.open .dropdown-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.pure-custom-dropdown .dropdown-options {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    z-index: 100;
    display: none;
    max-height: 200px;
    overflow-y: auto;
}

.pure-custom-dropdown.open .dropdown-options {
    display: block;
    animation: fadeIn 0.2s ease-in-out;
}

.pure-custom-dropdown .dropdown-option {
    padding: 10px 16px;
    color: #374151;
    font-size: 14px;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    transition: background-color 0.2s;
}

.pure-custom-dropdown .dropdown-option:hover {
    background-color: #f3f4f6;
    color: #25a8e0;
}

.full-width {
    margin-top: 24px;
}

.upload-box {
    border: 1px dashed #c7dce8;
    background: #f8fbfe;
    height: 54px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-label {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    margin-bottom: 0px !important;
}

.upload-text p {
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    color: #6b7f93;
    font-weight: 500;
}

.upload-text span {
    color: #25a8e0 !important;
    font-weight: 700 !important;
    font-size: 13px !important;
}

.upload-icon {
    display: flex;
}

/* VERIFICATION */

.verification-box {
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 24px;
    margin-top: 30px;
    align-items: end;
}

@media (max-width: 992px) {
    .verification-box {
        grid-template-columns: 1fr;
        gap: 20px;
        align-items: flex-start;
    }
}

.g-recaptcha {
    width: 100%;
    max-width: 304px;
    height: 78px;
    background: #25a8e00a;
    border-radius: 4px;
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
}

/* zoom shrinks both layout AND visual — prevents overflow on small screens.
   Available ≈ viewport − 80px (section + form padding combined) */
@media (max-width: 390px) {
    .g-recaptcha {
        zoom: 0.95 !important;
    }
}

@media (max-width: 375px) {
    .g-recaptcha {
        zoom: 0.91 !important;
    }
}

@media (max-width: 355px) {
    .g-recaptcha {
        zoom: 0.86 !important;
    }
}

@media (max-width: 330px) {
    .g-recaptcha {
        zoom: 0.78 !important;
    }
}

@media (max-width: 310px) {
    .g-recaptcha {
        zoom: 0.72 !important;
    }
}

.captcha-scale-wrapper {
    width: 100%;
}

.captcha-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    min-width: 0;
}

.captcha-wrapper label span {
    color: #25a8e0;
    font-size: 20px;
}

.captcha-wrapper label {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    font-family: "Poppins", sans-serif;
    color: #2b3643;
}

.captcha-label {
    font-size: 16px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #2b3643;
    display: flex;
    align-items: center;
    gap: 4px;
}

.captcha-label span {
    color: #25a8e0;
    font-size: 20px;
}

.captcha-box {
    height: auto;
    border: 1px solid #dde6ef;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 24px;
    background: #f8fbfe;
}

.captcha-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.captcha-left input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid #c1c1c1;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.captcha-left input[type="checkbox"]:checked {
    background-color: #25a8e0;
    border-color: #25a8e0;
}

.captcha-left input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.captcha-left label {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: #2b3643;
    cursor: pointer;
}

.captcha-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.re-text {
    font-size: 12px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    color: #25a8e0;
    line-height: 16.8px;
}

.privacy-text {
    font-size: 9px;
    font-family: "Poppins", sans-serif;
    line-height: 12.6px;
    color: #6b7f93;
    font-weight: 400;
}
.rc-anchor-light.rc-anchor-compact,
.rc-anchor-light.rc-anchor-normal {
    border-color: #000 !important;
}
.verification-note {
    background: #f9f9f9;
    border: 1px solid #25a8e026;
    border-radius: 8px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 9.5px;
    height: 78px;
}

.verification-note p {
    font-size: 13px;
    line-height: 20px;
    font-family: "Poppins", sans-serif;
    color: #6b7f93;
}

.verification-note p span {
    color: #2b3643;
    font-weight: 600;
}

/* BUTTON */

.submit-btn-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-top: 50px;
    justify-content: center;
}

.submit-btn-wrapper button span {
    display: flex;
}

.submit-btn-wrapper button {
    border: 1px solid transparent;
    outline: none;
    background: #25a8e0;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 64px;
    border-radius: 12px;

    font-size: 15px;
    font-weight: 600;

    font-family: "Poppins", sans-serif;

    cursor: pointer;
}

.submit-btn-wrapper button:hover {
    background-color: transparent;
    border: 1px solid #25a8e0;
    color: #25a8e0;
    transition: all 0.5s ease;
}

.submit-btn-wrapper button:hover svg {
    color: #25a8e0;
    transition: all 0.5s ease;
    transform: translateX(4px);
}

.submit-btn-wrapper p {
    margin-top: 18px;
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    color: #6b7f93;
    font-weight: 400;
    display: flex;
    gap: 10px;
    align-items: center;
}

.submit-btn-wrapper p span {
    display: flex;
}

.business-section {
    overflow: hidden;
}

.business-section-outer {
    width: 100%;
    padding: 120px 60px;
}

/* TOP CONTENT */
.section-top {
    margin-bottom: 35px;
}

.media-insights-heading-desc-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.media-insights-mini-title {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    line-height: 20px;
    color: #000000;
    display: inline-block;
    margin-bottom: 36px;
    position: relative;
    padding-left: 14px;
    border-left: 1px solid #000000;
}

.media-insights-section-title {
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
    color: #2b3643;
    font-family: "Poppins", sans-serif;
}

.media-insights-section-description {
    font-size: 20px;
    line-height: 28px;
    color: #6b7280;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    text-align: justify;
}

/* BOTTOM GRID */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.video-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    cursor: pointer;
    height: 380px;
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.4s;
}

.video-card:hover img {
    transform: scale(1.1);
    transition: all 0.5s ease;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.15) 100%
    );
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* PLAY BUTTON */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 100%;
    background: #ffffff26;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 2px solid #ffffff66;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    z-index: 1;
}

.play-btn svg {
    width: 20px;
    height: 20px;
    color: white;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.08);
}

.card-tag {
    color: #25a8e0;
    font-size: 13px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
}

.card-title {
    font-size: 22px;
    color: #ffffff;
    line-height: 28.6px;
    font-weight: 700;
    margin-bottom: 9px;
    font-family: "Poppins", sans-serif;
}

.card-time {
    color: #ffffff80;
    font-size: 12px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: "Poppins", sans-serif;
}

.card-time svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    flex-shrink: 0;
}

/* POPUP MODAL */
.video-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    padding: 20px;
}

.video-popup.active {
    display: flex;
}

.popup-content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
}

.popup-content video {
    width: 100%;
    display: block;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 42px;
    height: 42px;
    border: none;
    background: #fff;
    color: #111;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    border-radius: 100%;
}

/* RESPONSIVE */

.events-outer {
    width: 100%;
    padding: 120px 60px;
    background-color: #f6f7f8;
}

/* TOP CONTENT */

.section-header {
    text-align: center;
    max-width: 850px;
    margin: auto;
    margin-bottom: 35px;
}

.events-mini-title {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    line-height: 20px;
    color: #000000;
    display: inline-block;
    margin-bottom: 36px;
    position: relative;
    padding-left: 14px;
    border-left: 1px solid #000000;
}

.events-section {
    overflow: hidden;
}

.events-section-title {
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
    color: #2b3643;
    margin-bottom: 24px;
    font-family: "Poppins", sans-serif;
}

.events-section-description {
    font-size: 20px;
    line-height: 28px;
    color: #6b7280;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    text-align: justify;
}

/* BOTTOM GRID */

.events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* CARD */

.event-card {
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 28px;
    transition: 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* DATE BOX */

.date-box {
    width: 84px;
    height: 84px;
    background: #25a8e0;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.date-box h3 {
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 5px;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    color: #ffffff;
}

.date-box span {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #ffffff;
}

/* CARD CONTENT */

.event-title {
    font-size: 16px;
    line-height: 22.1px;
    font-weight: 600;
    margin-bottom: 9px;
    font-family: "Poppins", sans-serif;
    color: #000000;
    text-align: start;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-location {
    color: #9ca3af;
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

.event-location svg {
    width: 11px;
    height: 15px;
    color: #000000;
}

.event-description {
    color: #6b7280;
    font-size: 12px;
    font-weight: 400;
    line-height: 20.8px;
    margin-bottom: 30px;
    font-family: "Poppins", sans-serif;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: justify;
}

/* BUTTON */

.register-btn {
    width: 100%;
    height: 43px;
    border-radius: 12px;
    border: 1px solid #25a8e0;
    background: transparent;
    color: #25a8e0;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    font-family: "Poppins", sans-serif;
    margin-top: auto;
}

.register-btn:hover {
    background: #2da9e9;
    color: #fff;
}

/* RESPONSIVE */

/* ==========================================================================
   GALLERY & PHOTOS SECTION (GRID)
   ========================================================================== */

.gallery-outer {
    width: 100%;
    padding: 120px 60px;
    background-color: #ffffff;
}

.gallery-header {
    margin-bottom: 35px;
    text-align: left;
}

.gallery-mini-title {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    line-height: 20px;
    color: #000000;
    display: inline-block;
    margin-bottom: 36px;
    position: relative;
    padding-left: 14px;
    border-left: 1px solid #000000;
}

.gallery-section {
    overflow: hidden;
}

.gallery-section-title {
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
    color: #2b3643;
    margin-bottom: 24px;
    font-family: "Poppins", sans-serif;
    max-width: 578px;
    width: 100%;
}

.gallery-section-description {
    font-size: 20px;
    line-height: 28px;
    color: #6b7280;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    max-width: 819px;
    width: 100%;
    text-align: justify;
}

/* 4-Column, 3-Row Collage Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 180px);
    gap: 24px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 22px;
    width: 100%;
    height: 100%;
    background-color: #f3f4f6;
    /* Soft skeleton fallback */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
    transition: all 0.5s ease;
}

/* Collage Grid Spanning Assignments */
.item-portrait-left {
    grid-column: 1;
    grid-row: 1 / 3;
}

.item-landscape-mid-left {
    grid-column: 2;
    grid-row: 1;
}

.item-landscape-mid-right {
    grid-column: 3;
    grid-row: 1;
}

.item-portrait-right {
    grid-column: 4;
    grid-row: 1 / 3;
}

.item-wide-mid {
    grid-column: 2 / 4;
    grid-row: 2;
}

.item-bottom-1 {
    grid-column: 1;
    grid-row: 3;
}

.item-bottom-2 {
    grid-column: 2;
    grid-row: 3;
}

.item-bottom-3 {
    grid-column: 3;
    grid-row: 3;
}

.item-bottom-4 {
    grid-column: 4;
    grid-row: 3;
}

/* ==========================================================================
   HIGHLIGHT DETAILS ARTICLE SECTION
   ========================================================================== */

.highlight-details-section {
    overflow: hidden;
}

.highlight-details-section-outer {
    padding: 120px 60px;
}

.highlight-details-header {
    text-align: center;
    margin-bottom: 35px;
}

.highlight-details-category {
    font-size: 14.44px;
    font-weight: 600;
    color: #00658b;
    letter-spacing: 2.89px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    display: block;
    margin-bottom: 36px;
}

.highlight-details-title {
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
    color: #2b3643;
    margin-bottom: 24px;
    font-family: "Poppins", sans-serif;
}

.highlight-details-subtitle {
    font-size: 20px;
    line-height: 28px;
    color: #6b7280;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    text-align: justify;
    max-width: 700px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.highlight-details-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.highlight-details-meta-date,
.highlight-details-meta-location {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    color: #6e7880;
    font-weight: 400;
    line-height: 20px;
}

.highlight-details-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.highlight-details-meta-item svg {
    color: #231f20;
}

.highlight-details-main-image {
    width: 100%;
    overflow: hidden;
    margin-bottom: 80px;
    height: 500px;
    border-radius: 24px;
}

.highlight-details-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-details-body {
    font-family: "Poppins", sans-serif;
    margin-bottom: 80px;
}

.highlight-details-body p {
    font-size: 16px;
    line-height: 24px;
    color: #191c1e;
    margin-bottom: 24px;
    font-weight: 400;
    text-align: justify;
    font-family: "Poppins", sans-serif;
}

.highlight-details-body p + p {
    margin-bottom: 0px !important;
}

/* 3-Image Related Grid Layout */
.highlight-details-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 80px;
}

.highlight-details-gallery-item {
    height: 300px;
    border-radius: 24px;
    overflow: hidden;
}

.highlight-details-gallery-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.gallery-item-detail {
    overflow: hidden;
    height: 280px;
    background-color: #f3f4f6;
}

.gallery-item-detail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item-detail:hover img {
    transform: scale(1.04);
}

.item-fullwidth {
    grid-column: 1 / 3;
    height: 300px;
    overflow: hidden;
    border-radius: 24px;
}

/* Bullet list of Highlights */
.highlight-details-highlights-list {
    margin-top: 48px;
    font-family: "Poppins", sans-serif;
}

.highlight-details-highlights-list h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    color: #2b3643;
    margin-bottom: 33px;
}

.highlight-details-highlights-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-details-highlights-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    line-height: 32px;
    color: #191c1e;
    margin-bottom: 17px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

.highlight-details-highlights-list li:last-child {
    margin-bottom: 0px;
}

.highlight-details-highlights-list li svg {
    color: #25a8e0;
    /* Brand Blue checkmark outline icon */
    flex-shrink: 0;
    /* margin-top: 2px; */
}

/* RESPONSIVE BREAKPOINTS */

/* =========================================
   FAQ SECTION STYLES
========================================= */
.faq-section {
    overflow: hidden;
}

.faq-section-outer {
    padding: 120px 60px;
}

.faq-header {
    margin-bottom: 35px;
}

.faq-header h2 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
    color: #2b3643;
    margin-bottom: 24px;
    font-family: "Poppins", sans-serif;
}

.faq-subtitle {
    font-size: 20px;
    line-height: 28px;
    color: #6b7280;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    max-width: 555px;
    width: 100%;
    text-align: justify;
}

.faq-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 30px;
    align-items: start;
}

/* LEFT SIDEBAR: IMAGES */
.faq-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.faq-img-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.faq-img-item:nth-child(1) {
    aspect-ratio: 4 / 3.2;
    align-self: end;
}

.faq-img-item:nth-child(2) {
    aspect-ratio: 1 / 1.15;
    align-self: end;
}

.faq-img-item:nth-child(3) {
    aspect-ratio: 1 / 1.15;
    align-self: start;
}

.faq-img-item:nth-child(4) {
    aspect-ratio: 4 / 3.2;
    align-self: start;
}

.faq-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-img-item:hover img {
    transform: scale(1.05);
    transition: all 0.5s ease;
}

/* LEFT SIDEBAR: ASK CARD */
.faq-ask-card {
    padding: 32px;
    border-radius: 24px;
    color: white;
    position: relative;
    overflow: hidden;
    background-color: #2b3643;
}

.faq-ask-card::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, #25a8e038 0%, #25a8e000 70%);
    filter: blur(20px);
    pointer-events: none;
}

.faq-ask-icon {
    width: 48px;
    height: 48px;
    background: #25a8e02e;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 21px;
}

.faq-ask-card h3 {
    font-size: 22px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    margin-bottom: 12px;
    color: #ffffff;
}

.faq-ask-card p {
    font-size: 14px;
    font-weight: 400;
    line-height: 23.8px;
    color: #ffffff8c;
    margin-bottom: 29px;
    text-align: justify;
    font-family: "Poppins", sans-serif;
}

/* 
.ask-now-btn {
    display: inline-block;
    background: #25A8E0;
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    z-index: 2;
    font-family: 'Poppins', sans-serif;
}

.ask-now-btn:hover {
    background: #1991c6;
    transform: translateY(-2px);
} */

.ask-now-btn {
    display: inline-block;
    background: #25a8e0;
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    border: solid 1px transparent;
    z-index: 2;
    font-family: "Poppins", sans-serif;

    /* REQUIRED FOR EFFECT */
    overflow: hidden;
}

.ask-now-btn:hover {
    border-color: #25a8e0;
    color: #25a8e0;
}

/* BEFORE EFFECT */
.ask-now-btn::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.25);
    top: 100%;
    width: 140%;
    height: 180%;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}

/* AFTER EFFECT */
.ask-now-btn::after {
    content: "";
    position: absolute;
    left: 55%;
    transform: translateX(-50%) scaleY(1) scaleX(1.45);
    top: 180%;
    width: 160%;
    height: 190%;
    background-color: white;
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}

/* HOVER */
.ask-now-btn:hover {
    border-color: #25a8e0;
    color: #25a8e0;
    transform: translateY(-2px);
}

/* HOVER BEFORE */
.ask-now-btn:hover::before {
    top: -35%;
    background-color: white;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

/* HOVER AFTER */
.ask-now-btn:hover::after {
    top: -45%;
    background-color: white;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

/* RIGHT: ACCORDION */

.faq-right-col {
    height: 100%;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
    justify-content: space-between;
}

.faq-item {
    border: 1px solid #e7edf2;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    position: relative;
}

.faq-item:hover {
    border-color: #d1d5db;
}

.faq-item.active {
    border-color: #25a8e0;
}

.faq-item.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #25a8e0, #2b3643);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    gap: 20px;
}

.faq-number {
    font-size: 17px;
    font-weight: 400;
    color: #2b3643;
    font-family: "Poppins", sans-serif;
    transition: color 0.3s ease;
}

.faq-item.active .faq-number {
    color: #111827;
}

/* TOGGLE ICON WITH MICRO-ANIMATION */
.faq-toggle-icon {
    position: relative;
    width: 27px;
    height: 27px;
    background: #f7f9fb;
    border-radius: 7px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
    background: #f0f9ff;
}

.faq-toggle-icon .icon-minus {
    display: none;
}

.faq-item.active .faq-toggle-icon .icon-plus {
    display: none;
}

.faq-item.active .faq-toggle-icon .icon-minus {
    display: block;
}

.faq-item.active .faq-toggle-icon svg path {
    stroke: #25a8e0;
}

/* CSS GRID ACCORDION TRANSITION */
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer-inner p {
    padding: 0 24px 24px 24px;
    font-size: 15px;
    color: #2b3643;
    line-height: 24px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    text-align: justify;
    margin: 0;
}

/* =========================================
   DIRECT SUPPORT CTA
========================================= */
.direct-support-section {
    overflow: hidden;
}

.direct-support-outer {
    padding: 120px 60px;
}

.direct-support-cta {
    border-radius: 28px;
    padding: 72px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e7edf2;
    box-shadow: 0px 0px 24px #2b36431a;
    gap: 40px;
}

.second-cta-subtitle {
    font-size: 11px;
    font-weight: 600;
    color: #25a8e0;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-family: "Poppins", sans-serif;
    display: block;
    margin-bottom: 16px;
}

.second-cta-title {
    font-size: 28px;
    font-weight: 700;
    color: #2b3643;
    font-family: "Poppins", sans-serif;
    margin-bottom: 16px;
    line-height: 1.3;
}

.second-cta-desc {
    font-size: 14px;
    color: #6b7280;
    font-weight: 400;
    line-height: 24px;
    font-family: "Poppins", sans-serif;
    margin: 0;
    max-width: 565px;
    width: 100%;
}

/* .btn-join-ibc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25A8E0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-join-ibc:hover {
    background: #1991c6;
    transform: translateY(-2px);
    color: #ffffff;
} */

.btn-join-ibc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25a8e0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.5s ease;
    white-space: nowrap;

    /* NEW */
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid #25a8e0;
    box-shadow: inset 0 0 0 0 #ffffff;
}

/* HOVER FILL EFFECT */
.btn-join-ibc:hover {
    color: #25a8e0;
    box-shadow: inset 0 -100px 0 0 #ffffff;
}

.btn-join-ibc:hover svg {
    color: #25a8e0;
    transition: all 0.5s ease;
    transform: translateX(4px);
}

/* CLICK EFFECT */
.btn-join-ibc:active {
    transform: scale(0.96);
}

/* =========================================
   FRANCHISE NUMBERS SECTION
========================================= */
.franchise-numbers-section {
    overflow: hidden;
}

.franchise-numbers-section-outer {
    padding: 120px 60px;
}

.numbers-header {
    margin-bottom: 35px;
}

.numbers-tag {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    line-height: 20px;
    color: #111;
    padding-left: 8px;
    border-left: 1px solid #000000;
    margin-bottom: 36px;
    display: inline-block;
}

.numbers-header h2 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
    color: #2b3643;
    margin-bottom: 24px;
    font-family: "Poppins", sans-serif;
    max-width: 600px;
    width: 100%;
}

.numbers-header h2 span {
    color: #25a8e0;
}

.numbers-header p {
    font-size: 16px;
    line-height: 24px;
    color: #6b7280;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    max-width: 600px;
    width: 100%;
    text-align: justify;
}

.numbers-visual-wrapper {
    position: relative;
    width: 100%;
}

.numbers-main-image {
    width: 100%;
    height: 550px;
    overflow: hidden;
    border-radius: 24px;
}

.numbers-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.numbers-main-image img:hover {
    transform: scale(1.1);
    transition: all 0.5s ease;
}

.numbers-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: absolute;
    z-index: 10;
    bottom: 50px;
    padding: 0 50px;
}

.number-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.number-card:hover {
    transform: translateY(-5px);
    transition: all 0.5s ease;
}

.number-card h3 {
    font-size: 30.42px;
    font-weight: 600;
    color: #25a8e0;
    font-family: "Poppins", sans-serif;
}

.number-card h4 {
    font-size: 13px;
    font-weight: 500;
    color: #2b3643;
    font-family: "Poppins", sans-serif;
    margin-bottom: 20px;
}

.number-card p {
    font-size: 14px;
    color: #6b7280;
    font-weight: 300;
    font-family: "Poppins", sans-serif;
    line-height: 18px;
    text-align: justify;
}

@media (max-width: 1150px) {
    .numbers-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -40px;
    }
}

/* =========================================
   WHY CHOOSE FRANCHISE SECTION
========================================= */
.why-choose-franchise-section {
    overflow: hidden;
}

.why-choose-franchise-section-outer {
    padding: 120px 60px;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 35px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-header h2 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
    color: #2b3643;
    margin-bottom: 24px;
    font-family: "Poppins", sans-serif;
}

.why-choose-header p {
    font-size: 20px;
    line-height: 28px;
    color: #6b7280;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    text-align: justify;
    max-width: 790px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px;
}

.why-choose-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 33.33%;
    gap: 24px;
}

.why-choose-image-col {
    width: 33.33%;
    border-radius: 20px;
    overflow: hidden;
}

.why-choose-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-choose-image-col img:hover {
    transform: scale(1.1);
    transition: all 0.5s ease;
}

.why-card {
    border-radius: 16px;
    padding: 32px 24px;
    border: 1px solid #f3f4f6;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    height: 100%;
}

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #e8f6fd;
}

.why-card-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    font-family: "Poppins", sans-serif;
    margin-bottom: 13px;
}

.why-card-content p {
    font-size: 16px;
    color: #6b7a8d;
    line-height: 24px;
    text-align: justify;
    font-family: "Poppins", sans-serif;
    margin: 0;
}

@media (max-width: 1100px) {
    .why-choose-grid {
        flex-direction: column;
        align-items: center;
    }

    .why-choose-col {
        width: 100%;
        flex-direction: row;
    }

    .why-choose-image-col {
        width: 100%;
        height: 400px;
        order: -1;
    }

    .why-card {
        width: 50%;
    }
}

/* =========================================
   VIDEO MODAL POPUP
========================================= */

.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.85);
    /* Dark translucent overlay */
    backdrop-filter: blur(8px);
    /* Premium glassmorphism blur */
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.video-modal-container {
    position: relative;
    width: 90%;
    max-width: 860px;
    background: #000000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.55);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Elastic entrance transition */
}

.video-modal-overlay.active .video-modal-container {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #ffffff;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100000;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.video-modal-close:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Aspect ratio 16:9 box */
.video-modal-iframe-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-modal-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================
   MOBILE NAVBAR & RESPONSIVE HEADER STYLES
   ========================================== */

/* HAMBURGER TOGGLE BUTTON */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    background: #fff;
    /* white background for button */
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10000;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: #0f172a;
    /* Slate 900 */
    border-radius: 2px;
    transition:
        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease;
}

/* Transform hamburger to Close icon (X) */
.menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile-only and Desktop-only helpers */
.mobile-only-join {
    display: none !important;
}

/* Prevent scrolling when menu is open */
body.menu-lock {
    overflow: hidden;
}

/* Footer Mobile Adaptations */
.footer-outer {
    padding: 40px 60px 30px 60px;
}

.footer-left,
.footer-right {
    grid-column: span 1;
    max-width: 100%;
}

.footer-center {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footer-column ul {
    gap: 8px;
}

.subscribe-box {
    grid-template-columns: 1fr 64px;
    gap: 12px;
}

/* Members Benefit page responsive adjustments */

/* Footer Responsive Adjustments */

/* Responsive adjustments for Small Banner and Why IBC Section */
@media screen and (max-width: 1200px) {
    .faq-image-grid {
        max-width: 500px;
        margin: 0 auto 32px auto;
    }

    .achievement-image img,
    .about-image img {
        height: 400px;
    }

    .achievement-top {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .about-content h2,
    .business-content h2,
    .business-content p {
        max-width: 100%;
    }

    .about-section-wrapper {
        grid-template-columns: 1fr;
    }

    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .numbers-cards-grid {
        padding: 0 20px;
    }

    .form-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-ibc-tags {
        grid-template-columns: 1fr 1fr;
    }

    .why-ibc-grid {
        grid-template-columns: 1fr;
    }

    .business-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .highlight-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .steps-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .step-arrow {
        display: none;
    }

    .cta-wrapper {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 24px;
        height: auto;
        padding: 40px 30px;
    }
}

@media (max-width: 992px) {
    .header-outer {
        padding: 0px !important;
    }

    .business-outer,
    .about-section-outer,
    .cta-outer,
    .steps-section-outer,
    .achivement-outer,
    .highlight-section-outer,
    .testimonial-outer,
    .why-ibc-section-outer,
    .membership-form-section-outer,
    .why-ibc-section-outer,
    .faq-section-outer,
    .direct-support-outer,
    .franchise-numbers-section-outer,
    .why-choose-franchise-section-outer,
    .contact-form-section-outer,
    .insights-section-outer,
    .business-section-outer,
    .events-outer,
    .gallery-outer,
    .highlight-details-section-outer,
    .footer-outer,
    .hero-content-outer,
    .small-banner-outer,
    .small-banner-faq-ask-outer,
    .small-banner-franchise-outer,
    .small-banner-highlight-outer,
    .small-banner-resources-outer {
        padding-right: 20px;
        padding-left: 20px;
    }

    #header {
        padding-right: 20px;
        padding-left: 20px;
    }

    .section-top {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* @media (max-width: 992px) {} */

    @media (max-width: 640px) {
        .footer-bottom-wrapper {
            flex-direction: column;
            gap: 10px;
        }

        .section-title {
            font-size: 28px;
        }

        .card-title {
            font-size: 28px;
        }
    }

    @media (max-width: 500px) {
        .footer-bottom-links-wrapper {
            gap: 10px;
        }

        .footer-bottom-wrapper {
            flex-direction: column;
            gap: 10px;
        }

        .section-title {
            font-size: 20px;
        }

        .card-title {
            font-size: 20px;
        }
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item img {
        height: 250px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 16px;
    }

    .item-portrait-left,
    .item-portrait-right,
    .item-wide-mid,
    .item-landscape-mid-left,
    .item-landscape-mid-right,
    .item-bottom-1,
    .item-bottom-2,
    .item-bottom-3,
    .item-bottom-4 {
        grid-column: auto;
        grid-row: auto;
    }

    .verification-box {
        grid-template-columns: 1fr;
    }

    .highlight-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    #header {
        top: 0 !important;
        background-color: #ffffff;
    }

    .header-outer {
        border-radius: 0 !important;
        border-bottom: 1px solid #e7edf2;
    }

    .desktop-only-join {
        display: none !important;
    }

    .join-btn {
        color: white !important;
    }

    .join-btn:hover {
        color: #25a8e0 !important;
        transform: translateY(0px) !important;
    }

    .mobile-only-join {
        display: inline-block !important;
        width: 100%;
        padding: 8px 24px !important;
        text-align: center;
        flex-shrink: 0;
    }

    .menu-toggle {
        display: flex;
        z-index: 10001;
    }

    .nav-links {
        position: fixed;
        top: 0px;
        right: -100%;
        width: 100%;
        /* max-width: 85%; */
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px 20px 20px;
        gap: 20px;
        background: #fff;
        border-radius: 0;
        height: 100%;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 16px;
        width: 100%;
        display: block;
        transition:
            color 0.2s ease,
            padding-left 0.2s ease;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: #25a8e0;
        border-bottom-color: #25a8e0;
        font-weight: 500;
    }

    .hero-content-wrapper {
        width: 100%;
        max-width: 680px;
    }

    .hero-content-wrapper h1 {
        font-size: 36px;
        line-height: 46px;
        margin-bottom: 16px;
    }

    .hero-content-wrapper p {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 20px;
    }

    .cta-wrapper {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 24px;
        height: auto;
        padding: 40px 30px;
    }

    .steps-heading {
        margin-bottom: 40px;
        text-align: center;
    }

    .steps-heading p {
        max-width: 100%;
    }

    .steps-sub-title {
        margin-bottom: 20px;
    }

    /* .steps-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    } */

    .step-arrow {
        display: none !important;
    }

    .achievement-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .achievement-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .achievement-stat-box {
        padding: 24px 16px;
        text-align: center;
    }

    .highlight-section-outer {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .footer-outer {
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .footer-left p {
        font-size: 14px;
        line-height: 22px;
    }

    .footer-column h3,
    .footer-right h3 {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 12px;
    }
}

@media (max-width: 768px) {
    .small-banner-content h1,
    .small-banner-faq-ask-content h1,
    .members-benefit-small-banner-content h1,
    .small-banner-franchise-content h1 {
        font-size: 35px;
        line-height: 45px;
    }

    .business-outer,
    .about-section-outer,
    .cta-outer,
    .steps-section-outer,
    .achivement-outer,
    .highlight-section-outer,
    .testimonial-outer,
    .why-ibc-section-outer,
    .membership-form-section-outer,
    .why-ibc-section-outer,
    .faq-section-outer,
    .direct-support-outer,
    .franchise-numbers-section-outer,
    .why-choose-franchise-section-outer,
    .contact-form-section-outer,
    .insights-section-outer,
    .business-section-outer,
    .events-outer,
    .gallery-outer,
    .highlight-details-section-outer {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .direct-support-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 32px;
    }

    .footer-outer {
        padding-top: 30px;
        padding-bottom: 20px;
    }

    .footer-left,
    .footer-right,
    .footer-center {
        grid-column: span 1;
        max-width: 100%;
    }

    .footer-column ul {
        gap: 6px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .why-ibc-image img {
        width: 100%;
        height: auto;
    }

    .section-title {
        font-size: 32px;
    }

    .card-title {
        font-size: 28px;
    }

    .highlight-details-gallery {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gallery-item-detail {
        height: 200px;
    }

    .highlight-details-gallery-item {
        height: 200px;
    }

    .item-fullwidth {
        grid-column: auto;
        height: 200px;
    }

    /* .faq-header {
        margin-bottom: 40px;
    } */

    .faq-image-grid {
        gap: 12px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-answer-inner p {
        padding: 0 20px 20px 20px;
    }

    .direct-support-cta {
        padding: 32px 24px;
    }

    .media-insights-heading-desc-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .why-choose-col {
        flex-direction: column;
    }

    .why-card {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .steps-wrapper {
        grid-template-columns: 1fr;
    }
    .business-content h2,
    .steps-heading h2,
    .achievement-content h2,
    .section-heading h2,
    .why-ibc-content h2,
    .membership-heading h2,
    .faq-header h2,
    .numbers-header h2,
    .why-choose-header h2,
    .contact-form-heading h2,
    .left-highlight-section-heading h2,
    .insights-heading h2,
    .media-insights-section-title,
    .events-section-title,
    .gallery-section-title,
    .highlight-details-title,
    .highlight-details-highlights-list h2,
    .cta-content h2 {
        font-size: 28px;
        line-height: 34px;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 150px;
    }

    .footer-center {
        grid-template-columns: 1fr;
    }

    .highlight-grid {
        grid-template-columns: 1fr;
    }

    .achievement-stats-grid {
        grid-template-columns: 1fr;
    }

    .numbers-cards-grid {
        grid-template-columns: 1fr;
    }

    .numbers-main-image {
        height: 300px;
    }

    .numbers-cards-grid {
        grid-template-columns: 1fr;
        position: unset;
        padding: 0;
    }

    .why-ibc-tags {
        grid-template-columns: 1fr;
    }

    .membership-form-wrapper,
    .contact-form-wrapper {
        padding: 40px 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    /* Hero Mobile Adaptations */
    .hero-content-wrapper h1 {
        font-size: 28px;
        line-height: 36px;
    }

    .hero-content-wrapper p {
        font-size: 14px;
        line-height: 20px;
    }

    .hero-content-outer {
        height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stat-card {
        height: 120px;
        padding: 0px 16px;
    }

    .verification-note {
        flex-direction: column;
        height: fit-content;
        align-items: center;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .verification-note p {
        text-align: center;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 500px) {
    .insights-main-content {
        padding: 20px;
    }
    .hero-content-outer {
        min-height: 500px;
    }

    .hero-content-wrapper h1 {
        font-size: 24px;
        line-height: 32px;
    }

    .hero-content-wrapper p {
        font-size: 13px;
        line-height: 18px;
    }

    .hero-tag {
        font-size: 13px;
        padding: 8px;
    }

    .hero-animated-button {
        font-size: 13px;
        letter-spacing: 1.5px;
    }

    .business-content h2,
    .steps-heading h2,
    .achievement-content h2,
    .section-heading h2,
    .why-ibc-content h2,
    .membership-heading h2,
    .faq-header h2,
    .numbers-header h2,
    .why-choose-header h2,
    .contact-form-heading h2,
    .left-highlight-section-heading h2,
    .insights-heading h2,
    .media-insights-section-title,
    .events-section-title,
    .gallery-section-title,
    .highlight-details-title,
    .highlight-details-highlights-list h2,
    .cta-content h2 {
        font-size: 21px;
        line-height: 30px;
    }

    .business-content p,
    .about-content p,
    .cta-content p,
    .achievement-content p,
    .why-ibc-content p,
    .numbers-header p,
    .why-card-content p,
    .highlight-details-body p {
        font-size: 14px;
        line-height: 22px;
    }

    .steps-heading p,
    .section-heading p,
    .testimonial-left h2,
    .membership-heading p,
    .contact-form-heading p,
    .why-choose-header p,
    .faq-subtitle,
    .left-highlight-section-heading p,
    .insights-heading p,
    .media-insights-section-description,
    .events-section-description,
    .gallery-section-description,
    .highlight-details-subtitle {
        font-size: 16px;
        line-height: 24px;
    }

    .step-card h3 {
        font-size: 20px;
    }

    .title-info h3 {
        font-size: 18px;
        line-height: 23px;
    }

    .card-content h3 {
        font-size: 16px;
        line-height: 24px;
    }

    .achievement-stat-box p {
        font-size: 16px;
    }

    .achievement-image img,
    .about-image img,
    .why-choose-image-col,
    .highlight-details-main-image {
        height: 300px;
    }

    .highlight-details-main-image {
        margin-bottom: 20px;
    }

    .small-banner-content h1,
    .members-benefit-small-banner-content h1,
    .small-banner-faq-ask-content h1,
    .small-banner-franchise-content h1 {
        font-size: 20px;
        line-height: 30px;
    }

    .faq-ask-card {
        padding: 20px;
    }

    .faq-answer-inner p,
    .second-cta-desc {
        font-size: 13px;
        line-height: 20px;
    }

    .faq-number,
    .insights-main-content p {
        font-size: 14px;
    }

    .second-cta-title {
        font-size: 21px;
    }

    .submit-btn-wrapper button {
        padding: 18px 34px;
    }

    .insights-main-title h3 {
        font-size: 19px;
        line-height: 27px;
    }

    .insights-right-header h3 {
        font-size: 22px;
        line-height: 30px;
    }
    .list-meta svg {
        display: none;
    }
    .list-meta {
        flex-direction: column;
        align-items: start;
    }
    .list-card-info h4 {
        -webkit-line-clamp: 1;
    }

    .list-card-img {
        width: 100px;
    }

    .card-title {
        font-size: 18px;
        line-height: 24px;
    }

    .date-box h3 {
        font-size: 28px;
    }

    .event-title {
        font-size: 14px;
        line-height: 20px;
    }

    .event-location,
    .highlight-details-meta-date,
    .highlight-details-meta-location {
        font-size: 13px;
    }

    .highlight-details-highlights-list li {
        font-size: 15px;
        line-height: 22px;
    }
}

@media (max-width: 480px) {
    .why-ibc-image img {
        width: 100%;
        height: auto;
    }

    .membership-form-section .input-group {
        width: 100%;
    }

    .membership-form-section .submit-btn-wrapper button {
        font-size: 14px;
        padding: 12px 16px;
    }
}

/* .swiper-slide {
    width: 100% !important;
} */

/* Custom Sidebar Scroll and Padding Bottom overrides */
.app-sidebar {
    padding-bottom: 76px !important;
}

.main-sidemenu {
    height: 100% !important;
    overflow-y: scroll !important;
    overflow-x: auto !important;
}

.sidebar-mini.sidenav-toggled .app-sidebar {
    padding-bottom: 0 !important;
}

.sidebar-mini.sidenav-toggled .main-sidemenu {
    overflow: hidden !important;
}

.sidebar-mini.sidenav-toggled.sidenav-toggled-open .app-sidebar {
    padding-bottom: 76px !important;
}

.sidebar-mini.sidenav-toggled.sidenav-toggled-open .main-sidemenu {
    overflow-y: scroll !important;
    overflow-x: auto !important;
}

/* Align sub-menu items to start instead of center */
.slide-menu {
    justify-content: start !important;
}
.slide-menu .side-menu__item,
.slide-menu .slide-item {
    justify-content: start !important;
}

/* Keep footer always fixed at the bottom */
.app footer.footer {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 99 !important;
}

.app-content {
    padding-bottom: 70px !important;
}
