/* =========================
   CONTAINER 5
========================= */

.container_5 {
    width: 100%;
    min-height: 100vh;

    padding: 100px 60px;

    background:
        linear-gradient(to bottom,
            #020817,
            #07111f,
            #000000);

    position: relative;

    overflow: hidden;
}


/* =========================
   BRANCH RUNNING STRIP
========================= */

.branch-strip {

    width: 100%;
    overflow: hidden;
    background: #07111f;
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);

}

.branch-track {

    display: flex;
    width: max-content;
    gap: 60px;

    animation: scrollLeft 25s linear infinite;
}

.branch-track span {

    color: white;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;

}

/* ANIMATION */

@keyframes scrollLeft {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =========================
   NAVBAR
========================= */

.navbar {
    width: 100%;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 40px;

    position: fixed;
    top: 0;
    left: 0;

    z-index: 1000;

    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(255,255,255,0.08);

    box-sizing: border-box;
}

/* LEFT */
.nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* RIGHT */
.nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* DESKTOP NAV */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 50%;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

/* SEARCH */
.search-box {
    width: 280px;
    height: 46px;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 0 14px;

    border-radius: 14px;

    background: rgba(255,255,255,0.08);
}

.search-box input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;

    color: white;
}

/* LOGIN */
.login-btn {
    padding: 12px 22px;

    border-radius: 12px;

    background: #00d09c;

    color: black;
    font-weight: 600;
    text-decoration: none;
}

/* MOBILE TOGGLE */
.mobile-toggle {
    display: none;

    width: 44px;
    height: 44px;

    border: none;
    background: transparent;

    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;

    background: white;

    border-radius: 10px;
}

/* =========================
   MOBILE DRAWER
========================= */

.mobile-drawer {
    position: fixed;

    top: 72px;
    right: -100%;

    width: 280px;
    height: calc(100vh - 72px);

    background: #0c0c0c;

    z-index: 999;

    transition: 0.4s ease;

    padding: 30px;

    box-sizing: border-box;
}

.mobile-drawer.active {
    right: 0;
}

.drawer-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.drawer-content a {
    color: white;
    text-decoration: none;

    font-size: 18px;
    font-weight: 600;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1100px) {

    .search-box {
        width: 180px;
    }

    .desktop-nav {
        gap: 18px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .navbar {
        padding: 0 18px;
        height: 64px;
    }

    .desktop-nav {
        display: none;
    }

    .search-box {
        display: none;
    }

    .login-btn {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .logo-text {
        font-size: 17px;
    }

    .logo-img {
        width: 36px;
        height: 36px;
    }

    .mobile-drawer {
        top: 64px;
        height: calc(100vh - 64px);
    }
}

/* MAIN BOX */

.wealthBox {
    width: 100%;
    max-width: 1400px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 70px;

    padding: 60px;

    border-radius: 40px;

    background:
        linear-gradient(145deg,
            rgba(10, 20, 40, 0.95),
            rgba(0, 20, 50, 0.7));

    border: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(18px);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.35);
}

/* LEFT CONTENT */

.wealthContent {
    flex: 1;

    display: flex;
    flex-direction: column;

    justify-content: center;
}

/* BADGE */

.wealthBadge {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    width: fit-content;

    padding: 12px 20px;

    border-radius: 999px;

    background: rgba(0, 208, 156, 0.08);

    border: 1px solid rgba(0, 208, 156, 0.25);

    margin-bottom: 28px;
}

.wealthBadge span {
    color: #00d09c;

    font-size: 15px;
    font-weight: 600;

    font-family: 'Inter', sans-serif;
}

/* TITLE */

.wealthContent h1 {
    font-size: 64px;
    line-height: 1.1;

    font-weight: 800;

    color: white;

    margin-bottom: 26px;

    font-family: 'Poppins', sans-serif;
}

/* DESCRIPTION */

.wealthDesc {
    color: #cbd5e1;

    font-size: 18px;
    line-height: 1.9;

    max-width: 700px;

    margin-bottom: 40px;

    font-family: 'Inter', sans-serif;
}

/* FEATURES */

.wealthFeatures {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;

    margin-bottom: 40px;
}

.wealthFeature {
    display: flex;
    align-items: flex-start;

    gap: 18px;

    padding: 20px;

    border-radius: 24px;

    background: rgba(255, 255, 255, 0.03);

    border: 1px solid rgba(255, 255, 255, 0.05);

    transition: 0.3s ease;
}

.wealthFeature:hover {
    transform: translateY(-5px);

    background: rgba(255, 255, 255, 0.05);
}

.featureIcon {
    width: 52px;
    height: 52px;

    border-radius: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;

    background: rgba(0, 208, 156, 0.12);

    flex-shrink: 0;
}

.wealthFeature h3 {
    color: white;

    font-size: 18px;

    margin-bottom: 8px;

    font-family: 'Poppins', sans-serif;
}

.wealthFeature p {
    color: #cbd5e1;

    font-size: 14px;
    line-height: 1.7;

    font-family: 'Inter', sans-serif;
}

/* BUTTONS */

.wealthButtons {
    display: flex;
    align-items: center;

    gap: 18px;

    flex-wrap: wrap;
}

.startBtn,
.learnBtn {
    padding: 16px 34px;

    border-radius: 16px;

    text-decoration: none;

    font-size: 16px;
    font-weight: 600;

    transition: 0.3s ease;

    font-family: 'Inter', sans-serif;
}

.startBtn {
    background: #00d09c;

    color: #001b17;
}

.startBtn:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(0, 208, 156, 0.35);
}

.learnBtn {
    border: 1px solid rgba(255, 255, 255, 0.12);

    color: white;

    background: rgba(255, 255, 255, 0.03);
}

