

/* Typeface Imports */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

/* 1. Global Custom Variables & Tokens */
:root {
  
  --primary: #0a3b25;         
  --primary-rgb: 10, 60, 38;
  --secondary: #085c40;       
  --secondary-rgb: 16, 185, 129;
  --accent-gold: #C5A880;     
  --accent-gold-rgb: 197, 168, 128;
  --neutral-warm: #FAF9F6;    
  --neutral-gray: #F3F4F6;    
  
  
  --text-dark: #19201D;       
  --text-muted: #687671;      
  --white: #FFFFFF;
  --white-trans: rgba(255, 255, 255, 0.85);

  
  --font-display: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Inter', sans-serif;

  
  --shadow-sm: 0 4px 20px rgba(10, 60, 38, 0.02), 0 1px 3px rgba(10, 60, 38, 0.01);
  --shadow-md: 0 12px 30px rgba(10, 60, 38, 0.04), 0 2px 10px rgba(10, 60, 38, 0.02);
  --shadow-lg: 0 24px 60px rgba(10, 60, 38, 0.06), 0 4px 20px rgba(10, 60, 38, 0.03);

  
  --border-color: rgba(10, 60, 38, 0.06);
  --border-color-light: rgba(10, 60, 38, 0.03);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-round: 50px;

  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}


*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px; 
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
  margin-bottom: 0.5em;
  line-height: 1.2;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--secondary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}


@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

a:focus-visible, button:focus-visible, input:focus, textarea:focus, select:focus {
  outline: 3px solid rgba(16, 185, 129, 0.3);
  outline-offset: 3px;
}


::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--neutral-warm);
}
::-webkit-scrollbar-thumb {
  background: rgba(10, 60, 38, 0.2);
  border-radius: 5px;
  border: 2px solid var(--neutral-warm);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}


section {
  padding: 4rem 1rem; 
  position: relative;
}

.bg-alt {
  background-color: var(--neutral-warm);
}

.eyebrow-small {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--secondary);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  text-align: center;
  color: var(--primary);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1.25rem;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background-color: var(--accent-gold);
  border-radius: var(--radius-round);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.section-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}


#backToTop {
  position: fixed;
  bottom: 25px;
  right: 15px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8) translateY(10px);
  transition: var(--transition-bounce);
  z-index: 1040;
}

#backToTop.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
}

#backToTop:hover {
  background: var(--primary);
  color: var(--white);
}

#backToTop svg.progress-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#backToTop svg.progress-circle path {
  fill: none;
  stroke: var(--secondary);
  stroke-width: 3;
}


.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  padding: 0;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.navbar-scrolled {
  background: var(--white-trans);
}


.scroll-progress-bar {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--secondary);
  width: 0;
  transition: width 0.1s linear;
}

.navbar-brand {
  margin-right: 2.5rem !important;
  display: flex;
  align-items: center;
}

.navbar-brand img {
  height: 90px;
  width: auto;
  transition: var(--transition-smooth);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}

.navbar-scrolled .navbar-brand img {
  height: 68px;
}

.navbar-toggler {
  border: none;
  background: transparent !important;
  padding: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  cursor: pointer;
}

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

.navbar-toggler-icon {
  display: none !important;
}

.toggler-icon-wrapper {
  position: relative;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggler-icon-wrapper i {
  position: absolute;
  font-size: 26px;
  line-height: 1;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  font-weight: 800 !important;
}


.toggler-icon-wrapper .icon-hamburger {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  color: var(--text-dark);
}

.toggler-icon-wrapper .icon-close {
  opacity: 0;
  transform: scale(0.5) rotate(-90deg);
  color: #000000;
}


.navbar-toggler.menu-open .icon-hamburger {
  opacity: 0;
  transform: scale(0.5) rotate(90deg);
}

.navbar-toggler.menu-open .icon-close {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}


.offcanvas {
  background-color: var(--primary) !important;
  color: var(--white);
  max-width: 290px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.25rem 1.5rem;
}

.offcanvas-header h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0;
}

.offcanvas-body {
  padding: 1.25rem 1.25rem 2.5rem;
}

.offcanvas-body h5 {
  font-family: var(--font-display);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding-bottom: 0.3rem;
}

.off-link {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.35rem 0.5rem 0.35rem 0.75rem;
  margin-bottom: 0.15rem;
  border-left: 2px solid transparent;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: var(--transition-fast);
}

