:root {
  --color-primary: #0f2438;
  --color-secondary: #2ba5d7;
  --color-accent: #ff6b6b;
  --color-light: #f0f8ff;
  --color-white: #ffffff;
  --color-dark: #1a1a1a;
  --color-success: #27ae60;
  --color-text: #2c3e50;
  --color-warning: #ffb84d;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.navbar-collapse {
  transition: height 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-white);
  overflow-x: hidden;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background-color: black;
  color: var(--color-white);
  /* padding: 1rem 0; */
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(4, 4, 4, 0.25);
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  padding: 8px 12px;
  border-radius: 4px;
}

nav a:hover {
  background: rgba(255, 107, 107, 0.3);
  transform: translateY(-2px);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
}

.btn-cta {
  background: linear-gradient(135deg, var(--color-accent) 0%, #ff5252 100%);
  color: var(--color-white);
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
}

/* ===== HERO SECTION ===== */
.hero {
  color: var(--color-white);
  padding: 100px 20px;
  text-align: center;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: black;
}

/* .hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 107, 0.15) 0%,
    rgba(255, 107, 107, 0.05) 100%
  );
  border-radius: 50%;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
} */

/* .hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(43, 165, 215, 0.15) 0%,
    rgba(43, 165, 215, 0.05) 100%
  );
  border-radius: 50%;
  z-index: 1;
  animation: float 8s ease-in-out infinite reverse;
} */

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(30px);
  }
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease;
}

.hero h1 {
  font-size: 5rem;
  margin-bottom: 0.5rem;
  font-weight: 900;
  letter-spacing: -2px;
  animation: slideDown 0.8s ease-out;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 5rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-family: "Italiana", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  animation: slideDown 0.8s ease-out 0.2s both;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  opacity: 0.95;
  animation: slideDown 0.8s ease-out 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  animation: slideDown 0.8s ease-out 0.6s both;
}

.btn-primary {
  background: linear-gradient(135deg, #111111, #111111);
  color: var(--color-white);
  /* box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4); */
}
.btn-primary:hover {
  background: rgba(255, 255, 255, 0.1);

  background: linear-gradient(135deg, #667eea, #764ba2);
  border-color: var(--color-accent);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(255, 107, 107, 0.3);
}

.btn-secondary {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: var(--color-white);
  border-color: var(--color-white);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);

  background: linear-gradient(135deg, #667eea, #764ba2);
  border-color: var(--color-accent);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(255, 107, 107, 0.3);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: 80px 20px;
  /* background: var(--color-light); */
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--color-primary);
  position: relative;
}
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--color-primary);
  position: relative;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: var(--color-accent);
  margin: 1rem auto 0;
  display: block;
  border-radius: 2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: linear-gradient(135deg, #0d0e0e, #0d0e0e 100%);
  color: var(--color-white);
  padding: 3rem 2.5rem;
  border-radius: 16px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(15, 36, 56, 0.2);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 16px 40px rgba(15, 36, 56, 0.4);
}

.feature-card:hover::before {
  right: -20%;
  top: -20%;
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: var(--transition);
  filter: drop-shadow(0 2px 4px rgba(43, 165, 215, 0.2));
}

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(-5deg);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
  font-weight: 700;
}

.feature-card p {
  color: #fff;
  line-height: 1.7;
}

/* ===== OUR GOALS SECTION ===== */
.goals {
  padding: 80px 20px;
  background: var(--color-white);
}

.goals-container {
  max-width: 1200px;
  margin: 0 auto;
}

.goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.goal-item {
  background: linear-gradient(135deg, #0d0e0e, #0d0e0e 100%);
  color: var(--color-white);
  padding: 3rem 2.5rem;
  border-radius: 16px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(15, 36, 56, 0.2);
  position: relative;
  overflow: hidden;
}
.goal-item::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.goal-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 16px 40px rgba(15, 36, 56, 0.4);
}

.goal-item:hover::before {
  right: -20%;
  top: -20%;
}

