*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter', sans-serif;
}

body{
  overflow-x:hidden;
  scroll-behavior: smooth;
 }

 #menuToggle{
  display:none;
}
/* =========================
   Inter
========================= */

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter_28pt-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter_28pt-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter_28pt-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

/* =========================
   DM Sans
========================= */

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

/* ----------------------------------------------------------------------------------- */
/* ================= NAVBAR ================= */

.navbar{
  height:56px;
  background:#091B32;
  display:flex;
  align-items:center;
  padding:0 80px;
  position:relative;
}
.navbar{
  position:relative;
  z-index:1000;
}
/* Bottom gradient stroke */
.navbar::after{
  content:"";
  position:absolute;
  bottom:2px;
  left:0;
  width:100%;
  height:2px;
  background:linear-gradient(to right,  #192e4a);
}

.nav-container{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* LOGO */
.logo img {
  height: 42px;
  max-width: 160px;
  object-fit: contain;
}


@media (max-width: 768px) {
  .logo img {
    height: 34px;
  }
}
/* NAV LINKS */
.nav-links{
  display:flex;
  gap:48px;
  list-style:none;
}

.nav-links li a{
  text-decoration:none;
  color:#F7F8F9;
  font-size:16px;
  font-weight:500;
  position:relative;
  transition:0.3s;
  font-family: 'Inter', sans-serif;
}

/* Yellow active */
.nav-links li a:hover{
  color:#F3A804;
}

/* underline animation */
.nav-links li a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0%;
  height:2px;
  background:#F3A804;
  transition:0.3s ease;
}

.nav-links li a:hover::after{
  width:100%;
}

/* ================= HAMBURGER ICON ================= */

.menu-icon{
  width: 36px;
  height:36px;
  border-radius:50%;
  background:#ffffff;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  cursor:pointer;
  transition:0.3s;
 
}

.menu-icon span{
  width:16px;
  height:2px;
  background:#091B32;


  margin:3px 0;
  transition:0.5s ease;
}

/* Transform to X when checked */
#menuToggle:checked + .navbar .menu-icon{
  background:#091B32;
}

#menuToggle:checked + .navbar .menu-icon span:nth-child(1){
  transform:translateY(5px) rotate(45deg);
  background:#F7F8F9;
}

#menuToggle:checked + .navbar .menu-icon span:nth-child(2){
  opacity:0;
}

#menuToggle:checked + .navbar .menu-icon span:nth-child(3){
  transform:translateY(-5px) rotate(-45deg);
  background:#091B32;
}

/* ================= QUICK PANEL ================= */

.quick-panel{
  position:fixed;
  top:0;
  right:-320px;
  width: 300px;
  height:100vh;
  padding:80px 40px;
  transition:0.3s ease;
  z-index:999;

  /* Background pattern */
  background:
    url("../assests/icons.png/QC\ BG.png") center/cover no-repeat,
    #F4F5F7;
  box-shadow:-10px 0 40px rgba(0,0,0,0.08);
}

/* Open panel */
#menuToggle:checked ~ .quick-panel{
  right:0;
}

/* Back Arrow */
.back-arrow{
  position:absolute;
  top:40px;
  left:40px;

  width:42px;              /* equal width & height */
  height:42px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:20px;
  color:#ffffff;

  background:#091B32;      /* solid circle */
  border-radius:50%;

  cursor:pointer;
  transition:0.3s ease;
}
.back-arrow:hover{
  background:#F7F8F9;
  border: 2px solid #091b32;
  color:#091B32;
}

/* ================= QUICK LINKS ================= */
.quick-content{
  margin-top:40px;
}
.quick-content ul{
  list-style:none;
  padding:0;
}

.quick-content li{
  margin-bottom:40px;
}

.quick-content li a{
  text-decoration:none;
  font-size:16px;
  font-weight:600;
  color:#071C34;
  position:relative;
  display:inline-block;
  font-family: 'Inter', sans-serif;
}

