/* ---------------- Reset & Base ---------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  font-family: 'Poppins', sans-serif;
  width: 100%;
  height: 100%;
  background: #0b0c1a;
  color: #fff;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

img {
  display: block;
  max-width: 100%;
}


.rectangle-103 {
  width: 100%;
  height: 1024px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background-color: #000; /* fallback color */
}

/* Background image div */
.rectangle-103 {
  width: 100%;
  height: 1024px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url('../assets/about1.png');
  background-size: cover;
  background-position: center;
  /*background-color: #000;  fallback in case image doesn't load */
}



/* ===============================
   HERO SECTION WITH BG IMAGE + STARS
=============================== */
.hero {
  position: relative;
  width: 100%;
  height: 90vh; /* small downward extension */
  background: url("../assets/about1.png") no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* Add a smooth fade at the bottom of hero */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px; /* how much of the fade to apply */
  background: linear-gradient(to bottom, transparent, #000); /* smooth fade into ellipse bg color */
  z-index: 3;
  pointer-events: none;
}

/* Canvas Stars Overlay */
.hero canvas#starfield {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 20px;
}

.hero-heading {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 25px;
  margin-top: -40px; /* move up */
  background: linear-gradient(33.64deg, #0B639A 18.98%, #C3C3C3 40%, #FFFFFF 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtext {
  font-size: 19px;
  line-height: 1.7;
  color: #E0E0E0;
  margin-bottom: 35px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.outline-button {
  display: inline-block;
  padding: 12px 40px;
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 40px;
  background: transparent;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
}

/* Hover Effect */
.outline-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

/* ===============================
   ELLIPSE TRANSITION
=============================== */
.ellipse-transition {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: -360px; /* ⬇️ moved slightly down from -420px */
  z-index: 3;
}

.ellipse-transition .ellipse-img {
  width: 100%;
  display: block;
  object-fit: cover;
  transform: translateY(40%); /* ⬇️ shows a little more of the ellipse */
}

/* About section */
.about-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 8%;
  color: #fff;
  gap: 60px;
  flex-wrap: wrap;
  /*background: #000;  👈 keeps it seamless with ellipse background */
  margin-top: -40px; /* pull section upward to sit on ellipse */
  position: relative;
  z-index: 6;
}

/* LEFT SIDE */
.about-left {
  flex: 1 1 45%;
}

.about-left h2 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.about-left h2 span {
  background: linear-gradient(33.64deg, #0B639A 18.98%, #FFFFFF 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-left p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  max-width: 520px;
}

.about-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  transition: 0.3s;
}

.about-btn:hover {
  background: #0B639A;
}

/* RIGHT SIDE */
.about-right {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* TOP STATS */
.stat-top {
  display: flex;
  gap: 20px;
}

/* COMMON BOX STYLE */
.stat-box {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 18px 24px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 90px; /* ✅ smaller height */
}

.stat-box h3 {
  font-size: 24px; /* ✅ smaller number */
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.stat-box p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* BOTTOM STAT BOX */
.stat-box.bottom {
  background: rgba(11, 99, 154, 0.15);
  border: 1px solid #0B639A;
  padding: 18px 24px;
  min-height: 90px;
}

.progress-bar {
  margin-top: 8px;
  height: 4px;
  background: linear-gradient(90deg, #0B639A, #00BFFF);
  border-radius: 10px;
}


/* ===============================
   WHO WE ARE SECTION
   =============================*/
.who-section {
  width: 100%;
  padding: 90px 10% 80px 10%;
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-align: center;
  position: relative;
  left: -150px; /* ✅ Moves the whole section left */
  margin-top: -160px; /* ⬆️ Moves the section upward */
}


/* Header Section (side by side layout + shifted right) */
.who-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 60px;
  margin-bottom: 40px;
  margin-left: 250px; /* shifted right */
}

.who-title {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.who-title span {
  color: #ffc933; /* yellow for WHO */
}

.who-subtext {
  font-size: 16px;
  line-height: 1.7;
  color: #d0d0d0;
  max-width: 600px;
  margin: 0;
    text-align: left;
    margin-left: 60px; 
}


/* Main Content Cards */
.who-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px; /* space between cards */
  margin-top: 60px;
  flex-wrap: wrap;
}

.who-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  max-width: 300px;
  text-align: left;
}

/* Colored vertical lines */
.line {
  width: 4px;
  border-radius: 3px;
  flex-shrink: 0;
  height: 50px;
  margin-top: 4px;
}

.teal {
  background: #03dac5;
}
.blue {
  background: #2d7dfc;
}
.purple {
  background: #c46cec;
}

/* Headings & Descriptions */
.who-text h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.who-item:nth-child(1) h3 {
  color: #03dac5;
}
.who-item:nth-child(2) h3 {
  color: #2d7dfc;
}
.who-item:nth-child(3) h3 {
  color: #c46cec;
}

.who-text p {
  font-size: 14px;
  color: #cfcfcf;
  line-height: 1.7;
  margin: 0;
}

/* Prevent any horizontal scrollbar */
body {
  overflow-x: hidden;
}


/* ===============================
   FEATURES SECTION (No Background)
=============================== */
.features-section {
  width: 100%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 0;
  position: relative;
}

.features-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  gap: 80px;
  padding: 0 40px;
  position: relative;
}

/* Image with Outer Rectangle */
.features-image {
  position: relative;
}

.features-image img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 25px rgba(0, 200, 255, 0.3);
}

