* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #FBF5EB;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  background-image: url('../image/logo/VoltSeal-Logo_Icon.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.1;
  z-index: 100;
  pointer-events: none;
}

header,
footer,
nav,
.dark-bg,
section[style*="background-color: #000"] {
  position: relative;
  z-index: 101;
  background-color: #0a332d !important;
}

section {
  position: relative;
  z-index: 1;
}

.hero,
.hero-small {
  position: relative;
  z-index: 101;
  background-color: #F4EFD8;
}

/* --- Navbar --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  padding: 10px 2%;
  z-index: 1001;
  transition: all 0.4s ease;
}

header.scrolled {
  padding: 15px 8%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  z-index: 1002;
  letter-spacing: -0.5px;
}

.logo span {
  color: #0e6654;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: #FFF;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 8px;
  padding: 10px 0;
  cursor: pointer;
}

nav ul li a:hover,
nav ul li a.active {
  color: #17C64F !important;
}

/* --- Dropdown Desktop --- */
.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #111;
  min-width: 220px;
  padding: 10px 0;
  border-top: 3px solid #0e6654;
  display: none;
  border-radius: 4px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  z-index: 1000;
}

nav ul li::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
  display: block;
}

@media (min-width: 993px) {
  nav ul li:hover .dropdown-menu {
    display: block;
    animation: slideIn 0.3s ease forwards;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-menu li a {
  padding: 12px 25px !important;
  display: block;
  text-transform: capitalize !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #ccc !important;
}

/* --- Hero Slider (SMOOTH FADING - NO BLACK SCREEN GLITCH) --- */
.hero {
  height: 90vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 8%;
  overflow: hidden;
  background-color: #000;
}

/* Ab slides ek ke upar ek hongi, side-by-side nahi */
.bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  /* Default me sabhi hide rahengi */
  z-index: 1;
  animation: imageFade 16s infinite ease-in-out;
}

/* Har ek image ki timing ko alag delay diya hai taaki ek ke baad ek aaye */
.slide1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../image/banner/b3.png');
  animation-delay: 0s;
}

.slide2 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../image/banner/b2.png');
  animation-delay: 4s;
  /* 4 second baad */
}

.slide3 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../image/banner/b1.png');
  animation-delay: 8s;
  /* 8 second baad */
}

.slide4 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../image/banner/b4.png');
  animation-delay: 12s;
  /* 12 second baad */
}

/* FADING TIMELINE: Image aayegi, rukegi, aur smoothly doosri ke liye jagah banayegi */
@keyframes imageFade {
  0% {
    opacity: 0;
    z-index: 2;
  }

  5%,
  25% {
    opacity: 1;
    /* Screen par dikhegi */
    z-index: 2;
  }

  30%,
  100% {
    opacity: 0;
    /* Gayab ho jayegi */
    z-index: 1;
  }
}

/* --- HERO TEXT CONTROL (PERFECT SYNC WITH IMAGES) --- */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  color: #fff;
  margin-top: 60px;
  height: 150px;
}

.hero-content h1,
.hero-content h2,
.hero-content .t1,
.hero-content .t2,
.hero-content .t3,
.hero-content .t4 {
  font-size: 30px;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  margin: 0 !important;
  padding: 0 !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  animation: textFade 16s infinite ease-in-out;
}

.hero-content .t1 {
  animation-delay: 0s;
}

.hero-content .t2 {
  animation-delay: 4s;
}

.hero-content .t3 {
  animation-delay: 8s;
}

.hero-content .t4 {
  animation-delay: 12s;
}

@keyframes textFade {
  0% {
    opacity: 0;
    visibility: hidden;
  }

  5%,
  25% {
    opacity: 1;
    visibility: visible;
  }

  30%,
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

/* --- MOBILE RESPONSIVE FOR FADING SLIDER --- */
@media (max-width: 768px) {
  .hero {
    padding: 0 5%;
  }

  .hero-content {
    height: auto;
    width: 100%;
  }

  .hero-content h1,
  .hero-content h2,
  .hero-content .t1,
  .hero-content .t2,
  .hero-content .t3,
  .hero-content .t4 {
    font-size: 22px !important;
    /* Mobile size 22px */
    line-height: 1.4 !important;
    /* 2 lines me aane par spacing perfect rahegi */
    text-align: center !important;
  }
}

/* --- Mobile Styles --- */
.menu-toggle {
  display: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  z-index: 1005;
}

@media (max-width: 992px) {
  header {
    padding: 6px 5%;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #0b0b0b;
    transition: 0.4s ease-in-out;
    padding-top: 100px;
    z-index: 1003;
  }

  nav.open {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }

  nav ul li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  nav ul li a {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    background: #151515;
    max-height: 0;
    display: block;
    overflow: hidden;
    visibility: hidden;
    border: none;
    padding: 0;
    box-shadow: none;
    transition: max-height 0.4s ease;
  }

  .dropdown-menu.show-mobile {
    max-height: 500px;
    visibility: visible;
    padding: 10px 0;
  }

  .rotate-icon {
    transform: rotate(180deg);
    color: #0e6654;
  }

  .hero {
    height: 90vh;
    align-items: center;
    text-align: center;
  }

}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 700px;
  margin-left: 0;

  color: #fff;
  height: 150px;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5%;
}