.learnBtn:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* IMAGE SIDE */

.wealthImage {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;
}

.wealthImage a {
    width: 100%;
}

.wealthImage img {
    width: 100%;
    max-width: 580px;

    height: auto;

    object-fit: contain;

    display: block;

    filter:
        drop-shadow(0 25px 40px rgba(0, 0, 0, 0.4));

    transition: 0.4s ease;
}

.wealthImage img:hover {
    transform: translateY(-8px) scale(1.02);
}

/* SLIDER */

.wealthSlider {
    width: 100%;

    overflow: hidden;

    margin-top: 70px;

    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);

    padding: 20px 0;
}

.wealthTrack {
    display: flex;
    align-items: center;

    gap: 60px;

    width: max-content;

    animation: scrollTags 22s linear infinite;
}

.wealthTrack span {
    color: white;

    font-size: 18px;
    font-weight: 600;

    white-space: nowrap;

    opacity: 0.8;

    font-family: 'Poppins', sans-serif;
}

@keyframes scrollTags {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {

    .container_5 {
        padding: 80px 30px;
    }

    .wealthBox {
        flex-direction: column;

        text-align: center;

        padding: 50px 35px;
    }

    .wealthContent {
        align-items: center;
    }

    .wealthContent h1 {
        font-size: 50px;
    }

    .wealthDesc {
        max-width: 100%;
    }

    .wealthFeatures {
        width: 100%;
    }

    .wealthButtons {
        justify-content: center;
    }

    .wealthImage img {
        max-width: 500px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .container_5 {
        padding: 70px 18px;
    }

    .wealthBox {
        padding: 35px 22px;

        border-radius: 28px;

        gap: 40px;
    }

    .wealthContent h1 {
        font-size: 36px;

        line-height: 1.2;
    }

    .wealthDesc {
        font-size: 15px;

        line-height: 1.8;
    }

    .wealthFeatures {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .wealthFeature {
        padding: 18px;
    }

    .featureIcon {
        width: 44px;
        height: 44px;

        font-size: 20px;
    }

    .wealthFeature h3 {
        font-size: 16px;
    }

    .wealthFeature p {
        font-size: 13px;
    }

    .startBtn,
    .learnBtn {
        width: 100%;

        text-align: center;
    }

    .wealthButtons {
        width: 100%;

        flex-direction: column;
    }

    .wealthTrack {
        gap: 35px;
    }

    .wealthTrack span {
        font-size: 15px;
    }

    .wealthImage img {
        max-width: 100%;
    }
}

/* =========================
   EXTRA SMALL DEVICES
========================= */

@media (max-width: 480px) {

    .wealthContent h1 {
        font-size: 30px;
    }

    .wealthBadge {
        padding: 10px 16px;
    }

    .wealthBadge span {
        font-size: 13px;
    }

    .wealthDesc {
        font-size: 14px;
    }

    .wealthFeature {
        gap: 14px;
    }
}

.container7 {
    width: 100%;
    height: 520px;

    background: #f6f2ea;

    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    align-items: center;
}

/* =========================
   BACKGROUND
========================= */

.bgAward {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: -1;
}

/* =========================
   HEADING
========================= */

.header {
    margin-top: 58px;
}

.header span {
    display: flex;
    align-items: center;

    font-size: 42px;
    font-weight: 600;

    color: #323232;

    font-family: sans-serif;
}

.trophy {
    width: 58px;
    margin-right: 14px;
}

/* =========================
   ARROWS
========================= */

#leftBtn,
#rightBtn {
    position: absolute;
    top: 78px;

    width: 52px;
    height: 52px;

    border-radius: 50%;

    background: transparent;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition: 0.3s ease;

    z-index: 100;
}

/* LEFT */

#leftBtn {
    right: 120px;

    border: 1px solid #e7c98b;
}

#leftBtn span {
    color: #e7c98b;
    font-size: 28px;
    font-weight: 600;

    margin-top: -2px;
}

/* RIGHT */

#rightBtn {
    right: 50px;

    border: 1px solid #eb9b06;
}

#rightBtn span {
    color: #eb9b06;
    font-size: 28px;
    font-weight: 600;

    margin-top: -2px;
}

/* HOVER */

#leftBtn:hover,
#rightBtn:hover {
    background: #eb9b06;
}

#leftBtn:hover span,
#rightBtn:hover span {
    color: #fff;
}



.acheivments {
    width: 88%;
    overflow: hidden;

    margin-top: 75px;
}



/* SLIDER WRAPPER */

.sliderWrapper {
    width: 100%;
    overflow: hidden;

    position: relative;
}

/* SLIDER */

.Slider {
    display: flex;
    align-items: flex-start;

    gap: 65px;

    transition: transform 0.5s ease;

    will-change: transform;
}

/* CARD */

.acvmnt {
    min-width: 320px;

    flex-shrink: 0;

    text-align: center;
}

/* IMAGE */

.acvmnt img {
    width: 320px;
    height: 120px;

    object-fit: contain;

    display: block;
}



.txt {
    margin-top: 35px;
}

.txt span {
    font-size: 19px;
    line-height: 32px;

    color: #3b3b3b;

    font-weight: 500;

    font-family: sans-serif;
}

/* MOBILE */

@media(max-width:768px) {

    .container_7 {
        padding: 80px 0;
    }

    .awards-header {
        flex-direction: column;
        gap: 25px;
    }

    .awards-header h2 {
        font-size: 34px;
        text-align: center;
    }

    .awards-header h2 img {
        width: 50px;
    }

    .award-card {
        min-width: 240px;
        height: 280px;
    }

    .award-card img {
        width: 100px;
        height: 100px;
    }

    .award-card p {
        font-size: 15px;
    }
}

/* MOBILE */