/* Line animation */
.quick-content li a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0%;
  height:3px;
  background:#071C34;
  transition:0.4s ease;
}

.quick-content li a:hover::after{
  width:100%;
}
/* ------------------------------------------------------------------------------ */

/* ================= HERO SECTION ================= */

.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
  color:#ffffff;
}

/* VIDEO */
.hero-video{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:-2;
}

/* DARK OVERLAY */
.hero-overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:linear-gradient(
    to bottom,
    rgba(7,28,52,0.85),
    rgba(7,28,52,0.95)
  );
  z-index:-1;
}

/* CONTENT */
.hero-content{
  max-width:1400px;
  padding: 40px;
}

/* MAIN TITLE */
.hero-content h1{
  font-size:56px;
  font-weight:700;
  margin-bottom:40px;
  letter-spacing:1.5px;
  font-family: 'DM Sans', sans-serif;
}

/* YELLOW QUOTE */
.hero-quote{
  color:#F3A804;
  font-size:20px;
  line-height:1.3;
  margin-bottom:30px;
  font-family: 'DM Sans', sans-serif;
}
/* --------------------------------------------------------------------------------------------------------------------------------------- */
/* Our Story */
/* ======================================
   OUR STORY SECTION
====================================== */

.our-story-section {
  background: #15263D;
   padding: 60px 5%;
  color: #ffffff;
  
}

.our-story-container {
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

/* Title */
.story-title {
  text-align: center;
  font-size: 40px;
  color: #F3A804;
  margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
}

/* Paragraph */
.story-text {
  text-align: center;
  max-width: 1400px;
  margin: 0 auto 80px auto;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
}

/* Highlight text */
.highlight {
  color: #F3A804;
  font-style: italic;
  font-family: 'DM Sans', sans-serif;
}

.link-highlight {
  color: #1E77BC;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
}

/* ======================================
   MISSION & VISION
====================================== */

.mission-vision-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.block-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 30px;
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
}

/* Card */
.info-card {
  background: #EAEAEA;
  color: #1e293b;
  padding: 30px;
  border-radius: 16px;
  border: 2px solid #F3A804;
  line-height: 1.5;
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
}

/* ======================================
   SCROLL ANIMATION
====================================== */

.animate-up,
.animate-left,
.animate-right {
  opacity: 0;
  transition: all 0.8s ease;
}

.animate-up {
  transform: translateY(60px);
}

.animate-left {
  transform: translateX(-80px);
}

.animate-right {
  transform: translateX(80px);
}

.show {
  opacity: 1;
  transform: translate(0, 0);
}

/* ======================================
   RESPONSIVE
====================================== */

@media (max-width: 992px) {

  .mission-vision-wrapper {
    grid-template-columns: 1fr;
  }

  .story-title {
    font-size: 34px;
  }

  .block-title {
    font-size: 26px;
  }
}
/* --------------------------------------------------------------------------------------------------------- */
/* Our Journey */
/* ================================
   JOURNEY SECTION
================================ */

.journey-section {
  background: #091B32;
  padding: 40px 20px;
  position: relative;
}

.journey-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 10px;
}

.journey-title {
  text-align: center;
  color: #F3A804;
  font-size: 36px;
  margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
}

.journey-subtitle {
  text-align: center;
  color: #ffffff;
  opacity: 0.8;
  margin-bottom: 100px;
  font-size: 18px;
  font-family: 'DM Sans', sans-serif;
}

/* ================================
   TIMELINE STRUCTURE
================================ */

.timeline {
  position: relative;
}

/* Vertical center line */
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 100%;
  background: #1E77BC;
  transform: translateX(-50%);
}

/* Timeline Item */
.timeline-item {
  position: relative;
  width: 50%;
  margin-bottom: 100px;
}

/* Left side */
.timeline-item.left {
  left: 0;
  text-align: right;
  padding-right: 80px;
}

/* Right side */
.timeline-item.right {
  left: 50%;
  text-align: left;
  padding-left: 80px;
}

