

/* ─── ROOT COLORS ─── */
 :root {
    --orange: #E8570A;
    --orange-light: #FF7B35;
    --orange-pale: #FFF0E6;
    --cream: #FDF6EE;
    --dark: #1A0F05;
    --charcoal: #2E1F10;
    --mid: #7A5C3F;
    --sand: #C9A97A;
    --white: #FFFFFF;
  }

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

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
    
  }

  /* ─── NOISE TEXTURE OVERLAY ─── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
  }

/* ─── NAVBAR ─── */

/* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 4rem;
    background: rgba(253, 246, 238, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(232, 87, 10, 0.15);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
  }

  .logo-mark,
.nav-logo-img {
  height: clamp(32px, 4vw, 48px);
  width: auto;
}
  /* SVG Logo */
  .logo-mark {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .nav-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }

  .nav-brand-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    color: var(--dark);
  }

  .nav-brand-sub {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--mid);
    margin-top: 2px;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--charcoal);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--orange);
    transition: width 0.3s;
  }

  .nav-links a:hover { color: var(--orange); }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    background: var(--orange);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 2px;
    transition: background 0.3s, transform 0.2s !important;
  }

  .nav-cta:hover {
    background: var(--charcoal) !important;
    transform: translateY(-1px);
  }

  .nav-cta::after { display: none !important; }



  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 3rem 6rem 4rem;
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 500;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
  }

  .hero-eyebrow span {
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--orange);
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 5.5vw, 6rem);
    line-height: 1.0;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
  }

  .hero-title em {
    font-style: italic;
    color: var(--orange);
  }

  .hero-tagline {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--mid);
    font-weight: 300;
    max-width: 480px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s forwards;
  }

  .hero-tagline strong {
    color: var(--dark);
    font-weight: 500;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s forwards;
  }



/* SVG STYLES */
.globe-outer,
.globe-mid,
.globe-inner {
    fill: none;
    stroke: rgba(232,87,10,0.2);
}

.globe-ellipse1,
.globe-ellipse2,
.globe-line {
    fill: none;
    stroke: rgba(232,87,10,0.15);
}

.route1 {
    fill: none;
    stroke: #FF7B35;
    stroke-width: 2;
    stroke-dasharray: 6 4;
}

.route2 {
    fill: none;
    stroke: #E8570A;
    stroke-width: 2;
    opacity: 0.5;
    stroke-dasharray: 6 4;
}

.dot {
    fill: #FF7B35;
}

.dot-small {
    fill: #E8570A;
}

