:root {
  --g: #39B54A;
  --b: #2B7DC0;
  --dk: #080808;
  --c1: #101010;
  --c2: #161616;
  --tx: #f0f0f0;
  --mt: #777;
  --br: rgba(255,255,255,0.07);
  --gg: rgba(57,181,74,0.22);
  --gb: rgba(43,125,192,0.22);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dk);
  color: var(--tx);
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #0d0d0d;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--g), var(--b));
  border-radius: 3px;
}

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  transition: .3s;
}

nav.solid {
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--br);
}

.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  cursor: pointer;
  text-decoration: none;
}

.logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(57, 181, 74, 0.4);
}

.logo-txt {
  line-height: 1.15;
}

.logo-txt .n {
  font-family: 'Playfair Display', serif;
  font-size: 1.28rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--g), var(--b));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-txt .s {
  font-size: .5rem;
  color: var(--mt);
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  color: var(--mt);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 500;
  padding: 8px 13px;
  border-radius: 8px;
  transition: .3s;
  letter-spacing: .2px;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-links a.active {
  color: var(--g) !important;
}

.nbtn {
  background: linear-gradient(135deg, var(--g), #25a035);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 9px;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: .3s;
  letter-spacing: .3px;
  text-decoration: none;
  display: inline-block;
}

.nbtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--gg);
}

.hbg {
  display: none;
  background: none;
  border: 1px solid var(--br);
  color: #fff;
  padding: 8px 11px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
}

.mob-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(8, 8, 8, .98);
  border-bottom: 1px solid var(--br);
  padding: 16px 24px 24px;
  z-index: 9998;
}

.mob-menu.open {
  display: block;
  animation: slideDown .25s ease;
}

.mob-menu a {
  display: block;
  color: var(--mt);
  text-decoration: none;
  padding: 13px 0;
  border-bottom: 1px solid var(--br);
  font-size: .9rem;
  transition: .2s;
}

.mob-menu a:hover {
  color: var(--g);
  padding-left: 8px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== MAIN CONTENT ===== */
main {
  padding-top: 72px;
  min-height: 100vh;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #060606;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% -10%, rgba(57, 181, 74, .18) 0%, transparent 55%),
              radial-gradient(ellipse 60% 60% at 90% 90%, rgba(43, 125, 192, .12) 0%, transparent 55%);
}

#particles {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 28px 60px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(57, 181, 74, .1);
  border: 1px solid rgba(57, 181, 74, .28);
  color: var(--g);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
  animation: fuv .8s ease both;
}

.badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--g);
  animation: blink 1.8s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  font-weight: 900;
  line-height: 1.13;
  margin-bottom: 20px;
  animation: fuv .8s .1s ease both;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--g), var(--b));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-p {
  color: #999;
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 34px;
  animation: fuv .8s .2s ease both;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fuv .8s .3s ease both;
}

.btn-g {
  background: linear-gradient(135deg, var(--g), #25a035);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: .3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-g:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--gg);
}

.btn-ol {
  background: transparent;
  color: #ddd;
  border: 1px solid var(--br);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: .3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-ol:hover {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .18);
  transform: translateY(-3px);
}

.hero-nums {
  display: flex;
  gap: 30px;
  margin-top: 44px;
  animation: fuv .8s .45s ease both;
  flex-wrap: wrap;
}

.hnum .n {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--g), var(--b));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hnum .l {
  font-size: .65rem;
  color: var(--mt);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 2px;
}

.hero-right {
  animation: fright .9s .2s ease both;
}

.h-card {
  background: linear-gradient(145deg, #111, #161616);
  border: 1px solid var(--br);
  border-radius: 22px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.h-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57, 181, 74, .15), transparent 70%);
}

.h-card::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 125, 192, .1), transparent 70%);
}

.h-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.h-card-head img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--g);
  padding: 2px;
  background: #000;
}

.h-card-head h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.h-card-head p {
  font-size: .72rem;
  color: var(--g);
  font-weight: 600;
}

.ci-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.ci {
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--br);
  border-radius: 11px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 13px;
  transition: .3s;
  cursor: default;
}