/* ================================
   CARD DESIGN
================================ */

.timeline-card {
  background: #132338;
  padding: 30px;
  border-radius: 16px;
  border: 2px solid #1E77BC;
  box-shadow: 0 0 16px rgba(29,161,242,0.3);
  color: white;
}

.timeline-card h3 {
  color: #1E77BC;
  font-size: 24px;
  margin-bottom: 15px;
  font-family: 'DM Sans', sans-serif;
}

.timeline-card p {
  opacity: 0.9;
  line-height: 1.6;
}

/* ================================
   CIRCLE DESIGN
================================ */

.timeline-circle {
  position: absolute;
  top: 40px;                 /* Adjust if needed */
  left: 100%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  background: #1E77BC;
  border-radius: 50%;
  border: 4px solid #1C2F46;
  z-index: 5;
 
}

.timeline-item.right .timeline-circle {
  left: 0;
  transform: translateX(-40%);
}

/* ================================
   SCROLL ANIMATION
================================ */

.journey-item {
  opacity: 0;
  transform: translateY(80px);
  transition: all 1.2s ease;
}

.journey-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* Circle Pulse */
.timeline-circle.active {
  animation: pulse 1.2s ease forwards;
}

@keyframes pulse {
  0% { transform: translateX(-50%) scale(0.6); }
  50% { transform: translateX(-50%) scale(1.6); }
  100% { transform: translateX(-50%) scale(1); }
}
/* ------------------------------------------------------------------------------------------------------------------------------ */
/* Our Value System */
/* ================================
   SECTION
================================ */

.value-section {
  background: #132338;
  padding: 60px 40px;
}

.value-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Title */

.value-title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  color: #F3A804;
  margin-bottom: 20px;
 font-family: 'DM Sans', sans-serif;
}

.value-subtitle {
  text-align: center;
  color: #ffffff;
  max-width: 1400px;
  font-size: 18px;
  margin: 0 auto 80px auto;
  line-height: 1.7;
  font-family: 'DM Sans', sans-serif;
}

/* ================================
   GRID
================================ */

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* LEFT PNG */

.value-left img {
  width: 100%;
  max-width: 600px;
  display: block;
}

/* ================================
   RIGHT CARDS
================================ */

.value-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.value-card {
  background: #ffffff;
  padding: 40px 40px;
  border-radius: 16px;
  border: 2px solid #F3A804;
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease;
}

.value-card h3 {
  color: #F3A804;
  font-size: 22px;
  margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif;
}

.value-card p {
  color: #333333;
  font-size: 16px;
  line-height: 1.7;
  font-family: 'DM Sans', sans-serif;
}

/* Scroll Active */

.value-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media (max-width: 992px) {

  .value-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .value-left {
    text-align: center;
  }

  .value-right {
    gap: 25px;
  }
}
/* <!-- ------------------------------------------------------------------------------------------------------------------------------------------------------------------- --> */
/* Core Value */
/* =========================
   SECTION
========================= */

.core-values-section {
  background: #132338;
  padding: 40px 20px;
}

.core-container {
  max-width: 1400px;
  margin: 0 auto;
}

.core-title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  color: #F3A804;
  margin-bottom: 40px;
  font-family: 'DM Sans', sans-serif;
}

/* =========================
   GRID
========================= */

.core-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 60px;
}

/* =========================
   CARD
========================= */

.core-card {
  position: relative;
  background: #091B32;
  padding: 50px 50px;
  border-radius: 16px;
  overflow: hidden;

  /* Scroll initial state */
  opacity: 0;
  transform: translateY(80px);
  transition: all 1s ease;
}

/* Text */

.core-card h3 {
  color: #F3A804;
  font-size: 22px;
  margin-bottom: 15px;
  font-family: 'DM Sans', sans-serif;
}

.core-card p {
  color: #ffffff;
  line-height: 1.7;
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
}

/* =========================
   LINEAR STROKE ANIMATION
========================= */

.core-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
 border: 2px solid #1E77BC;
}