.dot-center {
    fill: #FF7B35;
    opacity: 0.8;
}


 .hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(232, 87, 10, 0.2);
    opacity: 0;
    animation: fadeUp 0.8s 1.1s forwards;
  }

  .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: var(--orange);
    line-height: 1;
    letter-spacing: 0.05em;
  }

  .stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mid);
    margin-top: 0.3rem;
  }
  /* ─── HERO RIGHT ─── */
  .hero-right {
    position: relative;
    overflow: hidden;
    background: var(--dark);
  }

  .hero-bg-pattern {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 70% 30%, rgba(232, 87, 10, 0.35) 0%, transparent 60%),
      radial-gradient(ellipse at 30% 80%, rgba(201, 169, 122, 0.2) 0%, transparent 50%);
  }

  .hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
  }

  
  .hero-globe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 420px;
    animation: spin 30s linear infinite;
  }

  .hero-floating-cards {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .float-card {
    position: absolute;
    background: rgba(253, 246, 238, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(232, 87, 10, 0.3);
    border-radius: 4px;
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-size: 0.8rem;
    white-space: nowrap;
    animation: floatY 4s ease-in-out infinite;
  }

  .float-card:nth-child(1) { top: 18%; left: 8%; animation-delay: 0s; }
  .float-card:nth-child(2) { top: 42%; right: 8%; animation-delay: 1.5s; }
  .float-card:nth-child(3) { bottom: 22%; left: 12%; animation-delay: 0.8s; }

  .float-icon {
    font-size: 1.4rem;
    line-height: 1;
  }

  .float-text { line-height: 1.3; }
  .float-text strong { display: block; font-size: 0.85rem; color: var(--orange-light); }



/* ─── BUTTONS ─── */


  .btn-primary {
    background: var(--orange);
    color: var(--white);
    padding: 1rem 2.2rem;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  }

  .btn-primary:hover {
    background: var(--dark);
    transform: translateY(-2px);
  }

  .btn-secondary {
    background: transparent;
    color: var(--dark);
    padding: 1rem 2rem;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    border: 1.5px solid var(--dark);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
  }

  .btn-secondary:hover {
    background: var(--dark);
    color: var(--cream);
  }

.full-btn {
    width: 100%;
    display: block;
    text-align: center;
    margin-top: 0.5rem;
}




  /* ─── SECTION GENERIC ─── */
  section { position: relative; }

  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 500;
    margin-bottom: 1rem;
  }

  .section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--orange);
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 1.2rem;
  }

  /* ─── MARQUEE BAND ─── */
  .marquee-band {
    background: var(--orange);
    padding: 0.9rem 0;
    overflow: hidden;
    display: flex;
  }

  .marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 18s linear infinite;
    white-space: nowrap;
    will-change: transform;
  }

  .marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    color: var(--white);
    padding: 0 2rem;
  }

  .marquee-dot {
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* ─── SERVICES ─── */
  .services {
    padding: 8rem 4rem;
    background: var(--cream);
  }

  .services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: end;
  }

  .services-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--mid);
    font-weight: 300;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(122, 92, 63, 0.15);
  }

  .service-card {
    background: var(--cream);
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
    cursor: default;
  }

  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
  }

  .service-card:hover { background: var(--orange-pale); }
  .service-card:hover::before { transform: scaleX(1); }

  .service-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: rgba(232, 87, 10, 0.1);
    line-height: 1;
    margin-bottom: 1.5rem;
    transition: color 0.4s;
  }

  .service-card:hover .service-num { color: rgba(232, 87, 10, 0.25); }

  .service-icon-wrap {
    width: 56px;
    height: 56px;
    background: var(--orange-pale);
    border: 1.5px solid rgba(232, 87, 10, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: background 0.4s, border-color 0.4s;
  }

  .service-card:hover .service-icon-wrap {
    background: var(--orange);
    border-color: var(--orange);
  }

  .service-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.8rem;
  }

  .service-text {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--mid);
  }

  .service-products {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .product-tag {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(232, 87, 10, 0.1);
    color: var(--orange);
    padding: 0.3rem 0.7rem;
    border-radius: 1px;
  }





  /* ─── WHY US ─── */
  .why-us {
    padding: 8rem 4rem;
    background: var(--dark);
    color: var(--white);
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
    align-items: center;
    overflow: hidden;
    position: relative;
  }

  .why-us::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(232, 87, 10, 0.15) 0%, transparent 70%);
    pointer-events: none;
  }

  .why-section-label { color: var(--orange-light); }
  .why-section-label::before { background: var(--orange-light); }

  .why-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 3.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
  }

  .why-title em { color: var(--orange-light); font-style: italic; }

  .why-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.55);
    font-weight: 300;
    margin-bottom: 2.5rem;
  }

  .why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .why-feature {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, background 0.3s;
  }

  .why-feature:hover {
    border-color: rgba(232, 87, 10, 0.4);
    background: rgba(232, 87, 10, 0.06);
  }

  .feature-icon { font-size: 1.6rem; margin-bottom: 0.75rem; }

  .feature-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
  }

  .feature-text {
    font-size: 0.78rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.45);
  }

  /* ─── WORLD MAP SECTION ─── */
  .reach {
    padding: 8rem 4rem;
    background: var(--cream);
    text-align: center;
  }

  .reach-header {
    max-width: 600px;
    margin: 0 auto 4rem;
  }

  .reach-map-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    background: var(--orange-pale);
    border: 1px solid rgba(232, 87, 10, 0.2);
    border-radius: 4px;
    padding: 3rem;
    overflow: hidden;
  }

  * CONTINENTS */
.na,.sa,.eu,.af,.as {
    fill: rgba(232,87,10,0.2);
    stroke: rgba(232,87,10,0.4);
    stroke-width: 1.5;
}

.as {
    fill: rgba(255,90,10,0.35);
    stroke: rgba(232,87,10,0.7);
    stroke-width: 2;
}

