
/* =========================
   GLOBAL BASE
========================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, sans-serif;
  background: radial-gradient(circle at top, #0b1220, #05070f, #000);
  color: #e5e7eb;
  line-height: 1.7;
  overflow-x: hidden;
}

/* =========================
   MAIN WRAPPER (FLUID)
========================= */
.about-main {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  padding: clamp(16px, 4vw, 40px);
}

/* =========================
   HERO
========================= */
.about-hero {
  text-align: center;
  padding: clamp(20px, 4vw, 40px) 10px;
}

.about-title {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 800;
  color: #aadefe;
  text-shadow:
    0 0 10px rgba(96,165,250,0.6),
    0 0 25px rgba(167,139,250,0.4);
  animation: glowTitle 3s infinite alternate;
}

/* =========================
   TEXT
========================= */
.about-text {
  font-size: clamp(14px, 1.2vw, 16px);
  color: #cbd5e1;
  margin-top: 10px;
}

/* =========================
   SECTION CARD
========================= */
.about-section {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(14px, 3vw, 22px);
  margin: 16px 0;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

/* hover effect (disable heavy hover on mobile automatically below) */
.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.06),
    transparent
  );
  transition: 0.6s;
}

.about-section:hover::before {
  left: 120%;
}

.about-section:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.7);
}

/* =========================
   HEADINGS
========================= */
.about-heading {
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 10px;
  color: #93c5fd;
}

/* =========================
   LIST
========================= */
.about-list {
  padding-left: 18px;
}

.about-list li {
  margin: 8px 0;
  transition: 0.3s ease;
}

/* =========================
   COLOR BORDERS
========================= */
.about-objective { border-left: 3px solid #60a5fa; }
.about-services { border-left: 3px solid #34d399; }
.about-founder { border-left: 3px solid #fbbf24; }
.about-vision { border-left: 3px solid #a78bfa; }
.about-disclaimer { border-left: 3px solid #f87171; }
.about-transparency { border-left: 3px solid #38bdf8; }
.about-conclusion { border-left: 3px solid #22c55e; }

/* =========================
   ANIMATION
========================= */
@keyframes glowTitle {
  0% { filter: drop-shadow(0 0 6px #60a5fa); }
  100% { filter: drop-shadow(0 0 18px #a78bfa); }
}

/* =========================
   TABLET (<= 992px)
========================= */
@media (max-width: 992px) {
  .about-main {
    padding: 25px;
  }

  .about-section {
    margin: 14px 0;
  }
}

/* =========================
   MOBILE (<= 768px)
========================= */
@media (max-width: 768px) {

  .about-hero {
    padding: 20px 10px;
  }

  .about-section {
    padding: 16px;
  }

  .about-list li {
    font-size: 14px;
  }

  /* hover OFF on mobile (better UX) */
  .about-section:hover {
    transform: none;
  }

  .about-section::before {
    display: none;
  }
}

/* =========================
   SMALL MOBILE (<= 480px)
========================= */
@media (max-width: 480px) {

  .about-title {
    font-size: 22px;
  }

  .about-text {
    font-size: 13.5px;
  }

  .about-heading {
    font-size: 17px;
  }

  .about-section {
    border-radius: 12px;
  }
}

/* =========================
   LARGE SCREENS (>= 1400px)
========================= */
@media (min-width: 1400px) {
  .about-main {
    max-width: 1200px;
  }

  .about-title {
    font-size: 46px;
  }
}


/* ===============================
   FOUNDER IMAGE (FULL CSS)
================================ */

.founder-img {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;

  margin: 20px auto;

  object-fit: cover;
  border-radius: 18px;

  /* Soft premium border */
  border: 3px solid rgba(255, 255, 255, 0.12);

  /* Depth shadow */
  box-shadow: 
    0 10px 25px rgba(0, 0, 0, 0.25),
    0 5px 10px rgba(0, 0, 0, 0.15);

  /* Smooth animation */
  transition: 
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* ===============================
   HOVER EFFECT
================================ */

.founder-img:hover {
  transform: translateY(-6px) scale(1.03);

  border-color: rgba(255, 215, 0, 0.6);

  box-shadow: 
    0 20px 45px rgba(0, 0, 0, 0.45),
    0 10px 20px rgba(0, 0, 0, 0.25);
}

/* ===============================
   OPTIONAL: DARK BACKGROUND SUPPORT
================================ */

.com-body .founder-img {
  background: #0b1a2d;
}

/* ===============================
   RESPONSIVE (MOBILE)
================================ */

@media (max-width: 480px) {
  .founder-img {
    max-width: 260px;
    border-radius: 14px;
  }
}
