:root{
  --gold:#C9A24A;
  --gold-deep:#A8842E;
  --gold-soft:#F5EBD3;
  --ink:#1A1A1A;
  --muted:#222222;
  --bg:#ffffff;
  --bg-alt:#FAF7F1;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:'Inter',sans-serif;
  color:var(--ink);
  background:var(--bg);
  font-size:15px;
  line-height:1.6; 
}
h1,h2,h3,h4,h5,h6,.display-hero{font-family:'Playfair Display',serif;letter-spacing:.5px}

.text-gold { 
  background-image: linear-gradient(to right, #E2C275 0%, #C9A24A 40%, #A8842E 100%);   
  -webkit-background-clip: text;
  background-clip: text;   
  -webkit-text-fill-color: transparent;
  color: transparent;   
  font-weight: 700;
  display: inline-block;
}


.text-muted-2{color:var(--muted)}
a{text-decoration:none;color:inherit}

/* ==========================================================================
   ===== NAVIGATION MAIN STYLING =====
   ========================================================================== */
.growly-nav {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  padding:8px 0;
  
} 

.logo-text img{
  max-width:110px;
} 
/* Desktop Links Alignment Top Active Bar */
.growly-nav .navbar-nav .nav-link {
    color: #f0f0f0 !important;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 10px 14px !important;
    position: relative;
    transition: color 0.25s ease;
}

.growly-nav .navbar-nav .nav-link:hover,
.growly-nav .navbar-nav .nav-link.active {
  color: #C9A24A !important;
}

.growly-nav .navbar-nav .nav-link.active::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 2.5px;
  background: #C9A24A;
}


.sticky-menu {
    position: fixed;
    left: 0;
    margin: auto;
    top: 0;
    width: 100%;
    z-index: 99;
    background: #030B15;
    -webkit-animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-box-shadow: 0 10px 15px rgb(25 25 25 / .1);
    box-shadow: 0 10px 15px rgb(25 25 25 / .1);
    border-radius: 0
}

.sticky-menu .navbar-wrap>ul>li>a {
    padding: 40px 0
}

#header-fixed-height.active-height {
    display: block;
    height: 105px
}
/* ==========================================================================
   ===== UI ACTIONS ACTION BUTTONS =====
   ========================================================================== */