/* INDIA */
.india {
    fill: #E8570A;
    stroke: #FF7B35;
    stroke-width: 2;
    opacity: 0.9;
}

/* ROUTES */
.route {
    fill: none;
    stroke: #FF7B35;
    stroke-width: 1.8;
    stroke-dasharray: 8,4;
    opacity: 0.8;
}

.route3 {
    stroke: #E8570A;
    stroke-width: 1.5;
    stroke-dasharray: 6,4;
    opacity: 0.6;
}

/* DOTS */
.dot {
    fill: #FF7B35;
}

.small {
    fill: #E8570A;
}

/* INDIA ANIMATION DOTS */
.india-dot {
    fill: #FF7B35;
}

.india-ring1 {
    fill: none;
    stroke: #FF7B35;
    stroke-width: 2;
    opacity: 0.4;
}

.india-ring2 {
    fill: none;
    stroke: #FF7B35;
    stroke-width: 1;
    opacity: 0.2;
}

/* TEXT */
.india-text {
    font-family: sans-serif;
    font-size: 12px;
    fill: #E8570A;
}

/* NOTE */
.reach-note {
    font-size: 0.8rem;
    color: #7A5C3F;
    margin-top: 15px;
    letter-spacing: 0.1em;
}

/*  */
/*  */
/* 🌍 GLOBAL MAP */
#global-map {
  height: 420px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 30px;
  position: relative;
  z-index: 0;
  margin-top: 20px;
}





/* Mobile optimization */
@media (max-width: 768px) {
  #global-map {
    height: 320px;
  }
}

/* Smooth interaction */
.leaflet-container {
  background: #0f172a;
  touch-action: pan-x pan-y;
   z-index:  0!important;
}




/* REGIONS */
.reach-regions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

  .reach-regions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }

  .region-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid rgba(232, 87, 10, 0.1);
    transition: border-color 0.3s, transform 0.3s;
  }

  .region-item:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
  }

  .region-flag { font-size: 2rem; margin-bottom: 0.75rem; }

  .region-name {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mid);
    font-weight: 500;
  }
.reach-description {
    color: #7A5C3F;
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
    margin-top: 10px;
}

.center-label {
    justify-content: center;
}



/* ─── PROCESS ─── */
  .process {
    padding: 8rem 4rem;
    background: var(--charcoal);
    color: var(--white);
  }

  .process-header {
    text-align: center;
    margin-bottom: 5rem;
  }

  .process-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
  }

  .process-desc-text {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
  }


  
  .process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange) 20%, var(--orange) 80%, transparent);
    z-index: 0;
  }

  .step {
    text-align: center;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
  }

  .step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--charcoal);
    border: 2px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    transition: background 0.3s;
  }

  .step:hover .step-circle {
    background: var(--orange);
  }

  .step-num {
    position: absolute;
    top: -6px;
    right: calc(50% - 46px);
    background: var(--orange);
    color: var(--white);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .step-title {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
  }

  .step-text {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.5;
  }



/* ─── CONTACT ─── */
.contact {
    padding: 8rem 4rem;
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
  }

  .contact-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .contact-description{
     font-size: 0.95rem;
    line-height: 1.8;
    color: #7A5C3F;
    font-weight: 300;
    margin-top: 10px;
    max-width: 400px;
  }
  .contact-info {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--orange-pale);
    border-left: 3px solid var(--orange);
  }

  .contact-item-icon { font-size: 1.2rem; flex-shrink: 0; }

  .contact-item-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;  
  }
  .contact-item-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 0.2rem;
  }
  .contact-item-val {
    font-size: 0.9rem;
    color: var(--dark);
    font-weight: 500;
  }

  .contact-form-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }


  .form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2rem;
  }

  .form-group {
    margin-bottom: 1.2rem;
  }

  .form-label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 0.5rem;
    font-weight: 500;
  }

  .form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--white);
    border: 1.5px solid rgba(122, 92, 63, 0.2);
    color: var(--dark);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.3s;
    appearance: none;
    border-radius: 0;
  }

  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--orange);
  }

  .form-textarea { resize: vertical; min-height: 100px; }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

/* -------------─── GALLARY ───------------------ */
/* GALLARY LAYOUT */


