* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --deep: #0b2d4d;
  --gold: #bc8f37;
  --sapphire: #0071af;
  --sky: #108dc4;
  --sun: #f5cf54;
  --pure: #ffffff;
  --soft-bg: #f5f9ff;
  --card-shadow: 0 20px 35px -10px rgba(11, 45, 77, 0.08);
}
body {
  font-family: "Inter", sans-serif;
  background: var(--pure);
  color: #1f3a4e;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
.heading-font {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}

.navbar-toggler {
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x) !important;
  font-size: var(--bs-navbar-toggler-font-size) !important;
  line-height: 1 !important;

  background-color: transparent !important;
  border: 2px solid var(--pure) !important;
  border-radius: 6px !important;

  transition: 0.3s ease !important;
  box-shadow: none !important;
}

.navbar-toggler:focus {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(245, 207, 84, 0.4) !important;
}

.navbar-toggler:hover {
  border-color: var(--gold) !important;
  box-shadow: 0 0 10px rgba(188, 143, 55, 0.5) !important;
}

/* Force white icon */
.navbar-toggler-icon {
  filter: brightness(0) invert(1) !important;
  background-image: var(--bs-navbar-toggler-icon-bg) !important;
}

/* ===== ADVANCED LOADER ===== */
.ultimate-loader {
  position: fixed;
  inset: 0;
  background: var(--pure);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.loader-svg-big {
  width: 400px;
  filter: drop-shadow(0 10px 12px rgba(0, 0, 0, 0.03));
}
.loader-bar {
  width: 300px;
  height: 6px;
  background: #e6edf5;
  border-radius: 10px;
  margin: 30px 0 20px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(
    90deg,
    var(--deep),
    var(--gold),
    var(--sapphire),
    var(--sun)
  );
  animation: loadFill 2s infinite;
}
@keyframes loadFill {
  0% {
    width: 0%;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}

/* navbar left logo / center menu (ultra modern) */
.navbar-ultimate {
  background: #0b2d4d;
  backdrop-filter: blur(16px);
  padding: 0px 0;
  border-bottom: 1px solid rgba(188, 143, 55, 0.2);
}
.navbar-brand img {
  height: 80px;
}
.nav-link {
  font-weight: 600;
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 50px;
  margin: 0 4px;
  font-size: 16px;
  transition: 0.2s;
  white-space: nowrap;
}
.nav-link:hover {
  background: rgba(16, 141, 196, 0.1);
  color: var(--sapphire) !important;
}

.nav-link.active {
  background: rgba(16, 141, 196, 0.1);
  color: var(--sapphire) !important;
}
@media (max-width: 991px) {
  .navbar-collapse {
    background: white;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 30px 50px -20px #0b2d4d;
    margin-top: 12px;
    display: none !important;
  }
  .navbar-brand img {
    height: 60px;
  }
  .navbar-toggler {
    border-color: white;
  }
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
}

/* ===== OFFCANVAS MENU RESPONSIVE ===== */
.offcanvas {
  width: 80% !important;
}
@media (max-width: 576px) {
  .offcanvas {
    width: 100% !important;
  }
}
.offcanvas-header {
  background: var(--deep);
  color: white;
}
.offcanvas-title {
  font-weight: 700;
  color: white;
  font-family: "Outfit", sans-serif;
}
.offcanvas-body {
  background: #f8fbff;
  padding: 20px 0;
}
.offcanvas-body .navbar-nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.offcanvas-body .nav-link {
  padding: 15px 30px !important;
  border-radius: 0 !important;
  font-weight: 600;
  color: var(--deep) !important;
  margin: 0 !important;
  border-left: 4px solid transparent;
  transition: all 0.2s;
}
.offcanvas-body .nav-link:hover {
  background: rgba(188, 143, 55, 0.1);
  border-left-color: var(--gold);
  color: var(--sapphire) !important;
}

.navbar-expand-lg {
  padding: 0 0 !important;
}
/* ===== FREE CHAT ===== */
.chat-orb {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle at 30% 30%, var(--sun), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  cursor: pointer;
  box-shadow: 0 25px 40px -8px #b07d2e;
  transition: 0.25s;
  border: 3px solid white;
}
.chat-orb i {
  font-size: 30px;
  color: var(--deep);
}
.chat-panel {
  position: fixed;
  bottom: 130px;
  right: 30px;
  width: 380px;
  background: white;
  border-radius: 40px 40px 20px 40px;
  box-shadow: 0 40px 70px -15px #041c30;
  z-index: 1001;
  display: none;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .chat-orb {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .chat-orb i {
    font-size: 24px;
  }
  .chat-panel {
    bottom: 100px;
    right: 20px;
    width: 100%;
    max-width: 95vw;
    left: auto;
    border-radius: 30px 30px 20px 30px;
  }
}
.chat-header {
  background: var(--deep);
  color: white;
  padding: 22px;
  font-weight: 700;
}
.chat-header span {
  float: right;
  font-size: 28px;
  cursor: pointer;
}
.chat-messages {
  background: #f6faff;
  padding: 20px;
  min-height: 240px;
}
.chat-bubble {
  background: white;
  border-radius: 24px 24px 24px 8px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 7px 14px #deecf5;
}
.chat-actions {
  display: flex;
  padding: 15px;
  gap: 8px;
  background: #ecf3fa;
}

/* HERO – mega section with rich media */
.hero-magnificent {
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(16, 141, 196, 0.15),
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(188, 143, 55, 0.15),
      transparent 40%
    ),
    linear-gradient(135deg, #071a2e 0%, #0b2d4d 50%, #051423 100%);
  padding: 100px 0 130px;
  position: relative;
  overflow: hidden;
  color: var(--pure);
}

@media (max-width: 768px) {
  .hero-magnificent {
    padding: 60px 0 80px;
  }
  .mega-title {
    font-size: 2.2rem !important;
  }
  .hero-magnificent .row {
    flex-direction: column-reverse;
  }
}
.floating-card-1 {
  background: white;
  border-radius: 30px;
  padding: 25px;
  box-shadow: 0 30px 50px -25px #001e3b;
  max-width: 300px;
}
.hero-img-glow {
  border-radius: 40px 40px 40px 40px;
  box-shadow: 0 30px 50px -15px #0f304b;
  transition: 0.4s;
  /* margin-top: -100px; */
}
.mega-title {
  font-weight: 800;
  color: var(--pure);
}
.mega-title span {
  color: var(--sun);
}

/* badge style */
.pill-badge {
  background: var(--sun);
  padding: 8px 28px;
  border-radius: 60px;
  font-weight: 700;
  color: var(--deep);
  display: inline-block;
}

/* section titles */
.mega-title {
  font-size: 3.3rem;
  font-weight: 800;
  line-height: 1.1;
}
.title-ribbon {
  width: 140px;
  height: 8px;
  background: linear-gradient(90deg, var(--gold), var(--sun), var(--sapphire));
  border-radius: 8px;
  margin: 20px 0 35px;
}

.hero-img-glow {
  border-radius: 40px;
  box-shadow:
    0 30px 60px -20px rgba(0, 113, 175, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: 0.4s;
}

.hero-img-glow:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 80px -20px rgba(188, 143, 55, 0.6);
}

#hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-magnificent .container {
  position: relative;
  z-index: 2;
}
.home-banner-images {
  display: flex !important;
  flex-direction: row;
  gap: 20px;
}

.hero-magnificent .btn {
  padding: 10px 30px;
  border-radius: 40px;
}

/* service pillars with images */
.pillar-card {
  background: white;
  border-radius: 44px;
  padding: 30px 25px 35px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(188, 143, 55, 0.1);
  transition: 0.2s;
  height: 100%;
}
.pillar-card:hover {
  transform: scale(1.02);
  border-color: var(--gold);
}
.pillar-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 32px;
  margin-bottom: 25px;
}

/* stats row with images */
.stat-arena {
  background: var(--deep);
  border-radius: 100px 30px 30px 100px;
  padding: 30px 40px;
  color: white;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.stat-icon img {
  width: 60px;
  height: 60px;
  border-radius: 30px;
  object-fit: cover;
}

/* JOB ZONE – multiple cards */
.job-vista {
  background: #eef4fc;
  border-radius: 60px;
  padding: 35px 25px;
  height: 100%;
  border-left: 8px solid var(--gold);
}
.job-vista img {
  height: 160px;
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
}

/* upcoming events section */
.event-card {
  background: white;
  border-radius: 30px;
  padding: 25px;
  box-shadow: var(--card-shadow);
  display: flex;
  gap: 20px;
  align-items: center;
}

/* mentor grid with pics */
.mentor-elite {
  border-radius: 50px;
  background: white;
  padding: 30px;
  box-shadow: var(--card-shadow);
  text-align: center;
}
.mentor-elite img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--sun);
  margin-bottom: 20px;
}

/* resources / blog preview */
.resource-card {
  background: white;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.resource-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

/* footer expansive */
.footer-grand {
  background: #0a1f30;
  color: #b7cfec;
  padding: 80px 0 30px;
  border-top: 10px solid var(--gold);
}
.color-dome {
  width: 45px;
  height: 45px;
  border-radius: 16px;
  display: inline-block;
  margin-right: 10px;
}

/* extra spacing */
.section-padding {
  padding: 90px 0;
}

.extra-margin {
  margin-top: 60px;
}

.hero-magnificent {
  position: relative;
  overflow: hidden;
}

#hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-magnificent .container {
  position: relative;
  z-index: 2;
}

:root {
  --deep: #0b2d4d;
  --gold: #bc8f37;
  --sapphire: #0071af;
  --sky: #108dc4;
  --sun: #f5cf54;
  --pure: #ffffff;
}

.about-section {
  position: relative;
  padding: 80px 0;
  font-family: "Inter", sans-serif;
  background: #ffffff;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/abt-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.03; /* adjust this */
  z-index: 0;
}

.about-section .container {
  position: relative;
  z-index: 2;
}

.vector-bg-col {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 900" width="100%" height="100%" preserveAspectRatio="xMidYMid slice"><rect width="800" height="900" fill="%230b2d4d" opacity="0.03"/><circle fill="%23bc8f37" cx="200" cy="250" r="140" opacity="0.1"/><circle fill="%230071af" cx="550" cy="400" r="200" opacity="0.08"/><path fill="%23108dc4" d="M600 150 L750 350 L600 550 L450 350 Z" opacity="0.1"/><circle fill="%23f5cf54" cx="300" cy="650" r="170" opacity="0.1"/><path fill="%230b2d4d" d="M100 750 Q300 820 500 750 T750 700 L750 900 L100 900 Z" opacity="0.07"/><path fill="%23bc8f37" d="M50 50 L200 50 L150 180 Z" opacity="0.1"/><circle fill="%23108dc4" cx="700" cy="800" r="90" opacity="0.1"/></svg>');
  background-size: cover;
  background-position: center;
  border-radius: 40px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.about-image {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 25px 40px -15px rgba(11, 45, 77, 0.3);
  border: 5px solid white;
}

/* .content-col {
  padding-left: 40px;
} */

.section-tag {
  background: var(--sun);
  color: var(--deep);
  padding: 8px 25px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-block;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.about-title {
  font-family: "Outfit", sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--deep);
  line-height: 1.1;
  margin-bottom: 20px;
}

.about-title span {
  color: var(--gold);
}

.about-text {
  color: #2d4b6e;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
}

.feature-list li {
  margin-bottom: 15px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-list li i {
  color: var(--gold);
  font-size: 1.5rem;
  width: 30px;
}

.btn-about {
  background: var(--sapphire);
  color: white;
  padding: 15px 45px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1.2rem;
  border: none;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-about:hover {
  background: var(--deep);
  color: white;
}

@media (max-width: 991px) {
  .content-col {
    padding-left: 0;
    margin-top: 40px;
  }
  .about-title {
    font-size: 2.5rem;
  }
}

:root {
  --deep: #0b2d4d;
  --gold: #bc8f37;
  --sapphire: #0071af;
  --sky: #108dc4;
  --sun: #f5cf54;
  --pure: #ffffff;
}

.achievements-section {
  background-color: var(--deep); /* dark background as requested */
  padding: 80px 0;
  font-family: "Inter", sans-serif;
  position: relative;
  overflow: hidden;
}

/* subtle vector overlay (optional but keeps design rich) */
.achievements-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 800" width="100%" height="100%"><circle fill="%23bc8f37" cx="100" cy="100" r="80" opacity="0.05"/><circle fill="%230071af" cx="700" cy="200" r="150" opacity="0.04"/><path fill="%23108dc4" d="M300 600 Q450 500 600 600 T800 550 L800 800 L300 800 Z" opacity="0.03"/><circle fill="%23f5cf54" cx="500" cy="700" r="120" opacity="0.05"/></svg>');
  background-size: cover;
  opacity: 0.4;
  pointer-events: none;
}

.section-title-light {
  font-family: "Outfit", sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}

.section-title-light span {
  color: var(--gold);
}

.title-underline-light {
  width: 120px;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--sun));
  border-radius: 6px;
  margin: 0 auto 30px auto;
}

.section-sub-light {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.achievement-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 40px 0px;
  text-align: center;
  transition: 0.3s;
  height: 100%;
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.3);
}