.off-link:hover {
  color: var(--secondary);
  background: rgba(16, 185, 129, 0.08);
  border-left-color: var(--secondary);
  padding-left: 1rem;
}


.navbar-collapse {
  display: none;
}


.btn-main {
  background-color: var(--primary);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-round);
  border: 1px solid var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 10px rgba(10, 60, 38, 0.1);
}

.btn-main:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-main:active {
  transform: translateY(0);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

.btn-success {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: var(--white) !important;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-round) !important;
  transition: var(--transition-smooth) !important;
  box-shadow: 0 4px 10px rgba(10, 60, 38, 0.1) !important;
}

.btn-success:hover {
  background-color: var(--secondary) !important;
  border-color: var(--secondary) !important;
  color: var(--white) !important;
  transform: translateY(-2px) !important;
}

.btn-outline-success {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
  background-color: transparent !important;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-round) !important;
  transition: var(--transition-smooth) !important;
}

.btn-outline-success:hover {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: var(--white) !important;
  transform: translateY(-2px) !important;
}


.animated-link {
  color: var(--primary);
  font-weight: 600;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.animated-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--secondary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.animated-link:hover {
  color: var(--secondary);
}

.animated-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.animated-link i {
  transition: transform 0.3s ease;
}

.animated-link:hover i {
  transform: translateX(4px);
}


.hover-card {
  transition: var(--transition-smooth);
}

.hover-card:hover {
  transform: translateY(-6px);
}


.hero {
  min-height: 65vh;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 6.5rem 1rem 4rem;
  background: 
    linear-gradient(rgba(10, 60, 38, 0.82), rgba(15, 26, 21, 0.88)),
    var(--hero-image);
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.hero-edge {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 30px;
  background: var(--white);
  clip-path: polygon(
    0 100%, 0 30%, 10% 45%, 20% 20%, 30% 50%, 40% 15%, 50% 48%,
    60% 22%, 70% 52%, 80% 18%, 90% 46%, 100% 30%, 100% 100%
  );
  z-index: 2;
}

/* .hero-edge2 {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 40px;
  background: var(--white);
  clip-path: polygon(
    0 100%, 0 70%, 25% 88%, 50% 95%, 75% 88%, 100% 70%, 100% 100%
  );
  z-index: 2;
} */
 .hero-edge2 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 40px;
  background: var(--white);
  clip-path: polygon(
    0 100%, 0 70%, 25% 88%, 50% 95%, 75% 88%, 100% 70%, 100% 100%
  );
}


.sponsors-section {
  padding: 3rem 1rem;
  background: var(--white);
}

.logo-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 1rem 0;
}

.logo-slider::before,
.logo-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 40px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-slider::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.logo-slider::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

.logo-item {
  width: 120px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* filter: grayscale(100%); */
  /* opacity: 0.65; */
  transition: var(--transition-fast);
}

.logo-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


.card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem;
  height: 100%;
  transition: var(--transition-smooth);
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 185, 129, 0.2);
}

.card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}


.feature-box {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid var(--border-color-light);
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 185, 129, 0.15);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 10px rgba(10, 60, 38, 0.1);
}


.story-section {
  padding: 4rem 1rem;
}

.story-image, .program-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  margin-bottom: 1.5rem;
}

.story-image:hover, .program-image:hover {
  transform: scale(1.02);
}

.story-content {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
}

.story-content h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.story-content h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--secondary);
  border-radius: var(--radius-round);
  margin-top: 0.75rem;
}

.story-content p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.story-content ul {
  padding-left: 1.25rem;
  margin-top: 1rem;
}

.story-content li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}



/* About Preview */

.about-preview-section{
    padding:100px 0;
    background:var(--paper);
}

.about-preview{
    background: linear-gradient(
        135deg,
        #FFE3D2 0%,
        #FFF0E7 55%,
        #FFF9F5 100%
    );

    border-radius: 42px;
    padding: 70px;
    overflow: hidden;

    box-shadow: 0 20px 45px rgba(205,138,95,.12);
}

.about-image-wrapper{
    overflow:hidden;
    border-radius:20px;
    height:100%;
}

.about-image{
    width:100%;
    height:100%;
    min-height:500px;
    object-fit:cover;
    transition:.5s;
}

