@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");

body {
    font-family: "Instrument Sans", sans-serif;
    font-style: normal;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


a {
    text-decoration: none;
}

ul {
    padding: 0px;
    margin: 0;
}

ul li {
    list-style: none;
}

h1 {
    margin-bottom: 0px;
}

h2,
h3,
h4 {
    margin-bottom: 0px;
}

p {
    margin-bottom: 0px;
}

:root {

    --black: #000;
    --white: #fff;

  
   
    --dark-green: #0B2A12;
    --green: #1F6B2A;
    --gold: #D4AF37;
    --dark-gold: #A87918;
     --light-gold: #EDC453;




    --grogold-black: #050805;
    --grogold-dark: #08150B;
    --grogold-primary: #0B2A12;
    --grogold-secondary: #123D18;
    --grogold-green: #1F6B2A;
    --grogold-green-light: #3FAE45;

    --grogold-gold: #D4AF37;
    --grogold-gold-dark: #A87918;
    --grogold-gold-light: #F0D078;
    --grogold-gold-pale: #F5E3A1;

    --grogold-white: #FFFFFF;
    --grogold-text: #E8ECE8;
    --grogold-muted: #B8C0B8;

}


/* section css */
section {
    padding: 100px 0px;
}

section p {
    text-align: justify;
}

@media screen and (max-width: 767px) {
    section {
        padding: 50px 0px;
    }

    section p {
        font-size: 12px;
    }
}



/* section css */



/* footer css */
.footer {
    padding: 100px 0px;
}

@media screen and (max-width: 767px) {
    .footer {
        padding: 50px 0px;
    }
}

/* footer css */




/* custom css start here ----------------------------------------------------  */


/* -------------- Navbar css start here -------------- */
.custom-navbar {
    background: var(--dark-green);
    padding: 5px 0;
    transition: .4s;
    box-shadow: rgba(240, 238, 238, 0.616) 0px 5px 15px;
}

.navbar-brand img {
    width: 120px;
    height: 120px;
}



.navbar-nav {
    gap: 18px;
    align-items: center;
}

.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-link {
    display: flex;
    align-items: center;
    color: var(--white);
    font-size: 18px;
  
    letter-spacing: 1px;
 
    transition: .3s;
    position: relative;
}

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



.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-icons a {
    color: var(--white);
    font-size: 20px;
    transition: .3s;
    position: relative;
    text-decoration: none;
    background: transparent;
    border-radius: 50px;
    padding: 10px 20px;
    transition: .4s ease-in-out;
}

.nav-icons a:hover {
    background: var(--white);
    color: var(--blue);
}



.offcanvas {
    width: 300px;
}

.offcanvas-body .nav-link {
    padding: 14px 0;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid #eee;
}

.offcanvas-body .nav-icons a {
    color: var(--blue);
}

.navbar-toggler {
    padding: 0;
    border: none;
    background: var(--light-gold);
    padding: 5px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media screen and (max-width: 1200px) {

    .navbar-brand img {
        width: 90px;
        height: 90px;
    }
      .offcanvas-header img{
        width: 80px;
        height: 80px;
    }

    .navbar-nav .nav-link {
        font-size: 14px;
    }

    .nav-icons a {
        font-size: 14px;
        padding: 5px 10px;
    }
}


@media(max-width:991px) {
    .navbar-brand img {
        width: 70px;
        height: 70px;
    }


    .nav-icons a {
        font-size: 14px;
    }

}

/* ------------------ navbar css ends here --------------- */



/* ----------------------- hero section css start here ------------------- */

.grogold-hero {
    position: relative;
    min-height: 720px;
    padding: 110px 0 100px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(31, 107, 42, 0.32),
            transparent 30%
        ),
        radial-gradient(
            circle at 15% 80%,
            rgba(212, 175, 55, 0.08),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #050805 0%,
            #0B2A12 50%,
            #08150B 100%
        );
}


/* Decorative Glow */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
}

.hero-glow-1 {
    width: 350px;
    height: 350px;
    top: -180px;
    left: -100px;
    background: rgba(212, 175, 55, 0.06);
}

.hero-glow-2 {
    width: 450px;
    height: 450px;
    right: -180px;
    bottom: -250px;
    background: rgba(63, 174, 69, 0.10);
}


/* BADGE */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 9px 18px;
    margin-bottom: 25px;

    color: var(--grogold-gold-light);

    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.28);

    border-radius: 50px;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}


.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--grogold-green-light);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(63, 174, 69, 0.8);
}


/* TITLE */
.hero-title {
    max-width: 700px;

    margin: 0 0 22px;

    color: var(--grogold-white);

    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -2px;
}