.achievement-card:hover {
  transform: translateY(-12px);
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.achievement-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(145deg, var(--gold), #dba534);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  font-size: 3rem;
  color: var(--deep);
  box-shadow: 0 15px 25px -8px rgba(0, 0, 0, 0.5);
}

.achievement-card:nth-child(2) .achievement-icon {
  background: linear-gradient(145deg, var(--sapphire), var(--sky));
  color: white;
}

.achievement-card:nth-child(3) .achievement-icon {
  background: linear-gradient(145deg, var(--sun), #f5cf54);
  color: var(--deep);
}

.achievement-card:nth-child(4) .achievement-icon {
  background: linear-gradient(145deg, white, #f0f0f0);
  color: var(--sapphire);
}

.achievement-number {
  font-family: "Outfit", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: white;
  line-height: 1.2;
  margin-bottom: 8px;
}

.achievement-label {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}

.achievement-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .section-title-light {
    font-size: 2.5rem;
  }
  .achievement-number {
    font-size: 2.8rem;
  }
}

.admissions-home-section {
  --deep: #0b2d4d;
  --gold: #bc8f37;
  --sapphire: #0071af;
  --sky: #108dc4;
  --sun: #f5cf54;
  --pure: #ffffff;
  --light-bg: #f3f7fd;
  --soft-gray: #eef2f6;

  padding: 100px 0 30px;
  background-color: var(--pure);
  font-family: "Inter", sans-serif;
  position: relative;
  overflow: hidden;
}

/* background pattern */
.admissions-home-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(
      circle at 10% 20%,
      rgba(188, 143, 55, 0.03) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(0, 113, 175, 0.03) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.admissions-home-section .container {
  position: relative;
  z-index: 2;
}

/* header */
.admissions-home-section .header-clean {
  text-align: center;
  margin-bottom: 30px;
}

.admissions-home-section .header-clean .pill {
  display: inline-block;
  background: rgba(188, 143, 55, 0.08);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 24px;
  border-radius: 40px;
  letter-spacing: 1px;
  margin-bottom: 0px;
  border: 1px solid rgba(188, 143, 55, 0.15);
  text-transform: uppercase;
}

.admissions-home-section .header-clean h2 {
  font-family: "Outfit", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--deep);
  line-height: 1.2;
  margin-bottom: 20px;
}

.admissions-home-section .header-clean h2 span {
  color: var(--sapphire);
  position: relative;
  display: inline-block;
}

.admissions-home-section .header-clean h2 span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--sun);
  opacity: 0.4;
  border-radius: 4px;
}

.admissions-home-section .header-clean .subhead {
  color: #5f7d9c;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* quick stats */
.admissions-home-section .quick-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.admissions-home-section .stat-block {
  text-align: center;
}

.admissions-home-section .stat-block .number {
  font-family: "Outfit", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--deep);
  line-height: 1;
  margin-bottom: 5px;
}

.admissions-home-section .stat-block .label {
  color: var(--gold);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* swiper slider styles */
.admissions-home-section .swiper-container {
  padding: 20px 10px 40px;
  overflow: hidden !important;
}

.admissions-home-section .swiper-slide {
  height: auto;
  transition: all 0.3s ease;
}

/* timeline cards with background images */
.admissions-home-section .timeline-card {
  width: 100%;
  height: 100%;
  border-radius: 40px;
  padding: 35px 25px;
  position: relative;
  display: flex;
  flex-direction: column;
  color: white;
  overflow: hidden;
  box-shadow: 0 20px 35px -8px rgba(11, 45, 77, 0.25);
  border: none;
  transition: all 0.3s ease;
  min-height: 380px;
}

/* dark overlay for text readability */
.admissions-home-section .timeline-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    145deg,
    rgba(11, 45, 77, 0.85) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.admissions-home-section .timeline-card > * {
  position: relative;
  z-index: 2;
}

.admissions-home-section .timeline-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 45px -12px rgba(11, 45, 77, 0.4);
}

/* individual card background images */
.admissions-home-section .card-engineering {
  background-image: url("https://images.pexels.com/photos/256381/pexels-photo-256381.jpeg?auto=compress&cs=tinysrgb&w=600&h=800&fit=crop");
  background-size: cover;
  background-position: center;
}

.admissions-home-section .card-medical {
  background-image: url("https://images.pexels.com/photos/8376236/pexels-photo-8376236.jpeg?auto=compress&cs=tinysrgb&w=600&h=800&fit=crop");
  background-size: cover;
  background-position: center;
}

.admissions-home-section .card-management {
  background-image: url("https://images.pexels.com/photos/669615/pexels-photo-669615.jpeg?auto=compress&cs=tinysrgb&w=600&h=800&fit=crop");
  background-size: cover;
  background-position: center;
}

.admissions-home-section .card-law {
  background-image: url("https://images.pexels.com/photos/5668473/pexels-photo-5668473.jpeg?auto=compress&cs=tinysrgb&w=600&h=800&fit=crop");
  background-size: cover;
  background-position: center;
}

.admissions-home-section .card-abroad {
  background-image: url("https://images.pexels.com/photos/1008155/pexels-photo-1008155.jpeg?auto=compress&cs=tinysrgb&w=600&h=800&fit=crop");
  background-size: cover;
  background-position: center;
}

.admissions-home-section .card-marker {
  position: absolute;
  top: -10px;
  left: 30px;
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  border: 3px solid white;
  z-index: 3;
  display: none;
}

.admissions-home-section .card-icon-small {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin-bottom: 25px;
  margin-top: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-left: auto;
}

.admissions-home-section .timeline-card h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.admissions-home-section .card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.admissions-home-section .card-tag {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  padding: 5px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.admissions-home-section .card-deadline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: white;
  margin-bottom: 20px;
  padding: 12px 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.3);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
}

.admissions-home-section .card-deadline i {
  color: var(--sun);
}

.admissions-home-section .card-link {
  color: white;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s;
  margin-top: auto;
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: 40px;
  backdrop-filter: blur(4px);
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.admissions-home-section .card-link:hover {
  background: var(--gold);
  color: var(--deep);
  gap: 12px;
  border-color: var(--gold);
}

/* swiper pagination */
.admissions-home-section .swiper-pagination {
  position: relative;
  margin-top: 30px;
}

.admissions-home-section .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--sky);
  opacity: 1;
  margin: 0 6px;
}

.admissions-home-section .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 30px;
  border-radius: 10px;
}

/* upcoming deadlines */
.admissions-home-section .section-subtitle {
  font-family: "Outfit", sans-serif;
  color: var(--deep);
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 1.8rem;
}

.admissions-home-section .deadlines-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 80px;
}

.admissions-home-section .deadline-mini {
  background: white;
  border-radius: 30px;
  padding: 25px;
  box-shadow: 0 15px 25px -8px rgba(11, 45, 77, 0.05);
  border: 1px solid rgba(188, 143, 55, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: 0.2s;
}

.admissions-home-section .deadline-mini:hover {
  border-color: var(--gold);
}

.admissions-home-section .deadline-icon {
  width: 50px;
  height: 50px;
  background: rgba(188, 143, 55, 0.08);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.5rem;
}

.admissions-home-section .deadline-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 5px;
}

.admissions-home-section .deadline-content p {
  color: #5f7d9c;
  font-size: 0.9rem;
  margin: 0;
}

.admissions-home-section .deadline-badge {
  background: var(--sun);
  color: var(--deep);
  padding: 3px 12px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: auto;
}

/* CTA banner */
.admissions-home-section .cta-minimal {
  background: var(--deep);
  border-radius: 40px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.admissions-home-section .cta-minimal h3 {
  font-family: "Outfit", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: white;
  margin: 0;
}

.admissions-home-section .cta-minimal h3 span {
  color: var(--sun);
  font-weight: 700;
}

.admissions-home-section .cta-minimal p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin: 10px 0 0 0;
}

.admissions-home-section .btn-outline-light-custom {
  background: transparent;
  border: 2px solid var(--sun);
  color: var(--sun);
  padding: 15px 40px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: 0.2s;
  text-decoration: none;
  display: inline-block;
}

.admissions-home-section .btn-outline-light-custom:hover {
  background: var(--sun);
  color: var(--deep);
}

/* brand dots */
.admissions-home-section .brand-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 60px;
}

.admissions-home-section .dot {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

/* responsive */
@media (max-width: 992px) {
  .admissions-home-section .deadlines-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .admissions-home-section .header-clean h2 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .admissions-home-section .deadlines-row {
    grid-template-columns: 1fr;
  }
  .admissions-home-section .cta-minimal {
    flex-direction: column;
    text-align: center;
  }
  .admissions-home-section .quick-stats {
    gap: 30px;
  }
  .admissions-home-section .header-clean h2 {
    font-size: 2.2rem;
  }
}
.padding-left {
  padding-left: 100px;
}

.career-guidance-cta {
  --deep: #0b2d4d;
  --gold: #bc8f37;
  --sapphire: #0071af;
  --sky: #108dc4;
  --sun: #f5cf54;
  --pure: #ffffff;

  position: relative;
  width: 100%;
  font-family: "Inter", sans-serif;
  overflow: hidden;
}

/* fixed background image */
.career-guidance-cta .fixed-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/car.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1;
  transform: translateZ(0);
  will-change: transform;
}

/* overlay to ensure content readability */
.career-guidance-cta .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(11, 45, 77, 0.85) 0%,
    rgba(0, 113, 175, 0.75) 100%
  );
  z-index: 0;
}

/* content container - scrolls normally */
.career-guidance-cta .content-wrapper {
  position: relative;
  z-index: 2;
  padding: 120px 0 50px;
  color: white;
}

.career-guidance-cta .container {
  position: relative;
  z-index: 3;
}

/* header */
.career-guidance-cta .section-tag {
  display: inline-block;
  background: rgba(245, 207, 84, 0.15);
  backdrop-filter: blur(5px);
  color: var(--sun);
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 30px;
  border-radius: 60px;
  letter-spacing: 1px;
  margin-bottom: 0px;
  border: 1px solid rgba(245, 207, 84, 0.3);
  text-transform: uppercase;
}

.career-guidance-cta .section-title {
  font-family: "Outfit", sans-serif;
  font-size: 4.2rem;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 25px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.career-guidance-cta .section-title span {
  color: var(--sun);
  position: relative;
  display: inline-block;
}

.career-guidance-cta .section-title span::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 12px;
  background: var(--gold);
  opacity: 0.4;
  border-radius: 6px;
  z-index: -1;
}

.career-guidance-cta .lead-text {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* features grid */
.career-guidance-cta .features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin: 50px 0 60px;
}

.career-guidance-cta .feature-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 40px;
  padding: 30px 25px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.career-guidance-cta .feature-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--sun);
}

.career-guidance-cta .feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(245, 207, 84, 0.2);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--sun);
  margin: 0 auto 20px;
  border: 1px solid rgba(245, 207, 84, 0.3);
}

.career-guidance-cta .feature-item h4 {
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.career-guidance-cta .feature-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* cta buttons */
.career-guidance-cta .cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
}

.career-guidance-cta .btn-primary-custom {
  background: var(--sun);
  color: var(--deep);
  padding: 18px 50px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1.2rem;
  border: none;
  transition: 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 2px solid transparent;
}

.career-guidance-cta .btn-primary-custom:hover {
  background: transparent;
  color: var(--sun);
  border-color: var(--sun);
  transform: scale(1.05);
}

.career-guidance-cta .btn-secondary-custom {
  background: transparent;
  color: white;
  padding: 18px 50px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1.2rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.career-guidance-cta .btn-secondary-custom:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: scale(1.05);
}

/* stats row */
.career-guidance-cta .stats-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 50px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.career-guidance-cta .stat-item {
  text-align: center;
}

.career-guidance-cta .stat-number {
  font-family: "Outfit", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--sun);
  line-height: 1;
  margin-bottom: 8px;
}

.career-guidance-cta .stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* brand colors (optional) */
.career-guidance-cta .brand-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.career-guidance-cta .dot {
  width: 35px;
  height: 35px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* responsive */
@media (max-width: 992px) {
  .career-guidance-cta .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .career-guidance-cta .section-title {
    font-size: 3.2rem;
  }
}

@media (max-width: 768px) {
  .career-guidance-cta .content-wrapper {
    padding: 80px 0;
  }
  .career-guidance-cta .features-grid {
    grid-template-columns: 1fr;
  }
  .career-guidance-cta .section-title {
    font-size: 2.5rem;
  }
  .career-guidance-cta .lead-text {
    font-size: 1.1rem;
  }
  .career-guidance-cta .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .career-guidance-cta .btn-primary-custom,
  .career-guidance-cta .btn-secondary-custom {
    width: 100%;
    justify-content: center;
  }
}

.testimonials-section {
  --deep: #0b2d4d;
  --gold: #bc8f37;
  --sapphire: #0071af;
  --sky: #108dc4;
  --sun: #f5cf54;
  --pure: #ffffff;
  --light-bg: #f8fbff;

  padding: 100px 0;
  background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
  font-family: "Inter", sans-serif;
  position: relative;
  overflow: hidden;
}

/* subtle background pattern */
.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(
      circle at 90% 10%,
      rgba(188, 143, 55, 0.03) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 10% 90%,
      rgba(0, 113, 175, 0.03) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.testimonials-section .container {
  position: relative;
  z-index: 2;
}

/* header */
.testimonials-section .section-header {
  text-align: center;
  margin-bottom: 30px;
}

.testimonials-section .section-tag {
  display: inline-block;
  background: rgba(188, 143, 55, 0.08);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 28px;
  border-radius: 40px;
  letter-spacing: 1px;
  margin-bottom: 0px;
  border: 1px solid rgba(188, 143, 55, 0.15);
  text-transform: uppercase;
}

.testimonials-section .section-title {
  font-family: "Outfit", sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--deep);
  line-height: 1.2;
  margin-bottom: 20px;
}

.testimonials-section .section-title span {
  color: var(--sapphire);
  position: relative;
  display: inline-block;
}

.testimonials-section .section-title span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--sun);
  opacity: 0.4;
  border-radius: 4px;
}