@media(max-width:768px) {

    .container_7 {
        padding: 80px 20px;
    }

    .awards-header {
        flex-direction: column;
        gap: 30px;
    }

    .awards-title h2 {
        font-size: 34px;
    }

    .award-card {
        min-width: 240px;
        height: 280px;
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 74px;

    padding: 0 38px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #07152b;

    border-bottom: 1px solid rgba(255, 255, 255, .06);

    z-index: 9999;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-size: 12px;
    font-weight: 500;
}

.logo-img {
    width: 60%;
    /* Logo size inside circle */
    height: 60%;
    object-fit: contain;
    /* Maintain aspect ratio */
}

.logo span {
    color: white;
    font-size: 28px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    line-height: 1;
    /* Vertically align text with circle */
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .logo-circle {
        width: 40px;
        height: 40px;
    }

    .logo-img {
        width: 60%;
        height: 60%;
    }

    .logo span {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .logo-circle {
        width: 35px;
        height: 35px;
    }

    .logo-img {
        width: 60%;
        height: 60%;
    }

    .logo span {
        font-size: 18px;
    }
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-item {
    position: relative;
}

.nav-link {
    height: 74px;

    display: flex;
    align-items: center;
    gap: 6px;

    background: none;
    border: none;

    color: #c9d4ff;

    font-size: 20px;
    font-weight: 500;

    cursor: pointer;
}

.arrow {
    width: 16px;
    height: 16px;

    stroke: #c9d4ff;
    stroke-width: 2;
    fill: none;
}

.search-box {
    width: 360px;
    height: 48px;

    border-radius: 14px;

    background: #10233f;

    display: flex;
    align-items: center;

    padding: 0 18px;
}

.search-box svg {
    width: 18px;
    height: 18px;

    stroke: #7d8fb3;
    stroke-width: 2;
    fill: none;
}

.search-box input {
    width: 100%;
    height: 100%;

    margin-left: 12px;

    border: none;
    outline: none;

    background: none;

    color: white;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.login-btn {
    padding: 12px 22px;

    border-radius: 12px;

    background: #00b386;

    color: white;

    font-weight: 600;
}

.mobile-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: none;
    background: none;

    flex-direction: column;
    justify-content: center;
    gap: 5px;

    cursor: pointer;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;

    background: white;
}

/* =========================
   MEGA MENU
========================= */

.mega-menu {
    position: absolute;

    top: 74px;
    left: 0;

    width: 780px;

    background: white;

    border-radius: 24px;

    padding: 34px;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: .25s;

    box-shadow:
        0 40px 80px rgba(0, 0, 0, .18);
}

.has-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.menu-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;

    text-decoration: none;

    padding: 10px;

    border-radius: 18px;

    transition: .25s;
}

.menu-card:hover {
    background: #f5f8ff;
}

.menu-icon {
    min-width: 52px;
    height: 52px;

    border-radius: 16px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-icon svg {
    width: 24px;
    height: 24px;

    fill: white;
}

.menu-card h4 {
    color: #0b1426;
    font-size: 20px;
    margin-bottom: 6px;
}

.menu-card p {
    color: #7a849d;
    font-size: 14px;
    line-height: 1.5;
}

/* =========================
   MARKETS
========================= */

.markets-menu {
    width: 900px;
}

.market-tabs {
    display: flex;
    gap: 14px;
    margin-bottom: 28px;
}

.market-tab {
    height: 48px;
    padding: 0 24px;

    border-radius: 12px;

    border: 1px solid #ddd;

    background: white;

    font-weight: 600;
}

.market-tab.active {
    background: #ff9800;
    color: white;
    border: none;
}

.indices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.index-card {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px 14px;

    border-radius: 14px;

    background: #f7faff;

    text-decoration: none;

    transition: .25s ease;

    border: 1px solid rgba(0, 0, 0, .04);
}

.index-card:hover {
    background: #eef6ff;

    transform: translateY(-2px);
}

.index-card img {
    width: 22px;
    height: 22px;

    object-fit: contain;
}

.index-card span {
    font-size: 15px;
    font-weight: 600;

    color: #1d2433;
}

/* =========================
   MOBILE
========================= */

.mobile-drawer {
    position: fixed;

    top: 74px;
    right: -100%;

    width: 300px;
    height: 100vh;

    background: #07152b;

    transition: .35s;

    z-index: 9998;
}

.mobile-drawer.active {
    right: 0;
}

.drawer-content {
    padding: 40px 30px;

    display: flex;
    flex-direction: column;
    gap: 28px;
}

.drawer-content a {
    color: white;
    font-size: 20px;
}

@media(max-width:1100px) {

    .desktop-nav {
        display: none;
    }

    .search-box {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .logo span {
        font-size: 22px;
    }

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

:root {
    --bg: #050816;
    --card: #0d1328;
    --white: #ffffff;
    --text: #d9e1ff;
    --muted: #8b95b7;
    --green: #00d09c;
    --green-dark: #00b386;
    --border: rgba(255, 255, 255, 0.08);
    --glass: rgba(255, 255, 255, 0.06);
}

body {
    padding-top: 72px;
    overflow-x: hidden;
    background: #000;
    color: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

/* =========================
   NAVBAR
========================= */

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 78px;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 1000;

    background: rgba(5, 8, 22, 0.72);
    backdrop-filter: blur(16px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* NAV CONTAINER */

nav ul {
    width: 100%;
    max-width: 1450px;

    height: 100%;

    padding: 0 55px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}



nav li {
    list-style: none;
}



.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    /* space between logo and text */
}

/* Logo circle wrapper */
.gf-logo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: white; */
    /* white circle */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    /* prevents shrinking on small screens */
}


.logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}


.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: white;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
    white-space: nowrap;
    /* prevents text wrap */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .gf-logo {
        width: 44px;
        height: 44px;
    }

    .logo-img {
        max-width: 90%;
        max-height: 90%;
    }

    .logo-text {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .logo {
        gap: 8px;
    }

    .gf-logo {
        width: 36px;
        height: 36px;
    }

    .logo-img {
        max-width: 85%;
        max-height: 85%;
    }

    .logo-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .logo {
        gap: 6px;
    }

    .gf-logo {
        width: 28px;
        height: 28px;
    }

    .logo-img {
        max-width: 80%;
        max-height: 80%;
    }

    .logo-text {
        font-size: 14px;
    }
}

.navLinks {
    display: flex;
    align-items: center;
    gap: 42px;
}

.navLinks span {
    position: relative;
}

.nav-e {
    position: relative;

    text-decoration: none;

    color: #c9d4ff;

    font-size: 14px;
    font-weight: 500;

    transition: 0.3s ease;

    font-family: 'Inter', sans-serif;
}

.nav-e:hover {
    color: white;
}

/* HOVER UNDERLINE */

.nav-e::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0%;
    height: 2px;

    background: #00d09c;

    border-radius: 20px;

    transition: 0.3s ease;
}

.nav-e:hover::after {
    width: 100%;
}


.Login {
    text-decoration: none;

    padding: 12px 22px;

    border-radius: 14px;

    background:
        linear-gradient(135deg,
            #00cba6,
            #00cba6);

    color: white;

    font-size: 13px;
    font-weight: 600;

    border: none;

    transition: 0.35s ease;

    box-shadow:
        0 10px 30px rgba(0, 208, 156, 0.22);
}

.Login:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 16px 35px rgba(0, 208, 156, 0.35);
}

/* =========================
   HERO CARD SECTION
========================= */

.container_2 {
    width: 100%;
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 120px 40px 60px;

    background: #020817;
}

/* MAIN CARD */

.both {
    width: 100%;
    max-width: 1500px;
    min-height: 650px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 40px;

    padding: 60px 70px;

    border-radius: 40px;

    position: relative;
    overflow: hidden;

    background: linear-gradient(135deg,
            rgba(0, 208, 156, 0.45),
            rgba(83, 103, 255, 0.18));

    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 0 45px rgba(0, 208, 156, 0.12),
        0 0 80px rgba(83, 103, 255, 0.08);
}

/* OUTER GLOW */

.both::before {
    content: "";

    position: absolute;
    inset: -2px;

    border-radius: 40px;

    padding: 2px;

    background: linear-gradient(135deg,
            rgba(0, 208, 156, 0.45),
            rgba(83, 103, 255, 0.18));

    z-index: -1;
}

/* LEFT SIDE */

.left {
    flex: 1;

    display: flex;
    align-items: center;
}

/* TEXT */

#typing-text {
    max-width: 650px;

    color: white;

    font-size: 64px;
    font-weight: 800;
    line-height: 1.15;

    font-family: 'Poppins', sans-serif;

    text-shadow:
        0 0 12px rgba(191, 0, 255, 0.7);

    letter-spacing: -1px;
}

/* RIGHT SIDE */

.right {
    flex: 1;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* IMAGE */

.Crypto-Transparent {
    width: 100%;
    max-width: 650px;

    object-fit: contain;

    filter:
        drop-shadow(0 0 30px rgba(0, 255, 255, 0.25));
}

/* SHINE EFFECT */

.shine {
    position: absolute;

    top: 0;
    left: -120%;

    width: 50%;
    height: 100%;

    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.18),
            transparent);

    transform: skewX(-20deg);
}

.both:hover .shine {
    animation: shineMove 1.2s linear;
}

@keyframes shineMove {
    100% {
        left: 150%;
    }
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px) {

    #typing-text {
        font-size: 48px;
    }

    .both {
        padding: 50px;
    }
}