.btn-gold, .btn-gold-ghost {
    border-radius: 4px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.25s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-gold-ghost {
  background: transparent;
  border: 1px solid #C9A24A;
  color: #C9A24A;
}

.btn-gold-ghost:hover {
  background: #C9A24A;
  color: #ffffff;
}

.btn-gold {
  background: linear-gradient(135deg, #C9A24A, #A8842E);
  border: none;
  color: #ffffff;
}

.btn-gold:hover {
  filter: brightness(1.08);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(201, 162, 74, 0.3);
}

/* ==========================================================================
   ===== SLIDE FROM RIGHT COMPONENT DRAWER =====
   ========================================================================== */
.premium-drawer {
  background: #ffffff;
  width: 300px !important;
  border-left: 1px solid rgba(201, 162, 74, 0.15);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
}

.offcanvas-backdrop.show {
  opacity: 0.4;
  backdrop-filter: blur(4px); /* Modern frosted effect backdrop mask behind panel layout drawer */
}

.mobile-drawer-links {
  gap: 8px;
}

.mobile-drawer-links .nav-link {
  padding: 14px 16px !important;
  font-size: 14px;
  font-weight: 600;
  color: #1A1A1A;
  background: #fdfbfa;
  border: 1px solid rgba(201, 162, 74, 0.05);
  border-radius: 6px;
  transition: all 0.25s ease;
}

.mobile-drawer-links .nav-link:hover,
.mobile-drawer-links .nav-link.active {
  color: #C9A24A !important;
  background: rgba(201, 162, 74, 0.05);
  border-color: rgba(201, 162, 74, 0.2);
  padding-left: 22px !important; /* Premium slide indent animation */
}

.mobile-drawer-links .nav-link.active::before {
  display: none; /* Strip top indicator logic inside side context layouts */
}
/* ==========================================================================
   ===== EXACT IMAGE COLOR THEME BUTTONS =====
   ========================================================================== */
.btn-gold, .btn-gold-ghost {
  border-radius: 4px; /* Crisp squared corners with a slight 4px radius like the image */
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.25s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* LOGIN Button (Exact Thin Gold Outline & Gold Text) */
.btn-gold-ghost {
  background: transparent;
  border: 1px solid #C9A24A; /* Fine line border matching the theme */
  color: #C9A24A;
}

.btn-gold-ghost:hover {
  background: linear-gradient(135deg, #E2C275, #A8842E); /* Filled gold gradient on hover */
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(201, 162, 74, 0.2);
}

/* JOIN GROWLY Button (Premium Metallic Gold Gradient) */
.btn-gold {
  /* Linear gradient blending from light metallic gold to deep warm gold */
  background: linear-gradient(135deg, #E2C275 0%, #C9A24A 50%, #A8842E 100%);
  border: none;
  color: #ffffff;
}

.btn-gold:hover {
  filter: brightness(1.06); /* Adds a subtle realistic sheen highlight on hover */
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(168, 132, 46, 0.35); /* Soft gold ambient glow */
}
/* ===== HERO ===== */
.hero-section{
  padding:60px 0 40px;
  background:linear-gradient(180deg,#fffaf0 0%,#ffffff 100%);
}
.hero-section {
  background: linear-gradient(to right, rgba(255,255,255,0.9) 40%, rgba(255,255,255,0.2) 100%), url('../images/banner-img.jpg');
  background-image: url(../images/banner-img.jpg);
  background-size: cover;
  background-position: right center;
  position:relative;overflow:hidden;
}


.eyebrow{color:var(--gold);font-weight:600;letter-spacing:2px;font-size:13px;text-transform:uppercase;margin-bottom:10px}
.display-hero{font-size:64px;font-weight:800;line-height:1.05;color:var(--ink);margin-bottom:18px}
.lead-text{color:var(--muted);font-size:16px;max-width:520px}
.rounded-hero{border-radius:14px;box-shadow:0 18px 50px -20px rgba(168,132,46,.4)}

.hero-stats {
    border-top: 1px solid #eeeeee;
    padding-top: 28px;
    max-width: 650px;  
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
}

.stat-cell {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 140px; 
}

.stat-ico {
    font-size: 23px;
    color: #C9A24A;  
    width: 32px;
    height: 32px;
    display: inline-grid;
    place-items: center;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 22px;
    color: #222222;  
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: #777777; 
    margin-top: 3px;
    white-space: nowrap;  
}
 
@media (max-width: 576px) {
    .hero-stats {
        justify-content: flex-start;
        gap: 20px 15px;
    }
    .stat-cell {
        flex: 0 0 calc(50% - 10px);  
    }
}
/* ===== SECTIONS ===== */
.section{padding:60px 0}
.section-alt{background:var(--bg-alt)}
.section-title{
  text-align:center;
  font-size:32px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:18px;
  position:relative;
}
.section-title::after{
  content:"";display:block;width:60px;height:2px;background:var(--gold);margin:14px auto 0;
}
.section-title.text-start::after{margin-left:0}

/* ===== FEATURE CARDS ===== */
.card-glow-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    padding: 2.5px;
    background: #e1e1e1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: box-shadow 0.3s ease;
    transform: translateZ(0);
}

.card-glow-wrapper::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: conic-gradient(
        transparent 0deg, 
        transparent 260deg, 
        rgba(201, 162, 74, 0.3) 300deg, 
        rgba(201, 162, 74, 0.8) 340deg,
        #C9A24A 360deg
    );
    animation: rotateBorder 6s linear infinite;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.custom-feature-card {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 8px;
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    top: 0;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.card-glow-wrapper:hover {
    box-shadow: 0 10px 25px rgba(201, 162, 74, 0.2);
}

.card-glow-wrapper:hover .custom-feature-card {
    transform: translateY(-5px);
}

.card-glow-wrapper:hover .icon-box {
    transform: scale(1.1);
}

.icon-box {
    font-size: 42px;
    color: #C9A24A;
    margin-bottom: 20px;
    display: inline-grid;
    place-items: center;
    transition: transform 0.3s ease;
}

.card-heading {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #222222;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.card-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #222222;
    line-height: 1.6;
    margin-bottom: 0;
}

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

.section-heading-block .main-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #222222;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-heading-block .title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px; /* Thick line ke sath proper spacing ke liye gap thoda badhaya */
}

.section-heading-block .divider-line {
    width: 70px; /* Aapka size */
    height: 3px; /* Aapka size */
    background-color: #C9A24A;
    display: inline-block;
    border-radius: 2px; /* Corners ko smooth rakhne ke liye micro radius */
}

.section-heading-block .divider-dot {
    width: 10px; /* 3px line ke sath match karne ke liye center dot thoda bada kiya */
    height: 10px;
    background-color: #C9A24A;
    border-radius: 50%;
    position: relative;
}

.section-heading-block .divider-dot::before, 
.section-heading-block .divider-dot::after {
    content: '';
    position: absolute;
    width: 4px; /* Side wale small dots ko bhi proportionally scale kiya */
    height: 4px;
    background-color: #C9A24A;
    border-radius: 50%;
    top: 3px; /* Naye size ke hisab se perfectly vertical center alignment */
}

.section-heading-block .divider-dot::before { 
    left: -10px; /* Gap balancing */
}

.section-heading-block .divider-dot::after { 
    right: -10px; /* Gap balancing */
}

 .formula-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background-color: #ffffff;
}

/* Yaha se aapki abstract wavy curves layer pure CSS se banegi */
.formula-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.65; /* Waves ko halka aur premium rakhne ke liye */
    background-image: 
        /* Pehli Wave Grid Layer */
        radial-gradient(circle at 50% 50%, transparent 45%, rgba(201, 162, 74, 0.05) 49%, rgba(201, 162, 74, 0.08) 50%, transparent 54%),
        /* Dusri Intersecting Wave Layer */
        radial-gradient(circle at 30% 60%, transparent 40%, rgba(201, 162, 74, 0.04) 45%, rgba(201, 162, 74, 0.06) 48%, transparent 52%),
        /* Halka Gold Glow Jo Flow Banayega */
        linear-gradient(115deg, transparent 20%, rgba(201, 162, 74, 0.03) 40%, rgba(201, 162, 74, 0.05) 50%, rgba(201, 162, 74, 0.02) 60%, transparent 80%),
        /* Cross Sinusoidal Flow Effect */
        radial-gradient(ellipse at 80% 20%, rgba(201, 162, 74, 0.05) 0%, transparent 50%);
    background-size: 180% 150%, 140% 140%, 100% 100%, 100% 100%;
    background-position: -20% -10%, 10% 20%, 0 0, 0 0;
    pointer-events: none;
    z-index: 1;
}

.formula-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #C9A24A;
    line-height: 1.4;
    margin-bottom: 15px;
}

.formula-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #222222;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-formula-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border: 1px solid #C9A24A;
    color: #C9A24A;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-formula-ghost:hover {
    background-color: #C9A24A;
    color: #ffffff;
    transform: translateY(-2px);
}

.formula-circle {
    position: relative;
    width: 440px;
    height: 440px;
    margin: 0 auto;
}

.orbit-spinner {
    position: absolute;
    inset: 0;
    animation: spinOrbit 30s linear infinite; 
}

.orbit {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px dashed rgba(201, 162, 74, 0.45);
}

.orbit-node {
    position: absolute;
    background: #ffffff;
    border: 1px solid #efe5cf;
    padding: 8px 14px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    white-space: nowrap;
    animation: counterSpin 30s linear infinite;
    transform-origin: center;
}

.orbit-node i {
    color: #C9A24A;
    font-size: 13px;
    background: rgba(201, 162, 74, 0.1);
    width: 28px;
    height: 28px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
}

.orbit-node span {
    color: #222222;
}

.n-top   { top: -18px; left: calc(50% - 45px); }
.n-left  { top: 40%; left: -40px; }
.n-right { top: 40%; right: -40px; }
.n-bl    { bottom: 40px; left: 15px; }
.n-br    { bottom: 40px; right: 15px; }

.center-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
}