.goal-item h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.goal-item p {
  color: #fff;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===== PROCESS SECTION ===== */
.process {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f9f9f9 0%, var(--color-light) 100%);
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.step {
  background: var(--color-white);
  padding: 3rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(43, 165, 215, 0.1);
  position: relative;
  z-index: 2;
  transition: var(--transition);
  border: 2px solid transparent;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(43, 165, 215, 0.2);
  border-color: var(--color-secondary);
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--color-secondary) 0%,
    #2ba5d7 50%,
    var(--color-accent) 100%
  );
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  margin: 0 auto 1.5rem;
  box-shadow: 0 6px 20px rgba(43, 165, 215, 0.3);
  transition: var(--transition);
}

.step:hover .step-number {
  transform: scale(1.15) rotate(360deg);
}

.step h4 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.step p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== PRINCIPLES SECTION ===== */
.principles {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f6f8fc, #eef2f7);
}

.principles-container {
  max-width: 1200px;
  margin: 0 auto;
}

.principles-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}

.principles-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.principle-item {
  display: flex;
  gap: 1rem;
}

.principle-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.principle-text h4 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.principle-text p {
  color: #666;
  font-size: 0.95rem;
}

.principles-image {
  background: linear-gradient(
    135deg,
    var(--color-secondary) 0%,
    var(--color-primary) 100%
  );
  border-radius: 10px;
  padding: 2rem;
  color: var(--color-white);
  text-align: center;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

/* ===== ABOUT GOKULANANDA SECTION ===== */
.about-founder {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f0f0f0 0%, var(--color-light) 100%);
}

.about-founder-container {
  max-width: 1200px;
  margin: 0 auto;
}

.founder-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.founder-text h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.founder-text p {
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.8;
  text-align: justify;
}