.ci:hover {
  border-color: rgba(57, 181, 74, .25);
  transform: translateX(5px);
}

.ci-ico {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}

.ci-ico.g {
  background: rgba(57, 181, 74, .12);
  color: var(--g);
}

.ci-ico.b {
  background: rgba(43, 125, 192, .12);
  color: var(--b);
}

.ci h4 {
  font-size: .82rem;
  font-weight: 700;
  color: #eee;
}

.ci p {
  font-size: .68rem;
  color: var(--mt);
}

.scroll-ind {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  animation: bob 2.2s infinite;
}

.scroll-ind span {
  font-size: .63rem;
  color: var(--mt);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.scroll-ind i {
  color: var(--g);
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(9px); }
}

/* ===== STAT BAR ===== */
.sbar {
  border-top: 1px solid var(--br);
  border-bottom: 1px solid var(--br);
  background: linear-gradient(135deg, rgba(57, 181, 74, .04), rgba(43, 125, 192, .04));
}

.sbar-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.sb {
  text-align: center;
  padding: 44px 16px;
  border-right: 1px solid var(--br);
}

.sb:last-child {
  border-right: none;
}

.sb .cn {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--g), var(--b));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.sb .lb {
  font-size: .7rem;
  color: var(--mt);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 5px;
}

/* ===== SECTIONS ===== */
section {
  padding: 90px 28px;
}

.si {
  max-width: 1300px;
  margin: 0 auto;
}

.sh {
  text-align: center;
  margin-bottom: 58px;
}

.stag {
  display: inline-block;
  background: rgba(57, 181, 74, .09);
  border: 1px solid rgba(57, 181, 74, .22);
  color: var(--g);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.st {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1.22;
  margin-bottom: 14px;
}

.st em {
  font-style: normal;
  color: var(--g);
}

.sp {
  color: var(--mt);
  font-size: .93rem;
  line-height: 1.85;
  max-width: 580px;
  margin: 0 auto;
}

/* ===== FEATURE CARDS ===== */
.fg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 18px;
}

.fc {
  background: var(--c1);
  border: 1px solid var(--br);
  border-radius: 20px;
  padding: 30px;
  transition: .4s;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.fc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--g), var(--b));
  transform: scaleX(0);
  transition: .4s;
  transform-origin: left;
}

.fc:hover {
  border-color: rgba(57, 181, 74, .22);
  transform: translateY(-7px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .45);
}

.fc:hover::before {
  transform: scaleX(1);
}

.fic {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--g), var(--b));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 18px;
}

.fc h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 9px;
}

.fc p {
  color: var(--mt);
  font-size: .82rem;
  line-height: 1.75;
}

/* ===== COURSE CARDS ===== */
.cg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 22px;
}

.cc {
  background: var(--c1);
  border: 1px solid var(--br);
  border-radius: 20px;
  overflow: hidden;
  transition: .4s;
}

.cc:hover {
  transform: translateY(-7px);
  border-color: rgba(57, 181, 74, .28);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .55);
}

.cc-top {
  padding: 26px 26px 0;
}

.ctag {
  display: inline-block;
  padding: 5px 13px;
  border-radius: 50px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.ctag.g {
  background: rgba(57, 181, 74, .13);
  color: var(--g);
}

.ctag.b {
  background: rgba(43, 125, 192, .13);
  color: var(--b);
}

.cc h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 9px;
}

.cc .cdesc {
  color: var(--mt);
  font-size: .82rem;
  line-height: 1.7;
}

.cc-body {
  padding: 18px 26px;
}

.cf-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 22px;
}

.cfl {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .8rem;
  color: #ccc;
}

.cfl i {
  color: var(--g);
  font-size: .75rem;
  flex-shrink: 0;
}

.cc-foot {
  padding: 0 26px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cprice {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--g);
}

.cprice small {
  font-family: 'Poppins', sans-serif;
  font-size: .7rem;
  color: var(--mt);
  font-weight: 400;
}

.ebtn {
  background: linear-gradient(135deg, var(--g), #25a035);
  color: #fff;
  border: none;
  padding: 10px 21px;
  border-radius: 9px;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: .3s;
  text-decoration: none;
  display: inline-block;
}

.ebtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px var(--gg);
}