.g-badge {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C9A24A, #9e7d32);
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 64px;
    display: grid;
    place-items: center;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 12px 35px rgba(168, 132, 46, 0.4);
}

.g-badge::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px solid rgba(201, 162, 74, 0.3);
    animation: badgePulse 3s ease-out infinite;
}

.g-text {
    margin-top: 12px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #C9A24A;
    letter-spacing: 2px;
    font-size: 14px;
}

.pillar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pillar-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid #f0e7ce;
}

.pillar-list li:last-child {
    border-bottom: none;
}

.pillar-list i {
    color: #C9A24A;
    font-size: 16px;
    background: rgba(201, 162, 74, 0.1);
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.pillar-list li:hover i {
    transform: scale(1.15) rotate(15deg);
}

.pillar-list strong {
    display: block;
    font-size: 15px;
    color: #222222;
    font-weight: 700;
    margin-bottom: 2px;
}

.pillar-list span {
    display: block;
    font-size: 14px;
    color: #222222;
}

@keyframes spinOrbit {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes counterSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

@keyframes badgePulse {
    0% { transform: scale(0.95); opacity: 1; }
    100% { transform: scale(1.15); opacity: 0; }
}

@media (max-width: 992px) {
    .formula-circle {
        width: 340px;
        height: 340px;
        margin: 40px auto;
    }
    .n-top   { left: calc(50% - 40px); }
    .n-left  { left: -25px; }
    .n-right { right: -25px; }
} 

/* .formula-section::before {
    content: "";
    position: absolute;
    inset: 0; 
    background-image:  
        radial-gradient(rgba(201, 162, 74, 0.1) 1.5px, transparent 1.5px), 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 600' preserveAspectRatio='none'%3E%3Cpath d='M-100,200 Q250,50 600,250 T1300,150 T1600,300' fill='none' stroke='%23C9A24A' stroke-width='1.2' stroke-opacity='0.25' stroke-dasharray='4 8'/%3E%3Cpath d='M-50,300 Q350,450 750,200 T1500,250' fill='none' stroke='%23C9A24A' stroke-width='1' stroke-opacity='0.2'/%3E%3Cpath d='M100,100 Q500,400 900,150 T1600,200' fill='none' stroke='%23C9A24A' stroke-width='1.5' stroke-opacity='0.15'/%3E%3C/svg%3E");
     
    background-size: 30px 30px, 100% 100%;
    background-position: center center;
    pointer-events: none;
    z-index: 1;
} */

.vision-premium-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background-color: #ffffff;
}

.vision-premium-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.7;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(201, 162, 74, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 85% 45%, rgba(201, 162, 74, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 35% 85%, rgba(201, 162, 74, 0.04) 0%, transparent 35%),
        linear-gradient(rgba(201, 162, 74, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 74, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 100% 100%, 60px 60px, 60px 60px;
    pointer-events: none;
    z-index: 1;
}

.vision-premium-row {
    margin-bottom: 90px;
    position: relative;
    z-index: 2;
}

.vision-premium-row:last-child {
    margin-bottom: 0;
}

.vision-premium-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

.vision-premium-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.vision-premium-text {
    position: relative;
    padding-left: 40px;
    padding-right: 20px;
}

.vision-premium-text.text-side-left {
    padding-left: 20px;
    padding-right: 40px;
}

.vision-premium-text .section-heading-block {
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.vision-premium-text .main-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: #222222;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.vision-premium-text .title-divider {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vision-premium-text .divider-line {
    width: 70px;
    height: 3px;
    background-color: #C9A24A;
    display: inline-block;
    border-radius: 2px;
}

.vision-premium-text .divider-dot {
    width: 10px;
    height: 10px;
    background-color: #C9A24A;
    border-radius: 50%;
    position: relative;
}

.vision-premium-text .divider-dot::before, 
.vision-premium-text .divider-dot::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #C9A24A;
    border-radius: 50%;
    top: 3px;
}

.vision-premium-text .divider-dot::before { 
    left: -9px; 
}

.vision-premium-text .divider-dot::after { 
    right: -9px; 
}

.vision-premium-text p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #222222;
    line-height: 1.8;
    margin-bottom: 16px;
}

.quote-mark {
    position: absolute;
    top: -40px;
    right: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 140px;
    color: #C9A24A;
    line-height: 1;
    opacity: 0.12;
    pointer-events: none;
}

.vision-premium-text.text-side-left .quote-mark {
    right: auto;
    left: 20px;
}

.btn-premium-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 12px 28px;
    background-color: #C9A24A;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(201, 162, 74, 0.2);
    transition: all 0.3s ease;
}