.testimonials-section .section-sub {
  color: #5f7d9c;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* swiper container */
.testimonials-section .testimonials-swiper {
  padding: 20px 30px 30px;
  overflow: hidden !important   ;
}

.testimonials-section .swiper-slide {
  height: auto;
  transition: all 0.3s ease;
  opacity: 0.7;
  transform: scale(0.9);
}

.testimonials-section .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.testimonials-section .swiper-slide-next,
.testimonials-section .swiper-slide-prev {
  opacity: 0.8;
  transform: scale(0.95);
}

/* testimonial card */
.testimonials-section .testimonial-card {
  background: white;
  border-radius: 50px;
  padding: 40px 35px;
  box-shadow: 0 15px 30px -12px rgba(11, 45, 77, 0.15);
  border: 1px solid rgba(188, 143, 55, 0.1);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonials-section .testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 30px 60px -12px rgba(11, 45, 77, 0.25);
}

/* quote icon */
.testimonials-section .quote-icon {
  position: absolute;
  top: 30px;
  right: 35px;
  font-size: 5rem;
  color: rgba(188, 143, 55, 0.1);
  font-family: serif;
  line-height: 1;
}

/* profile section */
.testimonials-section .profile {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.testimonials-section .profile-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--sun);
  box-shadow: 0 10px 20px -5px rgba(188, 143, 55, 0.3);
}

.testimonials-section .profile-info h4 {
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 5px;
}

.testimonials-section .profile-info p {
  color: var(--gold);
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0;
}

/* rating */
.testimonials-section .rating {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
  color: var(--sun);
}

.testimonials-section .rating i {
  font-size: 1.2rem;
}

/* testimonial text */
.testimonials-section .testimonial-text {
  color: #3e5f7e;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  font-style: italic;
  flex-grow: 1;
}

/* achievement badge */
.testimonials-section .achievement-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(16, 141, 196, 0.08);
  padding: 10px 20px;
  border-radius: 40px;
  color: var(--sapphire);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: auto;
  border: 1px solid rgba(16, 141, 196, 0.2);
  width: fit-content;
}

.testimonials-section .achievement-badge i {
  color: var(--gold);
}

/* swiper navigation */
.testimonials-section .swiper-button-next,
.testimonials-section .swiper-button-prev {
  color: var(--deep);
  background: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 10px 25px -5px rgba(11, 45, 77, 0.2);
  border: 1px solid rgba(188, 143, 55, 0.2);
  transition: 0.2s;
}

.testimonials-section .swiper-button-next:hover,
.testimonials-section .swiper-button-prev:hover {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}

.testimonials-section .swiper-button-next::after,
.testimonials-section .swiper-button-prev::after {
  font-size: 1.2rem;
  font-weight: bold;
}

.testimonials-section .swiper-button-next {
  right: 0;
}

.testimonials-section .swiper-button-prev {
  left: 0;
}

/* swiper pagination */
.testimonials-section .swiper-pagination {
  bottom: 0;
}

.testimonials-section .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #d0ddeb;
  opacity: 1;
  margin: 0 6px;
  transition: 0.2s;
}

.testimonials-section .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 30px;
  border-radius: 10px;
}

/* brand dots */
.testimonials-section .brand-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 60px;
}

.testimonials-section .dot {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

/* responsive */
@media (max-width: 768px) {
  .testimonials-section .section-title {
    font-size: 2.5rem;
  }
  .testimonials-section .testimonial-card {
    padding: 30px 25px;
  }
  .testimonials-section .profile-image {
    width: 60px;
    height: 60px;
  }
  .testimonials-section .swiper-button-next,
  .testimonials-section .swiper-button-prev {
    display: none;
  }
}

.jobs-section-dark {
  /* Logo colors as primary palette */
  --deep: #0b2d4d;
  --gold: #bc8f37;
  --sapphire: #0071af;
  --sky: #108dc4;
  --sun: #f5cf54;
  --pure: #ffffff;

  /* Dark theme specific */
  --dark-bg: #0a1a2c;
  --dark-card: #112a40;
  --dark-border: #1e3a55;
  --text-light: #e2e9f2;
  --text-muted: #a0b8cf;

  padding: 100px 0;
  background: linear-gradient(145deg, var(--dark-bg) 0%, #0b1f33 100%);
  font-family: "Inter", sans-serif;
  position: relative;
  overflow: hidden;
}

/* subtle pattern overlay using logo colors */
.jobs-section-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(
      circle at 10% 20%,
      rgba(188, 143, 55, 0.08) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 70%,
      rgba(0, 113, 175, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 30% 80%,
      rgba(16, 141, 196, 0.05) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 70% 20%,
      rgba(245, 207, 84, 0.05) 0%,
      transparent 30%
    );
  pointer-events: none;
}

.jobs-section-dark .container {
  position: relative;
  z-index: 2;
}

/* header */
.jobs-section-dark .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.jobs-section-dark .section-tag {
  display: inline-block;
  background: rgba(188, 143, 55, 0.15);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 28px;
  border-radius: 40px;
  letter-spacing: 1px;
  margin-bottom: 0px;
  border: 1px solid rgba(188, 143, 55, 0.3);
  text-transform: uppercase;
  backdrop-filter: blur(5px);
}

.jobs-section-dark .section-title {
  font-family: "Outfit", sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--pure);
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.jobs-section-dark .section-title span {
  color: var(--gold);
  position: relative;
  display: inline-block;
}

.jobs-section-dark .section-title span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--sun);
  opacity: 0.4;
  border-radius: 4px;
}

.jobs-section-dark .section-sub {
  color: var(--text-muted);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* tabs */
.jobs-section-dark .job-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.jobs-section-dark .tab-btn {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  border: 2px solid rgba(188, 143, 55, 0.3);
  color: var(--text-light);
  padding: 15px 45px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: 0.2s;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.5);
}

.jobs-section-dark .tab-btn i {
  font-size: 1.3rem;
  color: var(--gold);
}

.jobs-section-dark .tab-btn.active {
  background: var(--gold);
  color: var(--deep);
  border-color: var(--gold);
}

.jobs-section-dark .tab-btn.active i {
  color: var(--deep);
}

.jobs-section-dark .tab-btn:hover:not(.active) {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(188, 143, 55, 0.1);
}

/* tab content */
.jobs-section-dark .tab-content {
  display: none;
}

.jobs-section-dark .tab-content.active-content {
  display: block;
}

/* stats row - dark theme */
.jobs-section-dark .stats-row {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(5px);
  padding: 30px;
  border-radius: 60px;
  border: 1px solid rgba(188, 143, 55, 0.2);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.5);
}

.jobs-section-dark .stat-item {
  text-align: center;
}

.jobs-section-dark .stat-number {
  font-family: "Outfit", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--sun);
  line-height: 1;
  margin-bottom: 5px;
  text-shadow: 0 0 10px rgba(245, 207, 84, 0.3);
}

.jobs-section-dark .stat-label {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* job grid */
.jobs-section-dark .job-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 50px;
}

.jobs-section-dark .job-card {
  background: var(--dark-card);
  border-radius: 40px;
  padding: 30px;
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--dark-border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(5px);
}

.jobs-section-dark .job-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow:
    0 30px 45px -12px rgba(0, 0, 0, 0.7),
    0 0 15px rgba(188, 143, 55, 0.2);
}

/* colored top bar for job type using logo colors */
/* .jobs-section-dark .job-card.public::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--sapphire), var(--sky));
}

.jobs-section-dark .job-card.private::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), #dba534);
} */

.jobs-section-dark .job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.jobs-section-dark .job-type {
  background: rgba(188, 143, 55, 0.15);
  color: var(--gold);
  padding: 6px 18px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(188, 143, 55, 0.3);
}

.jobs-section-dark .job-type.public {
  background: rgba(0, 113, 175, 0.15);
  color: var(--sky);
  border-color: rgba(0, 113, 175, 0.3);
}

.jobs-section-dark .job-type.private {
  background: rgba(188, 143, 55, 0.15);
  color: var(--gold);
  border-color: rgba(188, 143, 55, 0.3);
}

.jobs-section-dark .job-date {
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.jobs-section-dark .job-date i {
  color: var(--gold);
}

.jobs-section-dark .job-title {
  font-family: "Outfit", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--pure);
  margin-bottom: 15px;
}

.jobs-section-dark .job-company {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 500;
}

.jobs-section-dark .job-company i {
  color: var(--gold);
}

.jobs-section-dark .job-details {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.jobs-section-dark .job-detail {
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(188, 143, 55, 0.2);
}

.jobs-section-dark .job-detail i {
  color: var(--gold);
}

.jobs-section-dark .job-description {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.jobs-section-dark .job-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.jobs-section-dark .job-salary {
  font-weight: 700;
  color: var(--sun);
  font-size: 1.1rem;
  text-shadow: 0 0 8px rgba(245, 207, 84, 0.3);
}

.jobs-section-dark .job-salary i {
  color: var(--gold);
  margin-right: 5px;
}

.jobs-section-dark .btn-apply {
  background: linear-gradient(135deg, var(--gold), #dba534);
  color: var(--deep);
  padding: 12px 30px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  box-shadow: 0 8px 15px -5px rgba(188, 143, 55, 0.4);
}

.jobs-section-dark .btn-apply:hover {
  background: var(--sun);
  transform: scale(1.05);
  box-shadow: 0 12px 20px -8px rgba(245, 207, 84, 0.5);
}

/* view all button */
.jobs-section-dark .view-all {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.jobs-section-dark .btn-view-all {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 15px 50px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(5px);
}

.jobs-section-dark .btn-view-all:hover {
  background: var(--gold);
  color: var(--deep);
  box-shadow: 0 0 20px rgba(188, 143, 55, 0.5);
}

/* brand colors - dark theme version */
.jobs-section-dark .brand-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 60px;
}

.jobs-section-dark .dot {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* responsive */
@media (max-width: 992px) {
  .jobs-section-dark .job-grid {
    grid-template-columns: 1fr;
  }
  .jobs-section-dark .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .jobs-section-dark {
    padding: 70px 0;
  }
  .jobs-section-dark .stats-row {
    gap: 25px;
    padding: 20px;
  }
  .jobs-section-dark .stat-number {
    font-size: 1.8rem;
  }
  .jobs-section-dark .job-card {
    padding: 25px;
  }
  .jobs-section-dark .job-title {
    font-size: 1.4rem;
  }
  .jobs-section-dark .tab-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

.footer-logo img {
  height: 80px;
  object-fit: contain;
}

/* ===== CTA SHAPES SECTION (moved from inline) ===== */
.cta-shapes-section {
  --deep: #0b2d4d;
  --gold: #bc8f37;
  --sapphire: #0071af;
  --sky: #108dc4;
  --sun: #f5cf54;
  --pure: #ffffff;

  position: relative;
  padding: 100px 0;
  background-color: var(--pure);
  font-family: "Inter", sans-serif;
  overflow: hidden;
  z-index: 1;
}

.cta-shapes-section .shape-circle-1 {
  position: absolute;
  top: -100px;
  right: -50px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: linear-gradient(135deg, #306597, #6fbbff);
  opacity: 0.03;
  z-index: 0;
  pointer-events: none;
}
.cta-shapes-section .shape-circle-2 {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold), #dba534);
  opacity: 0.04;
  z-index: 0;
  pointer-events: none;
}
.cta-shapes-section .shape-circle-3 {
  position: absolute;
  top: 50px;
  left: 15%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #0071af47;
  opacity: 0.03;
  z-index: 0;
  pointer-events: none;
}
.cta-shapes-section .shape-blob {
  position: absolute;
  bottom: 20%;
  right: 10%;
  width: 250px;
  height: 250px;
  background: #0071af47;
  opacity: 0.03;
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  transform: rotate(15deg);
  z-index: 0;
  pointer-events: none;
}
.cta-shapes-section .shape-square {
  position: absolute;
  top: 20%;
  right: 20%;
  width: 80px;
  height: 80px;
  background: var(--sun);
  opacity: 0.05;
  transform: rotate(45deg);
  z-index: 0;
  pointer-events: none;
}
.cta-shapes-section .shape-dots {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(var(--gold) 3px, transparent 3px);
  background-size: 25px 25px;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}
.cta-shapes-section .shape-triangle {
  position: absolute;
  top: 15%;
  left: 10%;
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 100px solid var(--deep);
  opacity: 0.03;
  transform: rotate(10deg);
  z-index: 0;
  pointer-events: none;
}
.cta-shapes-section .shape-line {
  position: absolute;
  top: 60%;
  right: 15%;
  width: 150px;
  height: 2px;
  background: var(--gold);
  opacity: 0.1;
  transform: rotate(-15deg);
  z-index: 0;
  pointer-events: none;
}
.cta-shapes-section .container {
  position: relative;
  z-index: 5;
}
.cta-shapes-section .cta-content {
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 60px 50px;
  border-radius: 80px;
  box-shadow: 0 30px 60px -20px rgba(11, 45, 77, 0.15);
  border: 1px solid rgba(188, 143, 55, 0.15);
}
.cta-shapes-section .cta-tag {
  display: inline-block;
  background: rgba(188, 143, 55, 0.08);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 28px;
  border-radius: 40px;
  letter-spacing: 1px;
  margin-bottom: 25px;
  border: 1px solid rgba(188, 143, 55, 0.2);
  text-transform: uppercase;
}
.cta-shapes-section .cta-title {
  font-family: "Outfit", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--deep);
  line-height: 1.2;
  margin-bottom: 25px;
}
.cta-shapes-section .cta-title span {
  color: var(--sapphire);
  position: relative;
  display: inline-block;
}
.cta-shapes-section .cta-title span::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 10px;
  background: var(--sun);
  opacity: 0.3;
  border-radius: 5px;
  z-index: -1;
}
.cta-shapes-section .cta-description {
  color: #4f6f8f;
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 35px;
}
.cta-shapes-section .stats-row {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 40px 0;
  flex-wrap: wrap;
}
.cta-shapes-section .stat-item {
  text-align: center;
}
.cta-shapes-section .stat-number {
  font-family: "Outfit", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--deep);
  line-height: 1;
  margin-bottom: 8px;
}
.cta-shapes-section .stat-label {
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
}
.cta-shapes-section .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0 20px;
  flex-wrap: wrap;
}
.cta-shapes-section .btn-primary-custom {
  background: linear-gradient(135deg, var(--sapphire), var(--sky));
  color: white;
  padding: 18px 45px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1.2rem;
  transition: 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: none;
  box-shadow: 0 15px 25px -8px rgba(0, 113, 175, 0.3);
}
.cta-shapes-section .btn-primary-custom:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 30px -8px rgba(0, 113, 175, 0.5);
}
.cta-shapes-section .btn-secondary-custom {
  background: transparent;
  color: var(--deep);
  padding: 18px 45px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1.2rem;
  transition: 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 2px solid var(--gold);
}
.cta-shapes-section .btn-secondary-custom:hover {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}
.cta-shapes-section .cta-note {
  color: #8fa3bc;
  font-size: 0.95rem;
  margin-top: 20px;
}
.cta-shapes-section .cta-note i {
  color: var(--gold);
  margin: 0 4px;
}
.cta-shapes-section .brand-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}
.cta-shapes-section .dot {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .cta-shapes-section {
    padding: 60px 0;
  }
  .cta-shapes-section .cta-content {
    padding: 40px 25px;
    border-radius: 40px;
  }
  .cta-shapes-section .cta-title {
    font-size: 2.5rem;
  }
  .cta-shapes-section .stats-row {
    gap: 30px;
  }
  .cta-shapes-section .stat-number {
    font-size: 2rem;
  }
  .cta-shapes-section .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-shapes-section .btn-primary-custom,
  .cta-shapes-section .btn-secondary-custom {
    width: 100%;
    justify-content: center;
  }
}