@media(max-width:900px) {

    .both {
        flex-direction: column;
        text-align: center;

        min-height: auto;

        padding: 60px 30px;
    }

    #typing-text {
        font-size: 38px;
        max-width: 100%;
    }

    .Crypto-Transparent {
        max-width: 450px;
    }
}

@media(max-width:600px) {

    #typing-text {
        font-size: 28px;
        line-height: 1.3;
    }

    .both {
        border-radius: 25px;
        padding: 40px 20px;
    }

    .Crypto-Transparent {
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 64px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:900px) {

    nav ul {
        padding: 0 20px;
    }

    .navLinks {
        display: none;
    }

    .logo span {
        font-size: 18px;
    }

    .logo::before {
        width: 28px;
        height: 28px;
    }

    .Login {
        padding: 10px 16px;
        font-size: 12px;
    }
}

.container_1 {
    position: relative;

    min-height: 100vh;
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    overflow: hidden;

    padding: 120px 20px 60px;
}

/* EARTH BACKGROUND */
.bg-image1 {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.bg-image1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;

    filter:
        brightness(0.45) saturate(1.2);

    transform: scale(1.05);
}

/* DARK OVERLAY */
.container_1::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;

    background:
        linear-gradient(to bottom,
            rgba(3, 6, 18, 0.55),
            rgba(5, 8, 22, 0.72),
            rgba(0, 0, 0, 0.96));
}

/* CYAN GLOW */
.container_1::after {
    content: '';
    position: absolute;

    width: 700px;
    height: 700px;

    border-radius: 50%;

    background: radial-gradient(circle,
            rgba(0, 208, 156, 0.16),
            transparent 70%);

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    z-index: -1;
}

/* =========================
   HEADING
========================= */
.heading {
    max-width: 1200px;
}

