
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
section {
  scroll-margin-top: 80px;
}
/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%; /* FIXED */
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 12px 5%; /* reduced for balance */
  transition: all 0.4s ease;
}

/* SCROLL EFFECT */
.navbar.scrolled {
  background: #0a1f44;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* CONTAINER */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  height: 60px;
}

/* NAV LINKS DESKTOP */
.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-size: 15px;
  position: relative;
  transition: 0.3s;
}

/* HOVER UNDERLINE */
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: gold;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ACTIVE LINK */
.nav-links a.active {
  color: gold;
}

.nav-links a.active::after {
  width: 100%;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #0a1f44; /* DARK color so it shows */
  cursor: pointer;
  z-index: 1100; /* IMPORTANT: bring above everything */
  position: relative;
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

  .navbar {
    padding: 12px 4%; /* tighter padding */
  }

  .menu-toggle {
    display: block;
    font-size: 28px;
    color: black;
  }

  .nav-links {
    position: absolute;
    top: 65px;
    right: -100%;
    flex-direction: column;
    background: #0a1f44;
    width: 220px;
    text-align: center;
    padding: 20px 0;
    transition: 0.3s ease;
    border-radius: 8px;
  }

  .nav-links a {
    color: white;
  }

  .nav-links.active {
    right: 10px; /* FIXED: not touching edge */
  }

  .nav-links li {
    margin: 15px 0;
  }
}
/* HERO SECTION */
/* RESET ISSUE FIRST */
body {
  margin: 0;
  padding: 0;
}

/* HERO FIX */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;

  display: flex;
  align-items: center;

  padding: 0 8%;
  color: white;
  overflow: hidden;

  /* FIX: Proper full background */
  background: url('https://res.cloudinary.com/dkhmpija5/image/upload/v1774345062/home_background_bpdt7i.png') no-repeat center center/cover;
}

/* REMOVE EXTRA LEFT GAP */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;   /* FIXED */
  height: 100%;  /* FIXED */
  background: inherit;
  z-index: 0;
  transform: scale(1.05);
}

/* OVERLAY FIX */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,31,68,0.9) 0%,
    rgba(10,31,68,0.7) 40%,
    rgba(10,31,68,0.3) 70%,
    transparent 100%
  );
  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

/* TEXT FIX */
.hero-title {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 10px;
  opacity: 0.9;
}

.hero-desc {
  font-size: 15px;
  margin-bottom: 25px;
  opacity: 0.85;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
}