/* ===== FOOTER INLINE STYLES MOVED HERE ===== */
.footer-section {
  --deep: #0b2d4d;
  --gold: #bc8f37;
  --sapphire: #0071af;
  --sky: #108dc4;
  --sun: #f5cf54;
  --pure: #ffffff;
  --footer-text: #e2e9f2;
  --footer-text-muted: #b0c4de;
  --footer-border: rgba(255, 255, 255, 0.15);
  position: relative;
  color: var(--footer-text);
  font-family: Inter, sans-serif;
  overflow: hidden;
  padding: 80px 0 30px;
  border-top: 6px solid var(--gold);
}
.footer-section .footer-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://images.pexels.com/photos/267885/pexels-photo-267885.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop");
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.footer-section .footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(11, 45, 77, 0.95) 0%,
    rgba(11, 45, 77, 0.92) 30%,
    rgba(0, 113, 175, 0.85) 100%
  );
  z-index: 2;
  pointer-events: none;
}
.footer-section .footer-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}
.footer-section .shape-circle {
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(188, 143, 55, 0.15),
    transparent 70%
  );
  opacity: 0.4;
}
.footer-section .shape-dots {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background-image: radial-gradient(
    rgba(245, 207, 84, 0.2) 2px,
    transparent 2px
  );
  background-size: 30px 30px;
  opacity: 0.3;
}
.footer-section .shape-line {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.2;
  transform: rotate(45deg);
}
.footer-section .container {
  position: relative;
  z-index: 10;
}
.footer-section .footer-main {
  display: grid;
  grid-template-columns: 2fr 1.5fr 2fr ;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-section .footer-brand {
  max-width: 350px;
}
.footer-section .footer-logo {
  margin-bottom: 25px;
}
.footer-section .footer-description {
  color: var(--footer-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 25px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.footer-section .social-links {
  display: flex;
  gap: 12px;
}
.footer-section .social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  transition: 0.2s;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}
.footer-section .social-link:hover {
  transform: translateY(-5px);
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deep);
}
.footer-section .footer-column h4 {
  font-family: "Outfit", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--pure);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.footer-section .footer-column h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(188, 143, 55, 0.5);
}
.footer-section .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section .footer-links a {
  color: var(--footer-text-muted);
  text-decoration: none;
  transition: 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 15px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.footer-section .footer-links a i {
  color: var(--gold);
  font-size: 0.8rem;
  opacity: 0.7;
  transition: 0.2s;
}
.footer-section .footer-links a:hover {
  color: var(--gold);
  transform: translateX(5px);
}
.footer-section .contact-info {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}
.footer-section .contact-info li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  color: var(--footer-text-muted);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.footer-section .contact-info li i {
  width: 36px;
  height: 36px;
  background: rgba(188, 143, 55, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  border: 1px solid rgba(188, 143, 55, 0.3);
  backdrop-filter: blur(5px);
}
.footer-section .newsletter {
  margin-top: 20px;
}
.footer-section .newsletter p {
  color: var(--footer-text-muted);
  font-size: 0.9rem;
  margin-bottom: 15px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.footer-section .newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-section .newsletter-input {
  flex: 1;
  min-width: 180px;
  padding: 14px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--pure);
  font-size: 0.95rem;
  backdrop-filter: blur(5px);
}
.footer-section .newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.footer-section .newsletter-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.15);
}
.footer-section .newsletter-btn {
  background: var(--gold);
  color: var(--deep);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0 5px 15px rgba(188, 143, 55, 0.3);
}
.footer-section .newsletter-btn:hover {
  background: var(--sun);
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(245, 207, 84, 0.4);
}
.footer-section .footer-bottom {
  border-top: 1px solid var(--footer-border);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 10;
}
.footer-section .copyright {
  color: var(--footer-text-muted);
  font-size: 0.9rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.footer-section .copyright i {
  color: var(--gold);
  margin: 0 5px;
}
.footer-section .legal-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.footer-section .legal-links a {
  color: var(--footer-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.2s;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.footer-section .legal-links a:hover {
  color: var(--gold);
}
.footer-section .brand-colors {
  display: flex;
  gap: 10px;
  margin-top: 25px;
  padding: 15px 0;
  border-top: 1px solid var(--footer-border);
}
.footer-section .color-dot {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  transition: 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.footer-section .color-dot:hover {
  transform: scale(1.2);
  box-shadow: 0 0 15px currentColor;
}
.footer-section .payment-methods {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.footer-section .payment-methods i {
  font-size: 2rem;
  color: var(--footer-text-muted);
  transition: 0.2s;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.footer-section .payment-methods i:hover {
  color: var(--gold);
  transform: translateY(-3px);
}
@media (max-width: 992px) {
  .footer-section .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .footer-section {
    padding: 60px 0 20px;
  }
  .footer-section .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-section .footer-brand {
    max-width: 100%;
  }
  .footer-section .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-section .legal-links {
    justify-content: center;
  }
  .footer-section .brand-colors {
    justify-content: center;
  }
  .footer-section .payment-methods {
    justify-content: center;
  }
}

.achievement-icon img {
  height: 60px;
  object-fit: contain;
}

a {
  text-decoration: none !important;
}

.hero-magnificent {
  position: relative;
  min-height: 600px; /* IMPORTANT */
}

#hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* MUST HAVE */
  z-index: 1;
}
.hero-magnificent .container {
  position: relative;
  z-index: 2;
}
.fancybox__container {
  z-index: 999999 !important;
}

.fancybox__content {
  background: transparent !important;
  padding: 0 !important;
}

.fancybox__toolbar {
  opacity: 1 !important;
  visibility: visible !important;
}

.fancybox__button--close {
  color: #ffffff !important;
  background: rgba(0, 0, 0, 0.6) !important;
  border-radius: 50% !important;
}

.fancybox__button--close svg {
  stroke: white !important;
}

.fancybox__content iframe {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 16 / 9 !important;
}

.chat-orb {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--sun), var(--gold));
  color: var(--deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 15px 40px rgba(188, 143, 55, 0.5);
  z-index: 9999;
  transition: 0.3s ease;
}

.chat-orb:hover {
  transform: scale(1.08);
}
.chat-orb.attention {
  animation: pulseGlow 1.2s infinite;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(188, 143, 55, 0.7);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(188, 143, 55, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(188, 143, 55, 0);
  }
}

.chat-preview {
  position: fixed;
  right: 100px;
  bottom: 40px;
  background: white;
  color: var(--deep);
  padding: 12px 18px;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.4s ease;
  z-index: 9999;
  pointer-events: none;
}

.chat-preview.show {
  opacity: 1;
  transform: translateY(0);
}

.chat-preview.show {
  opacity: 1;
  transform: translateY(0);
}
.chat-orb.attention {
  animation: pulseGlow 1.2s infinite;
}

.chat-preview {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.4s ease;
}

.chat-preview.show {
  opacity: 1;
  transform: translateY(0);
}

.mymt-5 {
  margin-top: 2rem !important;
}

.mypt-3 {
  padding-top: 2rem !important;
}

.ac-tx {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.vv-breadcrumb {
  position: relative;
  background: url("../../assets/images/car.jpg") center/cover no-repeat;
  padding: 120px 0;
  overflow: hidden;
}

.vv-breadcrumb .vv-breadcrumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 45, 77, 0.85),
    rgba(0, 113, 175, 0.75)
  );
}

.vv-breadcrumb .vv-breadcrumb-container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--pure);
}

.vv-breadcrumb .vv-breadcrumb-heading {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--pure);
}

.vv-breadcrumb .vv-breadcrumb-list {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  border-radius: 30px;
  list-style: none;
  margin: 0;
}

.vv-breadcrumb .vv-breadcrumb-item a {
  text-decoration: none;
  color: var(--sun);
  font-weight: 600;
  transition: 0.3s ease;
}

.vv-breadcrumb .vv-breadcrumb-item a:hover {
  color: var(--gold);
}

.vv-breadcrumb .vv-breadcrumb-item.active {
  color: var(--pure);
  font-weight: 600;
}

.vv-breadcrumb .vv-breadcrumb-separator {
  color: var(--pure);
  opacity: 0.6;
}

.vv-core-dark {
  background: linear-gradient(135deg, var(--deep), #071f36);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.vv-core-dark .vv-core-dark-container {
  width: 85%;
  margin: auto;
}

.vv-core-dark .vv-core-dark-block {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}

.vv-core-dark .vv-core-dark-block.reverse {
  flex-direction: row-reverse;
}

.vv-core-dark .vv-core-dark-content {
  width: 80%;
  color: var(--pure);
}

.vv-core-dark .vv-core-dark-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--deep);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}

.vv-core-dark .vv-core-dark-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 5px;
  color: var(--sun);
}

.vv-core-dark .vv-core-dark-content p {
  line-height: 1.9;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.85);
}

.vv-core-dark .vv-core-dark-number {
  font-size: 140px;
  font-weight: 900;
  color: rgb(4 109 175);
  user-select: none;
}

@media (max-width: 991px) {
  .vv-core-dark .vv-core-dark-block {
    flex-direction: column !important;
    text-align: center;
    margin-bottom: 80px;
  }

  .vv-core-dark .vv-core-dark-content {
    width: 100%;
  }

  .vv-core-dark .vv-core-dark-number {
    font-size: 80px;
    margin-top: 20px;
  }

  .vv-core-dark .vv-core-dark-title {
    font-size: 26px;
  }
}

.vv-team {
  background: var(--soft-bg);
  padding: 80px 0;
}

.vv-team .vv-team-header {
  max-width: 700px;
  margin: auto;
  margin-bottom: 30px;
}

.vv-team .vv-team-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--deep);
  margin-bottom: 20px;
}

.vv-team .vv-team-subtitle {
  color: var(--sapphire);
  line-height: 1.8;
}

.vv-team .vv-team-card {
  background: var(--pure);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s ease;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: var(--card-shadow);
}

.vv-team .vv-team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(11, 45, 77, 0.15);
}

.vv-team .vv-team-image-wrapper {
  position: relative;
  overflow: hidden;
}

.vv-team .vv-team-image-wrapper img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top;
  transition: 0.4s ease;
}

.vv-team .vv-team-card:hover img {
  transform: scale(1.08);
}

.vv-team .vv-team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 45, 77, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.4s ease;
}

.vv-team .vv-team-card:hover .vv-team-overlay {
  opacity: 1;
}

.vv-team .vv-team-social a {
  color: var(--sun);
  font-size: 18px;
  margin: 0 10px;
  transition: 0.3s;
}

.vv-team .vv-team-social a:hover {
  color: var(--gold);
}

.vv-team .vv-team-content {
  padding: 25px;
}

.vv-team .vv-team-content h4 {
  color: var(--deep);
  margin-bottom: 8px;
  font-weight: 700;
}

.vv-team .vv-team-content span {
  color: var(--sapphire);
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 991px) {
  .vv-team {
    padding: 80px 0;
  }

  .vv-team .vv-team-title {
    font-size: 30px;
  }

  .vv-team .vv-team-image-wrapper img {
    height: 260px;
  }
}

@media (max-width: 576px) {
  .vv-team .vv-team-image-wrapper img {
    height: 220px;
  }
}

:root {
  --deep: #0b2d4d;
  --gold: #bc8f37;
  --sapphire: #0071af;
  --sky: #108dc4;
  --sun: #f5cf54;
  --pure: #ffffff;
  --soft-bg: #f5f9ff;
  --card-shadow: 0 20px 35px -10px rgba(11, 45, 77, 0.08);
}

/* Main section */
.admissions-view-section {
  width: 100%;
  background: var(--soft-bg);
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  padding: 3rem 0 0rem;
  position: relative;
}

/* View Header */
.view-header {
  margin-bottom: 2rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--sapphire);
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 1.5rem;
  transition: all 0.2s;
}

.back-link:hover {
  color: var(--deep);
  transform: translateX(-5px);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
}

.header-left {
  flex: 2;
  min-width: 300px;
}