.btn-premium-gold:hover {
    background-color: #a8842e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 162, 74, 0.3);
}

.vision-premium-row:hover .vision-premium-image {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(201, 162, 74, 0.12);
}

.vision-premium-row:hover .vision-premium-image img {
    transform: scale(1.02);
}

@media (max-width: 992px) {
    .vision-premium-row {
        margin-bottom: 60px;
    }
    .vision-premium-image img {
        height: 300px;
        margin-bottom: 0px;
    }
    .vision-premium-text {
        padding: 0 15px !important;
    }
    .vision-premium-text .section-heading-block {
        align-items: center;
    }
    .quote-mark {
        display: none;
    }
}.pillars-premium-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.pillar-premium-card {
    background: linear-gradient(145deg, #ffffff, #fafafa);
    border: 1px solid #efe5cf;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    box-sizing: border-box;
    height: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.front-badge {
    width: 80px;
    height: 80px;
    background: rgba(201, 162, 74, 0.06);
    border: 1px solid rgba(201, 162, 74, 0.2);
    color: #C9A24A;
    font-size: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    margin-bottom: 24px;
    position: relative;
    transition: transform 0.4s ease, background-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}

.front-badge::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px dashed rgba(201, 162, 74, 0.25);
    opacity: 0.6;
    transition: transform 0.4s ease, opacity 0.4s ease, border-color 0.4s ease;
}

.pillar-premium-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #222222;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.pillar-premium-line {
    width: 30px;
    height: 2px;
    background-color: #C9A24A;
    margin-bottom: 15px;
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease;
}