/* Outer Rectangle — shifted to the RIGHT */
.features-image::before {
  content: "";
  position: absolute;
  top: -25px;
  right: -25px; /* shifted to right */
  width: 400px;
  height: 400px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  z-index: 1;
}

/* Right Text */
.features-text {
  flex: 1;
  max-width: 550px;
}

.features-text h2 {
  font-size: 18px;
  color: #14b8a6;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.features-subtext {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 25px;
}

.features-description {
  font-size: 14px;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 35px;
}

/* "More Info" Button */
.more-info-btn {
  background: linear-gradient(90deg, #0ea5e9, #2563eb);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.5);
}

.more-info-btn:hover {
  background: linear-gradient(90deg, #2563eb, #0ea5e9);
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(37, 99, 235, 0.8);
}
/* ===============================
   FAQ SECTION
=============================== */
.faq-section {
  width: 100%;
  padding: 60px 10% 100px; /* reduced top padding more */
  font-family: "Poppins", sans-serif;
  color: #fff;
  text-align: left;
  box-sizing: border-box;
  margin-top:-200px;
}


.faq-section h2 {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 60px;
}

.faq-section h2::before {
  content: "FAQ’S";
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* Two-column layout */
.faq-columns {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.faq-column {
  flex: 1;
  min-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Individual FAQ items */
.faq-item {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.faq-question {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-arrow {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
  max-width: 500px;
  display: none;
}

/* When active (expanded) */
.faq-item.active .faq-answer {
  display: block;
}

/* Subtle gradient edge and smoothness */
.faq-section {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* ===============================
   SCROLL INDICATOR (Mouse + Arrow)
=============================== */
.scroll-indicator {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 15%; 
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 1.5s ease-in-out;
}



/* Mouse outline */
.scroll-indicator .mouse {
  width: 28px;
  height: 45px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  padding-top: 6px;
}

/* Inner moving wheel */
.scroll-indicator .wheel {
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: wheelMove 1.5s infinite;
  opacity: 0.8;
}

/* Down arrow */
.scroll-indicator .down-arrow {
  font-size: 22px;
  color: #fff;
  animation: bounceArrow 2s infinite;
  opacity: 0.8;
}

/* Wheel animation */
@keyframes wheelMove {
  0% { transform: translateY(0); opacity: 0.8; }
  50% { transform: translateY(8px); opacity: 0.3; }
  100% { transform: translateY(0); opacity: 0.8; }
}

/* Arrow bounce animation */
@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Optional smooth fade-in */
@keyframes fadeInUp {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}


.ornament-divider {
  position: relative;
  width: 100%;
  height: 160px; /* slightly smaller overall height */
  background: transparent;
  overflow: visible;
  z-index: 3;
}

.ornament-left {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-25px); /* fine-tuned for balance */
  width: 140px; /* ⬅️ reduced from 220px */
  height: auto;
  opacity: 0.9;
  pointer-events: none;
}

.ornament-divider-right {
  position: relative;
  width: 100%;
  height: 200px; /* increased height for larger image */
  background: transparent;
  overflow: visible;
  z-index: 3;
}

.ornament-right {
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-25px); /* vertical alignment remains */
  width: 250px; /* ⬆️ increased size */
  height: auto;
  opacity: 0.95;
  pointer-events: none;
}