.pill {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: rgba(188, 143, 55, 0.1);
  border: 1px solid rgba(188, 143, 55, 0.3);
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
}

.pulse-pill {
  animation: pillPulse 2s infinite;
}

@keyframes pillPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(188, 143, 55, 0.3);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(188, 143, 55, 0.1);
  }
}

h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: var(--deep);
}

h1 span {
  color: var(--sapphire);
  position: relative;
  display: inline-block;
}

h1 span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--gold), var(--sun));
  opacity: 0.2;
  z-index: -1;
}

.subhead {
  font-size: 1rem;
  color: #4a5568;
  max-width: 600px;
  line-height: 1.6;
}

.header-right {
  flex: 1;
  min-width: 250px;
}

.header-stats {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: var(--pure);
  border-radius: 40px;
  box-shadow: var(--card-shadow);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--deep);
}

.stat-chip i {
  color: var(--gold);
}

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.info-card {
  background: var(--pure);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 40px -12px rgba(11, 45, 77, 0.15);
}

.info-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.info-content {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-size: 0.8rem;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--deep);
  margin-top: 0.2rem;
}

/* View Grid */
.view-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 2.5rem;
  margin-bottom: 0rem;
}

/* Content Blocks */
.content-block {
  background: var(--pure);
  border-radius: 24px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--card-shadow);
}

.block-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--deep);
  margin: 0 0 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.title-decoration {
  width: 4px;
  height: 24px;
  background: linear-gradient(135deg, var(--gold), var(--sapphire));
  border-radius: 4px;
}

.program-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 1.5rem;
}

.specializations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.spec-tag {
  padding: 0.4rem 1.2rem;
  background: rgba(0, 113, 175, 0.05);
  border: 1px solid rgba(0, 113, 175, 0.1);
  border-radius: 30px;
  font-size: 0.85rem;
  color: var(--sapphire);
  font-weight: 500;
  transition: all 0.2s;
}

.spec-tag:hover {
  background: var(--sapphire);
  color: var(--pure);
  border-color: var(--sapphire);
  transform: translateY(-2px);
}

/* Exams Accordion */
.exams-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.exam-item {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}

.exam-item:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 25px -10px rgba(188, 143, 55, 0.2);
}

.exam-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  background: var(--soft-bg);
  cursor: pointer;
}

.exam-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  color: var(--deep);
}

.exam-title i {
  font-size: 1.1rem;
}

.exam-badge {
  padding: 0.3rem 1rem;
  background: rgba(0, 113, 175, 0.1);
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sapphire);
}

.exam-badge.premium {
  background: rgba(188, 143, 55, 0.1);
  color: var(--gold);
}

.exam-content {
  padding: 1.5rem;
  border-top: 1px solid #e2e8f0;
  background: var(--pure);
}

.exam-dates {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #4a5568;
}

.exam-dates i {
  margin-right: 0.4rem;
  color: var(--sapphire);
}

.exam-content p {
  margin: 0;
  color: #718096;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Sidebar */
.view-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-block {
  background: var(--pure);
  border-radius: 24px;
  padding: 1.8rem;
  box-shadow: var(--card-shadow);
}

.sidebar-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--deep);
  margin: 0 0 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.sidebar-title i {
  font-size: 1.1rem;
}

/* Colleges List */
.colleges-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.college-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.college-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.college-rank {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--gold), var(--sun));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--deep);
  font-size: 0.9rem;
}

.college-info h4 {
  margin: 0 0 0.2rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep);
}

.college-info p {
  margin: 0;
  font-size: 0.8rem;
  color: #718096;
}

.sidebar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sapphire);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.sidebar-link:hover {
  color: var(--deep);
  gap: 0.8rem;
}

/* Events List */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.event-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.event-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.event-date {
  min-width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--sapphire), var(--sky));
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--pure);
}

.event-day {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

.event-month {
  font-size: 0.6rem;
  text-transform: uppercase;
  opacity: 0.9;
}

.event-info h4 {
  margin: 0 0 0.2rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--deep);
}

.event-info p {
  margin: 0;
  font-size: 0.8rem;
  color: #718096;
}

/* CTA Card */
.cta-card {
  background: linear-gradient(135deg, var(--deep), var(--sapphire));
  border-radius: 24px;
  padding: 2rem;
  color: var(--pure);
  text-align: center;
}

.cta-card h4 {
  font-size: 1.3rem;
  margin: 0 0 0.5rem 0;
}

.cta-card p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.cta-button {
  background: var(--gold);
  color: var(--deep);
  border: none;
  padding: 1rem 2rem;
  border-radius: 40px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: all 0.3s;
}

.cta-button:hover {
  background: var(--sun);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px -8px var(--gold);
}

.cta-button i {
  transition: transform 0.2s;
}

.cta-button:hover i {
  transform: translateX(5px);
}

/* Similar Programs */
.similar-programs {
  margin-top: 3rem;
}

.similar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.similar-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--deep);
  margin: 0;
}

.view-all {
  color: var(--sapphire);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.view-all:hover {
  color: var(--deep);
}

.similar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.similar-card {
  background: var(--pure);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.similar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--sapphire));
  opacity: 0;
  transition: opacity 0.3s;
}

.similar-card:hover::before {
  opacity: 1;
}

.similar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 40px -15px rgba(11, 45, 77, 0.2);
}

.similar-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(188, 143, 55, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.similar-card.card-medical .similar-icon {
  color: var(--sapphire);
  background: rgba(0, 113, 175, 0.1);
}

.similar-card.card-management .similar-icon {
  color: var(--sun);
  background: rgba(245, 207, 84, 0.1);
}

.similar-card.card-law .similar-icon {
  color: var(--deep);
  background: rgba(11, 45, 77, 0.1);
}

.similar-card.card-abroad .similar-icon {
  color: var(--gold);
  background: rgba(188, 143, 55, 0.1);
}

.similar-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--deep);
  margin: 0 0 0.3rem 0;
}

.similar-card p {
  font-size: 0.85rem;
  color: #718096;
  margin: 0 0 1rem 0;
}

.similar-card a {
  color: var(--sapphire);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.similar-card a:hover {
  color: var(--gold);
  gap: 0.6rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .view-grid {
    grid-template-columns: 1fr;
  }

  .similar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.2rem;
  }

  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-stats {
    justify-content: flex-start;
  }

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .exam-dates {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .similar-grid {
    grid-template-columns: 1fr;
  }

  .content-block {
    padding: 1.5rem;
  }

  .exam-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

.colleges-list {
  max-height: 360px;
  overflow: hidden;
  transition: 0.4s ease;
}

.colleges-list.expanded {
  max-height: 600px;
  overflow-y: auto;
}

.extra-college {
  display: none;
}

.colleges-list.expanded .extra-college {
  display: flex;
}

/* Optional scrollbar styling */
.colleges-list.expanded::-webkit-scrollbar {
  width: 6px;
}

.colleges-list.expanded::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}
/* MODAL BACKDROP */
.cta-modal {
  position: fixed;
  inset: 0;
  background: rgba(11, 45, 77, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease;
  z-index: 9999;
}

.cta-modal.active {
  visibility: visible;
  opacity: 1;
}

/* MODAL BOX */
.cta-modal-content {
  background: var(--pure);
  width: 90%;
  max-width: 500px;
  padding: 40px;
  border-radius: 20px;
  position: relative;
  animation: fadeUp 0.3s ease;
}

@keyframes fadeUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cta-modal-content h3 {
  color: var(--deep);
  font-weight: 800;
  margin-bottom: 10px;
}

.cta-modal-content p {
  color: var(--sapphire);
  margin-bottom: 30px;
}

/* CLOSE BUTTON */
.cta-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 20px;
  cursor: pointer;
  color: var(--deep);
}

/* FORM */
.cta-input {
  position: relative;
  margin-bottom: 20px;
}

.cta-input i {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: var(--gold);
}

.cta-input input,
.cta-input select,
.cta-input textarea {
  width: 100%;
  padding: 12px 15px 12px 45px;
  border-radius: 8px;
  border: 1px solid #ddd;
  outline: none;
}

.cta-input textarea {
  padding-top: 12px;
}

.cta-submit-btn {
  width: 100%;
  padding: 12px;
  background: var(--deep);
  color: var(--pure);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.cta-submit-btn:hover {
  background: var(--sapphire);
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .cta-modal-content {
    padding: 25px;
  }
}

.vv-gallery {
  padding: 80px 0;
  background: var(--soft-bg);
}

.vv-gallery-header h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--deep);
  margin-bottom: 15px;
}

.vv-gallery-header p {
  color: var(--sapphire);
  margin-bottom: 50px;
}

.vv-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.vv-gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: 0.4s ease;
}

.vv-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 45, 77, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.4s ease;
}

.vv-gallery-overlay i {
  font-size: 30px;
  color: var(--sun);
}

.vv-gallery-item:hover img {
  transform: scale(1.1);
}

.vv-gallery-item:hover .vv-gallery-overlay {
  opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
  .vv-gallery-item img {
    height: 220px;
  }
}

.admissions-view .timeline-card {
  height: auto;
  /* margin: 30px; */
  margin-bottom: 30px;
}

.career-guidence-view {
  --deep: #0b2d4d;
  --gold: #bc8f37;
  --sapphire: #0071af;
  --sky: #108dc4;
  --sun: #f5cf54;
  --pure: #ffffff;
  --soft-bg: #f5f9ff;
  --card-shadow: 0 20px 35px -10px rgba(11, 45, 77, 0.08);
  --dark-bg: #0a243f;

  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  width: 100%;
  position: relative;
}

/* Sections */
.career-guidence-view .career-section {
  padding: 5rem 0;
  width: 100%;
}

.career-guidence-view .career-section-light {
  background: var(--soft-bg);
}

.career-guidence-view .career-section-dark {
  background: linear-gradient(135deg, var(--deep), #05283f);
  position: relative;
  overflow: hidden;
}

.career-guidence-view .career-section-dark::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(188, 143, 55, 0.1) 0%,
    transparent 70%
  );
  filter: blur(60px);
  animation: careerGlowPulse 8s ease-in-out infinite;
}

@keyframes careerGlowPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

/* Section Header - Light */
.career-guidence-view .section-header,
.career-guidence-view .section-header-light {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.career-guidence-view .header-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.5rem;
  background: rgba(188, 143, 55, 0.1);
  border: 1px solid rgba(188, 143, 55, 0.3);
  border-radius: 40px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.career-guidence-view .header-pill.light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--sun);
}

.career-guidence-view .header-pill i {
  font-size: 1rem;
}

.career-guidence-view .section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--deep);
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.career-guidence-view .section-title-light {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--pure);
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.career-guidence-view .title-highlight {
  color: var(--sapphire);
  position: relative;
  display: inline-block;
}

.career-guidence-view .section-subtitle {
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.career-guidence-view .section-subtitle-light {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Features Grid */
.career-guidence-view .features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.career-guidence-view .feature-card {
  background: var(--pure);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

.career-guidence-view .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 40px -12px rgba(11, 45, 77, 0.15);
}

.career-guidence-view .feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
}

.career-guidence-view .feature-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--deep);
  margin: 0 0 0.8rem 0;
}

.career-guidence-view .feature-card p {
  font-size: 0.9rem;
  color: #718096;
  line-height: 1.6;
  margin: 0;
}

/* Enquiry Button */
.career-guidence-view .enquiry-button-wrapper {
  text-align: center;
  margin-top: 2rem;
}

.career-guidence-view .enquiry-btn {
  background: linear-gradient(135deg, var(--gold), var(--sun));
  color: var(--deep);
  border: none;
  padding: 1.2rem 3rem;
  border-radius: 60px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s;
  box-shadow: 0 10px 25px -8px var(--gold);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.career-guidence-view .enquiry-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -8px var(--gold);
}

.career-guidence-view .enquiry-btn i:last-child {
  transition: transform 0.3s;
}

.career-guidence-view .enquiry-btn:hover i:last-child {
  transform: translateX(5px);
}

/* Career Paths Grid - Dark Section */
.career-guidence-view .career-paths-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 5;
  margin-top: 2rem;
}

.career-guidence-view .path-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s;
}

.career-guidence-view .path-card:hover {
  /* transform: translateY(-8px); */
  border-color: var(--gold);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.5);
}

.career-guidence-view .path-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.career-guidence-view .path-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.career-guidence-view .path-card:hover .path-image img {
  transform: scale(1.1);
}

.career-guidence-view .path-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--deep), transparent);
  opacity: 0.7;
}

.career-guidence-view .path-content {
  padding: 1rem;
  color: var(--pure);
}

.career-guidence-view .path-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.8rem 0;
}

.career-guidence-view .path-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}

.career-guidence-view .path-tags span {
  padding: 0.2rem 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.career-guidence-view .path-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 1rem 0;
}

.career-guidence-view .path-link {
  color: var(--sun);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.2s;
}

.career-guidence-view .path-link:hover {
  color: var(--gold);
  gap: 0.6rem;
}

/* Resources Grid */
.career-guidence-view .resources-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.career-guidence-view .resource-card {
  background: var(--pure);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--card-shadow);
  transition: all 0.3s;
}

.career-guidence-view .resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 40px -12px rgba(11, 45, 77, 0.15);
}

.career-guidence-view .resource-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(188, 143, 55, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
}

.career-guidence-view .resource-content {
  flex: 1;
}

.career-guidence-view .resource-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--deep);
  margin: 0 0 0.3rem 0;
}

.career-guidence-view .resource-content p {
  font-size: 0.85rem;
  color: #718096;
  margin: 0 0 0.8rem 0;
  line-height: 1.4;
}

.career-guidence-view .resource-link {
  color: var(--sapphire);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.2s;
}

.career-guidence-view .resource-link:hover {
  color: var(--gold);
  gap: 0.6rem;
}