/* BUTTON BASE */
.btn {
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  background: white;
  color: black;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

/* ACTIVE STATE (border style) */
.btn.active {
  background: transparent;
  color: white;
  border: 2px solid white;
  box-shadow: none;
}

/* HOVER ONLY WHEN NOT ACTIVE */
.btn:hover:not(.active) {
  background: gold;
  color: black;
}
@media (max-width: 768px) {

  .hero {
    padding: 0 20px;
    text-align: left;
    justify-content:left;

  }

  .hero-content {
    max-width: 100%;
    text-align: left;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-desc {
    font-size: 13px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: left;
    text-align: left;
    width:200px;
  }

  .btn {
    width:200px;
  }
}
/* RESET */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* SECTION */
.about {
  padding: 80px 8%;
  display: flex;
  justify-content: center;
  padding-bottom: 45px;
}

/* CARD */
.about-card {
  position: relative;
  width: 100%;
  max-width: 1500px;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

/* BACKGROUND */
.about-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('https://res.cloudinary.com/dkhmpija5/image/upload/v1774347520/about_us_qetfpe.jpg') center/cover no-repeat;
  transition: 0.5s ease;
}
/* SLIDESHOW SMOOTH FADE + ZOOM */
.about-bg {
  animation: zoomEffect 12s ease-in-out infinite alternate;
}

@keyframes zoomEffect {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

/* CONTENT */
.about-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 30px);
  text-align: center;
  color: white;
  width: 90%;
  max-width: 700px;
  padding: 20px;

  opacity: 0;
  transition: 0.5s ease;
}

/* TEXT */
.about-content h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.about-highlight {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-desc {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* POINTS */
.about-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.about-points span {
  background: rgba(255,255,255,0.2);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 15px;
}

/* DEFAULT HIDDEN */
.about-content {
  opacity: 0;
  transform: translate(-50%, 30px);
}

/* DESKTOP ONLY HOVER */
@media (hover: hover) and (pointer: fine) {
  .about-card:hover .about-bg {
    filter: blur(6px) brightness(0.5);
  }

  .about-card:hover .about-content {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* MOBILE CLICK ONLY */
.about-card.active .about-bg {
  filter: blur(6px) brightness(0.5);
}

.about-card.active .about-content {
  opacity: 1;
  transform: translate(-50%, -50%);
}

/* 📱 MOBILE FIX */
@media (max-width: 768px) {

  .about-card {
    height: 420px;
  }

  .about-content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;

    width: 95%;
    max-height: 85%;
    overflow-y: auto;
    padding: 15px;
  }

  .about-content h2 {
    font-size: 22px;
  }

  .about-highlight {
    font-size: 14px;
  }

  .about-desc {
    font-size: 13px;
  }

  .about-points span {
    font-size: 11px;
  }
}
/* SECTION */
.provide {
  padding: 100px 8%;
  background: radial-gradient(circle at top, #3A335F, #3A335F);
  text-align: center;
  color: white;
}
/* FIX PROVIDE TITLE VISIBILITY */
.provide .section-title {
  color: white !important;
  font-size: 42px;
  margin-bottom: 70px;
  position: relative;
}


.section-title::after {
  content: "";
  width: 90px;
  height: 3px;
  background: gold;
  display: block;
  margin: 10px auto;
  color: whitesmoke;
}

/* CONTAINER */
.provide-container {
  display: flex;
  gap: 35px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

/* PREMIUM CARD */
.premium-card {
  flex: 1;
  min-width: 280px;
  max-width: 320px;

  padding: 35px 25px;
  border-radius: 20px;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 215, 0, 0.3);

  position: relative;
  overflow: hidden;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* HOVER EFFECT */
.premium-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 
    0 0 25px rgba(255,215,0,0.4),
    0 0 60px rgba(255,215,0,0.2);
}

/* MOUSE GLOW */
.premium-card::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255,215,0,0.25), transparent 70%);
  top: var(--y, 50%);
  left: var(--x, 50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.3s;
}

.premium-card:hover::after {
  opacity: 1;
}

/* ICON */
.premium-card .icon {
  font-size: 45px;
  margin-bottom: 20px;
  transition: 0.4s;
}

/* TEXT */
.premium-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  
}

.premium-card p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

/* ICON ANIMATION */
.premium-card:hover .icon {
  transform: translateY(-5px) scale(1.1);
}

/* FLOAT ANIMATION (DESKTOP ONLY) */
@media (min-width: 769px) {
  .premium-card {
    animation: floatCard 6s ease-in-out infinite;
  }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ✅ MOBILE FIX (FINAL CLEAN VERSION) */
@media (max-width: 768px) {

  .section-title {
    font-size: 28px;
    color: whitesmoke;
  }

  .provide-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .premium-card {
    width: 90%;
    max-width: 320px;
    margin: 0 auto;
    animation: none;
  }
}
/* 🔥 FORCE CENTER FIX (OVERRIDE EVERYTHING) */
@media (max-width: 768px) {

  .provide-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .premium-card {
    display: block !important;
    width: 90% !important;
    max-width: 320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

}
/* SECTION */
.why-us {
  padding: 100px 8%;
  background: #ffffff;
  text-align: center;
}

/* TITLE */
.section-title {
  font-size: 40px;
  margin-bottom: 70px;
  color: #0a1f44;
  position: relative;
}

.section-title::after {
  content: "";
  width: 90px;
  height: 3px;
  background: gold;
  display: block;
  margin: 10px auto;
}

/* GRID */
.why-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
/* CLEAN PROFESSIONAL CARD */
.why-card {
  background: #f8f9fc; /* soft light (not pure white) */
  padding: 30px;
  border-radius: 20px;

  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: center;

  border: 1px solid rgba(0,0,0,0.05);
}

/* TEXT CLEAR VISIBILITY */
.why-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0a1f44;
  font-weight: 600;
}

.why-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #444; /* darker for better readability */
}

/* HOVER (SOFT + PREMIUM) */
.why-card:hover {
  transform: translateY(-10px);
  background: #0a1f44;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* TEXT ON HOVER */
.why-card:hover h3,
.why-card:hover p {
  color: #ffffff;
}

/* ICON */
.why-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
  transition: 0.4s;
}

/* TITLE */
.why-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0a1f44;   /* 🔥 DARK COLOR FIX */
  font-weight: 600;
}

/* TEXT */
.why-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;   /* 🔥 FIXED VISIBILITY */
}