.gallery-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.gallery-link:hover {
  cursor: pointer;
}

.gallery {
    padding: 8rem 4rem;
    background: var(--charcoal);
    color: var(--white);
  }
/* .gallery {
  position: relative;
  padding: 7rem 4rem 8rem;
  background:
    radial-gradient(1200px 500px at 85% 10%, rgba(232,87,10,0.08), transparent 60%),
    radial-gradient(900px 400px at 10% 95%, rgba(201,169,122,0.12), transparent 65%),
    var(--cream);
  overflow: hidden;
} */
.gallery::before {
  content: \"\";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--sand) 1px, transparent 1px),
    linear-gradient(90deg, var(--sand) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.05;
  pointer-events: none;
}

.gallery-header {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
.gallery-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  line-height: 1.08;
  color: var(--dark);
  margin: 1.2rem 0;
  letter-spacing: -0.01em;
}
.gallery-title em {
  font-style: italic;
  color: var(--orange);
  position: relative;
}
.gallery-title em::after {
  content: \"\";
  position: absolute; left: 0; right: 0; bottom: 4px;
  height: 10px;
  background: rgba(232, 87, 10, 0.15);
  z-index: -1;
  border-radius: 2px;
}
.gallery-desc {
  font-size: 1.05rem;
  color: var(--mid);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* ─── BENTO COLLAGE GRID ─── */
.bento {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 150px;
  gap: 1.1rem;
  position: relative;
  z-index: 2;
}
.bento-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: var(--charcoal);
  cursor: zoom-in;
  box-shadow:
    0 1px 2px rgba(26, 15, 5, 0.06),
    0 10px 30px rgba(26, 15, 5, 0.06);
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  animation: bentoReveal 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.bento-item:nth-child(1) { animation-delay: 0.05s; }
.bento-item:nth-child(2) { animation-delay: 0.15s; }
.bento-item:nth-child(3) { animation-delay: 0.25s; }
.bento-item:nth-child(4) { animation-delay: 0.35s; }
.bento-item:nth-child(5) { animation-delay: 0.45s; }

@keyframes bentoReveal {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.bento-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.6s ease;
  filter: saturate(1.05);
}
.bento-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.15) brightness(1.02);
}

/* gradient veil over each image */
.bento-item::after {
  content: \"\";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(26, 15, 5, 0.78) 100%);
  opacity: 0.85;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.bento-item:hover::after { opacity: 1; }

/* caption */
.bento-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.25rem 1.4rem;
  color: var(--white);
  z-index: 2;
  transform: translateY(12px);
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.bento-item:hover .bento-caption { transform: translateY(0); }

.bento-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  background: var(--orange);
  color: var(--white);
  border-radius: 999px;
  margin-bottom: 0.6rem;
}
.bento-cap-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.bento-cap-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease 0.1s;
}
.bento-item:hover .bento-cap-sub {
  max-height: 60px;
  opacity: 1;
}

/* expand indicator on hover */
.bento-expand {
  position: absolute;
  top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(253, 246, 238, 0.92);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  z-index: 3;
  transform: scale(0.6);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.4s ease;
  backdrop-filter: blur(6px);
}
.bento-item:hover .bento-expand {
  transform: scale(1);
  opacity: 1;
}

/* ─── BENTO LAYOUT (desktop) ─── */
.bento-item.feature { grid-column: span 3; grid-row: span 3; }  /* turmeric hero */
.bento-item.spice   { grid-column: span 3; grid-row: span 2; }  /* chili */
.bento-item.award   { grid-column: span 2; grid-row: span 2; }  /* award */
.bento-item.field   { grid-column: span 1; grid-row: span 2; }  /* farmer field */
.bento-item.seminar { grid-column: span 6; grid-row: span 2; }  /* seminar */

/* tablet */
@media (max-width: 1024px) {
  .gallery { padding: 5rem 2rem 6rem; }
  .bento {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 140px;
  }
  .bento-item.feature { grid-column: span 4; grid-row: span 3; }
  .bento-item.spice   { grid-column: span 2; grid-row: span 2; }
  .bento-item.award   { grid-column: span 2; grid-row: span 2; }
  .bento-item.field   { grid-column: span 2; grid-row: span 2; }
  .bento-item.seminar { grid-column: span 4; grid-row: span 2; }
}