.hero-content h1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  text-align: left;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  pointer-events: none;
}

/* Animations */
.t1 {
  animation: fadeText1 12s infinite;
}

.t2 {
  animation: fadeText2 12s infinite;
}

.t3 {
  animation: fadeText3 12s infinite;
}

@keyframes fadeText1 {

  0%,
  25% {
    opacity: 1;
    transform: translateX(0);
  }

  30%,
  100% {
    opacity: 0;
    transform: translateX(-20px);
  }

}

@keyframes fadeText2 {

  0%,
  30% {
    opacity: 0;
    transform: translateX(20px);
  }

  33%,
  58% {
    opacity: 1;
    transform: translateX(0);
  }

  63%,
  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}

@keyframes fadeText3 {

  0%,
  63% {
    opacity: 0;
    transform: translateX(20px);
  }

  66%,
  91% {
    opacity: 1;
    transform: translateX(0);
  }

  96%,
  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}

:root {
  --brand-green: #0A332D;
  --brand-cream: #F4EFD8;
  --dark-text: #2d3436;
}

.about-section {
  padding: 60px 0;
  background-color: var(--brand-cream);
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow: hidden;
}

@media (max-width: 576px) {
  .about-section {
    padding: 40px 20px;
    /* yaha value adjust kar sakte ho */
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Image Styles */
.image-area {
  position: relative;
}

.main-img-box {
  border-radius: 100px 20px 100px 20px;
  overflow: hidden;
  box-shadow: 30px 30px 0px var(--brand-green);
}

.main-img-box {
  width: 100%;
  border-radius: 100px 20px 100px 20px;
  overflow: hidden;
  box-shadow: 20px 20px 0px var(--brand-green);
  /* Mobile ke liye shadow thodi kam ki hai */

  /* Aspect Ratio maintain karne ke liye ye best hai */
  aspect-ratio: 4 / 3;
}

.main-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ab ye sahi kaam karega */
  object-position: center;
  display: block;
}

@media (max-width: 768px) {
  .main-img-box {
    aspect-ratio: 16 / 9;
    /* Mobile par wide image 16:9 mein zyada achhi dikhti hai */
    border-radius: 50px 15px 50px 15px;
    /* Chote screen par bade corners bure lag sakte hain */
    margin-bottom: 40px;
    /* Neeche wale text se gap dene ke liye */
  }
}

.main-img-box img {
  width: 100%;
  height: 100%;
  /* Allows the image to completely fill its container's height */
  object-fit: cover;
  /*  Corrected property: crops gracefully without distortion */
  object-position: center;
  /* Keeps the center of the image focused */
  display: block;
}

.stats-card {
  position: absolute;
  bottom: -30px;
  right: 20px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.stats-card h3 {
  color: var(--brand-green);
  font-size: 32px;
  margin-bottom: 5px;
}

/* Content Styles */
.tagline {
  color: var(--brand-green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
}

.content-area h2 {
  font-size: 38px;
  color: var(--dark-text);
  line-height: 1.1;
  margin: 5px 0;
}

.highlight {
  color: #0E6654;
}

.content-area p {
  color: #636e72;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 5px;
}

/* Progress Bars */
.bar-item {
  margin-bottom: 20px;
}

.bar-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-weight: 600;
}

.progress-line {
  height: 8px;
  background: #e1e1e1;
  border-radius: 10px;
  position: relative;
}

.progress-line span {
  height: 100%;
  background: var(--brand-green);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 10px;
  width: 0;
  transition: width 1.5s ease-in-out;
}

.cta-btn {
  margin-top: 15px;
  background: var(--brand-green);
  color: white;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.cta-btn {
  margin-top: 15px;
  display: inline-block;
  /* IMPORTANT */
}

.cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px #0e665454;
}

/* Responsive */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .content-area h2 {
    font-size: 30px;
  }
}

:root {
  --primary-green: #89c540;
  --dark-green: #1a3a32;
  --text-gray: #666666;
  --bg-light: #f4f9f1;
}

/* --- 1. SERVICES SECTION (Top Part) --- */
.services-section {
  padding: 40px 0;
  background: #f4efd8;
}

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

.service-card {
  background-color: #FBF5EB;
  padding: 18px 35px;
  border-radius: 10px;
  display: flex;
  gap: 20px;
  position: relative;
  transition: 0.3s;
  border-left: 0 solid #0E6654;
}

.service-card:hover {
  background-color: #f7dfb97d;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #22c14d;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: #17C64F;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  flex-shrink: 0;
}

.service-icon svg {
  width: 30px;
  fill: white;
}

.service-content h3 {
  margin: 0 0 10px 0;
  font-size: 22px;
  color: var(--dark-green);
}

.service-content p {
  margin: 0 0 15px 0;
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 15px;
}

.read-more {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;700&display=swap');

:root {
  --primary-glow: #89c540;
  --bg-dark: #0a0c10;
  --card-bg: #161b22;
  --text-main: #e6edf3;
  --text-dim: #8b949e;
  --border-color: rgba(255, 255, 255, 0.1);
}

.features-section {
  background-color: #0A332D;
  padding: 60px 0;
  color: var(--text-main);
}

@media (max-width: 576px) {
  .about-section {
    padding: 40px 10px 0px;
  }
}

/* --- Header Styling --- */
.header {
  text-align: center;
  margin-bottom: 21px;
}

.tagline {
  color: var(--primary-glow);
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 10px;
}

.header h2 {
  font-size: 45px;
  margin: 0;
  font-weight: 800;
  background: linear-gradient(180deg, #fff 0%, #888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-line {
  width: 60px;
  height: 4px;
  background: var(--primary-glow);
  margin: 11px auto 0;
  border-radius: 2px;
}

/* --- Bento Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.feature-card {
  background: #0a332d5e;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 35px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover State */
.feature-card:hover {
  border-color: #17C64F;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(137, 197, 64, 0.1);
}

.feature-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(137, 197, 64, 0.08), transparent 40%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s;
}

.feature-card:hover::after {
  opacity: 1;
}

/* Bento Sizes */
.large {
  grid-column: span 2;
  grid-row: span 2;
  justify-content: space-between;
}

.wide {
  grid-column: span 2;
}

/* Content Styling */
.icon {
  font-size: 32px;
  margin-bottom: 20px;
  background: rgba(137, 197, 64, 0.1);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: var(--primary-glow);
}

.feature-card h3 {
  font-size: 22px;
  margin: 0;
  color: #fff;
  font-weight: 700;
}

.feature-card p {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 10px;
}

.large h3 {
  font-size: 25px;
  color: #17C64F;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header h2 {
    font-size: 2.5rem;
  }

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

  .large,
  .wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;700&display=swap');

.advisor-section {
  background-color: #0A332D;
  padding: 60px 0;
  color: #e6edf3;
}

@media (max-width: 576px) {
  .advisor-section {
    padding: 40px 10px;
  }
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* --- Header Styling --- */
.header {
  text-align: center;
  margin-bottom: 26px;
}

.tagline {
  color: #17C64F;
  /* Signature Green */
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 10px;
}

.header h2 {
  font-size: 38px;
  margin: 0;
  font-weight: 800;
  color: #ffffff;
  /* text-transform: uppercase; */
}

.header-line {
  width: 60px;
  height: 4px;
  background: #17c64f;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* --- Grid & Cards --- */
.advisor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.advisor-card {
  background: #0a332df7;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
}

.advisor-card:hover {
  transform: translateY(-10px);
  border-color: #17C64F;
  box-shadow: 0 20px 40px rgba(137, 197, 64, 0.1);
}

.advisor-card h3 {
  font-size: 22px;
  margin: 0 0 5px 0;
  color: #ffffff;
}

.designation {
  color: #17C64F;
  font-weight: 600;
  font-size: 0.95rem;
  display: block;
  /* margin-bottom: 15px; */
}

.divider {
  width: 30px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
  transition: 0.5s;
}

.advisor-card:hover .divider {
  width: 100%;
  background: #17C64F;
}

.advisor-card p {
  color: #8b949e;
  line-height: 1.6;
  font-size: 16px;
  text-align: justify;
  margin: 0;
}

/* --- Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .advisor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .advisor-grid {
    grid-template-columns: 1fr;
  }

  .header h2 {
    font-size: 2.2rem;
  }
}

.gallery-section-light {
  background-color: #f4efd8;
  padding: 40px 0 30px;
  font-family: 'Jost', sans-serif;
}

@media (max-width: 576px) {
  .gallery-section-ligh {
    padding: 30px 10px;
  }
}

.gallery-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item-light {
  position: relative;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gallery-item-light img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: rgb(41 189 75);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: 0.3s ease;
}

.gallery-item-light:hover img {
  transform: scale(1.1);
  filter: brightness(0.7);
}

.gallery-item-light:hover .zoom-icon {
  transform: translate(-50%, -50%) scale(1);
}

/* --- Lightbox CSS --- */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
}

.lightbox-content img {
  max-width: 85vw;
  max-height: 80vh;
  border-radius: 10px;
  border: 3px solid #fff;
}

.close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 50px;
  cursor: pointer;
}

.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  padding: 20px;
  cursor: pointer;
  font-size: 30px;
  transition: 0.3s;
}

.prev-btn:hover,
.next-btn:hover {
  background: #17C64F;
}

.prev-btn {
  left: 20px;
  border-radius: 0 10px 10px 0;
}

.next-btn {
  right: 20px;
  border-radius: 10px 0 0 10px;
}

@media (max-width: 992px) {
  .gallery-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid-4 {
    grid-template-columns: 1fr;
  }
}


/* Desktop Logic */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1.2fr 1.2fr;
  gap: 40px;
}