.hero-title span {
    display: block;

    background: linear-gradient(
        120deg,
        #A87918,
        #D4AF37,
        #F5E3A1,
        #D4AF37
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


/* DESCRIPTION */
.hero-text {
    max-width: 650px;

    margin-bottom: 35px;

    color: var(--grogold-muted);

    
    line-height: 1.8;
}


/* BUTTONS */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 45px;
}


.btn-grogold {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 25px;

    border: 0;
    border-radius: 8px;

    color: #050805;

    background: linear-gradient(
        135deg,
        #A87918,
        #D4AF37,
        #F0D078
    );

    font-size: 15px;
    font-weight: 700;

    box-shadow:
        0 10px 30px rgba(212, 175, 55, 0.18);

    transition: all 0.3s ease;
}


.btn-grogold:hover {
    color: #050805;
    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(212, 175, 55, 0.28);
}


.btn-outline-grogold {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 13px 24px;

    border: 1px solid rgba(212, 175, 55, 0.55);
    border-radius: 8px;

    color: var(--grogold-gold-light);

    background: rgba(212, 175, 55, 0.03);

    font-size: 15px;
    font-weight: 600;

    transition: all 0.3s ease;
}


.btn-outline-grogold:hover {
    color: #050805;

    background: var(--grogold-gold);
    border-color: var(--grogold-gold);

    transform: translateY(-3px);
}


/* TRUST ITEMS */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}


.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}


.trust-icon {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--grogold-gold);

    background: rgba(212, 175, 55, 0.08);

    border: 1px solid rgba(212, 175, 55, 0.20);

    border-radius: 10px;

    font-size: 19px;
}


.trust-item strong {
    display: block;

    color: var(--grogold-white);

    font-size: 14px;
}


.trust-item span {
    display: block;

    margin-top: 3px;

    color: var(--grogold-muted);

    font-size: 12px;
}


/* =========================
   GOLD MARKET CARD
========================= */

.gold-market-card {
    position: relative;

    padding: 27px;

    background:
        linear-gradient(
            145deg,
            rgba(18, 61, 24, 0.88),
            rgba(5, 8, 5, 0.94)
        );

    border: 1px solid rgba(212, 175, 55, 0.30);

    border-radius: 25px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(15px);

    z-index: 2;
}


/* CARD HEADER */
.market-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    padding-bottom: 22px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


.market-label {
    display: block;

    margin-bottom: 7px;

    color: var(--grogold-muted);

    font-size: 12px;
    letter-spacing: 1.8px;
    font-weight: 600;
}


.market-card-header h3 {
    margin: 0;

    color: var(--grogold-white);

    font-size: 27px;
    font-weight: 600;
}


.market-card-header h3 small {
    color: var(--grogold-gold);

    font-size: 12px;
    margin-left: 5px;
}


/* STATUS */
.market-status {
    display: flex;
    align-items: center;
    gap: 7px;

    padding: 7px 10px;

    color: #8DD995;

    background: rgba(63, 174, 69, 0.08);

    border: 1px solid rgba(63, 174, 69, 0.18);

    border-radius: 50px;

    font-size: 12px;
}


.market-status span {
    width: 6px;
    height: 6px;

    background: #3FAE45;

    border-radius: 50%;

    box-shadow: 0 0 8px #3FAE45;
}


/* PRICE */
.gold-price-area {
    padding: 25px 0 10px;
}


.price-label {
    color: var(--grogold-muted);

    font-size: 14px;
}


.gold-price {
    margin: 6px 0;

    color: var(--grogold-gold-light);

    font-size: 35px;
    font-weight: 700;

    letter-spacing: -1px;
}


.price-change {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    color: #69C871;

    font-size: 13px;
    font-weight: 600;
}


/* CHART */
.gold-chart {
    position: relative;

    height: 190px;

    margin-top: 10px;

    overflow: hidden;

    border-radius: 10px;
}


.chart-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.045) 1px,
            transparent 1px
        );

    background-size: 50px 38px;
}


.gold-line-chart {
    position: absolute;

    width: 100%;
    height: 100%;

    left: 0;
    top: 0;
}


.chart-area {
    fill: url(#goldChartGradient);
}


.chart-line {
    fill: none;

    stroke: #D4AF37;

    stroke-width: 3;

    filter:
        drop-shadow(
            0 0 7px rgba(212, 175, 55, 0.5)
        );
}


/* MARKET STATS */
.market-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 12px;

    padding-top: 20px;
    margin-top: 10px;

    border-top: 1px solid rgba(255, 255, 255, 0.07);
}


.market-stats span {
    display: block;

    margin-bottom: 5px;

    color: var(--grogold-muted);

    font-size: 12px;
}


.market-stats strong {
    color: var(--grogold-white);

    font-size: 13px;
}


.market-stats .positive {
    color: #6CCF75;
}


.market-stats .online {
    color: var(--grogold-gold-light);
}


/* =========================
   FLOATING GOLD COIN
========================= */

.gold-coin {
    position: absolute;

    width: 85px;
    height: 85px;

    right: 25px;
    top: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            #F5E3A1,
            #D4AF37 45%,
            #A87918 75%,
            #76530E
        );

    border: 5px solid #D4AF37;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(212, 175, 55, 0.20);

    transform: rotate(-12deg);

    z-index: 5;

    animation: floatingCoin 4s ease-in-out infinite;
}


.gold-coin span {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid rgba(255, 255, 255, 0.45);

    border-radius: 50%;

    color: #805D0C;

    font-family: Georgia, serif;

    font-size: 29px;
    font-weight: 700;
}


@keyframes floatingCoin {

    0%,
    100% {
        transform: translateY(0) rotate(-12deg);
    }

    50% {
        transform: translateY(-10px) rotate(-8deg);
    }

}


/* SCROLL */
.hero-scroll {
    position: absolute;

    left: 50%;
    bottom: 25px;

    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 10px;

    color: rgba(255, 255, 255, 0.45);

    font-size: 10px;
    letter-spacing: 2px;
}