/* When visible */
.core-card.show {
  opacity: 1;
  transform: translateY(0);
}

.core-card.show::before {
  opacity: 1;
  animation: borderDraw 1.2s linear forwards;
}

/* <!-- ------------------------------------------------------------------------------------------------------------------------------------------------------------------- --> */
/* People First */
/* ===============================
   PEOPLE SECTION
================================ */

.people-section {
  background: #132338;
  padding: 40px 40px;
  text-align: center;
  overflow: hidden;
}

/* Title */
.people-title {
  color: #F3A804;
  font-size: 36px;
  margin-bottom: 40px;
  font-family: 'DM Sans', sans-serif;
}

/* Grid */
.people-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* Cards */
.people-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  text-align: left;
  border: 2px solid #F3A804;
  font-family: 'DM Sans', sans-serif;

  /* Scroll animation initial state */
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease;
}

/* Title inside card */
.people-card h3 {
  color: #1E77BC;
  font-size: 22px;
  margin-bottom: 15px;
 font-family: 'DM Sans', sans-serif;
}

/* Text */
.people-card p {
  color: #1C2F46;
  line-height: 1.5;
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
}

/* When visible */
.people-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .people-grid {
    grid-template-columns: 1fr;
  }
}
/* <!-- ------------------------------------------------------------------------------------------------------------------------------------------------------------------- --> */
/* Leadership Excellence */
/* SECTION BACKGROUND */
.leadership-section {
  background: linear-gradient(180deg, #091B32, #008CD1,#091B32);
  padding: 60px 40px;
  text-align: center;
  color: #fff;
}

/* TOP TITLES */
.leadership-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 15px;
 font-family: 'DM Sans', sans-serif;

}

.leadership-sub {
  color: #F3A804;
  font-size: 20px;
  margin-bottom: 25px;
  font-family: 'DM Sans', sans-serif;
}

.leadership-desc {
  max-width: 1400px;
  margin: 0 auto 70px auto;
  line-height: 1.7;
  color: #d1d9e0;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
}

/* MEET TITLE */
.meet-title {
  font-size: 34px;
  color: #F3A804;
  margin-bottom: 70px;
  font-family: 'DM Sans', sans-serif;
}

/* GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 90px 60px;
}

/* CARD */
.team-card {
  cursor: pointer;
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.team-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* IMAGE */
.team-card img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 18px;
 border: 3px solid #091B32;
  margin-bottom: 18px;
  transition: transform 0.4s ease;
}

.team-card:hover img {
  transform: scale(1.05);
}

/* NAME */
.team-card h4 {
  color: #F3A804;
  font-size: 20px;
  margin-bottom: 6px;
 font-family: 'DM Sans', sans-serif;
}

/* ROLE */
.team-card span {
  font-size: 16px;
  color: #ffffff;
   font-family: 'DM Sans', sans-serif;
}
.team-card a {
  display: inline-block;
  text-decoration: none;
}
/* RESPONSIVE */
@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   QUICK PANEL
================================= */

.leader-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 450px;
  height: 100vh;
  background-color: white;
  /* PNG BACKGROUND */
  background-image: url("../assests/icons.png/QC\ BG.png"); /* your PNG name */
  background-size: cover;      /* very important */
  background-position: center; /* keeps it aligned */
  background-repeat: no-repeat;
  padding: 120px 45px 50px 45px;
  overflow-y: auto;
  transition: right 0.5s ease;
  z-index: 999;
}

.leader-panel:target {
  right: 0;
}

.panel-content img {
  width: 220px;
  border: 2px solid #091B32;
  border-radius: 16px;
  margin-bottom: 20px;
}

.panel-content h2 {
  color: #F3A804;
   margin-bottom: 10px;
   font-family: 'DM Sans', sans-serif;
}

.panel-content h5 {
  color: #1E77BC;
  margin-bottom: 30px;
  font-family: 'DM Sans', sans-serif;
}