.col-title {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  font-weight: 700;
}

.col-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: #1fc24d;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #8b949e;
  text-decoration: none;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.footer-links a i {
  font-size: 10px;
  color: #1fc24d;
  opacity: 0.7;
}

.footer-links a:hover {
  color: #1fc24d;
  transform: translateX(5px);
}

.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  color: #8b949e;
  align-items: flex-start;
}

.icon-green {
  color: #1fc24d;
  margin-top: 5px;
  font-size: 1.1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #F0531C;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
  background: #0a332d;
  transform: translateY(-5px);
  border-color: #1fc24d;
  color: #1fc24d;
}

/* Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .about-visual {
    margin-bottom: 50px;
  }

  .about-text {
    text-align: center;
  }

  .about-text div {
    justify-content: center;
  }

  section>.container>div {
    grid-template-columns: 1fr !important;
  }
}

.point-card:hover {
  border-color: #17c64f !important;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Animation logic (use same as previous sections) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .strategic-vision .container>div {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .vision-box {
    margin-top: 40px;
  }
}

/* 1. Entrance Animations */
@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideUpStagger {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(137, 197, 64, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(137, 197, 64, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(137, 197, 64, 0);
  }
}

.about-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

/* 2. Visual Column */
.visual-column {
  position: relative;
  background: #0a332d;
  padding: 60px 40px;
  border-radius: 40px;
  color: white;
  animation: slideRight 1s ease-out;
}

.battery-status {
  height: 10px;
  width: 100px;
  background: #333;
  border-radius: 5px;
  margin-top: 20px;
  overflow: hidden;
}

.battery-fill {
  height: 100%;
  width: 85%;
  background: #17c64f;
  box-shadow: 0 0 15px #17c64f;
}

/* 3. Content Cards */
.content-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #FBF5EB;
  padding: 20px 25px;
  border-radius: 20px;
  border: 1px solid #eee;
  transition: all 0.4s ease;
  animation: slideUpStagger 0.8s ease-out both;
}