.hero-scroll i {
    color: var(--grogold-gold);

    font-size: 14px;
}


/* =========================
   RESPONSIVE
========================= */


@media (max-width: 1200px){
    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 991px) {

    .grogold-hero {
        padding: 90px 0 100px;
    }

    .hero-title {
        font-size: 42px;
    }

    .gold-market-card {
        margin-top: 70px;
    }

}


@media (max-width: 767px) {

    .grogold-hero {
        min-height: auto;
        padding: 75px 0 80px;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .hero-text {
       
        line-height: 1.7;
    }

    .hero-buttons {
        margin-bottom: 35px;
    }

    .hero-trust {
        gap: 20px;
        flex-direction: column;
    }

    .gold-market-card {
        margin-top: 65px;
        padding: 20px;
    }

    .gold-price {
        font-size: 29px;
    }

    .gold-coin {
        width: 68px;
        height: 68px;
        /* right: -8px; */
        top: 10px;
    }

    .gold-coin span {
        width: 42px;
        height: 42px;
        /* HERO */font-size: 22px;
    }

    .market-stats {
        gap: 8px;
    }

    .hero-scroll {
        display: none;
    }

}


@media (max-width: 480px) {

    .hero-title {
        font-size: 24px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-grogold,
    .btn-outline-grogold {
        justify-content: center;
        width: 100%;
    }

    .market-card-header {
        flex-direction: column;
        gap: 12px;
    }

    .market-stats {
        grid-template-columns: 1fr;
    }

}

/* ----------------------- end of hero section css here ------------------- */

/* ----------------------- about us section css start here ------------------- */


.grogold-about {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background: #050805;
}


/* Decorative Background */
.grogold-about::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -250px;
    left: -250px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.045);
    pointer-events: none;
}

.grogold-about::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    right: -250px;
    bottom: -250px;
    border-radius: 50%;
    background: rgba(31, 107, 42, 0.08);
    pointer-events: none;
}


/* Section Tag */
.section-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;

    color: #D4AF37;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-tag span {
    width: 35px;
    height: 1px;
    background: #D4AF37;
}


/* Heading */
.about-title {
    max-width: 600px;
    margin-bottom: 25px;

    color: #FFFFFF;
    font-size: clamp(38px, 4vw, 56px);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -1px;
}

.about-title span {
    display: block;

    background: linear-gradient(
        120deg,
        #A87918,
        #D4AF37,
        #F5E3A1,
        #D4AF37
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


/* Text */
.about-text {
    max-width: 620px;
    margin-bottom: 18px;

    color: #B8C0B8;
   
    line-height: 1.85;
}


/* Button */
.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 15px;
    padding: 13px 23px;

    color: #050805;
    background: linear-gradient(
        135deg,
        #A87918,
        #D4AF37,
        #F0D078
    );

    border-radius: 7px;

    font-size: 14px;
    font-weight: 700;
    text-decoration: none;

    transition: all 0.3s ease;
}

.about-btn:hover {
    color: #050805;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.2);
}


/* =========================
   ABOUT VISUAL
========================= */

.about-visual {
    position: relative;
    min-height: 510px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* Main Card */
.gold-about-card {
    position: relative;
    width: 410px;
    min-height: 450px;

    padding: 28px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(31, 107, 42, 0.45),
            transparent 40%
        ),
        linear-gradient(
            145deg,
            #123D18,
            #08150B
        );

    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);

    z-index: 2;
}


/* Card Top */
.card-top {
    display: flex;
    align-items: center;
    gap: 13px;

    position: relative;
    z-index: 3;
}

.gold-symbol {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #050805;

    background: linear-gradient(
        135deg,
        #A87918,
        #F0D078
    );

    border-radius: 50%;

    font-size: 19px;
}

.card-top span {
    display: block;

    color: #FFFFFF;

    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1px;
}

.card-top small {
    display: block;

    margin-top: 3px;

    color: #B8C0B8;

    font-size: 9px;
    letter-spacing: 1.5px;
}


/* Gold Orbit */
.gold-orbit {
    position: relative;

    width: 270px;
    height: 270px;

    margin: 45px auto;
}


/* Orbits */
.orbit {
    position: absolute;

    top: 50%;
    left: 50%;

    border: 1px solid rgba(212, 175, 55, 0.35);

    border-radius: 50%;

    transform: translate(-50%, -50%);
}

.orbit-1 {
    width: 190px;
    height: 190px;
    transform: translate(-50%, -50%) rotate(30deg);
}

.orbit-2 {
    width: 260px;
    height: 130px;
    transform: translate(-50%, -50%) rotate(-30deg);
}


/* Gold Center */
.gold-center {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 105px;
    height: 105px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    color: #76530E;

    background:
        radial-gradient(
            circle at 35% 25%,
            #F5E3A1,
            #D4AF37 45%,
            #A87918 80%
        );

    border: 5px solid #D4AF37;

    box-shadow:
        0 0 35px rgba(212, 175, 55, 0.2);

    font-size: 38px;
}


/* Bottom */
.card-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;

    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.card-bottom span {
    display: block;

    margin-bottom: 5px;

    color: #B8C0B8;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-bottom strong {
    color: #F0D078;
    font-size: 14px;
}