.about-image-wrapper:hover .about-image{
    transform:scale(1.05);
}

.about-content{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.about-title{
    font-size:2.5rem;
    font-weight:700;
    line-height: 1.05;
    color: var(--leaf-deep);
    margin-bottom: 0;
}

.about-description{
  font-size: 1.35rem;
    color:var(--ink-soft);
    line-height:2;
    margin:0;
}

.about-points{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.about-point{
    padding-left:18px;
    border-left:4px solid var(--leaf);
}

.about-point h5{
    margin-bottom:8px;
    color:var(--leaf);
    font-weight:700;
}

.about-point p{
    margin:0;
    color:var(--ink-soft);
    line-height:1.8;
}

@media (max-width:991px){

    .about-preview{
        padding:40px 30px;
    }

    .about-image{
        min-height:350px;
    }

    .about-title{
        font-size:2rem;
    }

}

/* programs preview */

.program-preview-section{
    padding:100px 0;
}

.program-preview{

    background:linear-gradient(
        135deg,
        #DDEEFF 0%,
        #EEF6FF 55%,
        #FAFDFF 100%
    );

    border-radius:42px;

    padding:70px;

    overflow:hidden;

    box-shadow:0 20px 50px rgba(77,136,204,.15);

}

.program-content{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.program-highlights{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.program-item{
    padding-left:18px;
    border-left:4px solid #2E74C9;
}

.program-item h5{
    color:#1F5FA8;
    margin-bottom:8px;
    font-weight:700;
}

.program-item p{
    margin:0;
    color:var(--ink-soft);
    line-height:1.8;
}

/* ==========================================
   TEAM PREVIEW
========================================== */

.team-preview-section{
    padding:90px 0;
    background:var(--neutral-warm);
}

.team-preview{
    background:linear-gradient(135deg,#dff5e8,#cbead9);
    border-radius:30px;
    padding:55px 60px;
    overflow:hidden;
    position:relative;
}

.team-content{
    opacity:0;
    transform:translateX(-40px);
    transition:all .9s ease;
}

.team-content.show{
    opacity:1;
    transform:translateX(0);
}

.team-title{
    font-size:3.4rem;
    font-weight:800;
    line-height:1.1;
    color:var(--primary);
    margin:18px 0 25px;
}

.team-description{
    font-size:1.08rem;
    line-height:1.9;
    color:var(--text-muted);
    margin-bottom:35px;
}

.team-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:15px 38px;

    background:var(--primary);
    color:var(--white);

    border-radius:50px;

    text-decoration:none;
    font-weight:600;
    letter-spacing:.3px;

    transition:.35s ease;
}

.team-btn:hover{
    background:var(--secondary);
    color:var(--white);
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.team-image-wrapper{
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 20px 45px rgba(0,0,0,.12);

    opacity:0;
    transform:translateX(40px);

    transition:all .9s ease;
}

.team-image-wrapper.show{
    opacity:1;
    transform:translateX(0);
}

.team-image{
    width:100%;
    height:500px;
    object-fit:cover;
    transition:.6s ease;
}

.team-image:hover{
    transform:scale(1.05);
}

/* Responsive */

@media(max-width:991px){

    .team-preview{
        padding:40px 30px;
        text-align:center;
    }

    .team-title{
        font-size:2.4rem;
    }

    .team-image{
        height:350px;
        margin-top:25px;
    }

}


/* ===========================
   IMPACT SECTION
=========================== */

.impact-section {
    background: var(--neutral-warm);
}

/* Cards */

.impact-card {
    border: none;
    border-radius: var(--radius-md);
    padding: 2.5rem 1.5rem;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all .45s ease;

    opacity: 0;
    transform: translateY(40px);
}

/* Animation when visible */

.impact-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* Hover */

.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0,0,0,.12);
}

/* Counter */

.impact-card h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: .6rem;
}

.impact-card h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: .75rem;
}

.impact-card p {
    font-size: .92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Backgrounds */

.yellow {
    background: linear-gradient(135deg,#FFFDEB,#FFF3D1);
}

.green {
    background: linear-gradient(135deg,#F0FDF4,#DCFCE7);
}

.blue {
    background: linear-gradient(135deg,#F0F9FF,#E0F2FE);
}

.peach {
    background: linear-gradient(135deg,#FFF7ED,#FFEDD5);
}

/* presence section-home */

.presence-section {
  background: var(--white);
}

.presence-map {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.presence-map img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.presence-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.presence-states {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.5rem;
}

.presence-states span {
  background: var(--neutral-warm);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: var(--radius-round);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.78rem;
  border: 1px solid var(--border-color);
}

/* gallery */
/* ===========================
   Gallery Section
=========================== */

.cg-gallery-section {
    background: var(--white);
}

/* ===========================
   Filter Buttons
=========================== */

.cg-gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 2rem 0 3rem;
}

.cg-filter-btn {
    padding: 10px 24px;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: .3s ease;
}

.cg-filter-btn:hover,
.cg-filter-btn.active {
    background: var(--primary);
    color: #fff;
}

/* ===========================
   Category
=========================== */

.cg-category {
    margin-top: 2rem;
}

.cg-category-title {
    text-align: center;
    margin-bottom: 2rem;
}

.cg-category-title h3 {
    font-size: 1.6rem;
    font-weight: 700;
}

/* ===========================
   Hidden Items
=========================== */

.hidden-images,
.hidden-products {
    display: none;
}

/* ===========================
   Gallery Cards
=========================== */

.cg-gallery-item {
    height: 100%;
}

.cg-gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid var(--border-color-light);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: .35s ease;
    height: 100%;
}

.cg-gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.cg-gallery-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.cg-gallery-card:hover img {
    transform: scale(1.05);
}

/* ===========================
   Overlay
=========================== */

.cg-gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.35);
    opacity: 0;
    transition: .3s ease;
}

.cg-gallery-card:hover .cg-gallery-overlay {
    opacity: 1;
}



                                                                  /* here starts the products section */
/*=====================================================
                HANDCRAFTED COLLECTIONS
=====================================================*/

.craft-section{
    padding:100px 0;
    background:var(--paper);
}

.section-header{
    max-width:760px;
    margin:auto;
}

.section-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(31,93,62,.08);
    color:var(--leaf);
    font-weight:600;
    margin-bottom:18px;
}

.section-title{
    font-size:2.7rem;
    font-weight:700;
    color:var(--ink);
    margin-bottom:18px;
}

.section-subtitle{
    color:var(--ink-soft);
    line-height:1.8;
    font-size:1.02rem;
}


/*=====================================================
                    CARD
=====================================================*/

.craft-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    cursor:pointer;

    transition:.35s;

    box-shadow:
    0 12px 35px rgba(0,0,0,.08);

    border:1px solid rgba(0,0,0,.05);

    height:100%;

}

.craft-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 28px 60px rgba(0,0,0,.14);

}