/* mobile */
@media (max-width: 640px) {
  .gallery { padding: 4rem 1.2rem 5rem; }
  .gallery-header { margin-bottom: 2.5rem; }
  .bento {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 120px;
    gap: 0.8rem;
  }
  .bento-item.feature { grid-column: span 2; grid-row: span 3; }
  .bento-item.spice   { grid-column: span 2; grid-row: span 2; }
  .bento-item.award   { grid-column: span 1; grid-row: span 2; }
  .bento-item.field   { grid-column: span 1; grid-row: span 2; }
  .bento-item.seminar { grid-column: span 2; grid-row: span 2; }
  .bento-cap-title { font-size: 1.05rem; }
  /* mobile: always show captions (no hover on touch) */
  .bento-item .bento-caption { transform: translateY(0); }
  .bento-item .bento-cap-sub { max-height: 60px; opacity: 1; }
}

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 6, 3, 0.92);
  backdrop-filter: blur(14px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.lightbox.open {
  display: flex;
  opacity: 1;
}

.lightbox-stage {
  position: relative;
  max-width: min(1100px, 92vw);
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  animation: lbIn 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@keyframes lbIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox-info {
  color: var(--white);
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}
.lightbox-info span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-top: 0.4rem;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(253, 246, 238, 0.1);
  border: 1px solid rgba(253, 246, 238, 0.25);
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.3rem;
  transition: background 0.3s ease, transform 0.3s ease;
}
.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.08);
}
.lightbox-close { top: -60px; right: 0; }
.lightbox-prev  { left: -70px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: -70px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover,
.lightbox-next:hover {
  transform: translateY(-50%) scale(1.08);
}

@media (max-width: 720px) {
  .lightbox-prev  { left: 0.5rem; }
  .lightbox-next  { right: 0.5rem; }
  .lightbox-close { top: 0.5rem; right: 0.5rem; }
}







/* -------------─── FOOTER ───------------------ */
/* FOOTER LAYOUT */


.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 50px 20px;
    background-color: #1A0F05;
    color: #ffffff;
}

/* BRAND */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 5rem 4rem 2rem;
  }

  .footer-top {
    display: grid;
    grid-template-columns:  1.5fr 1fr 1fr 1fr 0.7fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 2rem;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.2rem;
  }
/* TAGLINE */
.footer-tagline {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
    max-width: 280px;
    margin-bottom: 1.5rem;
  }

/* CERT BADGES */

  .footer-cert {
    display: flex;
    gap: 1rem;
  }

  .cert-badge {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(232, 87, 10, 0.15);
    color: var(--orange-light);
    border: 1px solid rgba(232, 87, 10, 0.3);
    padding: 0.3rem 0.7rem;
  }


/* COLUMN */
.footer-col-title {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--orange-light);
    margin-bottom: 1.2rem;
    font-weight: 500;
  }

  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 0.6rem; }
  .footer-links a {
    text-decoration: none;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    transition: color 0.3s;
  }
  .footer-links a:hover { color: var(--orange-light); }

.footer-links a:hover {
    color: #E8570A;
}


/* SVG STYLING */
.logo-circle {
    fill: #2E1F10;
    stroke: #E8570A;
    stroke-width: 2;
}

.logo-ellipse,
.logo-line {
    stroke: #E8570A;
    stroke-width: 1.2;
    opacity: 0.5;
    fill: none;
}

.logo-path {
    stroke: #FF7B35;
    stroke-width: 2.2;
    fill: none;
    stroke-linecap: round;
}

.logo-arrow,
.logo-dot {
    fill: #FF7B35;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #1A0F05;
    color: #ffffff;
    font-size: 0.9rem;
}

/* Quote styling */
.footer-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: rgba(232, 87, 10, 0.6);
    font-size: 0.85rem;
}

/* Links styling */
.footer-links {
    opacity: 0.8;
}

/* SOCIAL COLUMN */
.social-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* ICONS */
.footer-social-icons {
    display: flex;
    gap: 14px;
    margin-top: 10px;
}

.footer-social-icons a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background: var(--orange);
    transform: translateY(-3px);
}