.heading p {
    font-size: 90px;
    line-height: 1;
    font-weight: 800;

    color: white;

    letter-spacing: -3px;

    text-shadow:
        0 0 25px rgba(0, 208, 156, 0.3);

    animation: fadeUp 1s ease;
}

.mobile-info {
    margin-top: 25px;

    font-size: 28px;
    font-weight: 500;

    color: #d7e7ff;

    animation: fadeUp 1.4s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   ECOSYSTEM BUTTON
========================= */
.ecosystem {
    margin-top: 40px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 20px;
}

.ecosystem p {
    color: white;
    font-size: 30px;
    font-weight: 700;
}

.ecoBtn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ecoBtn a {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 230px;
    height: 68px;

    border-radius: 18px;

    background: linear-gradient(135deg,
            #00d09c,
            #009dff);

    color: white;
    text-decoration: none;

    font-size: 22px;
    font-weight: 700;

    box-shadow:
        0 10px 40px rgba(0, 208, 156, 0.35);

    transition: .35s;
}

.ecoBtn a:hover {
    transform:
        translateY(-5px) scale(1.03);

    box-shadow:
        0 15px 60px rgba(0, 208, 156, 0.45);
}

/* =========================
   BUTTONS
========================= */
button {
    padding: 12px 24px;

    border: none;
    border-radius: 12px;

    cursor: pointer;

    font-size: 16px;
    font-weight: 600;

    transition: .3s;
}

#connectButton {
    background: linear-gradient(to right,
            #7a00ff,
            #008cff);

    color: white;
}

#connectButton:hover {
    transform: scale(1.05);
}

#sendButton {
    background: green;
    color: white;
    display: none;
}

/* =========================
   SECTION COMMON
========================= */
.container_3,
.container_4,
.container_5,
.container_6,
.container_7 {
    position: relative;

    width: 100%;
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 100px 20px;

    overflow: hidden;

    background:
        linear-gradient(to bottom,
            #02040f,
            #07111f,
            #000000);
}

/* =========================
   GROWW 3D ARC SECTION
========================= */

.container_3 {
    width: 100%;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    background: radial-gradient(circle at center, #071a33 0%, #050816 70%);
    overflow: hidden;
}

/* STAGE */
.stage {
    width: 100%;
    height: 500px;

    display: flex;
    justify-content: center;
    align-items: center;

    perspective: 1600px;
}

/* RING (ARC LAYOUT BASE) */
.ring {
    position: relative;

    width: 1000px;
    height: 500px;

    transform-style: preserve-3d;
}

/* CARD BASE */
.card {
    position: absolute;

    width: 210px;
    height: 320px;

    left: 50%;
    top: 50%;

    transform-origin: center;

    border-radius: 22px;

    overflow: hidden;

    background: #0d1328;

    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.55),
        0 0 25px rgba(0, 208, 156, 0.08);

    transition: 0.6s cubic-bezier(0.25, 1, 0.3, 1);

    /* DEFAULT ARC FEEL */
    filter: brightness(0.75) blur(0.2px);
}

/* IMAGE */
.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
   ARC POSITIONING (CORE MAGIC)
========================= */

.card:nth-child(1) {
    transform: translate(-50%, -50%) rotate(-35deg) translateY(60px) translateX(-220px) scale(0.78);
}

.card:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-22deg) translateY(30px) translateX(-140px) scale(0.85);
}

.card:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-10deg) translateY(10px) translateX(-70px) scale(0.92);
}

.card:nth-child(4) {
    transform: translate(-50%, -50%) rotate(0deg) translateY(0px) translateX(0px) scale(1.05);

    /* CENTER FOCUS */
    filter: brightness(1.1);
    box-shadow:
        0 40px 90px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(0, 208, 156, 0.25);
}

.card:nth-child(5) {
    transform: translate(-50%, -50%) rotate(10deg) translateY(10px) translateX(70px) scale(0.92);
}

.card:nth-child(6) {
    transform: translate(-50%, -50%) rotate(22deg) translateY(30px) translateX(140px) scale(0.85);
}

.card:nth-child(7) {
    transform: translate(-50%, -50%) rotate(35deg) translateY(60px) translateX(220px) scale(0.78);
}

/* =========================
   HOVER EFFECT (GROWW STYLE POP)
========================= */

.card:hover {
    transform: translate(-50%, -50%) scale(1.2) rotate(0deg);
    z-index: 10;

    filter: brightness(1.2);

    box-shadow:
        0 50px 120px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(0, 208, 156, 0.35);
}

/* =========================
   EDGE FADE (DEPTH FEEL)
========================= */

.stage {
    position: relative;
    overflow: visible;
    /* allow pseudo-elements to show */
}

.stage::before,
.stage::after {
    content: "";
    position: absolute;
    top: 0;
    width: 220px;
    height: 100%;
    z-index: 5;
    pointer-events: none;

    filter: blur(24px);
    opacity: 0.65;
}

.stage::before {
    left: 0;
    background: linear-gradient(to right, rgba(5, 8, 22, 1), rgba(5, 8, 22, 0));
}

.stage::after {
    right: 0;
    background: linear-gradient(to left, rgba(5, 8, 22, 1), rgba(5, 8, 22, 0));
}

/* =========================
   BOXES SIDE FADE WITH BLUR
========================= */

.boxes {
    position: relative;
    overflow: visible;
}

.boxes::before,
.boxes::after {
    content: "";
    position: absolute;
    top: 0;
    width: 220px;
    height: 100%;
    z-index: 10;
    pointer-events: none;

    filter: blur(20px);
    opacity: 0.55;
}

.boxes::before {
    left: 0;
    background: linear-gradient(to right, rgba(2, 8, 23, 1), rgba(2, 8, 23, 0));
}

