@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;1,500&family=Inter:wght@400;500&display=swap');

:root {
  --primary-blue: #0D1B2A;
  --dark-navy: #0D1B2A;
  --sky-blue-start: #E8F4FD;
  --sky-blue-end: #C9E8F9;
  --white: #FFFFFF;
  --primary-red: #E32F2F;
  --dark-red: #A30000;
  --light-gray: #F5F7FA;
  --text-dark: #000000;
  --text-body: #6B7280;
  --text-muted: #9CA3AF;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0;
  background-color: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

/* Base Headings (Desktop) */
h1 {
  font-size: 52px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 40px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 20px;
  font-weight: 600;
}

h4,
.card-title,
.step-title,
.blog-card-title,
.faq-question {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-dark);
}

/* Responsive Typography */
@media (max-width: 992px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 18px;
  }

  body {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 16px;
  }

  body {
    font-size: 13px;
  }
}

/* H2 Heading Style Rule */
h2 em,
h2 i,
h1 em,
h1 i,
h3 em,
h3 i {
  font-family: var(--font-heading);
  font-weight: 500;
  font-style: italic;
  color: var(--primary-red);
}

.section-title {
  position: relative;
  margin-bottom: 40px;
}

.section-title::after {
  content: '';
  display: block;
  border-bottom: 3px solid var(--primary-red);
  width: 60px;
  margin: 8px 0 0;
}

.text-center .section-title::after,
.section-title.text-center::after {
  margin: 8px auto 0;
}

a {
  text-decoration: none;
  color: inherit;
}

.read-more {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--primary-red);
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
}

.read-more:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-fluid {
  width: 100%;
}

.section {
  padding: 60px 0;
}

.text-center {
  text-align: center;
}

.text-gray {
  color: var(--text-body);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 1;
  text-transform: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
  gap: 8px;
}

.btn-primary {
  background-color: var(--primary-red);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #c62828;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(227, 47, 47, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary-blue);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-red);
  border-color: var(--primary-red);
}

.btn-outline:hover {
  background-color: var(--primary-red);
  color: var(--white);
  transform: translateY(-2px);
}

/* Badges */
.badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: 1;
  margin-bottom: 16px;
}

.badge-light-blue {
  background-color: #FFEBEE;
  color: #C62828;
}

.badge-blue {
  background-color: var(--primary-blue);
  color: var(--white);
}

.badge-green {
  background-color: #EAF3DE;
  color: #3B6D11;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: none;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-red);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-red);
}

.mobile-menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--dark-navy);
}

@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 40px;
    gap: 25px;
    transition: left 0.3s ease;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-right {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }
}

/* Floating WhatsApp Button */
/* Floating Contact Buttons */
.floating-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 26px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.float-btn:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  color: white;
}

.float-whatsapp {
  background-color: #25D366;
  animation: pulse-whatsapp 2s infinite;
}