.footer-social-icons img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* SOCIAL LINKS */
.social-links{
  display:flex;
  gap:14px;
  margin-top:24px;
  flex-wrap:wrap;
}

.social-btn{
  text-decoration:none;
  padding:10px 18px;
  border-radius:12px;
  color:#fff;
  font-weight:600;
  font-size:14px;
  transition:0.3s ease;
}

.instagram{
  background:linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}

.linkedin{
  background:#0077b5;
}

.social-btn:hover{
  transform:translateY(-3px);
  opacity:0.92;
}

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @keyframes spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
  }

  @keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
  }

  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* World map SVG style */
  .world-svg {
    width: 100%;
    opacity: 0.35;
    filter: brightness(0.8);
  }

  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s, transform 0.7s;
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }
 

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}


@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-cert {
        justify-content: center;
    }
}





/* Fixing hero  */

@media (max-width: 768px) {

  .hero{
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 90px;
  }

  .hero-left{
    padding: 4rem 1.5rem 3rem;
    text-align: center;
    align-items: center;
  }

  .hero-right{
    min-height: 420px;
  }

  .hero-title{
    font-size: clamp(3rem, 12vw, 4.2rem);
    line-height: 1.05;
  }

  .hero-tagline{
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-actions{
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .hero-actions a{
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .hero-stats{
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .hero-globe{
    width: 260px;
    height: 260px;
  }

  .float-card{
    display:none;
  }
}



/* =========================================
   MOBILE NAVBAR ONLY
========================================= */
/* =========================================
   MOBILE NAVBAR FIX
========================================= */
/* =========================================
   MOBILE NAVBAR FIX
========================================= */

.hamburger{
  display:none;
}

@media(max-width:900px){

  nav{
    position:relative;
    padding:1rem 1.5rem;
  }

  .hamburger{
    display:flex;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
    z-index:10001;
  }

  .hamburger span{
    width:28px;
    height:3px;
    background:var(--dark);
    border-radius:10px;
    transition:0.3s;
  }

  .nav-links{
    position:absolute;
    top:100%;
    left:0;

    width:100%;
    background:var(--cream);

    flex-direction:column;
    align-items:center;
    gap:24px;

    max-height:0;
    overflow:hidden;

    padding:0;

    transition:all 0.4s ease;
    z-index:9999;

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

  .nav-links.active{
    max-height:500px;
    padding:30px 0;
  }

  .nav-links li{
    width:100%;
    text-align:center;
  }

}


/* =========================================
   MOBILE SERVICES GRID FIX
========================================= */

@media (max-width: 1024px){

  .services{
    padding: 5rem 2rem;
  }

  .services-header{
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-grid{
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px){

  .services{
    padding: 4rem 1.2rem;
  }

  .services-grid{
    grid-template-columns: 1fr;
  }

  .service-card{
    padding: 2rem 1.5rem;
  }

}

/* =========================================
   WHY-US MOBILE FIX
========================================= */

@media (max-width:768px){

  .why-us{
    grid-template-columns:1fr;
    padding:5rem 1.5rem;
    gap:3rem;
  }

  .why-features{
    grid-template-columns:1fr;
  }

}


/* =========================================
   PROCESS MOBILE FIX
========================================= */

@media (max-width:768px){

  .process{
    padding:5rem 1.5rem;
  }

  .process-steps{
    grid-template-columns:1fr;
    gap:2.5rem;
  }

  .process-steps::before{
    display:none;
  }

}

/* =========================================
   MOBILE CONTACT FIX
========================================= */

@media (max-width:768px){

  .contact{
    grid-template-columns:1fr !important;
    gap:3rem !important;
    padding:5rem 1.5rem !important;
  }

  .form-row{
    grid-template-columns:1fr !important;
  }

}

/* =========================================
   REACH MOBILE FIX
========================================= */

@media (max-width:768px){

  .reach{
    padding:5rem 1.5rem;
  }

  .reach-header{
    margin-bottom:2.5rem;
  }

  .reach-map-container{
    padding:1.5rem;
  }

  #global-map{
    height:300px;
  }

  .reach-regions{
    grid-template-columns:1fr;
    gap:1rem;
  }

  .region-item{
    padding:1.2rem;
  }

}