.product-card{

    opacity:0;

    transform:translateY(30px);

}

/*=====================================================
                IMAGE
=====================================================*/

.craft-cover{

    position:relative;

    height:270px;

    overflow:hidden;

}

.craft-cover img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:.6s;

}

.craft-card:hover .craft-cover img{

    transform:scale(1.08);

}


/*=====================================================
                OVERLAY
=====================================================*/

.craft-overlay{

    position:absolute;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(0,0,0,.32);

    opacity:0;

    transition:.35s;

}

.craft-card:hover .craft-overlay{

    opacity:1;

}

.craft-overlay-btn{

    background:white;

    color:var(--leaf);

    padding:14px 28px;

    border-radius:50px;

    font-weight:600;

    display:flex;

    align-items:center;

    gap:10px;

    transform:translateY(25px);

    transition:.35s;

}

.craft-card:hover .craft-overlay-btn{

    transform:translateY(0);

}

.craft-overlay-btn i{

    transition:.35s;

}

.craft-card:hover .craft-overlay-btn i{

    transform:translateX(5px);

}


/*=====================================================
                CONTENT
=====================================================*/

.craft-content{

    padding:30px;

}

.craft-category{

    display:inline-flex;

    padding:8px 16px;

    border-radius:40px;

    background:rgba(79,163,119,.12);

    color:var(--leaf);

    font-size:.82rem;

    font-weight:600;

    margin-bottom:18px;

}

.craft-content h3{

    font-size:2rem;

    color:var(--leaf-deep);

    font-weight:700;

    margin-bottom:18px;

}

.craft-content p{

    color:var(--ink-soft);

    line-height:1.8;

    margin-bottom:28px;

}


/*=====================================================
                FOOTER
=====================================================*/