.float-call {
  background-color: var(--primary-red);
  animation: pulse-call 2s infinite;
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulse-call {
  0% { box-shadow: 0 0 0 0 rgba(227, 47, 47, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(227, 47, 47, 0); }
  100% { box-shadow: 0 0 0 0 rgba(227, 47, 47, 0); }
}

/* Hero Section Base */
.hero {
  min-height: 100vh;
  padding: 140px 0 60px;
  background: linear-gradient(rgb(0 0 0 / 81%), rgb(0 0 0 / 85%)), url('../img/kyrgyz01.webp') center/cover no-repeat;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://www.transparenttextures.com/patterns/clouds.png');
  opacity: 0.3;
  pointer-events: none;
}

.home-hero-content {
  display: flex;
  align-items: center;
  gap: 50px;
  z-index: 2;
  position: relative;
}

.hero-text {
  flex: 1;
  color: var(--white);
}

.hero-text h1 {
  color: var(--white);
}

@media (max-width: 992px) {
  .hero {
    min-height: auto;
    padding: 140px 0 0px;
  }

  .home-hero-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 36px !important;
    line-height: 1.2 !important;
  }

  .hero-text p {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-text .hero-actions {
    justify-content: center !important;
  }

  .hero-contact-form {
    margin: 0 auto !important;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 28px !important;
  }

  .hero-text .hero-actions {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .hero-text .hero-actions a {
    width: 100% !important;
    justify-content: center !important;
  }

  .hero-text .hero-actions .hero-phone {
    justify-content: center !important;
  }
}

.hero-subtext {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

.phone-strip {
  display: flex;
  gap: 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
}

.hero-image {
  flex: 1;
  position: relative;
}

.floating-element {
  animation: float 4s ease-in-out infinite;
}

.floating-element-delayed {
  animation: float 4s ease-in-out 2s infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

.flag-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.flag-strip .container {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.flag-badge {
  background: var(--white);
  color: var(--dark-navy);
  padding: 5px 15px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 992px) {
  .home-hero-content {
    flex-direction: column;
    text-align: center;
    padding-bottom: 80px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .phone-strip {
    justify-content: center;
  }
}

.breadcrumb {
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
  color: var(--white);
  text-decoration: none;
}

.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--primary-red), #D32F2F);
  color: var(--white);
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  font-size: 42px;
  margin-bottom: 15px;
}

.page-hero h1 em {
  color: #FFE600;
  /* Gold color for better visibility on red */
  font-style: italic;
}

/* Footer Redesign */
/* Premium White Footer */
footer {
  background-color: #FFFFFF;
  color: #1e293b;
  padding: 80px 0 0;
  position: relative;
  border-top: 1px solid #f1f5f9;
}

footer::before {
  display: none;
}

.footer-brand p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  margin-top: 20px;
}

.footer-bottom {
  background-color: #ffffff;
  padding: 25px 0;
  text-align: center;
  border-top: 1px solid #f1f5f9;
}

.footer-bottom p {
  font-size: 16px;
  color: #1e293b;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.footer-col ul li a:hover {
  color: var(--primary-red);
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.contact-info li i {
  color: var(--primary-red);
  margin-top: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
}

/* Footer brand container width and footer links separator */
.footer-col.footer-brand {
  margin: 0 auto;
  max-width: 730px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
  font-family: var(--font-heading);
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:not(:last-child)::after {
  content: " | ";
  color: inherit;
  margin-left: 6px;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Cards & Elements */
.card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 30px;
}

.placeholder-img {
  background-color: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-body);
  font-family: var(--font-body);
  font-weight: 500;
  border-radius: 16px;
  width: 100%;
}

/* Tables */
.styled-table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.styled-table thead tr {
  background-color: var(--dark-navy);
}

.styled-table th {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  padding: 18px 24px;
  text-align: left;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.styled-table td {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 18px 24px;
  line-height: 1.6;
}

.styled-table td:first-child {
  color: var(--primary-blue);
  font-weight: 600;
  width: 35%;
  background-color: rgba(26, 115, 232, 0.02);
}

.styled-table th i,
.styled-table td i {
  margin-right: 12px;
  width: 20px;
  text-align: center;
  color: var(--primary-red);
}

.styled-table th i {
  color: var(--white);
}

.styled-table tbody tr {
  border-bottom: 1px solid #dddddd;
  background-color: var(--white);
}

.styled-table tbody tr:nth-of-type(even) {
  background-color: rgba(227, 47, 47, 0.05);
}

.styled-table tbody tr:last-of-type {
  border-bottom: 2px solid var(--primary-red);
}

/* Accordion */
.accordion-item {
  background-color: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item.active {
  border-left: 4px solid var(--primary-red);
  background-color: rgba(227, 47, 47, 0.02);
}

.accordion-header {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
}

.accordion-header i {
  transition: transform 0.3s;
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

.accordion-body {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-body p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-body);
  padding-bottom: 20px;
}

.accordion-item.active .accordion-body {
  max-height: 500px;
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  display: block;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s;
}

.form-control::placeholder {
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
}

.form-control:focus {
  border-color: var(--primary-blue);
}

/* Scrollable Row */
.scrollable-row {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 20px 0 40px;
  scrollbar-width: none;
}

.scrollable-row::-webkit-scrollbar {
  display: none;
}

.country-card {
  min-width: 200px;
  text-align: center;
  border: 2px solid transparent;
}

.country-card.active {
  border-color: var(--primary-blue);
  background-color: rgba(26, 115, 232, 0.05);
}

/* Stats Counter */
.stats-section {
  background-color: #F0F7FF;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.7);
  border-left: 4px solid var(--primary-blue);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  color: var(--primary-blue);
  line-height: 1;
}

.stat-text {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-body);
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* About Intro */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.icon-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-body);
}

.icon-list li i {
  color: #10b981;
  font-size: 20px;
}

.photo-collage {
  position: relative;
  height: 400px;
}

.photo-collage .img-1,
.photo-collage .img-2 {
  position: absolute;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.photo-collage .img-1 {
  width: 70%;
  height: 300px;
  top: 0;
  left: 0;
  z-index: 1;
}

.photo-collage .img-2 {
  width: 60%;
  height: 250px;
  bottom: 0;
  right: 0;
  z-index: 2;
  border: 5px solid var(--white);
}

@media (max-width: 992px) {
  .about-intro {
    grid-template-columns: 1fr;
  }

  .photo-collage {
    display: none;
  }
}

/* Why Choose Grid - Kept in style tag of index.html mostly, but adding base here */
.why-section {
  background: linear-gradient(to bottom, var(--sky-blue-start), var(--sky-blue-end));
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: rgba(26, 115, 232, 0.1);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* Testimonial */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  position: relative;
}

.quote-icon {
  font-size: 40px;
  color: rgba(26, 115, 232, 0.1);
  position: absolute;
  top: 20px;
  right: 20px;
}

.stars {
  color: #fbbf24;
  margin: 15px 0;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-body);
}

.student-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  border-top: 1px solid #e2e8f0;
  padding-top: 20px;
}

.student-info img,
.student-info .placeholder-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--primary-blue);
}

.student-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  display: block;
}

.student-city {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* Rankings */
.rankings-section {
  background: linear-gradient(135deg, var(--primary-blue), #0D47A1);
  color: var(--white);
  text-align: center;
}

.rankings-section h2,
.rankings-section p {
  color: var(--white);
}

.rankings-flex {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
}

.ranking-circle {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
}

.ranking-circle .number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  margin: 10px 0;
  color: var(--white);
}

@media (max-width: 768px) {
  .rankings-flex {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .ranking-circle {
    width: 200px;
    height: 200px;
  }
}

/* Path Grid */
.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .path-grid {
    grid-template-columns: 1fr;
  }
}

/* Logo Strip */
.logo-strip {
  overflow: hidden;
  white-space: nowrap;
  padding: 40px 0;
}

.logo-track {
  display: inline-flex;
  gap: 80px;
  animation: scrollLogos 20s linear infinite;
}

.logo-track span {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 500;
  color: var(--text-muted);
  filter: grayscale(100%);
  transition: filter 0.3s, color 0.3s;
  cursor: default;
}

.logo-track span:hover {
  filter: grayscale(0%);
  color: var(--primary-blue);
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Hostel & Student Life */
.hostel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hostel-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.hostel-images div {
  height: 200px;
  border-radius: 16px;
}

@media (max-width: 992px) {
  .hostel-grid {
    grid-template-columns: 1fr;
  }
}

.student-life-section {
  background-color: var(--light-gray);
}

.student-life-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .student-life-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .student-life-grid {
    grid-template-columns: 1fr;
  }
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.blog-card img,
.blog-card .placeholder-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.blog-content {
  padding: 20px;
}

.blog-tag {
  background: var(--primary-red);
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 15px;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.blog-meta {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 15px;
}

@media (max-width: 1200px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* Enquiry Form */
.enquiry-section {
  position: relative;
  background: radial-gradient(circle at top left, #E8F4FD 0%, #FFFFFF 50%, #C9E8F9 100%);
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.enquiry-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://www.transparenttextures.com/patterns/world-map.png');
  opacity: 0.1;
  pointer-events: none;
}

.inline-form {
  background: var(--white);
  padding: 20px;
  border-radius: 100px;
  display: flex;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 40px auto;
  max-width: 1000px;
}

.inline-form .form-control {
  border: none;
  background: #f8fafc;
  border-radius: 50px;
}

.inline-form .btn {
  border-radius: 50px;
  padding: 14px 40px;
  white-space: nowrap;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-navy);
}

.trust-badges span {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 992px) {
  .inline-form {
    flex-direction: column;
    border-radius: 20px;
    padding: 30px;
  }

  .inline-form .form-control,
  .inline-form .btn {
    border-radius: 8px;
  }

  .trust-badges {
    flex-direction: column;
    gap: 15px;
  }
}

/* Process Timeline */
.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 60px 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #e2e8f0;
  z-index: 1;
}

.process-step {
  width: 15%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-circle {
  width: 80px;
  height: 80px;
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  border: 4px solid var(--white);
  box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
}

.step-circle span {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-description {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-body);
}

@media (max-width: 992px) {
  .process-timeline {
    flex-direction: column;
    gap: 40px;
  }

  .process-timeline::before {
    top: 0;
    left: 40px;
    width: 2px;
    height: 100%;
  }

  .process-step {
    width: 100%;
    display: flex;
    text-align: left;
    align-items: center;
    gap: 30px;
  }

  .step-circle {
    margin: 0;
    flex-shrink: 0;
  }
}

/* History Timeline */
.history-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.history-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--primary-blue);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: 50%;
  position: relative;
  margin-bottom: 30px;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 50%;
}

.timeline-content {
  background: var(--white);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  width: 90%;
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: 30px;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 30px;
}

.timeline-content::after {
  content: '';
  position: absolute;
  top: 20px;
  width: 20px;
  height: 20px;
  background: var(--primary-red);
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
}

.timeline-item:nth-child(odd) .timeline-content::after {
  right: -45px;
}

.timeline-item:nth-child(even) .timeline-content::after {
  left: -45px;
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .history-timeline::before {
    left: 30px;
  }

  .timeline-item {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 80px;
  }

  .timeline-item:nth-child(even) {
    padding-left: 80px;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin: 0;
    width: 100%;
  }

  .timeline-content::after {
    left: -60px !important;
  }
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Document Checklist & Timeline Cards */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  align-items: stretch;
}

.checklist-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border-left: 6px solid var(--primary-red);
}

.timeline-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.card-header-flex {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 35px;
}

.card-header-flex h2 {
  font-size: 28px;
  margin: 0;
}

.checklist-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.check-box {
  width: 28px;
  height: 28px;
  border: 2px solid #2563EB;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563EB;
  font-size: 14px;
  flex-shrink: 0;
  background: #EFF6FF;
}

.checklist-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
  color: #1E293B;
}

.checklist-info p {
  font-size: 13px;
  color: #64748B;
  margin: 0;
  line-height: 1.4;
}

.timeline-table-wrapper {
  overflow-x: auto;
}

.timeline-mini-table {
  width: 100%;
  border-collapse: collapse;
}

.timeline-mini-table th {
  text-align: left;
  padding: 15px;
  background: #F1F5F9;
  color: #64748B;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.timeline-mini-table td {
  padding: 20px 15px;
  border-bottom: 1px solid #F1F5F9;
  font-size: 15px;
  color: #334155;
  font-weight: 500;
}

.status-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.status-pill.open {
  background: #DCFCE7;
  color: #166534;
}

.status-pill.active {
  background: #DBEAFE;
  color: #1E40AF;
}

.status-pill.scheduled {
  background: #FFEDD5;
  color: #9A3412;
}

.status-pill.final {
  background: #F1F5F9;
  color: #475569;
}

@media (max-width: 1100px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}

/* Start Application Section */
.application-banner {
  display: flex;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
  max-width: 1140px;
  margin: 80px auto;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.banner-left {
  background: #0056b3;
  /* Professional blue from image */
  color: var(--white);
  padding: 70px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner-left h2 {
  color: var(--white);
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 25px;
  line-height: 1.2;
}

.banner-left p {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 450px;
}

.banner-features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.banner-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  font-weight: 500;
}

.banner-feature-item i {
  width: 24px;
  text-align: center;
  font-size: 18px;
}

.banner-right {
  padding: 60px;
  flex: 1;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner-right .form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 8px;
}

.banner-right .form-control {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 12px 20px;
  font-size: 15px;
}

.banner-right .form-control:focus {
  border-color: #0056b3;
  background: var(--white);
}

.btn-application {
  background: #FF6B35;
  /* Orange color from image */
  color: var(--white);
  padding: 18px 30px;
  border-radius: 12px;
  border: none;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  text-align: center;
}

.btn-application:hover {
  background: #e85a25;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

@media (max-width: 992px) {
  .application-banner {
    flex-direction: column;
    margin: 40px 20px;
  }

  .banner-left {
    padding: 50px 40px;
  }

  .banner-right {
    padding: 50px 40px;
  }

  .banner-left h2 {
    font-size: 32px;
  }
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-header {
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: #1A1A2E;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.accordion-header i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  background: #F8FAFC;
  padding: 0 20px;
}

.accordion-body p {
  padding: 16px 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
}

.accordion-item.active {
  border-color: var(--primary-red);
  box-shadow: 0 4px 20px rgba(227, 47, 47, 0.1);
}

.accordion-item.active .accordion-header {
  color: var(--primary-red);
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

.accordion-item.active .accordion-body {
  max-height: 400px;
  padding: 0 20px;
}

/* Info Grid & Styled Table */
.info-grid {
  display: grid;
  gap: 40px;
}

.styled-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
}

.styled-table td {
  padding: 15px 20px;
  border-bottom: 1px solid #F1F5F9;
  font-family: var(--font-body);
}

.styled-table td:first-child {
  font-weight: 600;
  color: #1A1A2E;
  width: 40%;
}

.styled-table td:first-child i {
  color: var(--primary-red);
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.styled-table td:last-child {
  color: #64748B;
}

.styled-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 991px) {
  .info-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Responsive Buttons & Mobile Adjustments */
@media (max-width: 576px) {

  .btn,
  .btn-primary,
  .btn-secondary,
  .btn-outline,
  .parallax-btn {
    width: 100% !important;
    padding: 15px 20px !important;
    font-size: 14px !important;
    display: flex !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .hero-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
  }

  .hero-actions a {
    width: 100% !important;
    justify-content: center !important;
  }

  .hero-phone {
    justify-content: center !important;
    width: 100% !important;
  }
}