.boxes::after {
    right: 0;
    background: linear-gradient(to left, rgba(2, 8, 23, 1), rgba(2, 8, 23, 0));
}

/* =========================
   RESPONSIVE
========================= */

/* Tablets */
@media (max-width: 1024px) {

    .stage::before,
    .stage::after,
    .boxes::before,
    .boxes::after {
        width: 150px;
        filter: blur(18px);
        opacity: 0.55;
        background: linear-gradient(to right, rgba(5, 8, 22, 0.8), rgba(5, 8, 22, 0));
    }
}

/* Mobile */
@media (max-width: 768px) {

    .stage::before,
    .stage::after,
    .boxes::before,
    .boxes::after {
        width: 100px;
        filter: blur(14px);
        opacity: 0.45;
        background: linear-gradient(to right, rgba(5, 8, 22, 0.6), rgba(5, 8, 22, 0));
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .stage::before,
    .stage::after,
    .boxes::before,
    .boxes::after {
        width: 60px;
        filter: blur(10px);
        opacity: 0.35;
        background: linear-gradient(to right, rgba(5, 8, 22, 0.5), rgba(5, 8, 22, 0));
    }
}





/* =========================
   CONTAINER 4
========================= */

.container_4 {
    width: 100%;
    min-height: 100vh;

    padding: 120px 50px;

    background:
        linear-gradient(to bottom,
            #020817,
            #07111f,
            #000000);

    display: flex;
    flex-direction: column;
    align-items: center;
}

/* HEADING */

.cont4_heading {
    width: 100%;
    max-width: 1400px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 18px;
}

.cont4_heading p {
    color: white;

    font-size: 52px;
    font-weight: 800;

    letter-spacing: -1px;

    font-family: 'Poppins', sans-serif;
}

/* KNOW BUTTON */

.Know_btn a {
    text-decoration: none;

    padding: 14px 24px;

    border-radius: 14px;

    background:
        linear-gradient(135deg,
            #00d09c,
            #009dff);

    color: white;

    font-size: 16px;
    font-weight: 700;

    transition: 0.3s;
}

.Know_btn a:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 30px rgba(0, 208, 156, 0.3);
}

/* SUBTEXT */

.suggest {
    width: 100%;
    max-width: 1400px;

    margin-bottom: 50px;
}

.suggest span {
    color: #9db3d9;

    font-size: 16px;
}

.air_boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card */
.air_box {
    width: 160px;
    /* medium size like screenshot */
    height: 180px;
    /* medium height */
    background: linear-gradient(145deg, rgba(12, 20, 40, 0.95), rgba(8, 40, 80, 0.7));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* icon top, content bottom */
    align-items: center;
    padding: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.air_box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 208, 156, 0.3);
}

/* Top Icon */
.btc-top {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.btc-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* Bottom content + arrow */
.btc-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.btc-label {
    font-weight: 600;
    font-size: 16px;
    color: #d7e3ff;
}

.btc-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.air_box:hover .btc-arrow {
    transform: translateX(4px);
    /* arrow slides on hover */
}

/* Responsive */
@media (max-width: 768px) {
    .air_box {
        width: 140px;
        height: 160px;
    }

    .btc-icon {
        width: 40px;
        height: 40px;
    }

    .btc-label {
        font-size: 14px;
    }

    .btc-arrow {
        width: 16px;
        height: 16px;
    }
}

.container_5 {
    width: 100%;
    min-height: 100vh;

    padding: 120px 50px;

    background:
        linear-gradient(to bottom,
            #000000,
            #07111f,
            #020817);

    display: flex;
    flex-direction: column;
    align-items: center;

    overflow: hidden;
}

/* MAIN BOX */

.Bigbox {
    width: 100%;
    max-width: 1450px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 70px;

    padding: 70px;

    border-radius: 40px;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(145deg,
            rgba(7, 16, 40, 0.95),
            rgba(0, 35, 70, 0.65));

    border: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(20px);

    box-shadow:
        0 0 60px rgba(0, 208, 156, 0.08);
}

/* GLOW */

.Bigbox::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    background:
        radial-gradient(circle,
            rgba(0, 208, 156, 0.12),
            transparent 70%);

    top: -200px;
    left: -150px;

    border-radius: 50%;
}

/* LEFT SIDE */

.BigboxContent {
    width: 50%;

    display: flex;
    flex-direction: column;

    position: relative;
    z-index: 2;
}

/* TOP LABEL */

#head {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 28px;
}

#head h1 {
    color: #00b7ff;

    font-size: 22px;
    font-weight: 700;

    letter-spacing: 0.3px;
}

/* BIG HEADING */

#head2 span {
    color: white;

    font-size: 64px;
    font-weight: 800;

    line-height: 1.05;

    letter-spacing: -2px;

    font-family: 'Poppins', sans-serif;
}

/* PARAGRAPHS */

.head2Content {
    margin-top: 28px;
}

.head2Content p {
    color: #b9c8ea;

    font-size: 18px;

    line-height: 1.9;
}

/* FEATURES TITLE */

.feature {
    margin-top: 40px;

    color: #00d09c;

    font-size: 22px;
    font-weight: 700;
}

/* FEATURE LIST */

.features {
    position: relative;

    margin-left: 32px;
    margin-top: 18px;

    color: #dbe7ff;

    font-size: 17px;

    line-height: 1.8;
}

/* GREEN DOT */

.features::before {
    content: "";

    position: absolute;

    left: -28px;
    top: 10px;

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #00d09c;

    box-shadow:
        0 0 20px #00d09c;
}

/* RIGHT IMAGE */

.Bigbox img {
    width: 42%;
    max-width: 480px;

    object-fit: contain;

    position: relative;
    z-index: 2;

    filter:
        drop-shadow(0 0 50px rgba(0, 208, 156, 0.15));

    transition: 0.5s ease;
}

