/* =========================================================
   RINOVA EDUCATION WEBSITE - ORGANIZED STYLESHEET
   File: style.css
   Sections: Global, Navbar, Hero, Buttons, Cards, Footer,
   Contact, Page Sections, Animations, Responsive
========================================================= */

/* =========================================================
   GLOBAL: VARIABLES
========================================================= */

:root {
  --blue: #004aad;
  --blue-light: #1479d6;
  --green: #16833a;
  --orange: #ff9800;
  --bg: #f7fbff;
  --text: #102033;
  --muted: #5b6b7f;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(0, 74, 173, 0.13);
}


/* =========================================================
   GLOBAL: RESET & BASE
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }


/* =========================================================
   GLOBAL: LAYOUT HELPERS
========================================================= */

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.section-padding {
  padding: 90px 0;
}


/* =========================================================
   NAVBAR & DROPDOWNS
========================================================= */

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 35px rgba(0, 74, 173, 0.08);
}

.nav-container {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img { width: 155px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links li { position: relative; }

.nav-links a {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  transition: 0.3s;
}

.nav-links a:hover { color: var(--blue); }

.nav-links a i {
  font-size: 11px;
  margin-left: 5px;
}

.dropdown-menu {
  position: absolute;
  top: 42px;
  left: 0;
  width: 250px;
  background: var(--white);
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 74, 173, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 11px 13px;
  border-radius: 12px;
  font-size: 14px;
}

.dropdown-menu a:hover {
  background: rgba(0, 74, 173, 0.08);
}
@media (max-width: 1024px) {
  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border-radius: 14px;
    margin-top: 10px;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: #f2f7ff;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
  display: inline-block;
  border: none;
  cursor: pointer;
  padding: 14px 25px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 15px 35px rgba(0, 74, 173, 0.26);
  transition: 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(0, 74, 173, 0.34);
}

.btn-outline {
  display: inline-block;
  padding: 13px 25px;
  border-radius: 999px;
  border: 2px solid var(--blue);
  color: var(--blue);
  font-weight: 800;
  transition: 0.3s ease;
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-3px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--blue);
  font-size: 27px;
  cursor: pointer;
}


/* =========================================================
   HOME: HERO SECTION
========================================================= */

.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 15%, rgba(20, 121, 214, 0.18), transparent 32%),
    radial-gradient(circle at 90% 15%, rgba(255, 152, 0, 0.16), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #eef7ff 55%, #f7fbff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  right: -180px;
  top: 80px;
  background: linear-gradient(135deg, rgba(0, 74, 173, 0.12), rgba(20, 121, 214, 0.18));
  animation: floatCircle 8s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  left: -90px;
  bottom: 40px;
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.18), rgba(22, 131, 58, 0.13));
  animation: floatCircle 7s ease-in-out infinite reverse;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero-tag,
.section-tag {
  display: inline-block;
  padding: 9px 17px;
  border-radius: 999px;
  background: rgba(0, 74, 173, 0.09);
  color: var(--blue);
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 18px;
}

.section-tag.light {
  background: rgba(255,255,255,0.18);
  color: var(--white);
}

.hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--blue), var(--blue-light), var(--green), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stat-box {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(0, 74, 173, 0.12);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.stat-box h3 {
  color: var(--blue);
  font-size: 30px;
}

.stat-box p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
}

.hero-card {
  position: relative;
  border-radius: 36px;
  padding: 22px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 30px 80px rgba(0, 74, 173, 0.18);
  animation: floatImage 5s ease-in-out infinite;
}

.hero-card img {
  border-radius: 28px;
}