/* TEXT ON HOVER */
.why-card:hover h3,
.why-card:hover p {
  color: white;
}

/* ICON ANIMATION */
.why-card:hover .icon {
  transform: scale(1.2);
}

/* GLOW BORDER */
.ultra-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(120deg, transparent, rgb(255, 255, 255), transparent);
  opacity: 0;
  transition: 0.4s;
}


/* HOVER */
.ultra-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.ultra-card:hover::before {
  opacity: 0.4;
}

.ultra-card:hover::after {
  opacity: 1;
}

/* ICON */
.ultra-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
  transition: 0.4s;
}

/* ICON ANIMATION */
.ultra-card:hover .icon {
  transform: scale(1.2) rotate(5deg);
}

/* TEXT */
.ultra-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0a1f44;
}

.ultra-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* FLOAT (DESKTOP ONLY) */
@media (min-width: 769px) {
  .ultra-card {
    animation: floatCard 6s ease-in-out infinite;
  }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* TABLET */
@media (max-width: 1024px) {
  .why-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .section-title {
    font-size: 28px;
  }

  .why-container {
    grid-template-columns: 1fr;
  }

  .ultra-card {
    animation: none;
  }

}
/* SECTION */
.facilities {
  padding: 80px 8%;
  background: #ffffff;
  text-align: center;
}

/* TITLE */
.section-title {
  font-size: 40px;
  margin-bottom: 50px;
}

/* GRID */
.facilities-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.facility-card {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
}

/* IMAGE */
.facility-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

/* OVERLAY */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.6);
  color: white;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  padding: 20px;

  opacity: 0;
  transform: translateY(20px);
  transition: 0.5s ease;
}

/* TEXT */
.overlay h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.overlay p {
  font-size: 14px;
  max-width: 250px;
  line-height: 1.5;
}

/* HOVER (Desktop) */
.facility-card:hover img {
  transform: scale(1.1);
}

.facility-card:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

/* CLICK / TAP (Mobile + All Devices) */
.facility-card.active .overlay {
  opacity: 1;
  transform: translateY(0);
}

.facility-card.active img {
  transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .facilities-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .section-title {
    font-size: 28px;
  }

  .facilities-container {
    grid-template-columns: 1fr;
  }

  .facility-card {
    height: 220px;
  }

}
/* SECTION */
.academics {
  padding: 100px 8%;
  background: #ffffff;
  text-align: center;
}

/* TITLE */
.section-title {
  font-size: 42px;
  margin-bottom: 70px;
  color: #0a1f44;
  position: relative;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: gold;
  display: block;
  margin: 10px auto;
}

/* CONTAINER */
.academics-container {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARD */
.academic-card {
  position: relative;
  flex: 1;
  min-width: 280px;
  max-width: 320px;

  padding: 40px 25px;
  border-radius: 20px;
  background: #ffffff;

  border: 1px solid rgba(0,0,0,0.06);

  transition: all 0.4s ease;
  overflow: hidden;
  text-align: left;

  z-index: 1;
}

/* TEXT FIX */
.academic-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #0a1f44;   /* 🔥 always dark */
  position: relative;
  z-index: 2;
}

.academic-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;   /* 🔥 always readable */
  position: relative;
  z-index: 2;
}

/* NUMBER */
.card-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 60px;
  font-weight: bold;
  color: rgba(10,31,68,0.08);
  z-index: 1;
}

/* HOVER EFFECT (SAFE) */
.academic-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: gold;
  background: #ffffff;  /* 🔥 DO NOT CHANGE BG */
}

/* LEFT LINE */
.academic-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 0%;
  width: 4px;
  background: gold;
  transition: 0.4s;
  z-index: 0;
}

.academic-card:hover::before {
  height: 100%;
}

/* HOVER EFFECT */
.academic-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: gold;
}

/* LEFT BORDER ANIMATION */
.academic-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 0%;
  width: 4px;
  background: gold;
  transition: 0.4s;
}

.academic-card:hover::before {
  height: 100%;
}

