    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  
    }

    body {
      font-family: "Poppins", sans-serif;
      background-color: #1A1A1A;
      color: #111;
      line-height: 1.6;
      /* overflow-y: hidden; */
    }


    /* NAVBAR STYLES - mobile-first */
:root{
  --accent: #03C4A1;
  --bg: #d3d3d3;
  --text: #d6d6d6;
  --muted: #666;
  --header-h: 70px;
}

/* container */
.container{ max-width:1100px; margin:0 auto; padding:0 0px; }

.head{
    background: url('/images/Frame\ 204.png') no-repeat center center/cover;
}

/* header */
.site-header{
  position:sticky;
  top:0;
  z-index:1200;
  background-color: transparent;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0);
  backdrop-filter: blur(4px);
}

/* header inner layout */
.header-inner{
  display:flex;
  align-items:center;
  height:var(--header-h);
  gap:12px;
  padding: 0px 10px;
}

/* nav toggle (hamburger) */
.nav-toggle{
  background:transparent;
  border:0;
  padding:8px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  color:var(--text);
}

/* brand */
.brand{ display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--text); }
.brand-logo{ width:100px; height:100px; object-fit:contain; }
.brand-text{ font-weight:700; letter-spacing:1px; color:var(--accent); }

/* nav (desktop hidden by default on mobile) */
.site-nav{ display:none; }
.nav-list{ list-style:none; padding:0; margin:0; display:flex; gap:18px; }
.nav-link{ color:var(--text); text-decoration:none; font-weight:500; padding:8px 6px; display:inline-block; border-radius:6px; }
.nav-link:hover{ background:rgba(3,196,161,0.06); color:var(--accent); }