.floating-card {
  position: absolute;
  padding: 13px 18px;
  border-radius: 18px;
  background: var(--white);
  font-size: 13px;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.card-one {
  left: -28px;
  top: 45px;
  color: var(--blue);
}

.card-two {
  right: -22px;
  bottom: 44px;
  background: var(--orange);
  color: var(--white);
}


/* =========================================================
   HOME: ABOUT / SERVICES / COUNTRIES / PROGRAMS
========================================================= */

.about-container,
.why-container,
.training-container,
.contact-container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.about-content h2,
.section-title h2,
.training-content h2,
.why-content h2,
.contact-content h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.about-content > p,
.training-content p,
.why-content p,
.contact-content p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 28px;
}

.about-grid,
.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-card,
.service-card,
.program-card,
.why-card {
  background: var(--white);
  border: 1px solid rgba(0, 74, 173, 0.1);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 20px 45px rgba(0, 74, 173, 0.07);
  transition: 0.35s ease;
}

.about-card:hover,
.service-card:hover,
.program-card:hover,
.why-card:hover,
.country-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0, 74, 173, 0.14);
}

.about-card i,
.program-card i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  font-size: 22px;
  margin-bottom: 18px;
}

.about-card h3,
.service-card h3,
.program-card h3 {
  margin-bottom: 10px;
}

.about-card p,
.service-card p,
.program-card li {
  color: var(--muted);
  line-height: 1.7;
}

.services {
  background: linear-gradient(180deg, #ffffff, #eef7ff);
}

.section-title {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 18px;
}

.service-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  right: -54px;
  bottom: -54px;
  background: rgba(0, 74, 173, 0.08);
}

.countries {
  background: var(--white);
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.country-card {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border: 1px solid rgba(0, 74, 173, 0.12);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 74, 173, 0.07);
  transition: 0.35s ease;
}

.country-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.country-card h3 {
  padding: 20px 20px 10px;
  color: var(--blue);
  font-size: 22px;
}

.country-card p {
  padding: 0 20px 24px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.programs {
  background:
    radial-gradient(circle at 20% 20%, rgba(22, 131, 58, 0.08), transparent 32%),
    radial-gradient(circle at 80% 30%, rgba(255, 152, 0, 0.12), transparent 30%),
    var(--bg);
}

.program-grid {
  grid-template-columns: repeat(3, 1fr);
}

.program-card ul li {
  margin-bottom: 9px;
  position: relative;
  padding-left: 20px;
}

.program-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}

.training {
  background: var(--white);
}

.training-list {
  display: grid;
  gap: 18px;
}

.training-list div,
.training-list a {
  background: var(--white);
  border: 1px solid rgba(0, 74, 173, 0.12);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 18px 40px rgba(0, 74, 173, 0.08);
  font-weight: 800;
  color: var(--blue);
}

.training-list i {
  color: var(--orange);
  margin-right: 10px;
}