/* MOBILE */
@media (max-width: 768px) {

  .section-title {
    font-size: 28px;
  }

  .academics-container {
    flex-direction: column;
    align-items: center;
  }

  .academic-card {
    width: 90%;
    text-align: center;
  }

  .card-number {
    font-size: 40px;
    right: 15px;
  }
}
/* SECTION */
.admissions {
  padding: 80px 8%;
  background: #f9f9f9;
}

/* TITLE */
.section-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 50px;
}

/* CONTAINER */
.admissions-container {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* LEFT TEXT */
.admission-text {
  flex: 1;
  min-width: 300px;
}

.admission-text h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.admission-text p {
  margin-bottom: 20px;
  line-height: 1.6;
}

/* STEPS */
.steps li {
  margin-bottom: 10px;
  font-weight: 500;
}

/* BUTTONS */
.buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
}

.primary {
  background: gold;
  color: black;
}

.secondary {
  border: 1px solid #0a1f44;
  color: #0a1f44;
}

/* RIGHT CARD */
.admission-card {
  flex: 1;
  min-width: 280px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  transition: 0.4s;
}

/* HOVER EFFECT */
.admission-card:hover {
  transform: translateY(-10px);
  background: #0a1f44;
  color: white;
}
.admission-card h4{
 padding-bottom: 10px;
}
 

/* LIST */
.admission-card ul li {
  margin-bottom: 10px;
}
@media (max-width: 768px) {

  .section-title {
    font-size: 28px;
  }

  .admissions-container {
    flex-direction: column;
    text-align: center;
  }

  .buttons {
    justify-content: center;
  }

  .admission-text h3 {
    font-size: 22px;
  }
}
/* SECTION */
.contact {
  padding: 80px 8%;
  background: #ffffff;
}

/* TITLE */
.section-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 50px;
}

/* CONTAINER */
.contact-container {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* LEFT INFO */
.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

.contact-info p {
  margin-bottom: 20px;
  line-height: 1.6;
}

/* INFO ITEMS */
.info-item {
  margin-bottom: 15px;
  font-size: 15px;
}

/* SOCIAL LINKS */
.social-links {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #0a1f44;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.social-links a:hover {
  background: gold;
  color: black;
  transform: translateY(-5px);
}

/* FORM */
.contact-form {
  flex: 1;
  min-width: 300px;
  background: #f9f9f9;
  padding: 30px;
  border-radius: 15px;
  transition: 0.3s;
}

.contact-form:hover {
  transform: translateY(-5px);
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 8px;
  outline: none;
  font-size: 14px;
}

/* BUTTON */
.contact-form button {
  width: 100%;
  padding: 12px;
  border: none;
  background: #0a1f44;
  color: white;
  font-size: 16px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: gold;
  color: black;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

  .section-title {
    font-size: 28px;
  }

  .contact-container {
    flex-direction: column;
    text-align: center;
  }

  .contact-info {
    margin-bottom: 30px;
  }

  .contact-info h3 {
    font-size: 22px;
  }

  .social-links {
    justify-content: center;
  }
}
/* FOOTER */
.footer {
  background: #0a1f44;
  color: white;
  padding-top: 60px;
}

/* CONTAINER */
.footer-container {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 8%;
}

/* COLUMN */
.footer-col {
  flex: 1;
  min-width: 220px;
}

/* LOGO */
.footer-logo {
  font-size: 26px;
  margin-bottom: 15px;
}

/* TEXT */
.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  padding-top: 20px;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
  padding-top: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: gold;
}

/* SOCIAL */
.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer-socials a {
  width: 35px;
  height: 35px;
  background: white;
  color: #0a1f44;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: 0.3s;
}

.footer-socials a:hover {
  background: gold;
  color: black;
  transform: translateY(-5px);
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding: 15px;
  background: #071633;
  font-size: 14px;
}
@media (max-width: 768px) {

  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .footer-socials {
    justify-content: center;
  }

}

/* TRUST SECTION */
.trust-section {
  padding: 50px 8%;
  background: #ffffff;
  position: relative;
  z-index: 2; /* 🔥 prevents overlap */
  padding-top: 100px;
  padding-bottom: 8px;
}

/* CONTAINER */
.trust-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 700px;
  margin: auto;
}

/* LEFT */
.trust-left {
  max-width: 100%;
}