/* actions */
.nav-actions{ margin-left:auto; display:flex; align-items:center; gap:10px; }
.icon-btn{ background:transparent; border:0; padding:8px; cursor:pointer; color: #d6d6d6; }
.action-cta{ display:inline-block; padding:8px 12px; border-radius:22px; background:var(--accent); color:#fff; text-decoration:none; font-weight:600; }
.cart-btn{ position:relative; background:transparent; border:0; padding:8px; cursor:pointer; color: #d6d6d6;}
.cart-count{ position:absolute; top:2px; right:2px; background:#ff3b30; color:#fff; font-size:11px; padding:2px 6px; border-radius:12px; }

/* search overlay */
.nav-search{ display:none; padding:12px 0; background:rgba(0, 0, 0, 0); border-top:1px solid rgba(0,0,0,0.04); }
.search-form{ display:flex; gap:8px; align-items:center; }
.search-form input{ flex:1; padding:10px 12px; border-radius:888px; border:1px solid #e6e6e6; font-size:14px; background-color: rgba(255, 255, 255, 0.205); color: white;}
.search-form .btn{ padding:10px 14px; background:var(--accent); color:#fff; border-radius:888px; border:0; cursor:pointer; }
.btn-close{ background:transparent; border:0; font-size:22px; padding:8px; cursor:pointer; color: white; font-weight: bold; }

/* desktop layout */
@media(min-width:880px){
  .nav-toggle{ display:none; } /* hide hamburger */
  .site-nav{ display:block; margin-right:22px; }
  .nav-list{ gap:22px; }
  .brand-logo{ width:100px; height:100px; }
  .action-cta{ display:inline-block; }
  .nav-search{ display:none; }
}

/* ---------- MOBILE SLIDE-IN MENU ---------- */
@media (max-width: 880px) {
  .site-nav {
    position: fixed;
    top: 0;
    left: -240px;
    width: 240px;
    height: 100vh;
    /* background: linear-gradient(180deg, #0E0E0E 0%, #1A1A1A 100%); */
    overflow: hidden;
    box-shadow: -4px 0 16px rgba(0,0,0,0.1);
    transition: left 0.35s ease;
    padding-top: 90px;
    display: block; /* Always keep it in DOM for sliding effect */
    z-index: 1500;
    backdrop-filter: blur(5px);
  }

  .site-nav.nav-open {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 0 20px;
    background: linear-gradient(180deg, #0e0e0e 0%, #1A1A1A 100%);
    height: 100%;
    backdrop-filter: blur(10px);
  }

  .nav-link {
    color: #ffffff;
    font-size: 1rem;
    width: 100%;
    padding: 10px 0;
    /* border-bottom: 1px solid #f0f0f0; */
  }

  .nav-link:hover {
    background: none;
    color: #03C4A1;
    transform: translateX(4px);
  }

  /* Optional: dark overlay behind the open nav */
  body::after {
    content: '';
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1400;
    transition: opacity 0.3s ease;
  }

  .site-nav.nav-open ~ body::after {
    display: block;
  }
}

/* === ABOUT HERO SECTION === */
.about-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.about-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
  z-index: 1;
  backdrop-filter: blur(5px);
}

/* Overlay */
.about-hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  backdrop-filter: blur(2px);
}

/* Glass effect container */
.glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 750px;
  text-align: center;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}

.glass h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  background: linear-gradient(90deg, #8fbcff, #7ef1d2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass p {
  font-size: 1.1rem;
  margin-bottom: 1.8rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.hero-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.8);
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.5s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === RESPONSIVENESS === */
@media (max-width: 768px) {
  .glass {
    padding: 1.8rem;
    max-width: 100%;
  }

  .glass h1 {
    font-size: 1.8rem;
  }

  .glass p {
    font-size: 1rem;
  }

  .hero-btn {
    padding: 0.7rem 1.4rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .about-hero {
    height: 70vh;
  }

  .glass {
    padding: 1.4rem;
  }

  .glass h1 {
    font-size: 1.5rem;
  }
}

.vision-mission-section {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(12px);
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vision-mission-section .container {
  max-width: 1100px;
  width: 100%;
}

.vm-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.vm-card {
  flex: 1 1 45%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 40px;
  color: #fff;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.45);
}

.vm-card h2 {
  font-size: 1.2rem;
  background: linear-gradient(90deg, #8fbcff, #7ef1d2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vm-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

/* Responsive */
@media (max-width: 900px) {
  .vm-content {
    flex-direction: column;
    align-items: center;
  }
  .vm-card {
    width: 100%;
    max-width: 600px;
  }
}

/* OUR STORY SECTION */
.our-story-section {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(8px);
  color: #f5f5f5;
  padding: 100px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.story-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
}

.story-image {
  flex: 1 1 45%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.05);
}

.story-image img {
  width: 100%;
  height: 50%;
  object-fit: cover;
  filter: blur(2px) brightness(0.7);
  transform: scale(1.1);
  border-radius: 15px;
  opacity: 0.9;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.story-image img:hover {
  transform: scale(1.05);
  opacity: 1;
}

.story-text {
  flex: 1 1 45%;
  font-size: 1.05rem;
  line-height: 1.7;
  letter-spacing: 0.2px;
}

.story-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 600;
  background: linear-gradient(90deg, #8fbcff, #7ef1d2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.story-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.story-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .story-container {
    flex-direction: column;
  }

  .story-text {
    text-align: center;
  }

  .story-btn {
    margin-top: 15px;
  }
}

/* VISION & MISSION SECTION */
.vision-mission-section {
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(10px);
  padding: 100px 10%;
  color: #f1f1f1;
  text-align: center;
}

.vm-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.vm-card {
  flex: 1 1 45%;
  padding: 40px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}

.vm-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.vm-card h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 600;
}

.vm-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  letter-spacing: 0.2px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .vm-container {
    flex-direction: column;
    gap: 30px;
  }

  .vm-card {
    text-align: center;
  }
}

/* CORE VALUES SECTION */
.core-values-section {
  background: linear-gradient(180deg, rgba(10,10,10,0.85), rgba(25,25,25,0.85));
  backdrop-filter: blur(12px);
  padding: 100px 8%;
  color: #f4f4f4;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.section-intro {
  font-size: 1.05rem;
  color: #d0d0d0;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

.value-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 40px 25px;
  transition: all 0.4s ease;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.05);
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.25);
}

.value-icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 18px;
}

.value-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.value-card p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Fade-in animation (reuse global class) */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.achievements {
  background: #0a0a0a;
  color: #eee;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 60px;
  font-weight: 600;
  color: #f2f2f2;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.2);
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  padding-left: 60px;
}

.timeline-dot {
  position: absolute;
  left: 22px;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #00ffee;
  box-shadow: 0 0 10px #00ffee;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  transition: 0.3s;
}

.timeline-content:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.timeline-content h3 {
  margin-bottom: 10px;
  color: #00ffee;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .timeline {
    padding-left: 10px;
  }
  .timeline-item {
    padding-left: 50px;
  }
  .timeline-dot {
    left: 15px;
  }
}

.cta-section {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(10, 10, 10, 0.9));
  color: #f1f1f1;
  padding: 120px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-container {
  max-width: 700px;
  margin: auto;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
  padding: 60px 40px;
  border-radius: 12px;
}

.cta-container h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #00ffee;
}

.cta-container p {
  margin-bottom: 40px;
  font-size: 1.1rem;
  color: #ccc;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 12px 30px;
  border: 2px solid #00ffee;
  border-radius: 8px;
  color: #00ffee;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.cta-btn:hover {
  background: #00ffee;
  color: #0a0a0a;
}

.cta-btn.alt {
  border-color: #fff;
  color: #fff;
}

.cta-btn.alt:hover {
  background: #fff;
  color: #0a0a0a;
}



/* === FOOTER SECTION === */
.footer-section {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 80px 10% 40px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  text-align: left;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col .footer-logo {
  width: 8rem;
  margin-bottom: 10px;

}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 600;
}

.footer-col p,
.footer-col ul {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
}

.footer-col ul li a:hover {
  color: #00bfff;
  transform: translateX(5px);
}

/* Social icons */
.social-links {
  display: flex;
  gap: 12px;
}

.social-btn img{
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: #00bfff;
  color: #000;
  transform: scale(1.1);
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-section {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-grid {
    gap: 25px;
  }
}