.craft-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding-top:20px;

    border-top:1px solid rgba(0,0,0,.08);

}

.craft-bottom span{

    display:flex;

    align-items:center;

    gap:10px;

    color:var(--leaf);

    font-weight:700;

}

.craft-bottom i{

    color:var(--soil-gold);

    font-size:1rem;

}


/*=====================================================
                NICE EFFECT
=====================================================*/

.craft-card::after{

    content:"";

    display:block;

    height:4px;

    width:0;

    background:linear-gradient(
        90deg,
        var(--leaf),
        var(--soil-gold)
    );

    transition:.4s;

}

.craft-card:hover::after{

    width:100%;

}


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

@media(max-width:992px){

    .craft-cover{

        height:240px;

    }

    .craft-content h3{

        font-size:1.7rem;

    }

}

@media(max-width:768px){

    .craft-section{

        padding:70px 0;

    }

    .section-title{

        font-size:2.1rem;

    }

    .craft-cover{

        height:220px;

    }

    .craft-content{

        padding:24px;

    }

    .craft-content h3{

        font-size:1.45rem;

    }

}

@media(max-width:576px){

    .craft-cover{

        height:200px;

    }

    .craft-overlay{

        opacity:1;

        background:linear-gradient(
            to top,
            rgba(0,0,0,.45),
            transparent
        );

        align-items:flex-end;

        padding-bottom:18px;

    }

    .craft-overlay-btn{

        transform:none;

        padding:10px 20px;

        font-size:.85rem;

    }

}

/* ===========================
   Explore Videos Card                                                                  (youtube card)
=========================== */

.video-explore-section{
    padding: 5rem 0;
    background: var(--paper-deep);
}

.video-explore-card{
    display: block;
    text-decoration: none;
    color: inherit;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color-light);
    box-shadow: var(--shadow-md);
    transition: all .35s ease;
}

.video-explore-card:hover{
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    color: inherit;
}

.video-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 3rem;
}

.video-icon{
    width: 90px;
    height: 90px;
    min-width: 90px;
    border-radius: 50%;
    background: rgba(255,0,0,.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-icon i{
    font-size: 3.5rem;
    color: #FF0000;
}

.video-text{
    flex: 1;
}

/* .video-tag{
    display: inline-block;
    padding: 6px 16px;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(31,93,62,.08);
    color: var(--primary);
    font-size: .85rem;
    font-weight: 600;
} */

.video-text h3{
    color: var(--ink);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: .8rem;
}

.video-text p{
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.video-arrow{
    width: 65px;
    height: 65px;
    min-width: 65px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all .3s ease;
}

.video-explore-card:hover .video-arrow{
    transform: translateX(8px);
}

.video-explore-card:hover .video-icon{
    transform: scale(1.08);
}

/* ===========================
   Responsive
=========================== */

@media (max-width:768px){

    .video-content{
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .video-text h3{
        font-size: 1.6rem;
    }

    .video-arrow{
        margin-top: .5rem;
    }

}

.cg-filter-btn {
    padding: 8px 16px;
    font-size: .8rem;
  }



.load-more-btn {
  margin-top: 2rem;
  padding: 12px 36px;
  border: none;
  border-radius: var(--radius-round);
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(10, 60, 38, 0.15);
  transition: var(--transition-smooth);
}

.load-more-btn:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}


.resx-nav-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--white);
  padding: 1.5rem 1rem;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.resx-nav-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary);
}

.resx-nav-card h6 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0;
  color: var(--primary);
}

.resx-category {
  display: inline-block;
  background: rgba(10, 60, 38, 0.05);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: var(--radius-round);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.resx-file-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  height: 100%;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.resx-file-card:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 185, 129, 0.15);
}

.resx-file-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.resx-file-type {
  background: #EF4444; 
  color: var(--white);
  padding: 4px 10px;
  border-radius: var(--radius-round);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
}