.Bigbox img:hover {
    transform:
        scale(1.03) rotate(-2deg);
}

/* =========================
   SLIDER
========================= */

.featuresSlider {
    width: 100%;

    margin-top: 55px;

    overflow: hidden;
}

.slider {
    display: flex;
    gap: 22px;

    width: max-content;

    animation: scroll_2 24s linear infinite;
}

@keyframes scroll_2 {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* TAGS */

.slider p {
    min-width: 180px;
    height: 58px;

    padding: 0 25px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 16px;

    background:
        rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.08);

    color: #8fe7ff;

    font-size: 15px;
    font-weight: 600;

    backdrop-filter: blur(14px);

    transition: 0.3s ease;
}

.slider p:hover {
    transform: translateY(-4px);

    background:
        rgba(0, 208, 156, 0.12);

    color: white;
}

/* =========================
   MOBILE
========================= */

@media(max-width:1100px) {

    .Bigbox {
        flex-direction: column;

        padding: 50px 30px;
    }

    .BigboxContent {
        width: 100%;
    }

    .Bigbox img {
        width: 80%;
        max-width: 420px;
    }

    #head2 span {
        font-size: 48px;
    }
}

@media(max-width:700px) {

    .container_5 {
        padding: 80px 20px;
    }

    .Bigbox {
        border-radius: 28px;
    }

    #head2 span {
        font-size: 34px;
        line-height: 1.2;
    }

    .head2Content p {
        font-size: 15px;
    }

    .features {
        font-size: 15px;
    }

    .slider p {
        min-width: 150px;
        height: 50px;

        font-size: 13px;
    }
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:1200px) {

    .heading p {
        font-size: 70px;
    }

    .Bigbox {
        flex-direction: column;
    }

    .Bigbox img,
    .BigboxContent {
        width: 100%;
    }
}

@media(max-width:768px) {

    nav ul {
        padding: 0 20px;
    }

    .heading p {
        font-size: 48px;
        letter-spacing: -1px;
    }

    .mobile-info {
        font-size: 20px;
    }

    .ecosystem p {
        font-size: 24px;
    }

    .box {
        width: 270px;
        height: 320px;
    }

    #head2 span {
        font-size: 36px;
    }

    .air_box {
        width: 90%;
        max-width: 320px;
    }
}