.why {
  background: linear-gradient(180deg, #eef7ff, #ffffff);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-card {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
}

.why-card i {
  min-width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 14px;
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.contact {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
}

.contact-content p {
  color: rgba(255,255,255,0.86);
}

.contact-info {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-info div {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
}

.contact-info i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
}

.contact-form {
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.26);
  border-radius: 30px;
  padding: 30px;
  backdrop-filter: blur(14px);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px 17px;
  border: none;
  outline: none;
  border-radius: 14px;
  margin-bottom: 14px;
  font-family: inherit;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
  background: var(--white);
  padding-top: 70px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr 1fr;
  gap: 40px;
}

.footer-about img {
  width: 160px;
  margin-bottom: 18px;
}

.footer-about p,
.footer-links p,
.footer-links a {
  color: var(--muted);
  line-height: 1.8;
}

.footer-links h3 {
  margin-bottom: 16px;
  color: var(--blue);
}

.footer-links a {
  display: block;
  margin-bottom: 8px;
  transition: 0.3s;
}

.footer-links a:hover { color: var(--blue); }

.footer-bottom {
  margin-top: 50px;
  padding: 22px;
  text-align: center;
  border-top: 1px solid rgba(0, 74, 173, 0.08);
  color: var(--muted);
}


/* =========================================================
   FLOATING CONTACT BUTTONS
========================================================= */

.floating-call,
.floating-whatsapp {
  position: fixed;
  right: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  z-index: 998;
  box-shadow: var(--shadow);
}

.floating-call {
  bottom: 92px;
  background: var(--blue);
}

.floating-whatsapp {
  bottom: 26px;
  background: #25d366;
}


/* =========================================================
   ANIMATIONS & REVEAL EFFECTS
========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatCircle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-24px); }
}

@keyframes floatImage {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}


/* =========================================================
   RESPONSIVE: GLOBAL / HOME / NAVBAR
========================================================= */

@media (max-width: 1024px) {
  .nav-btn { display: none; }

  .menu-toggle { display: block; }

  .navbar {
    position: absolute;
    top: 84px;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow);
    display: none;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
  }

  .navbar.active { display: block; }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border-radius: 14px;
    margin-top: 10px;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: #f2f7ff;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .hero-container,
  .about-container,
  .why-container,
  .training-container,
  .contact-container {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 530px;
    margin: auto;
  }

  .services-grid,
  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .countries-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-padding { padding: 70px 0; }

  .hero { min-height: auto; }

  .hero-container { padding: 60px 0; }

  .hero h1 { letter-spacing: -1px; }

  .hero-stats,
  .about-grid,
  .services-grid,
  .program-grid,
  .why-grid,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .countries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .floating-card {
    display: none;
  }
}

@media (max-width: 480px) {
  .nav-container { height: 74px; }

  .navbar {
    top: 74px;
    max-height: calc(100vh - 74px);
  }

  .logo img { width: 130px; }

  .hero-buttons {
    flex-direction: column;
  }

  .btn,
  .btn-outline {
    text-align: center;
  }

  .countries-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   HOME: TESTIMONIALS
========================================================= */

.testimonials {
  background:
    radial-gradient(circle at 15% 20%, rgba(20, 121, 214, 0.12), transparent 30%),
    radial-gradient(circle at 85% 30%, rgba(255, 152, 0, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff, #eef7ff);
}

.testimonial-slider {
  position: relative;
  max-width: 920px;
  margin: auto;
  border-radius: 38px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(0, 74, 173, 0.18), rgba(255, 152, 0, 0.14));
  box-shadow: 0 30px 80px rgba(0, 74, 173, 0.16);
  overflow: hidden;
}

.testimonial-slider::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  top: -100px;
  right: -80px;
  background: rgba(22, 131, 58, 0.16);
  animation: floatCircle 7s ease-in-out infinite;
}

.testimonial-slider::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  left: -70px;
  bottom: -70px;
  background: rgba(0, 74, 173, 0.16);
  animation: floatCircle 8s ease-in-out infinite reverse;
}

.testimonial-slide {
  position: relative;
  display: none;
  border-radius: 30px;
  overflow: hidden;
  background: #ffffff;
  min-height: 580px;
}

.testimonial-slide.active {
  display: block;
  animation: testimonialFade 0.7s ease;
}

.testimonial-slide img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.testimonial-slider:hover img {
  transform: scale(1.04);
}

.testimonial-box {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: min(760px, 88%);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 26px;
  padding: 26px 30px;
  text-align: center;
  box-shadow: 0 22px 55px rgba(0, 74, 173, 0.18);
}

.testimonial-box::before {
  content: "“";
  position: absolute;
  left: 24px;
  top: -18px;
  font-size: 82px;
  color: rgba(0, 74, 173, 0.13);
  font-family: serif;
}

.stars {
  color: var(--orange);
  font-size: 22px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-box p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 16px;
}

.testimonial-box h3 {
  color: var(--blue);
  font-size: 22px;
  margin-bottom: 4px;
}

.testimonial-box span {
  color: var(--green);
  font-weight: 700;
}

.testimonial-dots {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  z-index: 5;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition: 0.3s ease;
}