.feature-item:hover {
  background: #ffffff;
  border-color: #F0531C;
  transform: scale(1.02) translateX(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.feature-item:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-item:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-item:nth-child(3) {
  animation-delay: 0.3s;
}

.feature-item:nth-child(4) {
  animation-delay: 0.4s;
}

.feature-item:nth-child(5) {
  animation-delay: 0.5s;
}

.icon-circle {
  min-width: 50px;
  height: 50px;
  background: white;
  border: 2px solid #F0531C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F0531C;
  font-size: 1.1rem;
  animation: glowPulse 2s infinite;
}

@media (max-width: 900px) {
  .about-wrapper {
    grid-template-columns: 1fr;
  }
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  animation: slideUpFade 1s ease-out both;
  opacity: 0;
}

.reveal:nth-child(1) {
  animation-delay: 0.1s;
}

.reveal:nth-child(2) {
  animation-delay: 0.3s;
}

.founder-card {
  background: #0a4236;
  border-radius: 35px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 20px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.founder-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(137, 197, 100, 0.03) 0%, rgba(10, 12, 16, 0) 60%);
  pointer-events: none;
  transition: opacity 0.5s ease;
  opacity: 1;
}

.founder-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border-color: rgb(22 183 76);
}

.founder-card:hover::before {
  background: radial-gradient(circle, rgba(137, 197, 100, 0.08) 0%, rgba(10, 12, 16, 0) 60%);
}