/* Enquiry Popup */
.career-guidence-view .enquiry-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 45, 77, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.career-guidence-view .enquiry-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.career-guidence-view .enquiry-popup-container {
  background: rgba(0, 0, 0, 0);
  border-radius: 40px;
  width: 90%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4);
  animation: popupSlide 0.4s ease;
}

@keyframes popupSlide {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.career-guidence-view .enquiry-popup-header {
  background: linear-gradient(135deg, var(--deep), var(--sapphire));
  padding: 2rem;
  border-radius: 40px 40px 0 0;
  color: var(--pure);
  position: relative;
}

.career-guidence-view .popup-logo {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 30px;
}

.career-guidence-view .enquiry-popup-header h2 {
  font-size: 1.8rem;
  margin: 0 0 0.5rem 0;
}

.career-guidence-view .enquiry-popup-header p {
  opacity: 0.9;
  margin: 0;
  font-size: 0.95rem;
}

.career-guidence-view .popup-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  color: var(--pure);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.career-guidence-view .popup-close:hover {
  background: var(--gold);
  transform: rotate(90deg);
}

/* Enquiry Form */
.career-guidence-view .enquiry-form {
  padding: 2rem;
  background-color: white;
}

.career-guidence-view .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.career-guidence-view .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.career-guidence-view .form-group.full-width {
  grid-column: 1 / -1;
}

.career-guidence-view .form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--deep);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.career-guidence-view .form-group label i {
  color: var(--gold);
  font-size: 0.9rem;
}

.career-guidence-view .required {
  color: #e53e3e;
}

.career-guidence-view .form-group input,
.career-guidence-view .form-group select,
.career-guidence-view .form-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.2s;
  background: var(--soft-bg);
}

.career-guidence-view .form-group input:focus,
.career-guidence-view .form-group select:focus,
.career-guidence-view .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(188, 143, 55, 0.1);
}

.career-guidence-view .form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230b2d4d' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.career-guidence-view .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: #4a5568;
}

.career-guidence-view .checkbox-label input {
  width: auto;
  margin-top: 0.2rem;
  accent-color: var(--gold);
}

.career-guidence-view .form-actions {
  text-align: center;
  margin-top: 1.5rem;
}

.career-guidence-view .submit-enquiry-btn {
  background: linear-gradient(135deg, var(--gold), var(--sun));
  color: var(--deep);
  border: none;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s;
  box-shadow: 0 8px 20px -8px var(--gold);
}

.career-guidence-view .submit-enquiry-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px -8px var(--gold);
}

.career-guidence-view .submit-enquiry-btn i {
  transition: transform 0.3s;
}

.career-guidence-view .submit-enquiry-btn:hover i {
  transform: translateX(5px);
}

.career-guidence-view .popup-footer {
  padding: 1rem 2rem 2rem;
  text-align: center;

  font-size: 0.85rem;
  color: #718096;
  border-top: 1px solid #e2e8f0;
  background-color: rgb(255, 255, 255);
}

.career-guidence-view .popup-footer i {
  color: var(--sapphire);
  margin-right: 0.3rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .career-guidence-view .features-grid,
  .career-guidence-view .career-paths-grid,
  .career-guidence-view .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .career-guidence-view .container {
    padding: 0 1.2rem;
  }

  .career-guidence-view .career-section {
    padding: 3rem 0;
  }

  .career-guidence-view .form-row {
    grid-template-columns: 1fr;
  }

  .career-guidence-view .enquiry-popup-container {
    width: 95%;
  }

  .career-guidence-view .enquiry-popup-header h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .career-guidence-view .features-grid,
  .career-guidence-view .career-paths-grid,
  .career-guidence-view .resources-grid {
    grid-template-columns: 1fr;
  }

  .career-guidence-view .enquiry-btn {
    width: 100%;
    justify-content: center;
  }

  .career-guidence-view .enquiry-popup-header {
    padding: 1.5rem;
  }

  .career-guidence-view .enquiry-form {
    padding: 1.5rem;
  }

  .career-guidence-view .submit-enquiry-btn {
    width: 100%;
    justify-content: center;
  }
}

/* AOS animation fallback */
[data-aos] {
  opacity: 0;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
}

.career-guidence-view .tool-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 45, 77, 0.85);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.career-guidence-view .tool-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.career-guidence-view .tool-popup-container {
  background: transparent;
  border-radius: 30px;
  width: 90%;
  max-width: 550px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
  transform: translateY(30px);
  transition: all 0.4s ease;
  position: relative;
}

.career-guidence-view .tool-popup-overlay.active .tool-popup-container {
  transform: translateY(0);
}

.career-guidence-view .tool-popup-header {
  background: linear-gradient(135deg, var(--deep), var(--sapphire));
  padding: 1.5rem 2rem;
  border-radius: 30px 30px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
}

.career-guidence-view .popup-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.career-guidence-view .popup-title i {
  font-size: 1.8rem;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.15);
  padding: 0.8rem;
  border-radius: 16px;
}

.career-guidence-view .popup-title h2 {
  color: var(--pure);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.career-guidence-view .popup-close-btn {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  color: var(--pure);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.career-guidence-view .popup-close-btn:hover {
  background: var(--gold);
  transform: rotate(90deg);
}

.career-guidence-view .popup-content {
  padding: 2rem;
  background-color: white;
}

.career-guidence-view .popup-description {
  color: #4a5568;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* Form Styles */
.career-guidence-view .tool-enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.career-guidence-view .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.career-guidence-view .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.career-guidence-view .form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--deep);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.career-guidence-view .form-group label i {
  color: var(--gold);
  font-size: 0.9rem;
  width: 1.2rem;
}

.career-guidence-view .required {
  color: #e53e3e;
  margin-left: 0.2rem;
}

.career-guidence-view .form-group input,
.career-guidence-view .form-group select,
.career-guidence-view .form-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.2s;
  background: var(--soft-bg);
}

.career-guidence-view .form-group input:focus,
.career-guidence-view .form-group select:focus,
.career-guidence-view .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(188, 143, 55, 0.1);
}

.career-guidence-view .form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230b2d4d' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

/* Radio Group */
.career-guidence-view .radio-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 0.3rem 0;
}

.career-guidence-view .radio-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #4a5568;
  cursor: pointer;
}

.career-guidence-view .radio-label input[type="radio"] {
  width: auto;
  accent-color: var(--gold);
}

/* Submit Button */
.career-guidence-view .submit-popup-btn {
  background: linear-gradient(135deg, var(--gold), var(--sun));
  color: var(--deep);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  transition: all 0.3s;
  margin-top: 0.5rem;
  width: 100%;
}

.career-guidence-view .submit-popup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -8px var(--gold);
}

.career-guidence-view .submit-popup-btn i {
  transition: transform 0.3s;
}

.career-guidence-view .submit-popup-btn:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 640px) {
  .career-guidence-view .form-row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .career-guidence-view .tool-popup-container {
    width: 95%;
    max-height: 90vh;
  }

  .career-guidence-view .popup-title h2 {
    font-size: 1.2rem;
  }

  .career-guidence-view .popup-title i {
    font-size: 1.4rem;
    padding: 0.6rem;
  }

  .career-guidence-view .popup-content {
    padding: 1.5rem;
  }

  .career-guidence-view .radio-group {
    gap: 1rem;
  }
}
/* Make container scrollable */
.tool-popup-container {
  max-height: 90vh;
  overflow-y: auto;
}

/* Webkit browsers (Chrome, Edge, Safari) */
.tool-popup-container::-webkit-scrollbar {
  width: 5px;
}

.tool-popup-container::-webkit-scrollbar-track {
  background: transparent;
}

.tool-popup-container::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--sun));
  border-radius: 20px;
}

.tool-popup-container::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* Firefox */
.tool-popup-container {
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

/* Make container scrollable */
.enquiry-popup-container {
  max-height: 90vh;
  overflow-y: auto;
}

/* Webkit browsers (Chrome, Edge, Safari) */
.enquiry-popup-container::-webkit-scrollbar {
  width: 5px;
}

.enquiry-popup-container::-webkit-scrollbar-track {
  background: transparent;
}

.enquiry-popup-container::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--sun));
  border-radius: 20px;
}

.enquiry-popup-container::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* Firefox */
.enquiry-popup-container {
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

.career-guidence-view .tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

/* 3D Flip Card Effect */
.career-guidence-view .tool-card {
  background: transparent;
  height: 300px;
  perspective: 1500px;
  cursor: pointer;
}

.career-guidence-view .tool-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  border-radius: 24px;
}

.career-guidence-view .tool-card:hover .tool-card-inner {
  transform: rotateY(180deg);
}

.career-guidence-view .tool-card-front,
.career-guidence-view .tool-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 24px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--card-shadow);
}

.career-guidence-view .tool-card-front {
  background: var(--pure);
  border: 1px solid rgba(188, 143, 55, 0.1);
}

.career-guidence-view .tool-card-back {
  background: linear-gradient(135deg, var(--deep), var(--sapphire));
  color: var(--pure);
  transform: rotateY(180deg);
  justify-content: center;
}

.career-guidence-view .tool-icon-wrapper {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(
    135deg,
    rgba(188, 143, 55, 0.1),
    rgba(245, 207, 84, 0.1)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--gold);
  transition: all 0.3s;
}

.career-guidence-view .tool-card:hover .tool-icon-wrapper {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--gold), var(--sun));
  color: var(--deep);
}

.career-guidence-view .tool-card-front h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--deep);
  margin: 0 0 0.5rem 0;
}

.career-guidence-view .tool-card-front p {
  font-size: 0.9rem;
  color: #718096;
  line-height: 1.5;
  margin: 0 0 1.2rem 0;
  flex-grow: 1;
}

.career-guidence-view .tool-meta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: auto;
}

.career-guidence-view .tool-meta i {
  color: var(--gold);
  margin-right: 0.2rem;
}

/* Back content */
.career-guidence-view .back-content {
  text-align: left;
}

.career-guidence-view .back-content h4 {
  font-size: 1rem;
  margin: 0 0 1rem 0;
  color: var(--sun);
  font-weight: 600;
}

.career-guidence-view .back-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.career-guidence-view .back-content ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
  color: rgba(255, 255, 255, 0.9);
}

.career-guidence-view .back-content ul li i {
  color: var(--sun);
  font-size: 0.8rem;
}

.career-guidence-view .tool-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sun);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  transition: all 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.career-guidence-view .tool-link:hover {
  background: var(--gold);
  color: var(--deep);
  gap: 0.8rem;
}

/* Resource Library */
.career-guidence-view .resource-library {
  background: var(--pure);
  border-radius: 30px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(188, 143, 55, 0.1);
}

.career-guidence-view .library-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.career-guidence-view .library-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--deep);
  margin: 0;
}

.career-guidence-view .library-header p {
  color: #718096;
  margin: 0;
}

.career-guidence-view .library-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.career-guidence-view .library-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--soft-bg);
  border-radius: 16px;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.career-guidence-view .library-item:hover {
  border-color: var(--gold);
  transform: translateX(5px);
  background: linear-gradient(90deg, var(--soft-bg), rgba(188, 143, 55, 0.05));
}

.career-guidence-view .item-icon {
  width: 3rem;
  height: 3rem;
  background: var(--pure);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.career-guidence-view .item-content {
  flex: 1;
}

.career-guidence-view .item-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep);
  margin: 0 0 0.2rem 0;
}

.career-guidence-view .item-content p {
  font-size: 0.8rem;
  color: #718096;
  margin: 0 0 0.3rem 0;
}

.career-guidence-view .item-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.7rem;
  color: #94a3b8;
}

.career-guidence-view .item-meta i {
  margin-right: 0.2rem;
  color: var(--sapphire);
}

.career-guidence-view .item-download {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--gold), var(--sun));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep);
  text-decoration: none;
  transition: all 0.2s;
}

.career-guidence-view .item-download:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(188, 143, 55, 0.4);
}

.career-guidence-view .library-footer {
  text-align: right;
  margin-top: 1.5rem;
}

.career-guidence-view .view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sapphire);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
}

.career-guidence-view .view-all-link:hover {
  color: var(--gold);
  gap: 0.8rem;
}

/* Quick Tools Bar */
.career-guidence-view .quick-tools {
  background: linear-gradient(
    135deg,
    rgba(188, 143, 55, 0.05),
    rgba(0, 113, 175, 0.05)
  );
  border-radius: 30px;
  padding: 1.5rem 2rem;
  margin-top: 2rem;
  border: 1px solid rgba(188, 143, 55, 0.1);
}

.career-guidence-view .quick-tools-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.career-guidence-view .quick-tools-header h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--deep);
  margin: 0;
}

.career-guidence-view .quick-tools-header span {
  font-size: 0.8rem;
  padding: 0.2rem 0.8rem;
  background: rgba(188, 143, 55, 0.1);
  border-radius: 30px;
  color: var(--gold);
}

.career-guidence-view .quick-tools-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.career-guidence-view .quick-tool-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.5rem;
  background: var(--pure);
  border-radius: 16px;
  text-decoration: none;
  color: var(--deep);
  transition: all 0.2s;
  border: 1px solid transparent;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.career-guidence-view .quick-tool-item:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px -8px rgba(188, 143, 55, 0.3);
}

.career-guidence-view .quick-tool-item i {
  font-size: 1.5rem;
  color: var(--gold);
  transition: all 0.2s;
}

.career-guidence-view .quick-tool-item:hover i {
  transform: scale(1.2);
  color: var(--sapphire);
}