.dot.active {
  width: 32px;
  border-radius: 999px;
  background: var(--orange);
}

@keyframes testimonialFade {
  from {
    opacity: 0;
    transform: scale(0.98) translateY(18px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@media (max-width: 768px) {
  .testimonial-slide,
  .testimonial-slide img {
    min-height: 520px;
    height: 520px;
  }

  .testimonial-box {
    bottom: 24px;
    padding: 22px;
  }

  .testimonial-box p {
    font-size: 14px;
  }
}

/* =========================================================
   PAGE: WHO WE ARE
========================================================= */

.about-hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 15% 20%, rgba(20,121,214,0.16), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(255,152,0,0.14), transparent 28%),
    linear-gradient(135deg, #ffffff, #eef7ff);
}

.about-hero-content {
  max-width: 760px;
}

.about-hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.about-hero h1 span {
  background: linear-gradient(135deg, var(--blue), var(--blue-light), var(--green), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.who-about-container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.who-about-image img {
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.who-about-content h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.who-about-content p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.who-about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.who-about-features div {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  font-weight: 800;
  box-shadow: 0 16px 35px rgba(0,74,173,0.08);
}

.who-about-features i {
  color: var(--green);
  margin-right: 8px;
}

.offer {
  background: linear-gradient(180deg, #ffffff, #eef7ff);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.offer-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 30px;
  border: 1px solid rgba(0,74,173,0.1);
  box-shadow: 0 20px 45px rgba(0,74,173,0.07);
  transition: 0.35s ease;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0,74,173,0.14);
}

.offer-card i {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 20px;
}

.offer-card h3 {
  margin-bottom: 12px;
}

.offer-card p {
  color: var(--muted);
  line-height: 1.7;
}

.team {
  background: #ffffff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(0,74,173,0.1);
  box-shadow: 0 20px 45px rgba(0,74,173,0.08);
  transition: 0.35s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,74,173,0.16);
}

.team-image {
  height: 260px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.08);
}

.team-content {
  padding: 24px;
}

.team-content h3 {
  color: var(--blue);
  margin-bottom: 4px;
}

.team-content span {
  color: var(--orange);
  font-weight: 800;
  display: block;
  margin-bottom: 12px;
}

.team-content p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
  margin-bottom: 18px;
}

.team-socials {
  display: flex;
  gap: 10px;
}

.team-socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0,74,173,0.09);
  color: var(--blue);
  transition: 0.3s ease;
}

.team-socials a:hover {
  background: var(--blue);
  color: #ffffff;
}

.trust {
  background:
    radial-gradient(circle at 15% 20%, rgba(22,131,58,0.08), transparent 30%),
    radial-gradient(circle at 85% 30%, rgba(255,152,0,0.12), transparent 28%),
    #f7fbff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.trust-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 32px 20px;
  text-align: center;
  border: 1px solid rgba(0,74,173,0.1);
  box-shadow: 0 20px 45px rgba(0,74,173,0.08);
}

.trust-card h3 {
  color: var(--blue);
  font-size: 36px;
  margin-bottom: 8px;
}

.trust-card p {
  color: var(--muted);
  font-weight: 700;
}

.gallery {
  background: #ffffff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 22px;
}

.gallery-grid img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 20px 45px rgba(0,74,173,0.1);
}

.gallery-grid img:first-child {
  height: 480px;
}

.about-cta {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
}

.about-cta-container {
  text-align: center;
  color: #ffffff;
  max-width: 820px;
}

.about-cta h2 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.15;
  margin-bottom: 18px;
}