.resx-file-type.finance { background: #10B981; }
.resx-file-type.legal   { background: #F59E0B; }

.resx-file-year {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
}

.resx-file-card h5 {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.resx-file-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.resx-actions {
  display: flex;
  gap: 10px;
}

.resx-actions a {
  flex: 1;
  text-align: center;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.resx-actions a:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.resx-actions .download {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.resx-actions .download:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}


.resx-article-card {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  height: 100%;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.resx-article-card:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 185, 129, 0.15);
}

.resx-article-tag {
  display: inline-block;
  background: rgba(16, 185, 129, 0.08);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: var(--radius-round);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.resx-article-card h5 {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.resx-article-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}


.leadership-intro {
  background: var(--white);
}

.founder-block {
  margin-bottom: 4rem;
}

.founder-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}

.designation {
  color: var(--secondary);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.leader-highlights h6 {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.leader-highlights ul {
  list-style: none;
  padding: 0;
}

.leader-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.leader-highlights i {
  color: var(--secondary);
  font-size: 1rem;
  margin-top: 2px;
}


.advisor-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  cursor: pointer;
  height: 100%;

  max-width: 320px;
  margin: 0 auto;
  border-radius: 22px;

}

.advisor-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.15);
}

.advisor-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  background-color: var(--neutral-gray);
}

.advisor-content {
  padding: 1.5rem;
}

.advisor-content h4 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
  /* text-align: justify; */
  text-justify: inter-word; /* Better word spacing */

}

.advisor-role {
  display: block;
  color: var(--secondary);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.view-profile {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

.advisor-card:hover .view-profile {
  color: var(--secondary);
}


.modal-content {
  border-radius: var(--radius-md);
  border: none;
  box-shadow: var(--shadow-lg);
}

.modal-advisor-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--secondary);
  box-shadow: var(--shadow-md);
}

.advisor-tags {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--primary);
  line-height: 1.5;
}


.card-founder, .card-member, .team-member {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
}

.card-founder:hover, .card-member:hover, .team-member:hover {
  transform: translateY(-5px);
}

.card-founder img, .card-member img, .team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  border: 4px solid var(--neutral-warm);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.card-founder:hover img, .card-member:hover img, .team-member:hover .team-photo {
  transform: scale(1.05);
  border-color: var(--secondary);
}

.card-founder h3, .card-member h4, .team-member h5 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.role {
  color: var(--secondary);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}


.contact-box, .application-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.form-label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
}

.form-control {
  min-height: 48px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background-color: var(--white);
  padding: 0.75rem 1rem;
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

textarea.form-control {
  min-height: 140px;
}

.form-control:hover {
  border-color: rgba(16, 185, 129, 0.4);
}

.form-control:focus {
  border-color: var(--secondary);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
  color: var(--text-dark);
}


.form-group-focused .form-label {
  color: var(--secondary);
}


.join-option {
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  height: 100%;
}

.join-option:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.join-option.active {
  border-color: var(--secondary);
  background: var(--sage-tint);
}

.join-option i {
  font-size: 2.25rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

.join-option.active i {
  color: var(--secondary);
}

.join-option h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.join-option p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}


.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
}

.accordion-button {
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1rem 1.25rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition-fast);
}

.accordion-button:not(.collapsed) {
  background: var(--primary);
  color: var(--white);
  box-shadow: none;
}

.accordion-button::after {
  background-size: 1rem;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  background: var(--white);
}


.whatsapp-float,
.facebook-float,
.instagram-float,
.linkedin-float,
.email-float {
    position: fixed;
    right: 15px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,.15);
    transition: var(--transition-bounce);
    z-index: 1030;
    text-decoration: none;
}

/* Position */
.whatsapp-float {
    bottom: 85px;
}

.facebook-float {
    bottom: 145px;
}

.instagram-float {
    bottom: 205px;
}

.linkedin-float {
    bottom: 265px;
}

.email-float {
    bottom: 325px;
}

/* Icon Colors */
.whatsapp-float i {
    color: #25D366;
}

.facebook-float i {
    color: #1877F2;
}

.instagram-float i {
    color: #E4405F;
}

.linkedin-float i {
    color: #0A66C2;
}

.email-float i {
    color: #EA4335;
}

/* Hover */
.whatsapp-float:hover,
.facebook-float:hover,
.instagram-float:hover,
.linkedin-float:hover,
.email-float:hover {
    transform: scale(1.1) rotate(5deg);
}


footer.footer-section {
  background: var(--white);
  color: var(--text-dark);
  padding: 4rem 1rem 1.5rem;
  border-top: 4px solid var(--primary);
  border-bottom: 1px solid var(--border-color-light);
  position: relative;
  overflow: hidden;
}