.pillar-premium-desc {
    font-family: 'Inter', sans-serif;
    color: #222222;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* --- Interactive Hover Animations --- */

.pillar-premium-card:hover {
    transform: translateY(-8px);
    border-color: #C9A24A;
    box-shadow: 0 20px 40px rgba(168, 132, 46, 0.14);
}

/* Icon solid gold hoga aur halka sa rotate-scale karega */
.pillar-premium-card:hover .front-badge {
    background-color: #C9A24A;
    color: #ffffff;
    border-color: #C9A24A;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(201, 162, 74, 0.25);
}

/* Dotted ring zoom hokar rotate karne lagegi */
.pillar-premium-card:hover .front-badge::before {
    opacity: 1;
    border-color: #C9A24A;
    animation: spinDotted 6s linear infinite;
}

/* Gold line text ke niche expand hogi */
.pillar-premium-card:hover .pillar-premium-line {
    width: 60px;
}

@keyframes spinDotted {
    100% { transform: rotate(360deg); }
}

@media (max-width: 992px) {
    .pillar-premium-card {
        padding: 35px 20px;
    }
}
/* ===== GREEN MISSION ===== */
.green-mission{padding:70px 0;background-color:#f3f7ec}
.mission-title{font-size:30px;font-weight:700;margin:6px 0 14px}
.mission-stats i {
    font-size: 24px;
    color: var(--gold);
    display: inline-grid;
    place-items: center;
    margin-bottom: 8px;
}
.row.g-2.mission-stats {
    background: linear-gradient(275deg, rgba(220, 218, 147, 0.15) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.mission-stats .m-num{font-family:'Playfair Display';font-weight:700;font-size:22px}
.mission-stats .m-lbl{font-size:13px;}

/* ===== COMMUNITY ===== */
.community-stats{list-style:none;padding:0;margin:0;border:1px solid #efe5cf;border-radius:12px;background:#fff}
.community-stats li {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 6px 12px;
    border-bottom: 1px solid #f5ecd5;
}
.community-stats li:last-child{border-bottom:none}
.community-stats i{color:var(--gold);font-size:18px;background:var(--gold-soft);width:36px;height:36px;display:inline-grid;place-items:center;border-radius:50%}
.community-stats strong{font-family:'Playfair Display';font-size:20px;display:block}
.community-stats span{font-size:11px;color:var(--muted);text-transform:uppercase;letter-spacing:1px}
.map-wrap{position:relative;display:inline-block;width:100%}
.pin{position:absolute;width:14px;height:14px;background:var(--gold);border-radius:50%;box-shadow:0 0 0 6px rgba(201,162,74,.2);}

/* ===== WHY JOIN ===== */
.why-grid i{font-size:30px;color:var(--gold);margin-bottom:10px;display:block}
.why-grid p{font-size:12px;font-weight:600;letter-spacing:1px;text-transform:uppercase;color:var(--ink);margin:0}

/* ===== LEADERSHIP ===== */
.leader-col{flex:1 1 0;max-width:20%}
.leader-card{
  background:#fff;border:1px solid #efe5cf;border-radius:12px;
  padding:18px;text-align:center;height:100%;
  transition:all .3s;
}
.leader-card:hover{transform:translateY(-4px);box-shadow:0 14px 30px -16px rgba(0,0,0,.12)}
.leader-card img{width:100%;border-radius:8px;aspect-ratio:1;object-fit:cover;margin-bottom:12px}
.leader-card h6{font-weight:700;margin-bottom:2px;font-size:14px}
.leader-card p{font-size:11.5px;color:var(--muted);margin-bottom:8px;text-transform:uppercase;letter-spacing:.8px}
.leader-card a i{color:var(--gold);font-size:18px}
.leader-ctrl{
  width:42px;height:42px;background:#fff;border-radius:50%;
  top:50%;transform:translateY(-50%);
  box-shadow:0 6px 18px rgba(0,0,0,.1);opacity:1;
  color:var(--gold);font-size:18px;display:grid;place-items:center;
}
.leader-ctrl.carousel-control-prev{left:-22px}
.leader-ctrl.carousel-control-next{right:-22px}

/* ===== CTA BANNER ===== */
.cta-banner{padding:90px 0;position:relative;overflow:hidden}
.cta-headline{
  font-family:'Playfair Display';font-weight:700;
  font-size:32px;letter-spacing:2px;text-transform:uppercase;
  color:var(--ink);line-height:1.5;
}
.cta-medallion{
  position:absolute;right:8%;top:50%;transform:translateY(-50%);
  width:120px;height:120px;border-radius:50%;
  background:linear-gradient(135deg,var(--gold),var(--gold-deep));
  color:#fff;font-family:'Playfair Display';font-weight:700;font-size:70px;
  display:grid;place-items:center;
  box-shadow:0 20px 50px -10px rgba(168,132,46,.55);
}

/* ===== FOOTER ===== */
.growly-footer{
  background:#fff;border-top:1px solid #eee;
  padding:50px 0 30px;position:relative;
}
.growly-footer h6 {
    font-weight: 900;
    font-size: 16px;
    color: var(--ink);
    margin-bottom: 14px;
    font-family: 'Inter', sans-serif;
}
.growly-footer ul{list-style:none;padding:0;margin:0}
.growly-footer ul li{margin-bottom:8px}
.growly-footer ul li a{color:var(--muted);font-size:13px;transition:color .2s}
.growly-footer ul li a:hover{color:var(--gold)}
.socials a{
  display:inline-grid;place-items:center;width:30px;height:30px;border-radius:50%;
  background:var(--gold-soft);color:var(--gold);margin-right:6px;margin-top:4px;font-size:14px;
}
.socials a:hover{background:var(--gold);color:#fff}
.scroll-top{
  position:fixed;bottom:24px;right:24px;
  width:44px;height:44px;border-radius:50%;border:none;
  background:linear-gradient(135deg,var(--gold),var(--gold-deep));color:#fff;
  display:none;align-items:center;justify-content:center;font-size:18px;
  box-shadow:0 10px 24px rgba(168,132,46,.45);z-index:50;
}
.scroll-top.show{display:flex}

/* ===== RESPONSIVE ===== */
@media (max-width:1199px){
  .display-hero{font-size:52px}
  .leader-col{max-width:33.333%}
}
@media (max-width:991px){
  .display-hero{font-size:44px}
  .nav-cta{margin-top:14px}
  .vision-content{padding:40px 24px}
  .quote-mark{right:24px;top:20px;font-size:90px}
  .formula-circle{width:340px;height:340px}
  .g-badge{width:96px;height:96px;font-size:50px}
  .cta-medallion{position:static;transform:none;margin:24px auto 0;width:90px;height:90px;font-size:52px}
  .cta-headline{font-size:24px}
  .leader-col{max-width:50%}
}
@media (max-width:767px){
  .display-hero{font-size:36px}
  .section{padding:60px 0}
  .section-title{font-size:24px}
  .formula-circle{width:280px;height:280px}
  .orbit-node{font-size:10px;padding:6px 10px}
  .orbit-node span{display:none}
  .vision-img{min-height:280px}
  .leader-col{max-width:100%}
  .mission-title{font-size:22px}
  .cta-headline{font-size:18px;letter-spacing:1px}
  .quote-mark{display:none}
}
body{
    overflow-x:hidden;
}
#hero,
#what,
#formula,
#vision,
#pillars,
#mission,
#footer {
    scroll-margin-top: 100px;
}
.socials {
    display: inline-flex;
}
@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 100%;
        padding: 0 60px;
    }
}

.pillars-container {
      display: grid;
      /* 6 equal columns for desktop */
      grid-template-columns: repeat(6, 1fr);
      gap:80px;
      align-items: center;
      justify-content: center;
    }

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

    /* Icon Mask styling with standard hex color code */
    .pillar-icon {
      width: 32px;
      height: 32px;
      flex-shrink: 0;
      background-color: #c5973d;
      mask-size: contain;
      mask-repeat: no-repeat;
      mask-position: center;
      -webkit-mask-size: contain;
      -webkit-mask-repeat: no-repeat;
      -webkit-mask-position: center;
    }
button.navbar-toggler {
    border: 0;
    padding: 0;
    font-size: 24px;
}
button:focus:not(:focus-visible) {
    outline: 0;
    box-shadow: unset;
}
    /* SVG Inline Data URIs matching the requested layout */
    .icon-community {
      -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
      mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
    }

    .icon-ecosystem {
      -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpath d='M12 8v8M9 11h6'/%3E%3C/svg%3E");
      mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpath d='M12 8v8M9 11h6'/%3E%3C/svg%3E");
    }

    .icon-opportunities {
      -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10zM2 12h20'/%3E%3C/svg%3E");
      mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10zM2 12h20'/%3E%3C/svg%3E");
    }

    .icon-growth {
      -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='8' cy='7' r='4'/%3E%3Cpath d='M17 11l2 2 4-4'/%3E%3C/svg%3E");
      mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='8' cy='7' r='4'/%3E%3Cpath d='M17 11l2 2 4-4'/%3E%3C/svg%3E");
    }

    .icon-future {
      -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5'/%3E%3C/svg%3E");
      mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5'/%3E%3C/svg%3E");
    }

    .icon-vision {
      -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M3 12c5-8 13-8 18 0-5 8-13 8-18 0z'/%3E%3C/svg%3E");
      mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M3 12c5-8 13-8 18 0-5 8-13 8-18 0z'/%3E%3C/svg%3E");
    }

    .pillar-text {
      display: flex;
      flex-direction: column;
      line-height: 1.25;
    }

    .title-top, .title-bottom {
      font-size: 13px;
      font-weight: 700;
      color: #2b2b2b;
      white-space: nowrap;
    }

    /* Responsive Breakpoints */
    @media (max-width: 1024px) {
      .pillars-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px 20px;
      }
    }

    @media (max-width: 640px) {
      .pillars-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
      }
      
    }
    
    @media (max-width: 480px) {
          .vision-premium-text {
        padding: 0 0 !important;
    }
    .logo-text img {
    max-width: 70px;
}
    }