.panel-content p {
  color: #1C2F46;
  line-height: 1.8;
  font-family: 'DM Sans', sans-serif;
}


/* CLOSE & BACK */

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #091B32; /* circle border */
  background: #091B32;
  font-size: 16px;
  text-decoration: none;
  color: #ffffff;
  
    
}

.back-btn {
  position: absolute;
  top: 20px;
  left: 30px;
  right: 30px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #091B32; /* circle border */
  background: #091B32;
  font-size: 16px;
  text-decoration: none;
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  
  
}


/* RESPONSIVE */
@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .leader-panel {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}
/* <!-- ------------------------------------------------------------------------------------------------------------------------------------------------------------------- --> */
/* What Sets Vectrous.AI Apart */
html {
  scroll-behavior: smooth;
}

/* SECTION */

.apart-section {
  background: #091B32;
  padding: 80px 8%;
}

/* HEADER */

.apart-header {
text-align: center;
  margin-bottom: 60px;
  font-family: 'DM Sans', sans-serif;
}

.apart-header h2 {
  font-size: 48px;
  color: #F3A804;
  margin-bottom: 20px;
 font-family: 'DM Sans', sans-serif;
}

.apart-header p {
  font-size: 24px;
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
}

/* LAYOUT */

.apart-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

/* LEFT */

.apart-left p {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 25px;
  font-family: 'DM Sans', sans-serif;
}

/* RIGHT */

.apart-right {
  display: flex;
  flex-direction: column;
  gap: 20px; /* IMPORTANT FOR OVERLAP */
}

/* CARD */

.apart-card {
  position: sticky;
  top: 120px;
  background: #13283F;
  border: 2px solid #1E77BC;
  border-radius: 16px;
  padding: 30px;

  /* box-shadow: 0 40px 80px rgba(0,0,0,0.25); */

  opacity: 0;
  transform: translateY(80px);
  transition: all 0.8s ease;
}

/* Overlap Order */

.apart-card:nth-child(1) { z-index: 1; }
.apart-card:nth-child(2) { z-index: 2; }
.apart-card:nth-child(3) { z-index: 3; }

/* Animation Active */

.apart-card.active {
  opacity: 1;
  transform: translateY(0);
}

.apart-card h3 {
  color: #F3A804;
  margin-bottom: 15px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.apart-card p {
  color: #ffffff;
  font-size: 16px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


/* <!-- ------------------------------------------------------------------------------------------------------------------------------------------------------------------- --> */

/* Ways to reach us */

/* ================= SECTION BACKGROUND ================= */

.reach-section {
  background: #15263D;
  padding: 60px 40px;
}

/* Title */
.reach-title {
  text-align: center;
  font-size: 40px;
  color: #f3a804;
  margin-bottom: 60px;
 font-family: 'DM Sans', sans-serif;
}

/* White Container */
.reach-container {
  background: #ffffff;
  border-radius: 16px;
  padding: 50px;
  display: flex;
  gap: 60px;
  max-width: 1400px;
  margin: auto;
}

/* Left Column */
.reach-left {
  flex: 1;
}

/* Card */
.reach-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #132338;
  padding: 25px 30px;
  border-radius: 16px;
  margin-bottom: 25px;
  color: #ffffff;

  border: 2px solid #1E77BC;
  /* box-shadow: 0 0 15px rgba(0,140,209,0.4); */
}

.reach-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
  font-family: 'DM Sans', sans-serif;
}

.reach-card p {
  font-size: 16px;
  line-height: 1.6;
  font-family: 'DM Sans', sans-serif;
}

/* Icon Circle */
.icon-box {
  width: 48px;
  height: 48px;
  background: #f3a804;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box img {
  width: 40px;
  height: 40px;
}

/* Social Box */
.social-box {
  margin-top: 20px;
  border: 2px solid #132338;
  border-radius: 16px;
  padding: 10px;
  background: #ffffff;
  font-family: 'DM Sans', sans-serif;
}