/* Floating Card */
.about-floating-card {
    position: absolute;

    right: 0;
    bottom: 45px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 18px;

    background: rgba(8, 21, 11, 0.94);

    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 12px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);

    z-index: 4;
}


.floating-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #050805;

    background: #D4AF37;

    border-radius: 9px;
}


.about-floating-card strong {
    display: block;

    color: #FFFFFF;
    font-size: 12px;
}

.about-floating-card span {
    display: block;

    margin-top: 3px;

    color: #B8C0B8;
    font-size: 10px;
}


/* Decorative Circle */
.about-decoration {
    position: absolute;

    width: 110px;
    height: 110px;

    left: 10px;
    bottom: 40px;

    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50%;

    z-index: 1;
}


/* =========================
   FEATURES
========================= */

.about-features {
    position: relative;

    margin-top: 85px;
    padding-top: 45px;

    border-top: 1px solid rgba(212, 175, 55, 0.12);
}


.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;

    padding-right: 25px;
}


.feature-icon {
    flex-shrink: 0;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #D4AF37;

    background: rgba(212, 175, 55, 0.08);

    border: 1px solid rgba(212, 175, 55, 0.18);

    border-radius: 10px;

    font-size: 18px;
}


.about-feature h4 {
    margin: 2px 0 7px;

    color: #FFFFFF;

    font-size: 16px;
    font-weight: 600;
}


.about-feature p {
    margin: 0;

    color: #929B93;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1400px){
    .about-floating-card {
       
        bottom: 75px;
    }
}

@media (max-width: 1200px){
    .about-title{
        font-size: 36px;
    }
    .about-floating-card {
        right: 5px;
        bottom: 85px;
    }
}

@media (max-width: 991px) {

    .grogold-about {
        padding: 85px 0;
    }

    .about-visual {
        margin-top: 20px;
    }

    .about-features {
        margin-top: 60px;
    }

}


@media (max-width: 767px) {

    .grogold-about {
        padding: 70px 0;
    }

    .about-title {
        font-size: 30px;
    }

    .about-visual {
        min-height: 450px;
    }

    .gold-about-card {
        width: 100%;
        max-width: 410px;
    }

    .about-floating-card {
        right: 5px;
        bottom: 85px;
    }

    .about-feature {
        margin-bottom: 30px;
        padding-right: 0;
    }

    .about-features {
        padding-top: 35px;
    }

}


@media (max-width: 480px) {

    .about-title {
        font-size: 24px;
    }

    .gold-about-card {
        padding: 22px;
        min-height: 410px;
    }

    .gold-orbit {
        width: 230px;
        height: 230px;
        margin: 35px auto;
    }

    .orbit-1 {
        width: 165px;
        height: 165px;
    }

    .orbit-2 {
        width: 220px;
        height: 110px;
    }

    .gold-center {
        width: 90px;
        height: 90px;
        font-size: 30px;
    }

    .about-floating-card {
        right: 0;
        padding: 10px 12px;
    }

}


/* ----------------------- end of about us section css here ------------------- */





/* -------------- business and income section css start here --------------- */

.grogold-income-section {
    position: relative;
    padding: 100px 0;
    background:
        radial-gradient(circle at 15% 20%,
            rgba(212, 175, 55, 0.08),
            transparent 30%),
        radial-gradient(circle at 85% 80%,
            rgba(63, 174, 69, 0.10),
            transparent 30%),
        #050805;
    overflow: hidden;
}


/* Section Heading */

.grogold-section-heading {
    max-width: 760px;
    margin: 0 auto 60px;
}

.grogold-subtitle {
    display: inline-block;
    margin-bottom: 14px;
    color: #D4AF37;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.grogold-income-section .grogold-section-heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

.grogold-income-section .grogold-section-heading h2 span {
    display: block;
    margin-top: 5px;
    background: linear-gradient(90deg,
            #D4AF37,
            #F5E3A1,
            #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.grogold-section-heading p {
    max-width: 650px;
    margin: 20px auto 0;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.8;
}


/* card */

.grogold-income-card {
    position: relative;
    height: 100%;
    padding: 32px;
    border-radius: 20px;

    background:
        linear-gradient(145deg,
            rgba(20, 61, 25, 0.82),
            rgba(5, 14, 7, 0.94));

    border: 1px solid rgba(212, 175, 55, 0.20);

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;

    overflow: hidden;
}


/* Gold decorative glow */

.grogold-income-card::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -60px;
    top: -60px;

    background: rgba(212, 175, 55, 0.10);
    border-radius: 50%;

    transition: 0.4s ease;
}


/* Bottom gold line */

.grogold-income-card::after {
    content: "";
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 0;

    height: 2px;

    background: linear-gradient(90deg,
            transparent,
            #D4AF37,
            transparent);

    opacity: 0.45;
}


/* Hover */

.grogold-income-card:hover {
    transform: translateY(-8px);

    border-color: rgba(212, 175, 55, 0.55);

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.42),
        0 0 30px rgba(212, 175, 55, 0.08);
}

.grogold-income-card:hover::before {
    transform: scale(1.5);
    background: rgba(212, 175, 55, 0.15);
}


/* card top */

.grogold-card-top {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 28px;
}


/* Icon */

.grogold-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: linear-gradient(135deg,
            #D4AF37,
            #A97C12);

    color: #081009;
    font-size: 25px;

    box-shadow:
        0 8px 22px rgba(212, 175, 55, 0.20);
}