.founder-image {
  background: linear-gradient(135deg, var(--color-accent) 0%, #e8a87c 100%);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--color-white);
}

.timeline {
  margin-top: 2rem;
  border-left: 3px solid var(--color-secondary);
  padding-left: 2rem;
}

.timeline-item {
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.5rem;
  top: 0;
  width: 12px;
  height: 12px;
  background: var(--color-secondary);
  border-radius: 50%;
  border: 3px solid var(--color-white);
}

.timeline-item h4 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.timeline-item p {
  color: #666;
  font-size: 0.95rem;
}

/* ===== WHY CHOOSE US SECTION ===== */
/* .why-choose {
  padding: 80px 20px;
  background: var(--color-white);
} */

.why-choose-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.why-card {
  background: linear-gradient(135deg, #0d0e0e, #0d0e0e 100%);
  color: var(--color-white);
  padding: 3rem 2.5rem;
  border-radius: 16px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(15, 36, 56, 0.2);
  position: relative;
  overflow: hidden;
}
/* Icon design */
.icon-box {
  width: 100px;
  height: 100px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.why-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 16px 40px rgba(15, 36, 56, 0.4);
}

.why-card:hover::before {
  right: -20%;
  top: -20%;
}

.why-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.why-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

/* ===== CTA SECTION ===== */
.cta {
  background: linear-gradient(135deg, #f6f8fc, #eef2f7);
  color: var(--color-white);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.form-group select {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: black;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-light {
  background: #0c0b0b;
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid var(--color-white);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn-light::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 107, 107, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-light:hover::before {
  width: 300px;
  height: 300px;
}

.btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0a1f32 100%);
  color: var(--color-white);
  padding: 50px 20px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(43, 165, 215, 0.5),
    transparent
  );
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.footer-section a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--color-accent);
}

.footer-section a:hover::after {
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav ul {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .features-grid,
  .goals-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .cta h2 {
    font-size: 1.8rem;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary,
  .btn-light {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.3rem;
  }

  nav ul {
    display: none;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .feature-icon {
    font-size: 2.5rem;
  }
}

/* .......................... */
.about-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 5%;
  background-color: white;
}
/* ===== HERO BUTTONS RESPONSIVE FIX ===== */
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Mobile View */
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons button {
    width: 100%;
    text-align: center;
    font-size: 13px;
  }
  .principles-image {
    font-size: 3rem;
  }
  .founder-image {
    font-size: 3rem;
  }
}

.about-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  justify-content: space-between;
  align-items: center;
}

/* Left side (image with blob shape) */
.about-left {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blob {
  width: 430px;
  height: 430px;
  background: radial-gradient(circle at 30% 10%, #b1c5ff, #68e89a 75%);
  border-radius: 55% 45% 55% 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blob::before {
  content: "";
  position: absolute;
  inset: 25px;
  border-radius: inherit;
  background: #f3f7ff;
  z-index: 1;
}

.blob-img-wrap {
  position: relative;
  width: 82%;
  height: 82%;
  border-radius: 18px;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.blob-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right side (text) */
.about-right {
  color: #1b2430;
}

.eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3d63ff;
  margin-bottom: 10px;
}

.about-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
}

.about-title span {
  color: #2c63ff;
}

.about-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #606b86;
  margin-bottom: 22px;
}

.about-text {
  font-size: 15px;
  line-height: 1.7;
  color: #596279;
  margin-bottom: 18px;
}

.about-bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 60px;
  margin: 25px 0 32px;
}

.bullet-item {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #1a2235;
  font-weight: 500;
}

.bullet-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2c63ff;
  margin-right: 10px;
}

.bullet-item:nth-child(3) .bullet-dot,
.bullet-item:nth-child(4) .bullet-dot {
  background: #ff9d1a;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: #2c63ff;
  color: #ffffff;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(44, 99, 255, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.about-btn:hover {
  background: #1847d8;
  transform: translateY(-1px);
  box-shadow: 0 18px 35px rgba(44, 99, 255, 0.4);
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-left {
    order: -1;
  }

  .about-bullets {
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }

  .bullet-item {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .about-section {
    padding: 40px 20px;
  }
  .principles-image {
    padding: 0rem;
  }
  .blob {
    width: 320px;
    height: 320px;
  }

  .about-title {
    font-size: 30px;
  }

  .about-subtitle {
    font-size: 16px;
  }

  .about-bullets {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .bullet-item {
    justify-content: flex-start;
  }

  .about-container {
    text-align: left;
  }
}

.Pillars-section {
  background-color: var(--color-light-bg);
  padding: 60px 20px;
  /* margin: 40px 0; */
  border-radius: 8px;

  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 5%;
  background: radial-gradient(circle at 0 0, #b0bfff, #f6fbff 55%);
}

.Pillars-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.Pillars-text h2 {
  color: var(--color-primary);
  font-size: 2.2em;
  margin-bottom: 20px;
}

.Pillars-text p {
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.8;
}

.Pillars-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  max-height: 400px;
}

/* existing styles above ... */

@media (max-width: 768px) {
  .Pillars-section {
    padding: 40px 20px;
    min-height: auto;
  }

  .Pillars-content {
    grid-template-columns: 1fr; /* stack text and image */
    gap: 24px; /* smaller gap on mobile */
  }

  .Pillars-text h2 {
    font-size: 1.8em; /* slightly smaller heading */
  }

  .Pillars-text p {
    font-size: 1em; /* adjust body text size */
  }

  .Pillars-image {
    max-height: none; /* allow full image height on mobile */
  }
  .image-gallery {
    padding: 20px 16px;
  }
}

@media (max-width: 480px) {
  .Pillars-section {
    padding: 32px 16px;
  }

  .Pillars-text h2 {
    font-size: 1.6em;
  }

  .Pillars-text p {
    font-size: 0.98em;
  }
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  /* margin: 40px 0; */
  padding: 20px 70px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 15px;
  font-size: 0.9em;
}

.contact-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  /* background: radial-gradient(circle at 0% 0%, #22c55e33, transparent 55%),
    radial-gradient(circle at 100% 100%, #3b82f633, transparent 55%),
    linear-gradient(135deg, #0f172a, #020617); */
  color: #e5e7eb;
}
.contact-wrapper {
  width: 70%;
  max-width: 1280px;
  align-items: stretch;
}

.contact-card {
  background: rgba(0, 0, 0, 0.999);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.75),
    0 0 0 1px rgba(148, 163, 184, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.contact-card h2 {
  font-size: 28px;
  margin-bottom: 4px;
  color: #f9fafb;
}

.contact-card p {
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-size: 13px;
  color: #e5e7eb;
}

input,
textarea {
  width: 100%;
  padding: 10px 11px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: white;
  color: #e5e7eb;
  font-size: 14px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease,
    background 0.18s ease, transform 0.06s ease;
}

input::placeholder,
textarea::placeholder {
  color: #6b7280;
}

input:focus,
textarea:focus {
  border-color: #22c55e;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.9),
    0 0 0 6px rgba(34, 197, 94, 0.15);
  background: rgba(15, 23, 42, 0.95);
  transform: translateY(-1px);
}

textarea {
  resize: vertical;
  min-height: 120px;
  max-height: 260px;
}

.btn-submit {
  margin-top: 10px;
  /* width: 100%; */
  padding: 11px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: #0b1120;
  background: linear-gradient(135deg, #22c55e, #4ade80);
  box-shadow: 0 18px 35px rgba(34, 197, 94, 0.35);
  transition: transform 0.08s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.btn-submit:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
  box-shadow: 0 22px 40px rgba(34, 197, 94, 0.45);
}

.btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.32);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: #9ca3af;
  margin-bottom: 10px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.35);
}

/* MAP PANEL */
.map-panel {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.75),
    0 0 0 1px rgba(15, 23, 42, 0.9);
  display: flex;
  flex-direction: column;
}