.exp-tag {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #8b949e;
  transition: 0.3s ease;
}

.founder-card:hover .exp-tag {
  border-color: rgba(137, 197, 64, 0.2);
  color: #e6edf3;
  background: rgba(137, 197, 64, 0.05);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-up {
  animation: slideInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.animate-left {
  animation: slideInLeft 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.form-container {
  background: #FBF5EB;
  padding: 50px;
  border-radius: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.info-container {
  background: #0A332D;
  padding: 50px;
  border-radius: 40px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.field-wrapper {
  margin-bottom: 25px;
}

.field-wrapper label {
  display: block;
  font-weight: 700;
  color: #0a0c10;
  margin-bottom: 10px;
  font-size: 0.9rem;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
}

.custom-input {
  width: 100%;
  padding: 15px 20px;
  background: #f8f9fa;
  border: 2px solid #f8f9fa;
  border-radius: 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.custom-input:focus {
  outline: none;
  border-color: #89c540;
  background: #fff;
}

.btn-submit {
  background: #0a332d;
  color: #ffffff;
  width: 100%;
  padding: 18px;
  border: none;
  border-radius: 15px;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.4s;
}

.btn-submit:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgb(10 51 45 / 57%);
}

.address-box {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.address-box:last-child {
  border: none;
}

.tag-green {
  color: #f0531c;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-container,
  .info-container {
    padding: 30px;
  }
}

.pure-form-container {
  max-width: 600px;
  margin: 0 auto;
  animation: formEntry 0.8s ease-out;
}

@keyframes formEntry {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-field {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(10, 12, 16, 0.1);
  padding: 18px 0;
  font-size: 1.1rem;
  color: #0a0c10;
  margin-bottom: 25px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  display: block;
}

.form-field:focus {
  border-bottom-color: #89c540;
  padding-left: 10px;
}

/* Styling for labels to act as headers */
.field-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #17C64F;
  display: block;
  margin-bottom: -5px;
}

.submit-wrap {
  margin-top: 30px;
  text-align: right;
}

.partnership-submit {
  background: #0A332D;
  color: #17C64F;
  padding: 18px 60px;
  border: none;
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.4s;
}

.partnership-submit:hover {
  background: #17C64F;
  color: #fff;
  box-shadow: 0 10px 20px rgba(137, 197, 64, 0.2);
}

@media (max-width: 576px) {

  .strategic-vision,
  .strategic-vision {
    padding: 40px 10px;
  }
}

.solutions-section {
  padding: 60px 0;
  font-family: 'Inter', sans-serif;
}

@media (max-width: 992px) {
  .solutions-section {
    padding: 40px 0;
  }

  .heading-wrapper {
    margin-bottom: 30px;
  }

  .heading-wrapper h2 {
    font-size: 28px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .solution-card {
    padding: 25px 20px;
  }

  .solution-card .icon-box {
    margin-bottom: 15px;
  }

  .solution-card p {
    margin-bottom: 15px;
  }

  .solution-example-box {
    margin-bottom: 15px;
    padding: 12px;
  }

  .value-created-box {
    margin-top: 15px;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.heading-wrapper {
  text-align: center;
  margin-bottom: 10px;
}

.heading-wrapper h2 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--volt-deep);
  margin: 0;
  /*! text-transform: uppercase; */
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.solution-card {
  background: var(--card-fill);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(14, 102, 84, 0.1);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  background: #ffffff;
  box-shadow: 0 15px 30px rgba(14, 102, 84, 0.1);
  border-color: var(--volt-primary);
}

.icon-box {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.icon-box i {
  font-size: 31px;
  color: var(--volt-dark);
}

.solution-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--volt-deep);
  margin: 0 0 10px 0;
}

.solution-card p {
  font-size: 14.5px;
  color: var(--text-main);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    padding: 25px;
  }
}

.solution-card {
  border: 1px solid rgba(14, 102, 84, 0.08);
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.icon-box {
  background: #ffffff;
  color: #0E6654;
  border: 1px solid rgba(14, 102, 84, 0.1);
}

:root {
  --body-bg: #fbf5eb;
  --volt-dark: #0E6654;
  --volt-primary: #17C64F;
  --volt-orange: #F0531C;
  --volt-deep: #0A332D;
  --card-fill: #DBF5E7;
  --text-main: #323232;
}


:root {
  --primary-green: #17c64f;
  --dark-bg: #323232;
  --light-bg: #FBF5EB;
}

.contact-section {
  padding: 50px 20px;
  background-color: var(--light-bg);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


.section-title {
  font-size: 2.5rem;
  color: var(--dark-bg);
  margin-bottom: 10px;
}

.section-title .accent {
  color: var(--primary-green);
}

.section-subtitle {
  color: #666;
  margin-bottom: 31px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.contact-card {
  background: #ffffff;
  padding: 35px 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.contact-card.highlight {
  border-bottom: 4px solid var(--primary-green);
}

.icon-box {
  width: 60px;
  height: 60px;
  background: rgba(23, 198, 79, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-green);
  font-size: 1.5rem;
}

.card-content h3 {
  font-size: 1.25rem;
  color: var(--dark-bg);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.map-link {
  text-decoration: none;
  color: var(--primary-green);
  font-weight: 600;
  font-size: 0.9rem;
  transition: 0.2s;
}

.map-link i {
  margin-left: 5px;
  font-size: 0.8rem;
}

.map-link:hover {
  letter-spacing: 0.5px;
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .contact-card {
    padding: 30px;
  }
}

.contact-cta {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-primary {
  background-color: var(--primary-green);
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 20px rgba(23, 198, 79, 0.2);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary-green);
  border-color: var(--primary-green);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(23, 198, 79, 0.3);
}

.btn-primary:hover i {
  transform: translateX(5px) rotate(-10deg);
}

/* Responsive adjustment for button */
@media (max-width: 768px) {
  .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
}


.advisor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.advisor-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 16px 14px;
  transition: all 0.3s ease;
}

.advisor-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(23, 198, 79, 0.3);
}

.card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.advisor-img {
  width: 75px;
  height: 75px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #17c64f;
  margin-bottom: 10px;
  box-shadow: 0 4px 10px rgba(23, 198, 79, 0.2);
}

.advisor-info {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.advisor-info h3 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 4px 0;
}

.designation {
  color: #17c64f;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  /* min-height: 32px; */
}

.divider {
  width: 30px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 8px auto;
}

.advisor-info p {
  color: #a1aab3;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  text-align: left;
}

/* Tablet and Mobile Adjustments */
@media (max-width: 991px) {
  .advisor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .advisor-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .advisor-card {
    padding: 14px 12px;
  }
}

.advisor-section {
  padding: 60px 20px
}

@media (max-width: 640px) {
  .advisor-grid {
    /* padding: 40px 20px; */
  }
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.founder-card-redesign {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px 20px;
  height: 100%;
  transition: all 0.3s ease;
}

.founder-card-redesign:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(23, 198, 79, 0.3);
}

.founder-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.founder-desc {
  flex-grow: 1;
}

.founder-linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a1aab3;
  text-decoration: none;
  font-size: 14px;
  margin-top: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
}

.founder-linkedin-btn:hover {
  color: #ffffff;
  background: #17c64f;
}

@media (max-width: 991px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .founder-card-redesign {
    padding: 20px 16px;
  }
}

.points-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  grid-auto-rows: 1fr;
  margin-top: 30px;
}

.point-card {
  background: #FBF5EB;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #eee;
  box-sizing: border-box;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  gap: 15px;
}

.point-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.point-card i {
  color: #17c64f;
  font-size: 36px;
  flex-shrink: 0;
  width: 50px;
  text-align: center;
}

.point-card strong {
  color: #323232;
  line-height: 1.4;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .points-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .point-card {
    flex-direction: column;
    text-align: center;
    padding: 25px 15px;
    justify-content: center;
  }

  .point-card i {
    margin-bottom: 10px;
    font-size: 40px;
  }

  .point-card strong {
    font-size: 13px;
  }
}