.career-guidence-view .quick-tool-item span {
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .career-guidence-view .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .career-guidence-view .quick-tools-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .career-guidence-view .library-grid {
    grid-template-columns: 1fr;
  }

  .career-guidence-view .library-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .career-guidence-view .tools-grid {
    grid-template-columns: 1fr;
  }

  .career-guidence-view .quick-tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .career-guidence-view .quick-tools {
    padding: 1.2rem;
  }

  .career-guidence-view .tool-card {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .career-guidence-view .library-item {
    flex-wrap: wrap;
  }

  .career-guidence-view .item-download {
    margin-left: auto;
  }

  .career-guidence-view .item-meta {
    flex-direction: column;
    gap: 0.2rem;
  }
}

.job-view-page {
  --deep: #0b2d4d;
  --gold: #bc8f37;
  --sapphire: #0071af;
  --sky: #108dc4;
  --sun: #f5cf54;
  --pure: #ffffff;
  --soft-bg: #f5f9ff;
  --card-shadow: 0 20px 35px -10px rgba(11, 45, 77, 0.08);

  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  width: 100%;
  background: var(--soft-bg);
  padding: 3rem 0 5rem;
}

/* Header Styles */
.job-view-page .job-header {
  margin-bottom: 3rem;
}

.job-view-page .header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.job-view-page .back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--sapphire);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
}

.job-view-page .back-link:hover {
  color: var(--deep);
  transform: translateX(-5px);
}

.job-view-page .header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: linear-gradient(135deg, var(--deep), var(--sapphire));
  color: var(--pure);
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 500;
}

.job-view-page .header-badge i {
  color: var(--gold);
}

.job-view-page .header-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.job-view-page .header-left {
  flex: 2;
  min-width: 300px;
}

.job-view-page .page-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--deep);
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

.job-view-page .title-highlight {
  color: var(--sapphire);
  position: relative;
  display: inline-block;
}

.job-view-page .title-highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--gold), var(--sun));
  opacity: 0.2;
  z-index: -1;
}

.job-view-page .page-subtitle {
  font-size: 1rem;
  color: #4a5568;
  max-width: 600px;
  line-height: 1.6;
}

.job-view-page .header-right {
  flex: 1;
  min-width: 250px;
}

.job-view-page .job-stats {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.job-view-page .stat-item {
  text-align: center;
}

.job-view-page .stat-value {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.job-view-page .stat-label {
  font-size: 0.8rem;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Filter Bar */
.job-view-page .filter-bar {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.job-view-page .search-box {
  /* flex: 3; */
  min-width: 280px;
  min-width: 700px;
  display: flex;
  align-items: center;
  background: var(--pure);
  border-radius: 50px;
  padding-left: 30px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(188, 143, 55, 0.1);
  position: relative;
}

.job-view-page .search-box i {
  color: var(--gold);
  font-size: 1rem;
}

.job-view-page .search-box input {
  flex: 1;
  border: none;
  padding: 0.8rem 0.8rem;
  font-size: 0.95rem;
  background: transparent;
  outline: none;
}

.job-view-page .clear-search {
  background: none;
  border: none;
  color: #a0aec0;
  cursor: pointer;
  padding: 0.5rem 1rem;
  display: none;
}

.job-view-page .search-box input:not(:placeholder-shown) + .clear-search {
  display: block;
}

.job-view-page .filter-actions {
  flex: 1;
  min-width: 280px;
  display: flex;
  gap: 0.8rem;
}

.job-view-page .filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: var(--pure);
  border: 1px solid rgba(188, 143, 55, 0.2);
  border-radius: 40px;
  color: var(--deep);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.job-view-page .filter-btn:hover {
  border-color: var(--gold);
  background: rgba(188, 143, 55, 0.05);
}

.job-view-page .filter-btn i:last-child {
  transition: transform 0.3s;
}

.job-view-page .filter-btn.active i:last-child {
  transform: rotate(180deg);
}

.job-view-page .sort-select {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(188, 143, 55, 0.2);
  border-radius: 40px;
  background: var(--pure);
  color: var(--deep);
  font-weight: 500;
  cursor: pointer;
  outline: none;
}

/* Advanced Filters Panel */
.job-view-page .advanced-filters-panel {
  background: var(--pure);
  border-radius: 24px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(188, 143, 55, 0.1);
  display: none;
}

.job-view-page .advanced-filters-panel.show {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.job-view-page .filters-grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.job-view-page .filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.job-view-page .filter-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--deep);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.job-view-page .filter-group label i {
  color: var(--gold);
}

.job-view-page .filter-group select,
.job-view-page .filter-group input {
  padding: 0.7rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: var(--soft-bg);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s;
}

.job-view-page .filter-group select:focus,
.job-view-page .filter-group input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(188, 143, 55, 0.1);
}

.job-view-page .salary-range .range-inputs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.job-view-page .salary-range .range-inputs input {
  flex: 1;
  width: auto;
}

.job-view-page .salary-range .range-inputs span {
  color: #718096;
}

.job-view-page .filters-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid #e2e8f0;
  padding-top: 1.5rem;
}

.job-view-page .apply-filters-btn {
  background: linear-gradient(135deg, var(--gold), var(--sun));
  color: var(--deep);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.job-view-page .apply-filters-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -8px var(--gold);
}

.job-view-page .reset-filters-btn {
  background: transparent;
  border: 1px solid #e2e8f0;
  color: #718096;
  padding: 0.8rem 2rem;
  border-radius: 40px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.job-view-page .reset-filters-btn:hover {
  border-color: var(--gold);
  color: var(--deep);
  background: rgba(188, 143, 55, 0.05);
}

.job-view-page .active-filters-count {
  margin-left: auto;
  font-size: 0.85rem;
  color: #718096;
  background: #edf2f7;
  padding: 0.3rem 1rem;
  border-radius: 30px;
}

/* Category Tabs */
.job-view-page .category-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.job-view-page .tab-btn {
  padding: 0.6rem 1.5rem;
  background: var(--pure);
  border: 1px solid rgba(188, 143, 55, 0.2);
  border-radius: 40px;
  color: var(--deep);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.job-view-page .tab-btn:hover {
  border-color: var(--gold);
  background: rgba(188, 143, 55, 0.05);
}

.job-view-page .tab-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--sun));
  border-color: var(--gold);
  color: var(--deep);
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(188, 143, 55, 0.3);
}

/* No Results Message */
.job-view-page .no-results {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--pure);
  border-radius: 30px;
  margin-bottom: 2rem;
  display: none;
}

.job-view-page .no-results.show {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.job-view-page .no-results i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.job-view-page .no-results h3 {
  font-size: 1.5rem;
  color: var(--deep);
  margin: 0 0 0.5rem 0;
}

.job-view-page .no-results p {
  color: #718096;
  margin-bottom: 1.5rem;
}

/* Jobs Grid */
.job-view-page .jobs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* Job Card */
.job-view-page .job-card {
  background: var(--pure);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  transition: all 0.3s;
  border: 1px solid transparent;
  animation: cardFadeIn 0.5s ease;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.job-view-page .job-card:hover {
  transform: translateY(-5px);
  border-color: rgba(188, 143, 55, 0.3);
  box-shadow: 0 25px 40px -15px rgba(11, 45, 77, 0.15);
}

.job-view-page .job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.job-view-page .job-department {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--sapphire);
  font-weight: 500;
  font-size: 0.95rem;
}

.job-view-page .job-department i {
  color: var(--gold);
}

.job-view-page .job-type-badge {
  padding: 0.3rem 1rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.job-view-page .job-type-badge.govt,
.job-view-page .job-type-badge.central {
  background: rgba(0, 113, 175, 0.1);
  color: var(--sapphire);
  border: 1px solid rgba(0, 113, 175, 0.2);
}

.job-view-page .job-type-badge.banking {
  background: rgba(188, 143, 55, 0.1);
  color: var(--gold);
  border: 1px solid rgba(188, 143, 55, 0.2);
}

.job-view-page .job-type-badge.railway {
  background: rgba(245, 207, 84, 0.1);
  color: #b45309;
  border: 1px solid rgba(245, 207, 84, 0.3);
}

.job-view-page .job-type-badge.state {
  background: rgba(16, 141, 196, 0.1);
  color: var(--sky);
  border: 1px solid rgba(16, 141, 196, 0.2);
}

.job-view-page .job-type-badge.defence {
  background: rgba(188, 143, 55, 0.1);
  color: #b45309;
  border: 1px solid rgba(188, 143, 55, 0.2);
}

.job-view-page .job-type-badge.teaching {
  background: rgba(0, 113, 175, 0.1);
  color: var(--sapphire);
  border: 1px solid rgba(0, 113, 175, 0.2);
}

.job-view-page .job-type-badge.psu {
  background: rgba(11, 45, 77, 0.1);
  color: var(--deep);
  border: 1px solid rgba(11, 45, 77, 0.2);
}

.job-view-page .job-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--deep);
  margin: 0 0 0.8rem 0;
}

.job-view-page .job-tags {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.job-view-page .job-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: #4a5568;
  background: var(--soft-bg);
  padding: 0.3rem 0.8rem;
  border-radius: 30px;
}

.job-view-page .job-tag i {
  color: var(--gold);
  font-size: 0.8rem;
}

.job-view-page .job-details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem 0;
  border-top: 1px dashed #e2e8f0;
  border-bottom: 1px dashed #e2e8f0;
}

.job-view-page .detail-item {
  display: flex;
  flex-direction: column;
}

.job-view-page .detail-label {
  font-size: 0.7rem;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 0.2rem;
}

.job-view-page .detail-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep);
}

.job-view-page .job-description {
  margin-bottom: 1rem;
}

.job-view-page .job-description p {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.5;
  margin: 0;
}

.job-view-page .job-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.job-view-page .job-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: #718096;
}

.job-view-page .job-meta i {
  color: var(--gold);
}

.job-view-page .apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 1.8rem;
  background: linear-gradient(135deg, var(--gold), var(--sun));
  color: var(--deep);
  text-decoration: none;
  border-radius: 40px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.job-view-page .apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -8px var(--gold);
}

.job-view-page .apply-btn i {
  font-size: 0.9rem;
  transition: transform 0.3s;
}

.job-view-page .apply-btn:hover i {
  transform: translateX(3px);
}

/* Pagination */
.job-view-page .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 3rem 0;
}

.job-view-page .page-btn {
  min-width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pure);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  color: var(--deep);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.job-view-page .page-btn:hover {
  border-color: var(--gold);
  background: rgba(188, 143, 55, 0.05);
}

.job-view-page .page-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--sun));
  border-color: var(--gold);
  color: var(--deep);
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(188, 143, 55, 0.3);
}

.job-view-page .page-btn.prev,
.job-view-page .page-btn.next {
  background: var(--pure);
}

.job-view-page .page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.job-view-page .page-numbers {
  display: flex;
  gap: 0.3rem;
}

/* Job Tips */
.job-view-page .job-tips {
  background: linear-gradient(
    135deg,
    rgba(188, 143, 55, 0.05),
    rgba(0, 113, 175, 0.05)
  );
  border-radius: 30px;
  padding: 2rem;
  margin-top: 2rem;
  border: 1px solid rgba(188, 143, 55, 0.1);
}

.job-view-page .tips-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.job-view-page .tips-header i {
  font-size: 1.5rem;
  color: var(--gold);
}

.job-view-page .tips-header h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--deep);
  margin: 0;
}

.job-view-page .tips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.job-view-page .tip-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.job-view-page .tip-number {
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, var(--gold), var(--sun));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--deep);
  flex-shrink: 0;
}

.job-view-page .tip-item p {
  font-size: 0.9rem;
  color: #4a5568;
  margin: 0;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
  .job-view-page .job-details-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .job-view-page .tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .job-view-page .filters-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .job-view-page .container {
    padding: 0 1.2rem;
  }

  .job-view-page .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .job-view-page .filter-actions {
    flex-direction: column;
  }

  .job-view-page .job-stats {
    justify-content: flex-start;
  }

  .job-view-page .category-tabs {
    overflow-x: auto;
    padding-bottom: 0.5rem;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .job-view-page .tab-btn {
    white-space: nowrap;
  }

  .job-view-page .filters-grid {
    grid-template-columns: 1fr;
  }

  .job-view-page .filters-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .job-view-page .active-filters-count {
    margin-left: 0;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .job-view-page .job-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .job-view-page .job-details-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .job-view-page .job-card-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .job-view-page .apply-btn {
    width: 100%;
    justify-content: center;
  }

  .job-view-page .tips-grid {
    grid-template-columns: 1fr;
  }

  .job-view-page .pagination {
    flex-wrap: wrap;
  }

  .job-view-page .page-numbers {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .job-view-page .header-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .job-view-page .page-title {
    font-size: 1.8rem;
  }

  

  .job-view-page .stat-item {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .job-view-page .stat-value {
    font-size: 1.1rem;
  }
}

/* AOS Animation Fallback */
[data-aos] {
  opacity: 0;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
}

/* Contact Us View Page - Vidhya Vahini */
.contact-us-view {
  --deep: #0b2d4d;
  --gold: #bc8f37;
  --sapphire: #0071af;
  --sky: #108dc4;
  --sun: #f5cf54;
  --pure: #ffffff;
  --soft-bg: #f5f9ff;
  --card-shadow: 0 20px 35px -10px rgba(11, 45, 77, 0.08);

  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  width: 100%;
  background: var(--soft-bg);
  padding: 80px 0 60px;
}

/* Header Styles */
.contact-us-view .contact-header {
  margin-bottom: 3rem;
}

.contact-us-view .header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-us-view .back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--sapphire);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
}

.contact-us-view .back-link:hover {
  color: var(--deep);
  transform: translateX(-5px);
}

.contact-us-view .header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: linear-gradient(135deg, var(--gold), var(--sun));
  color: var(--deep);
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 500;
}

.contact-us-view .header-badge i {
  color: var(--deep);
}

.contact-us-view .header-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-us-view .header-left {
  flex: 2;
  min-width: 300px;
}

.contact-us-view .page-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--deep);
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