/* Number */

.grogold-number {
    color: rgba(212, 175, 55, 0.38);
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}


/* card content */

.grogold-income-card h3 {
    position: relative;
    z-index: 2;

    margin-bottom: 13px;

    color: #ffffff;
    font-size: 22px;
    font-weight: 650;
}

.grogold-income-card p {
    position: relative;
    z-index: 2;

    margin-bottom: 25px;

    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
}


/* Card Link */

.grogold-card-link {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: #D4AF37;
    font-size: 16px;
    font-weight: 600;

    text-decoration: none;

    transition: 0.3s ease;
}

.grogold-card-link i {
    font-size: 16px;
    transition: 0.3s ease;
}

.grogold-card-link:hover {
    color: #F5E3A1;
}

.grogold-card-link:hover i {
    transform: translateX(5px);
}


/* responsive css */

@media (max-width: 1200px) {
    .grogold-income-card {
        padding: 20px 10px;
    }

    .grogold-number {
        font-size: 22px;
    }
}

@media (max-width: 991px) {

    .grogold-income-section {
        padding: 70px 0;
    }

    .grogold-income-section .grogold-section-heading h2 {
        font-size: 36px;
    }

    .grogold-section-heading {
        margin-bottom: 45px;
    }

    .grogold-income-card {
        padding: 20px 15px;
    }

}


@media (max-width: 767px) {

    .grogold-income-section {
        padding: 50px 0;
    }

    .grogold-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .grogold-section-heading {
        margin-bottom: 38px;
    }

    .grogold-income-section .grogold-section-heading h2 {
        font-size: 22px;
    }

    .grogold-section-heading p {
        line-height: 1.7;
    }


    .grogold-icon {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }

    .grogold-income-card h3 {
        font-size: 18px;
    }


    .grogold-card-link {
        font-size: 12px;
    }

}



/* ------------- end of business and income section css here ---------- */




/* ---------------- information strip section css start here -------------- */


.grogold-withdrawal-info {
    position: relative;
    padding: 80px 0;
    background:
        radial-gradient(circle at 10% 50%,
            rgba(212, 175, 55, 0.08),
            transparent 32%),
        #050805;

    overflow: hidden;
}


/* Main Box */

.withdrawal-box {
    position: relative;
    overflow: hidden;
    padding: 45px 50px;
    border-radius: 24px;
    background:
        linear-gradient(120deg,
            rgba(18, 61, 24, 0.96),
            rgba(5, 15, 7, 0.98));

    border: 1px solid rgba(212, 175, 55, 0.28);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}


/* Decorative Gold Line */

.withdrawal-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            #D4AF37,
            #F5E3A1,
            #D4AF37,
            transparent);
    opacity: 0.8;
}


/* Decorative Glows */

.withdrawal-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.withdrawal-glow-one {
    width: 240px;
    height: 240px;
    top: -150px;
    left: -80px;
    background: rgba(212, 175, 55, 0.09);
    filter: blur(10px);
}

.withdrawal-glow-two {
    width: 220px;
    height: 220px;
    right: -120px;
    bottom: -150px;
    background: rgba(63, 174, 69, 0.10);
    filter: blur(15px);
}


/* icon */

.withdrawal-icon {
    position: relative;
    width: 82px;
    height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: linear-gradient(135deg,
            #D4AF37,
            #A97C12);

    color: #071008;
    font-size: 35px;
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.25);
}

.withdrawal-icon::after {
    content: "";
    position: absolute;
    inset: -7px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 27px;
}


/* content */

.withdrawal-label {
    display: inline-block;
    margin-bottom: 10px;
    color: #D4AF37;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}


.withdrawal-box h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
}

.withdrawal-box h2 span {
    color: #D4AF37;
}

.withdrawal-box p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.75;
}


/* details */

.withdrawal-details {
    padding-left: 20px;
    border-left: 1px solid rgba(212, 175, 55, 0.25);
}

.withdrawal-detail {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 10px 0;
}

.detail-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.10);
    border: 1px solid rgba(212, 175, 55, 0.18);
    color: #D4AF37;
    font-size: 17px;
}

.withdrawal-detail small {
    display: block;
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.withdrawal-detail strong {
    display: block;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
}

/* Deduction */

.deduction-detail .detail-icon {
    background: rgba(212, 175, 55, 0.16);
}

.deduction-detail strong {
    color: #F0D078;
}


/* responsive css */

@media (max-width: 991px) {

    .grogold-withdrawal-info {
        padding: 65px 0;
    }

    .withdrawal-box {
        padding: 30px 15px;
    }

    .withdrawal-box h2 {
        font-size: 28px;
    }

    .withdrawal-details {
        padding-left: 0;
        border-left: 0;
        padding-top: 15px;
        border-top: 1px solid rgba(212, 175, 55, 0.20);
    }

}

@media (max-width: 767px) {

    .grogold-withdrawal-info {
        padding: 5px 0;
    }

    .withdrawal-box {
        padding: 20px 15px;
        border-radius: 20px;
    }

    .withdrawal-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .withdrawal-box h2 {
        font-size: 22px;
    }

    .withdrawal-details {
        margin-top: 10px;
    }

}


@media (max-width: 480px) {
    .withdrawal-label {
        font-size: 10px;
        letter-spacing: 2px;
    }
}

/* ---------------- end of information strip section css here -------------- */


/* --------------- footer css start here ------------- */


.grogold-footer {
    position: relative;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(212, 175, 55, 0.07),
            transparent 28%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(31, 107, 42, 0.12),
            transparent 30%
        ),
        #030603;

    color: #ffffff;

    overflow: hidden;
}