.social-box h3 {
  margin-bottom: 20px;
  color: #132338;
  font-family: 'DM Sans', sans-serif;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  /* width: 48px;
  height: 48px; */
  border-radius: 50%;
  border: 2px solid #132338;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.social-icons img {
  width: 20px;
  height: 20px;
}

.social-icons a:hover {
  background: #F7F8F9;
  border-color: #091B32;
}

/* Right Side Image */
.reach-right {
  flex: 1.5;
}

.reach-right img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  min-height: 75vh;
  border: 2px solid #1E77BC;
}
/* ------------------------------------------------------------------------------------------------------------------- */

/* Contact Us */
/* ============================= */
/* SECTION BACKGROUND            */
/* ============================= */

.cta-section {
  position: relative;
  width: 100vw;              /* Full viewport width */
  left: 50%;
  right: 50%;
  margin-left: -50vw;        /* Break out of parent */
  margin-right: -50vw;

  padding: 100px 20px;
  background: #091B32;

  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

/* ============================= */
/* INNER GRADIENT CARD           */
/* ============================= */

.cta-container {
  width: 90%;
  max-width: 1600px;
  padding: 40px 40px;
  border-radius: 16px;
  text-align: center;
  background: linear-gradient(180deg, #1E77BC 0%,#1E77BC , #091B32 100%);
}

/* ============================= */
/* TEXT                          */
/* ============================= */

.cta-title {
  font-size: 40px;
  color: #F3A804;
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
}

.cta-subtitle {
  font-size: 20px;
  color: #ffffff;
  max-width: 1400px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
  font-family: 'DM Sans', sans-serif;
}

/* ============================= */
/* BUTTONS WRAPPER               */
/* ============================= */

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* ============================= */
/* COMMON BUTTON STYLE           */
/* ============================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
/* Change PNG icon color to blue on hover */
.btn-primary:hover .btn-icon {
  filter: brightness(0) saturate(100%)
          invert(32%) sepia(98%)
          saturate(2476%)
          hue-rotate(185deg)
          brightness(95%) contrast(95%);
}

/* ============================= */
/* PRIMARY BUTTON (Blue)         */
/* ============================= */

.btn-primary {
  background-color: #1E77BC;
  color: #ffffff;
  
}

/* Hover + Click */
.btn-primary:hover,
.btn-primary:active {
  background-color: #ffffff;
  color: #1E77BC;
}

/* ============================= */
/* OUTLINE BUTTON (White)        */
/* ============================= */

.btn-outline {
  
  color: #ffffff;
  border: 2px solid #1E77BC;
}

/* Hover + Click */
.btn-outline:hover,
.btn-outline:active {
  background-color: #ffffff;
  color: #1E77BC;

}

/* ============================= */
/* ICON                          */
/* ============================= */

.btn-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
/* <!-- Footer --> */

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* FULL WIDTH FOOTER BACKGROUND */
.footer {
  width: 100vw;                         /* Force full viewport width */
  margin-left: calc(50% - 50vw);         /* Break out of parent */
  background: linear-gradient(180deg, #152131 0%, #091B32 100%);
  color: #ffffff;
  position: relative;
}

/* INNER CONTENT ALIGNMENT */
.footer-wrapper {
  max-width: 1440px;   /* Design width */
  margin: 0 auto;
  padding: 40px 40px;
  box-sizing: border-box;
}



/* Wrapper Alignment */
.footer-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 40px;
}


/* Top Row */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  width: 150px; /* PNG Logo */
}

.footer-copy {
  font-size: 14px;
  opacity: 0.8;
  color:#F7F8F9;
  font-family: 'Inter', sans-serif;
}

/* Divider */
.footer-divider {
  height: 1px;
  background: #323E4F;
  margin: 30px 0 50px 0;
  font-family: 'Inter', sans-serif;
}

/* Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 80px;
}

.footer-about {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.9;
  color: #F7F8F9;
  font-family: 'Inter', sans-serif;
}

.footer-column h4 {
  margin-bottom: 20px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

/* Links */
.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #F7F8F9;
  text-decoration: none;
  position: relative;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}