.about-cta p {
  color: rgba(255,255,255,0.86);
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.about-cta .btn-outline {
  border-color: #ffffff;
  color: #ffffff;
}

.about-cta .btn-outline:hover {
  background: #ffffff;
  color: var(--blue);
}

@media (max-width: 1024px) {
  .who-about-container {
    grid-template-columns: 1fr;
  }

  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img,
  .gallery-grid img:first-child {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 440px;
  }

  .who-about-features,
  .offer-grid,
  .team-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img,
  .gallery-grid img:first-child {
    height: 300px;
  }
}

/* =========================================================
   PAGE: MISSION & VISION
========================================================= */

.mv-hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(20,121,214,0.16), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(255,152,0,0.14), transparent 28%),
    linear-gradient(135deg, #ffffff, #eef7ff);
}

.mv-hero-container {
  position: relative;
  z-index: 2;
}

.mv-hero-content {
  max-width: 820px;
}

.mv-hero h1 {
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.mv-hero h1 span {
  background: linear-gradient(
    135deg,
    var(--blue),
    var(--blue-light),
    var(--green),
    var(--orange)
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mv-hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.mv-section {
  background: #ffffff;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.mv-card {
  background: #ffffff;
  border-radius: 34px;
  padding: 40px;
  border: 1px solid rgba(0,74,173,0.1);
  box-shadow: 0 25px 60px rgba(0,74,173,0.08);
  transition: 0.35s ease;
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 80px rgba(0,74,173,0.16);
}

.mv-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #ffffff;
  font-size: 30px;
  margin-bottom: 24px;
}

.mv-icon.orange {
  background: linear-gradient(135deg, var(--orange), #ffb84d);
}

.mv-card h2 {
  font-size: 34px;
  margin-bottom: 20px;
  color: var(--blue);
}

.mv-card p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 18px;
}

.chairperson {
  background:
    radial-gradient(circle at 10% 20%, rgba(22,131,58,0.08), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(255,152,0,0.12), transparent 28%),
    #f7fbff;
}

.chairperson-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.chairperson-image {
  position: relative;
}

.chairperson-image::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(0,74,173,0.12);
  top: -40px;
  left: -40px;
  z-index: 1;
}

.chairperson-image::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255,152,0,0.16);
  bottom: -30px;
  right: -20px;
  z-index: 1;
}

.chairperson-image img {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 36px;
  box-shadow: 0 35px 80px rgba(0,74,173,0.18);
}

.chairperson-content h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.1;
  margin-bottom: 24px;
}

.chairperson-content p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 18px;
}

.chair-sign {
  margin-top: 34px;
}

.chair-sign h3 {
  color: var(--blue);
  margin-bottom: 6px;
}

.chair-sign span {
  color: var(--orange);
  font-weight: 700;
}

.commitment {
  background: #ffffff;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.commitment-card {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border-radius: 28px;
  padding: 34px 28px;
  border: 1px solid rgba(0,74,173,0.1);
  box-shadow: 0 20px 45px rgba(0,74,173,0.08);
  transition: 0.35s ease;
}

.commitment-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,74,173,0.16);
}

.commitment-card i {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #ffffff;
  font-size: 26px;
  margin-bottom: 20px;
}

.commitment-card h3 {
  margin-bottom: 14px;
  color: var(--blue);
}

.commitment-card p {
  color: var(--muted);
  line-height: 1.8;
}

.future-direction {
  background:
    radial-gradient(circle at 15% 20%, rgba(20,121,214,0.12), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(255,152,0,0.12), transparent 28%),
    linear-gradient(180deg, #eef7ff, #ffffff);
}

.future-container {
  max-width: 920px;
  margin: auto;
  text-align: center;
}

.future-container h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.1;
  margin-bottom: 22px;
}

.future-container p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 34px;
}

.future-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.future-points div {
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  font-weight: 800;
  color: var(--blue);
  box-shadow: 0 18px 40px rgba(0,74,173,0.08);
}

.future-points i {
  color: var(--green);
  margin-right: 8px;
}

@media (max-width: 1024px) {

  .mv-grid,
  .chairperson-container {
    grid-template-columns: 1fr;
  }

  .commitment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px) {

  .mv-hero {
    min-height: 440px;
  }

  .commitment-grid,
  .future-points {
    grid-template-columns: 1fr;
  }

  .mv-card,
  .commitment-card {
    padding: 28px;
  }

}