/* top gold line */

.grogold-footer-line {
    width: 100%;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent 0%,
        #A97C12 20%,
        #F5E3A1 50%,
        #A97C12 80%,
        transparent 100%
    );
}


/* footer main */

.grogold-footer > .container {
    padding-top: 75px;
}


/* brand */

.grogold-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 2px;

    margin-bottom: 20px;

    color: #ffffff;

    font-size: 29px;
    font-weight: 300;

    letter-spacing: 1px;

    text-decoration: none;
}

.grogold-footer-logo span {
    color: #ffffff;
}

.grogold-footer-logo strong {
    color: #D4AF37;
    font-weight: 800;
}

.grogold-footer-brand p {
    max-width: 390px;

    margin: 0 0 25px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 14px;
    line-height: 1.8;
}


.grogold-footer-brand img{
    width: 150px;
    height: 150px;
}


/* social links */

.grogold-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.grogold-social a {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    color: rgba(255, 255, 255, 0.72);

    background: rgba(255, 255, 255, 0.045);

    border: 1px solid rgba(212, 175, 55, 0.18);

    text-decoration: none;

    transition: all 0.3s ease;
}

.grogold-social a:hover {
    color: #071008;

    background: #D4AF37;

    border-color: #D4AF37;

    transform: translateY(-4px);
}


/* footer heading */

.grogold-footer-column h4 {
    position: relative;

    margin: 0 0 25px;

    color: #ffffff;

    font-size: 17px;
    font-weight: 650;
}

.grogold-footer-column h4::after {
    content: "";

    display: block;

    width: 32px;
    height: 2px;

    margin-top: 10px;

    background: linear-gradient(
        90deg,
        #D4AF37,
        transparent
    );
}


/* footer links */

.grogold-footer-column ul {
    padding: 0;
    margin: 0;

    list-style: none;
}

.grogold-footer-column ul li {
    margin-bottom: 13px;
}

.grogold-footer-column ul li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: rgba(255, 255, 255, 0.57);

    font-size: 14px;

    text-decoration: none;

    transition: all 0.3s ease;
}

.grogold-footer-column ul li a i {
    color: #D4AF37;

    font-size: 10px;

    transition: transform 0.3s ease;
}

.grogold-footer-column ul li a:hover {
    color: #F0D078;

    transform: translateX(4px);
}

.grogold-footer-column ul li a:hover i {
    transform: translateX(3px);
}


/* contact */

.grogold-contact-item {
    display: flex;
    align-items: flex-start;

    gap: 13px;

    margin-bottom: 19px;
}

.grogold-contact-icon {
    width: 37px;
    height: 37px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: rgba(212, 175, 55, 0.08);

    border: 1px solid rgba(212, 175, 55, 0.17);

    color: #D4AF37;

    font-size: 15px;
}

.grogold-contact-item span {
    display: block;

    margin-bottom: 3px;

    color: #D4AF37;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.grogold-contact-item p {
    margin: 0;

    color: rgba(255, 255, 255, 0.58);

    font-size: 13px;

    line-height: 1.6;
}


/* footer bottom */

.grogold-footer-bottom {
    margin-top: 60px;

    padding: 22px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}


/* Copyright */

.copyright {
    margin: 0;

    color: rgba(255, 255, 255, 0.45);

    font-size: 13px;
}

.copyright span {
    color: #D4AF37;
}


/* Legal Links */

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 14px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.48);

    font-size: 13px;

    text-decoration: none;

    transition: 0.3s ease;
}

.footer-legal a:hover {
    color: #D4AF37;
}

.footer-legal span {
    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: #D4AF37;

    opacity: 0.6;
}


/* responsive */

@media (max-width: 991px) {

    .grogold-footer > .container {
        padding-top: 60px;
    }

    .grogold-footer-bottom {
        margin-top: 40px;
    }

}


@media (max-width: 767px) {

    .grogold-footer-brand img{
    width: 110px;
    height: 110px;
}

    .grogold-footer > .container {
        padding-top: 50px;
    }

    .grogold-footer-brand p {
        max-width: 100%;
    }

    .grogold-footer-bottom {
        margin-top: 35px;
        padding: 20px 0;
    }

    .copyright {
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }

}


@media (max-width: 480px) {

    .grogold-footer-logo {
        font-size: 26px;
    }

    .grogold-footer-column h4 {
        font-size: 16px;
    }

    .grogold-social a {
        width: 38px;
        height: 38px;
    }

    .footer-legal a,
    .copyright {
        font-size: 12px;
    }

}


/* --------------- footer css ends here --------------- */








/* ------------------ what we stand for section css start here ------------------ */


.grogold-stand-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;

    background:
        radial-gradient(circle at 10% 15%,
            rgba(212, 175, 55, 0.07),
            transparent 30%),
        radial-gradient(circle at 90% 85%,
            rgba(31, 107, 42, 0.12),
            transparent 32%),
        #050805;
}