@media(max-width:480px) {

    .heading p {
        font-size: 38px;
    }

    .mobile-info {
        font-size: 18px;
    }

    .ecoBtn a {
        width: 190px;
        height: 58px;
        font-size: 18px;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .logo span {
        color: white;
        font-size: 28px;
        font-weight: 700;
        font-family: 'Poppins', sans-serif;
        letter-spacing: 0.5px;
    }
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    flex-wrap: wrap;
    border-bottom: 1px solid #ddd;
    padding-bottom: 50px;
}

.footer-brand {
    width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.logo-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d09c, #5367ff);
}

.footer-logo h2 {
    font-size: 34px;
    color: #111;
}

.footer-brand p {
    line-height: 1.8;
    color: #666;
}

.footer-contact {
    margin-top: 25px;
}

.footer-contact a {
    color: #111;
    text-decoration: none;
    border-bottom: 1px dashed #111;
}

.social-icons {
    display: flex;
    gap: 18px;
    margin-top: 28px;
    font-size: 22px;
    color: #666;
}

.copyright {
    margin-top: 40px;
    color: #888;
}

.footer-links {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-column h3 {
    color: #111;
    margin-bottom: 10px;
}

.footer-column a {
    text-decoration: none;
    color: #555;
    transition: 0.3s;
}

.footer-column a:hover {
    color: #00b386;
}

.footer-middle {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    padding: 55px 0;
    border-bottom: 1px solid #ddd;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-menu h4 {
    color: #111;
    margin-bottom: 10px;
}

.footer-menu a {
    text-decoration: none;
    color: #666;
}

.footer-menu a:hover {
    color: #00b386;
}

.footer-bottom-links {
    padding: 40px 0;
    border-bottom: 1px solid #ddd;
}

.bottom-links,
.stocks-alpha {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 25px;
    align-items: center;
}

.bottom-links span,
.stocks-alpha span {
    font-weight: 700;
    color: #111;
}

.bottom-links a,
.stocks-alpha a {
    text-decoration: none;
    color: #666;
}

.footer-about {
    padding-top: 50px;
}

.footer-about h3 {
    color: #111;
    margin-bottom: 20px;
    margin-top: 30px;
}

.footer-about p {
    line-height: 2;
    color: #555;
    margin-bottom: 20px;
}

.footer-about ul {
    padding-left: 20px;
}

.footer-about li {
    margin-bottom: 12px;
    color: #555;
}

@media(max-width:900px) {

    .groww-footer {
        padding: 50px 25px;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-links {
        gap: 40px;
    }

}

.groww-footer {
    background: #f7f7f7;
    padding: 55px 70px;
    font-family: Inter, sans-serif;
    color: #44475b;
    margin-top: 80px;
}

/* TOP */

.gf-top {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.gf-company {
    width: 320px;
}

.gf-logo-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.gf-logo-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d09c, #5367ff);
}

.gf-logo-row h2 {
    font-size: 20px;
    color: #111827;
    font-weight: 700;
}

.gf-address {
    line-height: 1.6;
    color: #6b7280;
    font-size: 13px;
}

.gf-contact {
    display: inline-block;
    margin-top: 22px;
    color: #111827;
    text-decoration: none;
    border-bottom: 1px dotted #111827;
    font-size: 13px;
}

.gf-socials {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
    /* allows wrapping on smaller screens */
    justify-content: flex-start;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.social-icon-link:hover {
    transform: scale(1.2);
    background: rgba(0, 208, 156, 0.15);
    box-shadow: 0 4px 12px rgba(0, 208, 156, 0.35);
}

.social-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {
    .gf-socials {
        justify-content: center;
        gap: 12px;
        margin-top: 15px;
    }

    .social-icon-link {
        width: 36px;
        height: 36px;
    }

    .social-icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .gf-socials {
        gap: 10px;
    }

    .social-icon-link {
        width: 32px;
        height: 32px;
    }

    .social-icon {
        width: 16px;
        height: 16px;
    }
}

.gf-copyright {
    margin-top: 45px;
    color: #9ca3af;
    font-size: 12px;
}

/* RIGHT LINKS */

.gf-right-links {
    display: flex;
    gap: 90px;
}

.gf-link-col {
    display: flex;
    flex-direction: column;
}

.gf-link-col h4 {
    font-size: 14px;
    margin-bottom: 18px;
    color: #111827;
    font-weight: 600;
}

.gf-link-col a {
    text-decoration: none;
    color: #4b5563;
    margin-bottom: 12px;
    font-size: 13px;
    transition: 0.2s;
}

.gf-link-col a:hover {
    color: #00b386;
}

.invisible-head h4 {
    visibility: hidden;
}

.version {
    margin-top: 5px;
    color: #9ca3af;
    font-size: 12px;
}

/* CATEGORY TABS */

.gf-tabs {
    display: flex;
    gap: 34px;
    margin-top: 55px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 14px;
    overflow-x: auto;
}

.gf-tabs span {
    font-size: 13px;
    color: #6b7280;
    white-space: nowrap;
}

.active-tab {
    color: #111827 !important;
    font-weight: 600;
    border-bottom: 2px solid #111827;
    padding-bottom: 12px;
}

/* GRID LINKS */

.gf-grid-links {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    padding-top: 28px;
}

.gf-grid-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gf-grid-col a {
    text-decoration: none;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.5;
}

.show-more {
    color: #111827 !important;
    font-weight: 600;
}

/* BOTTOM LINKS */

.gf-bottom-links {
    margin-top: 45px;
    border-top: 1px solid #e5e7eb;
    padding-top: 30px;
}

.gf-line-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
    align-items: center;
}

.gf-line-links strong {
    font-size: 13px;
    color: #111827;
}

.gf-line-links a {
    text-decoration: none;
    color: #6b7280;
    font-size: 13px;
}

/* ABOUT SECTION */

.stock-line {
    border-top: 1px solid #e5e7eb;
    padding-top: 22px;
}

.gf-about {
    border-top: 1px solid #e5e7eb;
    padding-top: 35px;
}

.gf-about h3 {
    font-size: 14px;
    color: #111827;
    margin-bottom: 18px;
    font-weight: 600;
}

.gf-about p {
    font-size: 13px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 16px;
}

.gf-about-points {
    margin-top: 18px;
    margin-bottom: 35px;
}

/* RESPONSIVE */

@media(max-width:1200px) {

    .gf-top {
        flex-direction: column;
    }

    .gf-right-links {
        flex-wrap: wrap;
        gap: 50px;
    }

    .gf-grid-links {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:768px) {

    .groww-footer {
        padding: 35px 20px;
    }

    .gf-grid-links {
        grid-template-columns: 1fr;
    }

    .gf-tabs {
        gap: 24px;
    }

}

/* =========================
   AS SEEN ON SECTION
========================= */

.media-section {
    width: 100%;
    background: #efefef;
    padding: 70px 80px 40px;
    box-sizing: border-box;
}

.media-heading {
    text-align: center;
    margin-bottom: 70px;
}

.media-heading h1 {
    font-size: 64px;
    font-weight: 700;
    color: #000;
    margin-bottom: 18px;
    font-family: 'Poppins', sans-serif;
}

.media-heading p {
    font-size: 26px;
    color: #222;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* GRID */

.media-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 90px;
    column-gap: 40px;
    align-items: center;
    justify-items: center;
    max-width: 1500px;
    margin: auto;
}

/* CARD */

.media-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 150px;
}

/* IMAGE */

.media-card img {
    max-width: 270px;
    width: 100%;
    object-fit: contain;
    transition: 0.3s ease;
}

/* YOURSTORY CENTER */

.yourstory-card {
    grid-column: 2 / span 2;
}

/* INDIVIDUAL LOGO SIZES */

.media-card:nth-child(1) img {
    max-width: 300px;
}

.media-card:nth-child(2) img {
    max-width: 360px;
}

.media-card:nth-child(3) img {
    max-width: 320px;
}

.media-card:nth-child(4) img {
    max-width: 180px;
}

.media-card:nth-child(5) img {
    max-width: 260px;
}

.media-card:nth-child(6) img {
    max-width: 350px;
}

.media-card:nth-child(7) img {
    max-width: 240px;
}

.media-card:nth-child(8) img {
    max-width: 340px;
}

.media-card:nth-child(9) img {
    max-width: 260px;
}

/* HOVER */

.media-card:hover img {
    transform: scale(1.05);
}

/* RESPONSIVE */

@media(max-width: 992px) {

    .media-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 60px;
    }

    .yourstory-card {
        grid-column: auto;
    }

    .media-heading h1 {
        font-size: 48px;
    }

    .media-heading p {
        font-size: 20px;
    }
}

@media(max-width: 600px) {

    .media-section {
        padding: 50px 20px;
    }

    .media-grid {
        grid-template-columns: 1fr;
        row-gap: 45px;
    }

    .media-heading h1 {
        font-size: 38px;
    }

    .media-heading p {
        font-size: 17px;
        line-height: 1.5;
    }

    .media-card img {
        max-width: 230px !important;
    }
}