/* ===== INTERNSHIP ===== */
.ihero {
  background: linear-gradient(135deg, rgba(57, 181, 74, .07), rgba(43, 125, 192, .07));
  border: 1px solid var(--br);
  border-radius: 26px;
  padding: 58px 50px;
  margin-bottom: 58px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.itg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
  gap: 18px;
  margin-bottom: 58px;
}

.itc {
  background: var(--c1);
  border: 1px solid var(--br);
  border-radius: 18px;
  padding: 26px;
  transition: .4s;
}

.itc:hover {
  border-color: rgba(57, 181, 74, .28);
  transform: translateY(-5px);
}

.itc h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 11px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.itc h3 i {
  color: var(--g);
}

.itc p {
  color: var(--mt);
  font-size: .8rem;
  line-height: 1.72;
  margin-bottom: 14px;
}

.ichk {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.ichk li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .77rem;
  color: #ccc;
  list-style: none;
}

.ichk li i {
  color: var(--g);
  font-size: .72rem;
  flex-shrink: 0;
}

.ibg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  gap: 14px;
}

.ibc {
  background: var(--c2);
  border: 1px solid var(--br);
  border-radius: 13px;
  padding: 20px;
  display: flex;
  gap: 13px;
}

.ibi {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--g), var(--b));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .88rem;
  color: #fff;
  flex-shrink: 0;
}

.ibc h4 {
  font-size: .83rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.ibc p {
  color: var(--mt);
  font-size: .74rem;
  line-height: 1.55;
}

/* ===== TEAM SECTION (SQUARE IMAGES) ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.team-card {
  background: var(--c1);
  border: 1px solid var(--br);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  transition: .4s;
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: rgba(57, 181, 74, .28);
}

.team-img {
  width: 150px;
  height: 150px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(57, 181, 74, .15), rgba(43, 125, 192, .15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  border: 2px solid rgba(57, 181, 74, .4);
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-img i {
  font-size: 3rem;
  color: var(--g);
  opacity: .6;
}

.team-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.team-card p {
  font-size: .8rem;
  color: var(--g);
}

/* ===== MENTOR SECTION (GROUP PHOTO) ===== */
.mentor-group {
  background: var(--c1);
  border: 1px solid var(--br);
  border-radius: 25px;
  overflow: hidden;
  margin-top: 40px;
}

.mentor-group-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(57, 181, 74, .1), rgba(43, 125, 192, .1));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-direction: column;
}

.mentor-group-img i {
  font-size: 4rem;
  color: var(--g);
  opacity: .5;
}

.mentor-group-img p {
  color: var(--mt);
  font-size: .9rem;
}

.mentor-group-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mentor-group-caption {
  padding: 25px;
  text-align: center;
  border-top: 1px solid var(--br);
}

.mentor-group-caption h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.mentor-group-caption p {
  color: var(--mt);
  font-size: .85rem;
}

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 75px;
}

.about-card {
  background: var(--c1);
  border: 1px solid var(--br);
  border-radius: 22px;
  padding: 34px;
  text-align: center;
}

.founder-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(57, 181, 74, .15), rgba(43, 125, 192, .15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 3px solid var(--g);
}

.founder-img i {
  font-size: 3.5rem;
  color: var(--g);
  opacity: .6;
}

.f-quote {
  background: var(--c1);
  border: 1px solid var(--br);
  border-left: 3px solid var(--g);
  border-radius: 0 15px 15px 0;
  padding: 22px 22px 22px 28px;
  font-size: .87rem;
  line-height: 1.9;
  color: #ccc;
  font-style: italic;
  position: relative;
}

.f-quote::before {
  content: '“';
  font-size: 3.8rem;
  color: var(--g);
  opacity: .2;
  position: absolute;
  top: -8px;
  left: 12px;
  font-family: serif;
  line-height: 1;
}

/* ===== PAYMENT SECTION ===== */
.pay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 18px;
}

.pay-card {
  background: var(--c1);
  border: 1px solid var(--br);
  border-radius: 20px;
  padding: 26px;
  transition: .4s;
}