.trust-left h2 {
  font-size: 35px;
  margin-bottom: 10px;
  align-items: center;
}

/* BRAND */
.trust-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-brand img {
  height: 60px;
}

.trust-brand h1 {
  font-size: 36px;
  color: #1a237e;
}

/* RIGHT */
.trust-right {
  text-align: center;
  padding-bottom: 30px;
}

.trust-right h1 {
  font-size: 75px;
  color: red;
  margin: 0;
}

.trust-right p {
  font-size: 16px;
  font-weight: 600;
}
/* 📱 TRUST SECTION MOBILE */
@media (max-width: 768px) {

  .trust-section {
    padding: 90px 5% 20px; /* reduce space */
  }

  .trust-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    gap: 20px;
    text-align: center;
  }

  /* LEFT */
  .trust-left h2 {
    font-size: 18px;
    text-align: center;
  }

  /* BRAND */
  .trust-brand {
    justify-content: center;
  }

  .trust-brand img {
    height: 45px;
  }

  .trust-brand h1 {
    font-size: 22px;
  }

  /* RIGHT */
  .trust-right {
    padding-bottom: 10px;
  }

  .trust-right h1 {
    font-size: 60px;
  }

  .trust-right p {
    font-size: 14px;
  }

}

/* 🔥 ACHIEVEMENTS SECTION (WHITE CLEAN VERSION) */
.achievements {
  padding: 100px 8%;
  background: #ffffff;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 1px;
}

/* TITLE */
.achievements .section-title {
  color: #0a1f44;
}

/* CONTAINER */
.achievements-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* CARD */
.achievement-card {
  flex: 1;
  min-width: 260px;
  max-width: 300px;

  padding: 35px 25px;
  border-radius: 20px;

  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);

  transition: 0.4s ease;
  text-align: center;
}

/* NUMBER */
.achievement-number {
  font-size: 42px;
  font-weight: bold;
  color: #d4a017; /* gold tone */
  margin-bottom: 10px;
}

/* TEXT */
.achievement-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0a1f44;
}

.achievement-card p {
  font-size: 14px;
  color: #555;
}

/* HOVER */
.achievement-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border-color: gold;
}

/* MOBILE */
@media (max-width: 768px) {
  .achievements-container {
    flex-direction: column;
    align-items: center;
  }
}

/* 🔥 WHAT WE PROVIDE (CLEAN VERSION) */
.provide {
  padding: 100px 8%;
  background: #3A335F;
  text-align: center;
  color: white;
}

/* TITLE */
.provide .section-title {
  font-size: 40px;
  margin-bottom: 60px;
  color: white;
}

/* GRID (NO FLEX CONFLICTS) */
.provide-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.provide-card {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 35px 25px;
  border: 1px solid rgba(255,215,0,0.3);

  backdrop-filter: blur(10px);
  transition: 0.4s ease;
}

/* ICON */
.provide-card .icon {
  font-size: 45px;
  margin-bottom: 15px;
}

/* TEXT */
.provide-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.provide-card p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

/* HOVER */
.provide-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255,215,0,0.2);
}

/* TABLET */
@media (max-width: 1024px) {
  .provide-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .provide-container {
    grid-template-columns: 1fr;
  }

  .provide .section-title {
    font-size: 28px;
  }
}

.contact-form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 8px;
  outline: none;
  font-size: 14px;
}

/* 🔥 LEADERSHIP SECTION */
.leadership {
  padding: 100px 8%;
  background: #ffffff;
  text-align: center;
  padding-top: 1px;
  padding-bottom: 50px;
}

.leadership-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARD */
.leader-card {
  flex: 1;
  min-width: 260px;
  max-width: 300px;

  padding: 30px;
  border-radius: 20px;

  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);

  transition: 0.3s;
}

/* NAME */
.leader-card h3 {
  font-size: 20px;
  color: #0a1f44;
  margin-bottom: 8px;
}

/* ROLE */
.role {
  font-weight: 600;
  color: #d4a017;
  margin-bottom: 5px;
}

/* EDUCATION */
.edu {
  font-size: 14px;
  color: #555;
}

/* HOVER */
.leader-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* MOBILE */
@media (max-width: 768px) {
  .leadership-container {
    flex-direction: column;
    align-items: center;
  }
}