.map-header {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(31, 41, 55, 0.9);
}

.map-header h3 {
  font-size: 16px;
  color: #f9fafb;
  margin-bottom: 2px;
}

.map-header p {
  font-size: 12px;
  color: #9ca3af;
}

.map-wrapper {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  padding-bottom: 65%; /* 16:10 aspect ratio */
  overflow: hidden;
}

.map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .map-panel {
    order: -1;
  }
  .contact-body {
    min-height: 79vh;
  }
}

@media (max-width: 480px) {
  body {
    padding: 0px;
  }

  .contact-card,
  .map-panel {
    padding: 0;
  }

  .contact-card {
    padding: 20px 18px;
    border-radius: 16px;
  }

  .map-header {
    padding: 12px 14px;
  }
}

.odr-platform {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f6f8fc, #eef2f7);
  font-family: "Segoe UI", sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1f2937;
}

.odr-image {
  text-align: center;
  margin-bottom: 40px;
}

.odr-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.odr-content .intro {
  text-align: center;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #4b5563;
  line-height: 1.7;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.step {
  background: #ffffff;
  padding: 25px;
  border-radius: 14px;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.step span {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 10px;
}

.step h4 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #111827;
}

.step p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

/* for dropdown mobile view  */

/* ===== MOBILE DROPDOWN MENU ===== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 30px;
  color: var(--color-white);
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
    background: linear-gradient(
      135deg,
      var(--color-primary) 0%,
      #1a4d6d 50%,
      var(--color-secondary) 100%
    );
    box-shadow: 0 8px 32px rgba(15, 36, 56, 0.25);
    backdrop-filter: blur(10px);
    z-index: 999;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    padding: 1.5rem 0;
  }

  nav a {
    text-align: center;
    display: block;
  }
}

/* SECTION */
.video-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background-color: #000;
}

/* VIDEO */
.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* OVERLAY */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

/* CONTENT */
.content-wrapper {
  position: relative;
  z-index: 3;
}

@media (max-width: 768px) {
  .video-section {
    height: 100svh; /* true mobile viewport height */
    min-height: 100svh;
  }
  .row {
    --bs-gutter-x: 0rem !important;
    padding-right: calc(var(--bs-gutter-x) * 0);
    padding-left: calc(var(--bs-gutter-x) * 0);
  }
  .row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0);
    padding-left: calc(var(--bs-gutter-x) * 0);
    margin-top: var(--bs-gutter-y);
  }
  .why-choose-container {
    margin: 0px 20px;
  }

  .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* fills screen, crops safely */
    transform: none; /* IMPORTANT: remove translate on mobile */
  }
}

/* GRID */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
/* CARD */
.card-part {
  position: relative;
  height: 200px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0d0e0e, #0d0e0e 100%);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.card-part:hover {
  transform: translateY(-5px);
}

/* DARK OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* CENTER CONTENT */
.content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

/* ICON */
.icon {
  width: 56px;
  height: 56px;
  background: #ff6b2c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 10px;
}

/* TITLE */
.content h3 {
  font-size: 18px;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 480px) {
  .card {
    height: 160px;
  }

  .icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .content h3 {
    font-size: 16px;
  }
}