.pay-card:hover {
  border-color: rgba(57, 181, 74, .22);
  transform: translateY(-4px);
}

.pay-name {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 18px;
  font-family: 'Playfair Display', serif;
}

.bkash {
  color: #E2136E;
}

.nagad {
  color: #F08010;
}

.rocket {
  color: #8B35A5;
}

.pd {
  background: rgba(255, 255, 255, .025);
  border: 1px solid var(--br);
  border-radius: 9px;
  padding: 11px 14px;
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.pd .lb {
  font-size: .65rem;
  color: var(--mt);
  text-transform: uppercase;
  letter-spacing: .6px;
}

.pd .vl {
  font-size: .82rem;
  font-weight: 600;
  color: #fff;
  margin-top: 2px;
}

.cpbtn {
  background: rgba(57, 181, 74, .12);
  border: none;
  color: var(--g);
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: .7rem;
  font-weight: 600;
  transition: .3s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}

.cpbtn:hover {
  background: rgba(57, 181, 74, .25);
}

.cpbtn.ok {
  background: rgba(57, 181, 74, .35);
  color: #fff;
}

.payment-notice {
  background: rgba(57, 181, 74, .08);
  border: 1px solid rgba(57, 181, 74, .25);
  border-radius: 12px;
  padding: 18px;
  margin-top: 20px;
  text-align: center;
}

.payment-notice i {
  color: var(--g);
  margin-right: 8px;
}

/* ===== TESTIMONIALS ===== */
.tg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
}

.tc {
  background: var(--c1);
  border: 1px solid var(--br);
  border-radius: 18px;
  padding: 26px;
  transition: .4s;
}

.tc:hover {
  border-color: rgba(57, 181, 74, .22);
  transform: translateY(-5px);
}

.stars {
  color: #FFD700;
  font-size: .72rem;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.tp {
  color: #ccc;
  font-size: .83rem;
  line-height: 1.82;
  margin-bottom: 18px;
}

.ta {
  display: flex;
  align-items: center;
  gap: 11px;
}

.tav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g), var(--b));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.ta h4 {
  font-size: .83rem;
  font-weight: 700;
}

.ta span {
  font-size: .71rem;
  color: var(--g);
}

/* ===== CONTACT PAGE ===== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 58px;
  align-items: start;
}

.ci-cards {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 24px;
}

.cic {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--c1);
  border: 1px solid var(--br);
  border-radius: 13px;
  padding: 15px 18px;
  transition: .3s;
}

.cic:hover {
  border-color: rgba(57, 181, 74, .22);
}

.cic-ico {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--g), var(--b));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  color: #fff;
  flex-shrink: 0;
}

.cic h4 {
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.cic span {
  font-size: .75rem;
  color: var(--mt);
}

.form-wrap {
  background: var(--c1);
  border: 1px solid var(--br);
  border-radius: 22px;
  padding: 38px;
}

.fg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.fgrp {
  margin-bottom: 17px;
}

.fgrp label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  color: #bbb;
  margin-bottom: 7px;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.fgrp input,
.fgrp select,
.fgrp textarea {
  width: 100%;
  background: rgba(255, 255, 255, .035);
  border: 1px solid var(--br);
  border-radius: 9px;
  padding: 13px 16px;
  color: #fff;
  font-size: .87rem;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: .3s;
}

.fgrp input:focus,
.fgrp select:focus,
.fgrp textarea:focus {
  border-color: var(--g);
  box-shadow: 0 0 0 3px rgba(57, 181, 74, .09);
}

.fgrp textarea {
  resize: vertical;
  min-height: 115px;
}

.fsub {
  width: 100%;
  background: linear-gradient(135deg, var(--g), #25a035);
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.fsub:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--gg);
}

/* ===== ADMISSION PAGE ===== */
.admission-steps {
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 25px;
  margin-bottom: 35px;
  background: var(--c1);
  border: 1px solid var(--br);
  border-radius: 20px;
  padding: 25px;
  transition: .3s;
}

.step:hover {
  border-color: rgba(57, 181, 74, .28);
  transform: translateX(8px);
}