/* section heading */

.grogold-stand-heading {
    max-width: 780px;
    margin: 0 auto 60px;
}

.grogold-stand-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #D4AF37;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.grogold-stand-heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

.grogold-stand-heading h2 span {
    background: linear-gradient(90deg,
            #D4AF37,
            #F5E3A1,
            #D4AF37);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.grogold-stand-heading p {
    max-width: 720px;
    margin: 20px auto 0;
    color: rgba(255, 255, 255, 0.64);
    line-height: 1.8;
}


/* stand card */

.grogold-stand-card {
    position: relative;
    height: 100%;
    min-height: 180px;
    display: flex;
    align-items: flex-start;
    padding: 35px;
    overflow: hidden;
    border-radius: 22px;
    background:
        radial-gradient(circle at top right,
            rgba(212, 175, 55, 0.16),
            transparent 34%),
        linear-gradient(135deg,
            #123D18 0%,
            #0B2A12 55%,
            #050805 100%);

    border: 1px solid rgba(212, 175, 55, 0.20);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


/* Decorative Circle */

.grogold-stand-card::before {
    content: "";
    position: absolute;
   width: 180px;
    height: 180px;
    right: -95px;
    bottom: -100px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.12);
    transition: 0.4s ease;
}


/* Hover */

.grogold-stand-card:hover {
    transform: translateY(-7px);
    border-color: rgba(212, 175, 55, 0.50);
    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.40),
        0 0 30px rgba(212, 175, 55, 0.06);
}

.grogold-stand-card:hover::before {
    transform: scale(1.4);
}


/* number */

.stand-card-number {
    position: absolute;
    top: 22px;
    right: 28px;
    color: rgba(212, 175, 55, 0.25);
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}


/* icon */

.stand-card-icon {
    position: relative;
    z-index: 2;
    width: 62px;
    height: 62px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 24px;
    border-radius: 17px;
    background: linear-gradient(135deg,
            #D4AF37,
            #A97C12);

    color: #071008;
    font-size: 25px;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.20);
    transition: 0.35s ease;
}

.grogold-stand-card:hover .stand-card-icon {
    transform: rotate(-4deg) scale(1.05);
}


/* content */

.stand-card-content {
    position: relative;
    z-index: 2;
    padding-top: 2px;
}

.stand-card-content h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 650;
}

.stand-card-content p {
    color: rgba(255, 255, 255, 0.63);
    line-height: 1.8;
}


/* responsive */

@media (max-width: 1200px) {
    .stand-card-number {
        top: 20px;
        right: 20px;
        font-size: 26px;
    }
}

@media (max-width: 991px) {

    .grogold-stand-section {
        padding: 70px 0;
    }

    .grogold-stand-heading {
        margin-bottom: 45px;
    }

    .grogold-stand-heading h2 {
        font-size: 32px;
    }

    .grogold-stand-card {
        padding: 20px 15px;
    }

    .stand-card-number {
        top: 10px;
        right: 10px;
        font-size: 18px;
    }

    .stand-card-content h3 {
        font-size: 18px;
    }

}


@media (max-width: 767px) {

    .grogold-stand-section {
        padding: 50px 0;
    }

    .grogold-stand-label {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .grogold-stand-heading {
        margin-bottom: 35px;
    }

    .grogold-stand-heading h2 {
        font-size: 24px;
    }

    .grogold-stand-heading p {
        line-height: 1.7;
    }

    .grogold-stand-card {
        min-height: auto;
        padding: 20px 15px;
    }

    .stand-card-icon {
        width: 45px;
        height: 45px;
        margin-right: 18px;
        border-radius: 15px;
        font-size: 22px;
    }

}


/* ------------------ end of what we stand for section css here ----------------- */



/* ----------------- mission vision section css start here ------------------ */

.grogold-mission-section {
    position: relative;
    padding: 100px 0;
    background: #050805;
    overflow: hidden
}

.grogold-mission-section:before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -250px;
    left: -180px;
    background: radial-gradient(circle, rgba(63, 174, 69, .16), transparent 70%);
    pointer-events: none
}

.grogold-mission-section:after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    right: -180px;
    bottom: -250px;
    background: radial-gradient(circle, rgba(212, 175, 55, .12), transparent 70%);
    pointer-events: none
}

.grogold-section-heading {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto 55px
}

.grogold-section-heading span {
    display: inline-block;
    margin-bottom: 12px;
    color: #D4AF37;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px
}

.grogold-section-heading h2 {
    margin: 0;
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15
}

.grogold-section-heading h2 em {
    color: #D4AF37;
    font-style: normal
}

.grogold-section-heading p {
    margin: 18px auto 0;
    max-width: 620px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.8
}

.grogold-purpose-card {
    position: relative;
    height: 100%;
    min-height: 330px;
    padding: 42px;
    border: 1px solid rgba(212, 175, 55, .22);
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(31, 107, 42, .92), rgba(11, 42, 18, .96) 55%, rgba(5, 8, 5, .98));
    box-shadow: 0 20px 55px rgba(0, 0, 0, .35);
    transition: all .4s ease
}

.grogold-purpose-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent)
}

.grogold-purpose-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, .55);
    box-shadow: 0 25px 65px rgba(0, 0, 0, .5), 0 0 35px rgba(212, 175, 55, .08)
}