.footer-logo {
  height: 160px;
  width: auto;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.footer-brand h4 {
  display: none !important;
}

.footer-text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.footer-social-links {
  display: flex;
  gap: 10px;
}

.footer-social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(10, 60, 38, 0.05);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-bounce);
}

.footer-social-links a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 1.5rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--secondary);
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-contact i {
  color: var(--primary);
  font-size: 1rem;
  margin-right: 10px;
  margin-top: 2px;
}

.footer-contact a {
  color: var(--text-muted);
}

.footer-contact a:hover {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  margin-top: 3rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-muted);
  margin-left: 10px;
  transition: var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--primary);
}


@media (min-width: 576px) {
  section {
    padding: 5rem 2rem;
  }
  
  .section-title {
    font-size: 2.1rem;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .hero p {
    font-size: 1.1rem;
  }
  

}

@media (min-width: 768px) {
  section {
    padding: 6rem 3rem;
  }

  .hero {
    min-height: 80vh;
    padding-top: 8rem;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .hero-edge {
    height: 45px;
  }

  .hero-edge2 {
    height: 60px;
  }


  
  .logo-track {
    gap: 50px;
  }

  .logo-item {
    width: 150px;
    height: 75px;
  }
}

@media (min-width: 992px) {
  section {
    padding: 7rem 4rem;
  }
}

/* Force mobile hamburger collapse on tablets / small laptops (under 1150px) */
@media (max-width: 1149.98px) {
  .navbar-expand-lg .navbar-toggler {
    display: flex !important;
  }
  .navbar-expand-lg .navbar-collapse {
    display: none !important;
  }
}

/* Full-size desktop navigation starting at 1150px */
@media (min-width: 1150px) {
  .navbar-toggler {
    display: none !important;
  }

  .navbar-collapse {
    display: flex !important;
    align-items: center;
  }

  .navbar-nav {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .navbar-brand img {
    height: 90px;
    width: auto;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
  }

  .navbar-scrolled .navbar-brand img {
    height: 90px;
  }

  .nav-link {
    color: var(--text-dark) !important;
    font-weight: 600;
    font-size: 0.92rem;
    position: relative;
    padding: 0.5rem 0.9rem !important;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
  }

  .nav-link:hover {
    color: var(--secondary) !important;
    background: rgba(16, 185, 129, 0.05);
  }

  .nav-link::after {
    content: '';
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -2px;
    height: 2.5px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-actions {
    margin-left: 1.5rem !important;
  }

  .nav-actions .btn-main {
    padding: 10px 24px !important;
    font-size: 0.92rem !important;
  }

  .nav-link:hover::after {
    transform: scaleX(1);
  }

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

  .dropdown-menu.mega-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: min(1120px, 95vw);
    padding: 2.25rem;
    border: 1px solid var(--border-color) !important;
    border-top: 4px solid var(--primary) !important;
    border-radius: var(--radius-md) !important;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, visibility 0.25s ease;
    z-index: 1000;
  }

  .dropdown-menu.mega-menu::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
  }

  .nav-item.dropdown.menu-open-desktop .dropdown-menu.mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .mega-title {
    color: var(--primary);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
  }

  .mega-text {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .mega-btn {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.88rem;
    transition: var(--transition-fast);
  }

  .mega-btn:hover {
    color: var(--secondary);
    transform: translateX(4px);
  }

  .dropdown-item {
    display:flex;
    align-items:center;
    padding: 10px 14px;
    margin-bottom: 4px;
    color: var(--text-dark);
    font-size: 0.88rem;
    font-weight: 500;
    background: transparent !important;
    border-radius: var(--radius-sm);
    border-bottom: 1px solid var(--neutral-warm);
    transition: var(--transition-fast);
    white-space: normal;
  }

  .dropdown-item:last-child {
    border-bottom: none;
  }

  .dropdown-item:hover {
    color: var(--primary);
    background: rgba(16, 185, 129, 0.06) !important;
    padding-left: 20px;
  }

}



@media (min-width: 992px) {
  .story-image {
    margin-bottom: 0;
  }

  .story-content {
    padding: 3rem;
  }

  .founder-image {
    margin-bottom: 0;
  }

  .presence-map {
    margin-bottom: 0;
  }
}

@media (min-width: 1200px) {
  section {
    padding: 8rem 6rem;
  }

  .hero h1 {
    font-size: 3.75rem;
  }
  

}

.sdg-icons-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.sdg-inline-icon {
  width: 75px !important;
  height: 75px !important;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color-light);
  transition: transform 0.2s ease;
}

.sdg-inline-icon:hover {
  transform: scale(1.08);
}


/* media center */

/* Card */

.resx-news-card{

    border-radius:18px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.resx-news-card:hover{

    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.15);
}

/* Thumbnail */

.news-img{

    width:100%;
    height:260px;
    object-fit:cover;
    cursor:pointer;
    transition:.35s;
}

.news-img:hover{

    transform:scale(1.04);
}

/* ---------- IMAGE MODAL ---------- */

.modal{

    background:rgba(0,0,0,.9);
}

.modal-fit{

    max-width:fit-content;
    width:auto;
}

.image-modal{

    background:transparent;
    border:none;
    box-shadow:none;
}

.image-modal img{

    display:block;
    max-width:90vw;
    max-height:90vh;
    width:auto;
    height:auto;
    border-radius:12px;
}

.image-close{

    position:absolute;
    top:-15px;
    right:-15px;
    background:#fff;
    border-radius:50%;
    padding:12px;
    opacity:1;
    z-index:100;
}


/* =========================
   SERVICES
========================= */

.service-card{
    background: var(--white);
    border-radius:22px;
    overflow:hidden;
    border:1px solid var(--border-color);
    box-shadow:var(--shadow-sm);
    transition:var(--transition-smooth);
    cursor:pointer;
    height:100%;
    max-width:320px;
    margin:0 auto;
}

.service-card:hover{
    transform:translateY(-6px);
    border-color:rgba(16,185,129,.18);
    box-shadow:var(--shadow-md);
}

.service-image{
    width:100%;
    height:280px;
    object-fit:cover;
    background:var(--neutral-gray);
    transition:.35s;
}

.service-card:hover .service-image{
    transform:scale(1.04);
}

.service-content{
    padding:1.5rem;
    text-align:center;
}

.service-content h4{
    font-size:1.15rem;
    font-weight:700;
    margin-bottom:1rem;
    color:var(--text-dark);
}

.service-content p{
    font-size:.9rem;
    color:var(--text-muted);
    line-height:1.7;
    margin-bottom:1.25rem;
}

.service-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--primary);
    font-weight:600;
    font-size:.9rem;
    transition:.3s;
}