.step-num {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g), var(--b));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--mt);
  font-size: .9rem;
  line-height: 1.6;
}

/* ===== OSSAF SECTION ===== */
.ossaf-box {
  background: linear-gradient(135deg, rgba(43, 125, 192, .07), rgba(57, 181, 74, .07));
  border: 1px solid var(--br);
  border-radius: 26px;
  padding: 58px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ossaf-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.ossaf-box p {
  color: #bbb;
  max-width: 680px;
  margin: 0 auto 30px;
  font-size: .92rem;
  line-height: 1.9;
  position: relative;
  z-index: 1;
}

.ossaf-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, rgba(43, 125, 192, .18), rgba(57, 181, 74, .18));
  border: 1px solid rgba(57, 181, 74, .28);
  padding: 13px 28px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 1;
}

/* ===== FOOTER ===== */
footer {
  background: #040404;
  border-top: 1px solid var(--br);
  padding: 58px 28px 22px;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.ft-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--br);
}

.fb-brand p {
  color: var(--mt);
  font-size: .8rem;
  line-height: 1.8;
  margin: 14px 0 22px;
}

.fb-brand .tg {
  display: block;
  font-size: .67rem;
  color: var(--g);
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-top: 5px;
}

.socials {
  display: flex;
  gap: 9px;
}

.sl {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c1);
  border: 1px solid var(--br);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mt);
  font-size: .85rem;
  transition: .3s;
  text-decoration: none;
}

.sl:hover {
  background: var(--g);
  border-color: var(--g);
  color: #fff;
  transform: translateY(-2px);
}

.fc-col h4 {
  font-size: .78rem;
  font-weight: 700;
  color: #ccc;
  margin-bottom: 17px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.fc-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.fc-col ul a {
  color: var(--mt);
  text-decoration: none;
  font-size: .79rem;
  transition: .2s;
}

.fc-col ul a:hover {
  color: var(--g);
  padding-left: 4px;
}

.ft-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  flex-wrap: wrap;
  gap: 10px;
}

.ft-bot p {
  color: var(--mt);
  font-size: .74rem;
}

.ft-bot span {
  color: var(--g);
}

/* ===== FLOATING BUTTONS ===== */
.float-btns {
  position: fixed;
  bottom: 28px;
  right: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9000;
}

.fbt {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  text-decoration: none;
  color: #fff;
  transition: .3s;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .45);
  position: relative;
}

.fbt:hover {
  transform: scale(1.12);
}

.fbt.ph {
  background: linear-gradient(135deg, var(--g), #25a035);
}

.fbt.wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.fbt.fb {
  background: linear-gradient(135deg, #0095F6, #0060D0);
}

.fbt .tip {
  position: absolute;
  right: 58px;
  background: var(--c1);
  border: 1px solid var(--br);
  color: #fff;
  padding: 5px 11px;
  border-radius: 6px;
  font-size: .72rem;
  white-space: nowrap;
  opacity: 0;
  transition: .25s;
  pointer-events: none;
  font-family: 'Poppins', sans-serif;
}

.fbt:hover .tip {
  opacity: 1;
}

/* ===== ANIMATIONS ===== */
@keyframes fuv {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fright {
  from {
    opacity: 0;
    transform: translateX(35px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.aos {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.aos.vis {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1050px) {
  .hero-content,
  .about-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  
  .hero-right {
    display: none;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-btns,
  .hero-nums {
    justify-content: center;
  }
  
  .ft-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nbtn {
    display: none;
  }
  
  .hbg {
    display: block;
  }
  
  section {
    padding: 60px 18px;
  }
  
  .fg-row {
    grid-template-columns: 1fr;
  }
  
  .sbar-inner {
    grid-template-columns: 1fr 1fr;
  }
  
  .sb {
    border-right: none;
    border-bottom: 1px solid var(--br);
  }
  
  .ft-top {
    grid-template-columns: 1fr;
  }
  
  .ihero {
    padding: 38px 24px;
  }
  
  .ossaf-box {
    padding: 42px 24px;
  }
  
  .form-wrap {
    padding: 26px;
  }
  
  .team-img {
    width: 120px;
    height: 120px;
  }
}