.contact-us-view .title-highlight {
  color: var(--sapphire);
  position: relative;
  display: inline-block;
}

.contact-us-view .title-highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--gold), var(--sun));
  opacity: 0.2;
  z-index: -1;
}

.contact-us-view .page-subtitle {
  font-size: 1rem;
  color: #4a5568;
  max-width: 600px;
  line-height: 1.6;
}

.contact-us-view .header-right {
  flex: 1;
  min-width: 250px;
}

.contact-us-view .contact-stats {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.contact-us-view .stat-item {
  text-align: center;
}

.contact-us-view .stat-value {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.contact-us-view .stat-label {
  font-size: 0.8rem;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Quick Contact Cards */
.contact-us-view .quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-us-view .quick-contact-card {
  background: var(--pure);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: all 0.3s;
  border: 1px solid transparent;
}

.contact-us-view .quick-contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(188, 143, 55, 0.3);
  box-shadow: 0 25px 40px -15px rgba(11, 45, 77, 0.15);
}

.contact-us-view .card-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.8rem;
}

.contact-us-view .quick-contact-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--deep);
  margin: 0 0 0.8rem 0;
}

.contact-us-view .contact-detail {
  font-size: 0.95rem;
  color: #4a5568;
  margin: 0.2rem 0;
  line-height: 1.5;
}

.contact-us-view .contact-timing {
  font-size: 0.8rem;
  color: #718096;
  margin: 0.8rem 0 1.2rem;
}

.contact-us-view .contact-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  background: linear-gradient(135deg, var(--soft-bg), var(--pure));
  border: 1px solid rgba(188, 143, 55, 0.2);
  border-radius: 30px;
  color: var(--deep);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.contact-us-view .contact-action:hover {
  background: linear-gradient(135deg, var(--gold), var(--sun));
  border-color: transparent;
  transform: translateY(-2px);
}

/* Main Contact Grid */
.contact-us-view .contact-main-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

/* Contact Form */
.contact-us-view .contact-form-wrapper {
  background: var(--pure);
  border-radius: 30px;
  padding: 2.5rem;
  box-shadow: var(--card-shadow);
}

.contact-us-view .form-header {
  margin-bottom: 2rem;
}

.contact-us-view .form-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--deep);
  margin: 0 0 0.3rem 0;
}

.contact-us-view .form-header p {
  color: #718096;
  margin: 0;
}

.contact-us-view .contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-us-view .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-us-view .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-us-view .form-group.full-width {
  grid-column: 1 / -1;
}

.contact-us-view .form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--deep);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.contact-us-view .form-group label i {
  color: var(--gold);
}

.contact-us-view .required {
  color: #e53e3e;
  margin-left: 0.2rem;
}

.contact-us-view .form-group input,
.contact-us-view .form-group select,
.contact-us-view .form-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.2s;
  background: var(--soft-bg);
}

.contact-us-view .form-group input:hover,
.contact-us-view .form-group select:hover,
.contact-us-view .form-group textarea:hover {
  border-color: var(--sapphire);
}

.contact-us-view .form-group input:focus,
.contact-us-view .form-group select:focus,
.contact-us-view .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(188, 143, 55, 0.1);
}

.contact-us-view .form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230b2d4d' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

/* File Upload */
.contact-us-view .file-upload-area {
  border: 2px dashed #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  background: var(--soft-bg);
  cursor: pointer;
  transition: all 0.2s;
}

.contact-us-view .file-upload-area:hover {
  border-color: var(--gold);
  background: rgba(188, 143, 55, 0.05);
}

.contact-us-view .file-upload-area input {
  display: none;
}

.contact-us-view .file-upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.contact-us-view .file-upload-placeholder i {
  font-size: 2rem;
  color: var(--gold);
}

.contact-us-view .file-upload-placeholder .browse-text {
  color: var(--sapphire);
  font-weight: 600;
  cursor: pointer;
}

.contact-us-view .file-hint {
  font-size: 0.75rem;
  color: #94a3b8;
}

/* Checkbox */
.contact-us-view .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: #4a5568;
}

.contact-us-view .checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 0.2rem;
  accent-color: var(--gold);
}

.contact-us-view .checkbox-label a {
  color: var(--sapphire);
  text-decoration: none;
  font-weight: 500;
}

.contact-us-view .checkbox-label a:hover {
  color: var(--gold);
  text-decoration: underline;
}

/* Form Actions */
.contact-us-view .form-actions {
  margin-top: 1rem;
  text-align: center;
}

.contact-us-view .submit-btn {
  background: linear-gradient(135deg, var(--gold), var(--sun));
  color: var(--deep);
  border: none;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s;
  box-shadow: 0 8px 20px -8px var(--gold);
}

.contact-us-view .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px -8px var(--gold);
}

.contact-us-view .submit-btn i {
  transition: transform 0.3s;
}

.contact-us-view .submit-btn:hover i {
  transform: translateX(5px);
}

.contact-us-view .form-note {
  font-size: 0.8rem;
  color: #718096;
  margin: 1rem 0 0;
}

.contact-us-view .form-note i {
  color: var(--gold);
  margin-right: 0.3rem;
}

/* Sidebar */
.contact-us-view .contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-us-view .sidebar-card {
  background: var(--pure);
  border-radius: 24px;
  padding: 1.8rem;
  box-shadow: var(--card-shadow);
}

.contact-us-view .card-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.contact-us-view .card-header i {
  font-size: 1.2rem;
  color: var(--gold);
}

.contact-us-view .card-header h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--deep);
  margin: 0;
}

/* Map Card */
.contact-us-view .map-container {
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.contact-us-view .map-placeholder {
  width: 100%;
  height: 100%;
}

.contact-us-view .map-placeholder iframe {
  width: 100%;
  height: 100%;
}

.contact-us-view .map-address p {
  font-size: 0.9rem;
  color: #4a5568;
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-us-view .map-address i {
  color: var(--gold);
}

.contact-us-view .map-direction-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  background: linear-gradient(135deg, var(--soft-bg), var(--pure));
  border: 1px solid rgba(188, 143, 55, 0.2);
  border-radius: 30px;
  color: var(--deep);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
  width: 100%;
  justify-content: center;
}

.contact-us-view .map-direction-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--sun));
  border-color: transparent;
}

/* Social Links */
.contact-us-view .social-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.contact-us-view .social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.8rem;
  border-radius: 16px;
  color: var(--pure);
  text-decoration: none;
  transition: all 0.2s;
  font-size: 0.75rem;
}

.contact-us-view .social-link i {
  font-size: 1.2rem;
}

.contact-us-view .social-link:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
}

.contact-us-view .social-link.facebook {
  background: #1877f2;
}

.contact-us-view .social-link.twitter {
  background: #1da1f2;
}

.contact-us-view .social-link.instagram {
  background: #e4405f;
}

.contact-us-view .social-link.linkedin {
  background: #0077b5;
}

.contact-us-view .social-link.youtube {
  background: #ff0000;
}

.contact-us-view .social-link.telegram {
  background: #0088cc;
}

/* Hours Card */
.contact-us-view .hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.contact-us-view .hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed #e2e8f0;
}

.contact-us-view .hours-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-us-view .hours-item span:first-child {
  font-weight: 500;
  color: var(--deep);
}

.contact-us-view .hours-item span:last-child {
  color: #4a5568;
}

.contact-us-view .hours-item .closed {
  color: #e53e3e;
  font-weight: 600;
}

.contact-us-view .emergency-contact {
  background: rgba(188, 143, 55, 0.1);
  padding: 0.8rem;
  border-radius: 12px;
  margin-top: 1rem;
}

.contact-us-view .emergency-contact p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--deep);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-us-view .emergency-contact i {
  color: var(--gold);
}

/* FAQ Card */
.contact-us-view .faq-card {
  background: linear-gradient(135deg, var(--deep), var(--sapphire));
  color: var(--pure);
  position: relative;
  overflow: hidden;
}

.contact-us-view .faq-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(188, 143, 55, 0.2) 0%,
    transparent 60%
  );
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.contact-us-view .faq-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.contact-us-view .faq-card h4 {
  font-size: 1.2rem;
  margin: 0 0 0.5rem 0;
  position: relative;
  z-index: 2;
}

.contact-us-view .faq-card p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0 0 1.2rem 0;
  position: relative;
  z-index: 2;
}

.contact-us-view .faq-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--pure);
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  transition: all 0.2s;
  position: relative;
  z-index: 2;
}

.contact-us-view .faq-link:hover {
  background: var(--gold);
  color: var(--deep);
  gap: 0.8rem;
}

/* Team Section */
.contact-us-view .team-section {
  margin: 4rem 0;
}

.contact-us-view .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-us-view .header-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  background: rgba(188, 143, 55, 0.1);
  border: 1px solid rgba(188, 143, 55, 0.3);
  border-radius: 40px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-us-view .team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.contact-us-view .team-card {
  background: var(--pure);
  border-radius: 24px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: all 0.3s;
}

.contact-us-view .team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 40px -15px rgba(11, 45, 77, 0.15);
}

.contact-us-view .team-image {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
}

.contact-us-view .team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-us-view .team-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--deep);
  margin: 0 0 0.2rem 0;
}

.contact-us-view .team-role {
  font-size: 0.85rem;
  color: #718096;
  margin: 0 0 1rem 0;
}

.contact-us-view .team-contact {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}

.contact-us-view .team-contact a {
  width: 2rem;
  height: 2rem;
  background: var(--soft-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep);
  text-decoration: none;
  transition: all 0.2s;
}

.contact-us-view .team-contact a:hover {
  background: var(--gold);
  color: var(--pure);
}

/* FAQ Section */
.contact-us-view .faq-section {
  margin-top: 3rem;
}

.contact-us-view .faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.contact-us-view .faq-item {
  background: var(--pure);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  cursor: pointer;
  transition: all 0.3s;
}

.contact-us-view .faq-item:hover {
  border-color: rgba(188, 143, 55, 0.3);
}

.contact-us-view .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.contact-us-view .faq-question h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep);
  margin: 0;
}

.contact-us-view .faq-question i {
  color: var(--gold);
  transition: transform 0.3s;
}

.contact-us-view .faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.contact-us-view .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 0;
}

.contact-us-view .faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 1rem;
}

.contact-us-view .faq-answer p {
  margin: 0;
  color: #4a5568;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-us-view .quick-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-us-view .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .contact-us-view .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-us-view .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-us-view .container {
    padding: 0 1.2rem;
  }

  .contact-us-view .header-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-us-view .contact-stats {
    justify-content: flex-start;
  }

  .contact-us-view .form-row {
    grid-template-columns: 1fr;
  }

  .contact-us-view .social-links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .contact-us-view .quick-contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-us-view .team-grid {
    grid-template-columns: 1fr;
  }

  .contact-us-view .social-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-us-view .contact-form-wrapper {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .contact-us-view .page-title {
    font-size: 1.8rem;
  }

  .contact-us-view .header-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-us-view .submit-btn {
    width: 100%;
    justify-content: center;
  }
}

/* AOS Animation Fallback */
[data-aos] {
  opacity: 0;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
}

.blog-section {
  padding: 100px 0;
  background-color: #eff9ff;
}

.blog-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 0px;
  transition: all 0.4s ease;
  height: 100%;
  background-color: white;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
  height: 250px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
}

.blog-content h3 {
  color: var(--brand-dark);
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 1.3rem;
}

.blog-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}



.btn-read-more {
  padding: 7px 15px ;
  background-color: #0071af;
  color: white;
  border-radius: 30px;
}


.btn-read-more:hover {
  padding: 7px 15px ;
  background-color: var(--gold);
  color: white;
  border-radius: 30px;
}















/* Blog View Styles */
.my-blog-view-inn {
  margin: 0 auto;
}

/* Main Blog Content */
.my-blog-view-inn .blog-main {
  background: var(--brand-white);
  border-radius: 10px;
  margin-bottom: 30px;
}

.my-blog-view-inn .blog-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.my-blog-view-inn .blog-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.3;
}

.my-blog-view-inn .blog-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  color: #666;
  font-size: 0.9rem;
}

.my-blog-view-inn .blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.my-blog-view-inn .blog-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
}

.my-blog-view-inn .blog-content p {
  margin-bottom: 20px;
}

/* Image Grid */
.my-blog-view-inn .image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}

.my-blog-view-inn .grid-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

/* Sidebar */
.my-blog-view-inn .blog-sidebar {
  position: sticky;
  top: 130px;
}

.my-blog-view-inn .sidebar-widget {
  background: var(--brand-white);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.my-blog-view-inn .widget-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--sky);
}

/* Recent Posts */
.my-blog-view-inn .recent-post {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.my-blog-view-inn .recent-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.my-blog-view-inn .recent-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.my-blog-view-inn .recent-content {
  flex: 1;
}

.my-blog-view-inn .recent-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.my-blog-view-inn .recent-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.my-blog-view-inn .recent-title a:hover {
  color: var(--secondary);
}

.my-blog-view-inn .recent-desc {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
}

/* Categories Widget */
.my-blog-view-inn .categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.my-blog-view-inn .category-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.my-blog-view-inn .category-item:last-child {
  border-bottom: none;
}

.my-blog-view-inn .category-link {
  color: #333;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.my-blog-view-inn .category-link:hover {
  color: var(--secondary);
}

.my-blog-view-inn .category-count {
  background: var(--secondary);
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
}

.recent-post p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recent-post h4 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.section-padding {
  padding: 100px 0;
}

.my-blog-view-inn .blog-content {
  padding: 0px;
}



@media (max-width: 991px) {
  [data-aos="fade-left"],
  [data-aos="fade-right"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Optional: Disable any custom animations */
  .animate-left,
  .animate-right {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}