.service-card:hover .service-link{
    color:var(--secondary);
    gap:14px;
}



/* privacy policy */

/*==============================
  Legal Pages
==============================*/

.legal-page{
    background:#fff;
    padding:80px 0;
}

.legal-content{
    max-width:900px;
    margin:0 auto;
}

/*==============================
  Header
==============================*/

.legal-header{
    text-align:center;
    margin-bottom:70px;
}

.legal-header h1{
    font-size:3rem;
    font-weight:700;
    color:var(--leaf-deep);
    margin-bottom:.75rem;
}

.legal-header p{
    color:#6b7280;
    font-size:1rem;
}

/*==============================
  Sections
==============================*/

.policy-section{
    margin-bottom:3.5rem;
}

.policy-section h2{
    font-size:1.75rem;
    font-weight:700;
    color:var(--leaf-deep);
    margin-bottom:1rem;
    padding-bottom:.75rem;
    border-bottom:2px solid rgba(79,163,119,.2);
}

.policy-section p{
    color:#555;
    line-height:1.9;
    margin-bottom:1rem;
}

.policy-section ul{
    padding-left:1.5rem;
    margin-top:1rem;
}

.policy-section li{
    margin-bottom:.8rem;
    color:#555;
    line-height:1.9;
}

/*==============================
  Contact Box
==============================*/

.contact-box{
    margin-top:1.5rem;
    padding-top:1.5rem;
    border-top:1px solid #ddd;
}

.contact-box p{
    margin-bottom:.4rem;
}

/*==============================
  Mobile
==============================*/

@media (max-width:768px){

    .legal-page{
        padding:60px 0;
    }

    .legal-content{
        padding:0 20px;
    }

    .legal-header{
        margin-bottom:50px;
    }

    .legal-header h1{
        font-size:2.2rem;
    }

    .policy-section{
        margin-bottom:2.5rem;
    }

    .policy-section h2{
        font-size:1.5rem;
    }

}