/* =========================================================
   SHARED STUDY ABROAD / COURSE PAGE STYLES
   Used by Australia, USA, UK, Canada, Japan, Korea, India,
   IELTS, PTE, Computer, Python, Web, Graphics, Analytics,
   Accounting, Content Creation, Stock Market and Contact pages.
========================================================= */

.country-hero {
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(20,121,214,0.16), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(255,152,0,0.14), transparent 28%),
    linear-gradient(135deg, #ffffff, #eef7ff);
}

.country-hero-container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.country-hero-content h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.country-hero-content h1 span {
  background: linear-gradient(
    135deg,
    var(--blue),
    var(--blue-light),
    var(--green),
    var(--orange)
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.country-hero-content p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 17px;
  margin-bottom: 34px;
}

.country-hero-card {
  position: relative;
  background: rgba(255,255,255,0.78);
  border-radius: 36px;
  padding: 34px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,74,173,0.16);
  border: 1px solid rgba(0,74,173,0.08);
  overflow: hidden;
}

.country-hero-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(0,74,173,0.1);
  top: -60px;
  right: -50px;
}

.country-hero-card img {
  width: 100%;
  max-width: 320px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.country-hero-card h3 {
  color: var(--blue);
  font-size: 36px;
  margin-top: 24px;
  margin-bottom: 10px;
}

.country-hero-card p {
  color: var(--muted);
}

.aus-map-section {
  background: #ffffff;
}

.aus-map-container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.aus-map-content h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.aus-map-content p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 28px;
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.city-list span {
  padding: 12px 18px;
  background: rgba(0,74,173,0.08);
  color: var(--blue);
  border-radius: 999px;
  font-weight: 700;
}

.aus-map-card {
  position: relative;
  background: linear-gradient(135deg, #eef7ff, #ffffff);
  border-radius: 40px;
  padding: 40px;
  box-shadow: 0 30px 80px rgba(0,74,173,0.12);
}

.aus-map-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255,152,0,0.12);
  bottom: -50px;
  right: -40px;
}

.aus-map-card img {
  width: 100%;
  position: relative;
  z-index: 2;
  animation: floatMap 5s ease-in-out infinite;
}

@keyframes floatMap {
  0%,100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.why-australia {
  background:
    radial-gradient(circle at 10% 20%, rgba(22,131,58,0.08), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(255,152,0,0.12), transparent 28%),
    #f7fbff;
}

.why-aus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-aus-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 34px 28px;
  border: 1px solid rgba(0,74,173,0.1);
  box-shadow: 0 20px 45px rgba(0,74,173,0.08);
  transition: 0.35s ease;
}

.why-aus-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,74,173,0.16);
}

.why-aus-card i {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 20px;
}

.why-aus-card h3 {
  margin-bottom: 14px;
  color: var(--blue);
}

.why-aus-card p {
  color: var(--muted);
  line-height: 1.8;
}

.top-universities {
  background:
    radial-gradient(circle at 15% 20%, rgba(20,121,214,0.10), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(255,152,0,0.12), transparent 28%),
    #ffffff;
}

.uni-category {
  margin-top: 60px;
}

.uni-category-header {
  display: inline-block;
  margin-bottom: 30px;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 15px 35px rgba(0,74,173,0.16);
}

.uni-category-header.orange {
  background: linear-gradient(135deg, var(--orange), #ffb84d);
}

.university-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.university-logo-card {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border-radius: 30px;
  padding: 34px 28px;
  border: 1px solid rgba(0,74,173,0.1);
  box-shadow: 0 20px 45px rgba(0,74,173,0.08);
  text-align: center;
  transition: 0.35s ease;
  overflow: hidden;
  position: relative;
}

.university-logo-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(0,74,173,0.06);
  top: -70px;
  right: -70px;
}