/* Underline animation */
.footer-column ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 1px;
  background: #F7F8F9;
  transition: width 0.3s ease;
}

.footer-column ul li a:hover::after {
  width: 100%;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons img {
  width: 36px;
  height: 36px;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

/* ============================= */
/* SCROLL TO TOP CIRCLE         */
/* ============================= */

.scroll-top {
  position: absolute;
  right: 60px;
  bottom: 60px;
  width: 60px;
  height: 60px;
  cursor: pointer;
}

/* Rotating SVG */
.rotating-text {
  width: 100%;
  height: 100%;
 
  animation: rotateText 15s linear infinite;
}

/* Rotation animation */
@keyframes rotateText {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Static Arrow Centered */
.scroll-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  pointer-events: none; /* ensures click works on parent */
}
/* ---------------------------------------------------------------------------------------------------- */
/* =========================================
   GLOBAL RESPONSIVE SETTINGS
========================================= */

/* -------- Tablet (1024px and below) -------- */
@media (max-width: 1024px) {

  .navbar {
    padding: 0 40px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .apart-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .reach-container {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* -------- Mobile (768px and below) -------- */
@media (max-width: 768px) {

  .navbar {
    padding: 0 20px;
  }

  .nav-links {
    display: none; /* Hide desktop menu */
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .story-title,
  .value-title,
  .core-title,
  .people-title,
  .leadership-title,
  .apart-header h2,
  .reach-title,
  .cta-title {
    font-size: 26px;
  }

  .reach-container {
    padding: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .scroll-top {
    right: 20px;
    bottom: 20px;
  }
}

/* -------- Small Mobile (480px and below) -------- */
@media (max-width: 480px) {

  .hero-content {
    padding: 20px;
  }

  .cta-container {
    padding: 30px 20px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .team-card img {
    width: 180px;
    height: 180px;
  }

}
/* =====================================================
   RESPONSIVE ADD-ON 
   ===================================================== */

/* Make images responsive everywhere */
img {
  max-width: 100%;
  height: auto;
}

/* Fix large section paddings on small devices */
@media (max-width: 992px) {
  .navbar {
    padding: 0 40px;
  }

  .value-section,
  .people-section,
  .leadership-section,
  .reach-section {
    padding-left: 5%;
    padding-right: 5%;
  }
}

/* ================= TIMELINE MOBILE FIX ================= */
@media (max-width: 768px) {

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 60px !important;
    padding-right: 0 !important;
    text-align: left !important;
  }

  .timeline-item.right {
    left: 0;
  }

  .timeline-circle {
    left: 20px !important;
    transform: translateX(-50%);
  }

}

/* ================= STICKY APART FIX ================= */
@media (max-width: 992px) {
  .apart-card {
    position: relative;
    top: 0;
  }

  .apart-container {
    grid-template-columns: 1fr;
  }
}

/* ================= GRID STACK FIX ================= */
@media (max-width: 992px) {

  .value-grid,
  .core-grid,
  .people-grid,
  .mission-vision-wrapper,
  .team-grid {
    grid-template-columns: 1fr !important;
  }

}

/* ================= ICON FIX ================= */
@media (max-width: 480px) {

  .icon-box {
    width: 36px;
    height: 36px;
  }

  .value-card,
  .core-card,
  .people-card {
    padding: 25px;
  }

}

/* ================= CTA FIX ================= */
@media (max-width: 480px) {

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

}

/* ================= FOOTER FIX ================= */
@media (max-width: 768px) {

  .footer-top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

}
/* Desktop */
.nav-links {
  display: flex;
  gap: 32px;
}

/* Tablet & Below */
@media (max-width: 1024px) {

  .nav-links {
    display: none;
  }

  .menu-icon {
    display: flex;
  }

}
/* Tablet & Below */
@media (max-width: 1024px) {

  .nav-links {
    display: none;
  }

  .menu-icon {
    display: flex;
  }

}