.grogold-purpose-icon {
    position: relative;
    z-index: 2;
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border: 1px solid rgba(212, 175, 55, .4);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(212, 175, 55, .18), rgba(212, 175, 55, .04));
    color: #D4AF37;
    font-size: 30px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08)
}

.grogold-purpose-content {
    position: relative;
    z-index: 2
}

.grogold-purpose-content span {
    display: block;
    margin-bottom: 10px;
    color: #D4AF37;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2.5px
}

.grogold-purpose-content h3 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3
}

.grogold-purpose-content p {
    color: rgba(255, 255, 255, .7);
    line-height: 1.85
}

.grogold-card-glow {
    position: absolute;
    width: 220px;
    height: 220px;
    right: -100px;
    bottom: -110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, .14), transparent 68%);
    transition: .4s
}

.grogold-purpose-card:hover .grogold-card-glow {
    transform: scale(1.35)
}

.grogold-vision-card {
    background: linear-gradient(145deg, rgba(18, 61, 24, .96), rgba(7, 16, 8, .98) 65%, rgba(5, 8, 5, 1))
}

@media(max-width: 1200px) {
    .grogold-section-heading h2 {
        font-size: 36px
    }

    .grogold-purpose-content h3 {
        font-size: 22px
    }

    .grogold-purpose-card {
        padding: 20px;
    }
}

@media(max-width:991px) {
    .grogold-mission-section {
        padding: 70px 0
    }

    .grogold-section-heading {
        margin-bottom: 40px
    }

    .grogold-purpose-content h3 {
        font-size: 32px
    }

    .grogold-purpose-card {
        padding: 30px;
    }
}

@media(max-width:767px) {
    .grogold-mission-section {
        padding: 50px 0
    }

    .grogold-section-heading span {
        font-size: 10px;
    }

    .grogold-section-heading h2 {
        font-size: 24px
    }

    .grogold-section-heading p {
        line-height: 1.7
    }

    .grogold-purpose-card {
        min-height: auto;
        padding: 15px;
        border-radius: 22px
    }

    .grogold-purpose-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 20px;
        font-size: 22px
    }

    .grogold-purpose-content h3 {
        font-size: 18px
    }

    .grogold-purpose-content p {
        line-height: 1.75
    }
}

/* ----------------- end of mission vision section css here ----------------- */


/* ------------------- direction section css start here ------------------ */

.grogold-direction-section {
    position: relative;
    padding: 70px 0;
    background: #050805;
    overflow: hidden;
}

.grogold-direction-box {
    position: relative;
    overflow: hidden;
    padding: 50px 30px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, .25);
    border-radius: 28px;
    background: linear-gradient(135deg, #123D18 0%, #0B2A12 52%, #071008 100%);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
}

.grogold-direction-box:before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 20px;
    pointer-events: none;
}

.grogold-direction-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
}

.grogold-direction-glow-one {
    top: -190px;
    left: -100px;
    background: rgba(63, 174, 69, .18);
}

.grogold-direction-glow-two {
    right: -120px;
    bottom: -210px;
    background: rgba(212, 175, 55, .15);
}

.grogold-direction-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
}

.grogold-direction-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #D4AF37;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
}

.grogold-direction-label:before,
.grogold-direction-label:after {
    content: "";
    width: 32px;
    height: 1px;
    background: #D4AF37;
}

.grogold-direction-content h2 {
    margin: 0;
    color: #fff;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .2px;
}

.grogold-direction-content h2 b {
    color: #D4AF37;
    font-weight: 400;
    margin: 0 10px;
}

.grogold-direction-content p {
    max-width: 680px;
    margin: 20px auto 0;
    color: rgba(255, 255, 255, .7);
    font-size: 16px;
    line-height: 1.8;
}

.grogold-direction-line {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    max-width: 330px;
    margin: 35px auto 0;
}

.grogold-direction-line span {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, .55));
}

.grogold-direction-line span:last-child {
    background: linear-gradient(90deg, rgba(212, 175, 55, .55), transparent);
}

.grogold-direction-line i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(212, 175, 55, .4);
    border-radius: 50%;
    color: #D4AF37;
    background: rgba(212, 175, 55, .08);
    font-size: 15px;
}

@media(max-width: 1200px) {
    .grogold-direction-content h2 {
        font-size: 36px;
    }
}

@media(max-width: 991px) {
    .grogold-direction-section {
        padding: 70px 0;
    }

    .grogold-direction-content h2 {
        font-size: 28px;
    }

    .grogold-direction-box {
        padding: 30px 20px;
        border-radius: 22px;
    }
}

@media(max-width:767px) {
    .grogold-direction-section {
        padding: 50px 0;
    }

    .grogold-direction-box {
        padding: 24px 16px;
    }

    .grogold-direction-content h2 {
        font-size: 16px;
    }

    .grogold-direction-content h2 b {
        margin: 0 4px;
    }

    .grogold-direction-content p {
        margin-top: 16px;
        font-size: 14px;
        line-height: 1.7;
    }

    .grogold-direction-label {
        font-size: 10px;
        letter-spacing: 2.5px;
    }

    .grogold-direction-label:before,
    .grogold-direction-label:after {
        width: 20px;
    }

    .grogold-direction-line {
        margin-top: 28px;
    }
}

/* ------------------- end of direction section css here ------------------ */