.university-logo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 80px rgba(0,74,173,0.16);
}

.university-logo-card img {
  width: 140px;
  height: 90px;
  object-fit: contain;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
  transition: 0.4s ease;
}

.university-logo-card:hover img {
  transform: scale(1.08);
}

.university-logo-card h4 {
  color: var(--blue);
  font-size: 20px;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.university-logo-card span {
  color: var(--orange);
  font-weight: 800;
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .university-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .university-logo-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   SHARED: PROCESS / TIMELINE
========================================================= */

.process-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(20,121,214,0.12), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(255,152,0,0.12), transparent 28%),
    #eef7ff;
}

.process-timeline {
  display: grid;
  gap: 24px;
}

.process-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: #ffffff;
  border-radius: 30px;
  padding: 30px;
  border: 1px solid rgba(0,74,173,0.08);
  box-shadow: 0 20px 45px rgba(0,74,173,0.08);
}

.process-step span {
  min-width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
}

.process-step h3 {
  color: var(--blue);
  margin-bottom: 10px;
}

.process-step p {
  color: var(--muted);
  line-height: 1.8;
}


/* =========================================================
   SHARED: REQUIREMENTS / LIST SECTIONS
========================================================= */

.requirements {
  background: #ffffff;
}

.requirements-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.requirements-content h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  margin-bottom: 20px;
}

.requirements-content p {
  color: var(--muted);
  line-height: 1.9;
}

.requirements-list {
  display: grid;
  gap: 16px;
}

.requirements-list div {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border-radius: 22px;
  padding: 18px 22px;
  border: 1px solid rgba(0,74,173,0.1);
  box-shadow: 0 18px 40px rgba(0,74,173,0.08);
  font-weight: 700;
  color: var(--blue);
}

.requirements-list i {
  color: var(--green);
  margin-right: 10px;
}


/* =========================================================
   SHARED: RESEARCH / LINK CARDS
========================================================= */

.research-links {
  background:
    radial-gradient(circle at 10% 20%, rgba(22,131,58,0.08), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(255,152,0,0.12), transparent 28%),
    #f7fbff;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.research-card {
  position: relative;
  background: #ffffff;
  border-radius: 30px;
  padding: 34px 28px;
  border: 1px solid rgba(0,74,173,0.1);
  box-shadow: 0 20px 45px rgba(0,74,173,0.08);
  transition: 0.35s ease;
  overflow: hidden;
}

.research-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,74,173,0.16);
}

.research-card i {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 20px;
}

.research-card h3 {
  color: var(--blue);
  margin-bottom: 12px;
}

.research-card p {
  color: var(--muted);
  line-height: 1.8;
}

@media (max-width: 1024px) {

  .country-hero-container,
  .aus-map-container,
  .requirements-container {
    grid-template-columns: 1fr;
  }

  .why-aus-grid,
  .university-grid,
  .research-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px) {

  .country-hero {
    min-height: auto;
    padding: 70px 0;
  }

  .why-aus-grid,
  .university-grid,
  .research-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    flex-direction: column;
  }

  .aus-map-card {
    padding: 24px;
  }

}

/* =========================================================
   NAVBAR: ACTIVE PAGE HIGHLIGHT
========================================================= */

.nav-links li a.active {
  color: #1d9bf0;
}

.nav-links li a.active::after {
  width: 100%;
}

/* OPTIONAL GLOW EFFECT */

.nav-links li a.active {
  background: rgba(29, 155, 240, 0.12);
  padding: 10px 16px;
  border-radius: 30px;
}
/* MOBILE NAV DROPDOWN FIX */

@media (max-width: 1024px) {
  .navbar {
    display: none;
  }

  .navbar.active {
    display: block;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    margin-top: 10px;
    background: #f2f7ff;
    border-radius: 14px;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.active:hover .dropdown-menu {
    display: block;
  }
}