:root {
  --primary-navy: #0F2C59;
  --accent-gold: #D4AF37;
  --slate-blue: #335C67;
  --light-bg: #F8F9FA;
  --dark-text: #1E293B;
  --white: #FFFFFF;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--dark-text);
  overflow-x: hidden;
  background-color: #FFFFFF;
}

.btn-gold {
  background-color: var(--accent-gold);
  color: var(--primary-navy);
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 6px;
  border: none;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background-color: #B59226;
  color: var(--white);
}

/* Split Section Header Layout: Text on Left, CTA Button on Far Right */
.section-header-wrap {
  margin-bottom: 2.5rem;
}

.title-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-navy), var(--accent-gold));
  margin: 10px 0 14px 0;
  border-radius: 2px;
}

.btn-explore-custom {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--primary-navy);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  background: transparent !important;
  padding: 6px 0;
  line-height: 1;
}

.btn-explore-custom img.flaticon-arrow {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.35s ease;
  vertical-align: middle;
}

.btn-explore-custom:hover {
  color: var(--accent-gold);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.35);
}

.btn-explore-custom:hover img.flaticon-arrow {
  transform: translateX(8px) scale(1.1);
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.8));
}

.sticky-social-bar {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sticky-social-bar .social-btn-glow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
}
.sticky-social-bar .social-btn-glow.whatsapp {
  background-color: #25D366;
}
.sticky-social-bar .social-btn-glow.messenger {
  background-color: #0084FF;
}
.sticky-social-bar .social-btn-glow.facebook {
  background-color: #1877F2;
}
.sticky-social-bar .social-btn-glow::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.7;
  animation: pulse-glow 2s infinite;
}
.sticky-social-bar .social-btn-glow.whatsapp::after {
  background-color: #25D366;
}
.sticky-social-bar .social-btn-glow.messenger::after {
  background-color: #0084FF;
}
@keyframes pulse-glow {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.sticky-social-bar .social-btn-glow:hover {
  transform: scale(1.12) translateY(-3px);
  color: var(--white);
}

/* Top Bar & Navigation */
.top-bar {
  background-color: var(--primary-navy);
  color: #E2E8F0;
  font-size: 0.85rem;
}

.top-bar a {
  color: #E2E8F0;
  text-decoration: none;
}

.top-bar a:hover {
  color: var(--accent-gold);
}

.navbar-brand span {
  font-weight: 800;
  color: var(--primary-navy);
  font-size: 1.5rem;
}

.navbar-brand span.highlight {
  color: var(--accent-gold);
}

.hero-carousel .carousel-item {
  height: 80vh;
  min-height: 550px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-carousel .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 44, 89, 0.85), rgba(0, 0, 0, 0.65));
}
.hero-carousel .carousel-caption {
  top: 30%;
  bottom: auto;
  text-align: left;
}

.page-header {
  padding: 80px 0 60px;
  color: var(--white);
  text-align: center;
}

/* Service Cards */
.service-card {
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 30px;
  background: var(--white);
  transition: all 0.3s ease;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--accent-gold);
}
.service-card .icon-box {
  width: 55px;
  height: 55px;
  background: rgba(15, 44, 89, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary-navy);
  margin-bottom: 20px;
}

/* Global Education Fair Event Banner */
.fair-section-compact {
  margin: 40px 0;
}
.fair-section-compact .fair-banner-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #0a214d;
  box-shadow: 0 15px 35px rgba(15, 44, 89, 0.25);
}
.fair-section-compact .fair-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center right;
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 30%, rgb(0, 0, 0) 100%);
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 30%, rgb(0, 0, 0) 100%);
}
.fair-section-compact .fair-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0a214d 0%, #0a214d 50%, rgba(10, 33, 77, 0.85) 75%, rgba(10, 33, 77, 0.4) 100%);
  z-index: 1;
}
.fair-section-compact .fair-content-box {
  position: relative;
  z-index: 2;
  padding: 38px 45px;
  color: #ffffff;
}
.fair-section-compact .fair-tag {
  background: rgba(212, 175, 55, 0.25);
  border: 1px solid #D4AF37;
  color: #ffdd00;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 12px;
}
.fair-section-compact .fair-title {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
  color: #ffffff;
}
.fair-section-compact .fair-title span.gold-highlight {
  color: #ffdd00;
}
.fair-section-compact .fair-description {
  color: #cbd5e1;
  font-size: 1rem;
  max-width: 620px;
  margin-bottom: 20px;
  line-height: 1.5;
}
.fair-section-compact .fair-info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}
.fair-section-compact .fair-info-pill {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  color: #f1f5f9;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fair-section-compact .fair-info-pill i {
  color: #ffdd00;
}
.fair-section-compact .btn-fair-enquiry {
  background-color: #D4AF37;
  color: #0a214d;
  font-weight: 800;
  font-size: 1rem;
  padding: 10px 26px;
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease;
}
.fair-section-compact .btn-fair-enquiry:hover {
  background-color: #b89628;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Destination Cards */
.destination-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 280px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}
.destination-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.destination-card:hover img {
  transform: scale(1.08);
}
.destination-card .destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 44, 89, 0.9), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: var(--white);
}

/* Visa Success Cards & Celebratory Elements */
.visa-success-section {
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}
.visa-success-section .success-card-v2 {
  background: #ffffff;
  border-radius: 18px;
  border: 2px solid #E2E8F0;
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 8px 20px rgba(15, 44, 89, 0.06);
  height: 100%;
}
.visa-success-section .success-card-v2:hover {
  transform: translateY(-10px);
  border-color: #D4AF37;
  box-shadow: 0 20px 35px rgba(212, 175, 55, 0.2);
}
.visa-success-section {
  /* Diagonal Corner Visa Ribbon */
}
.visa-success-section .visa-corner-ribbon {
  position: absolute;
  top: 22px;
  right: -35px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.8px;
  padding: 6px 38px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
  z-index: 10;
}
.visa-success-section .student-photo-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.visa-success-section .student-photo-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.visa-success-section .success-card-v2:hover .student-photo-wrapper img {
  transform: scale(1.06);
}
.visa-success-section .floating-celebration-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 221, 0, 0.95);
  color: #0F2C59;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 5px;
}
.visa-success-section .congrats-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(15, 44, 89, 0.9);
  backdrop-filter: blur(8px);
  color: #FFDD00;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px solid rgba(255, 221, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 5;
}
.visa-success-section .success-card-body {
  padding: 22px 18px 20px;
  text-align: center;
}
.visa-success-section .country-tag-badge {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
}
.visa-success-section .student-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0F2C59;
  margin-bottom: 4px;
}
.visa-success-section .course-university-info {
  color: #059669;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.visa-success-section .grant-date-pill {
  background: #F1F5F9;
  color: #64748B;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.visa-success-section {
  /* Carousel Nav Controls */
}
.visa-success-section .carousel-control-prev-custom, .visa-success-section .carousel-control-next-custom {
  width: 45px;
  height: 45px;
  background: #0F2C59;
  border: 2px solid #D4AF37;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  transition: all 0.3s ease;
  opacity: 0.9;
}
.visa-success-section .carousel-control-prev-custom:hover, .visa-success-section .carousel-control-next-custom:hover {
  background: #D4AF37;
  color: #0F2C59;
  opacity: 1;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}
.visa-success-section .carousel-control-prev-custom {
  left: -20px;
}
.visa-success-section .carousel-control-next-custom {
  right: -20px;
}
.visa-success-section .success-carousel-indicators {
  position: relative;
  margin-top: 30px;
  margin-bottom: 0;
  justify-content: center;
  gap: 8px;
}
.visa-success-section .success-carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #CBD5E1;
  border: none;
  opacity: 1;
  transition: all 0.3s ease;
}
.visa-success-section .success-carousel-indicators .active {
  width: 32px;
  border-radius: 12px;
  background-color: #D4AF37;
}

/* Video Gallery 2-1-2 Grid */
.video-grid-featured {
  height: 100%;
  min-height: 380px;
}

.modal {
  /* Step Indicators */
}
.modal .step-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}
.modal .step {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.modal .step.active {
  background: var(--primary-navy);
  color: var(--white);
}

/* Lightbox Gallery Modal */
.gallery-thumbnail {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-thumbnail:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
}
.gallery-thumbnail .lightbox-modal .modal-content {
  background: rgba(15, 44, 89, 0.95);
  backdrop-filter: blur(10px);
  border: none;
}
.gallery-thumbnail .lightbox-img {
  max-height: 80vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
}
.gallery-thumbnail .lightbox-btn {
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid #D4AF37;
  color: #FFDD00;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}
.gallery-thumbnail .lightbox-btn:hover {
  background: #D4AF37;
  color: #0F2C59;
}

@media (max-width: 991px) {
  .carousel-control-prev-custom {
    left: 5px;
  }
  .carousel-control-next-custom {
    right: 5px;
  }
  .fair-title {
    font-size: 1.6rem;
  }
  .fair-content-box {
    padding: 28px 22px;
  }
  .title-underline {
    margin: 10px auto 14px auto;
  }
}
/* Timeline History */
.history-timeline {
  position: relative;
  padding: 20px 0;
}
.history-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #E2E8F0;
  transform: translateX(-50%);
}
.history-timeline .timeline-item {
  position: relative;
  margin-bottom: 40px;
}
.history-timeline .timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
}
.history-timeline .timeline-content {
  width: 45%;
  background: var(--white);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}
.history-timeline .timeline-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-navy);
  color: var(--accent-gold);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

/* Board Members Cards */
.board-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  overflow: hidden;
  transition: all 0.35s ease;
  height: 100%;
}
.board-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 30px rgba(15, 44, 89, 0.12);
}
.board-card .board-img-wrap {
  height: 280px;
  overflow: hidden;
  position: relative;
}
.board-card .board-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.board-card .board-card:hover .board-img-wrap img {
  transform: scale(1.06);
}

/* PARTNERS SLIDER WITH LOGOS, NAMES & HOVER GLOW */
.partnerCarousel .partner-card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 25px 15px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.partnerCarousel .partner-card .partner-logo-wrap {
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.partnerCarousel .partner-card .partner-logo-wrap img {
  max-height: 60px;
  max-width: 130px;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: all 0.3s ease;
}
.partnerCarousel .partner-card .partner-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 2px;
  transition: color 0.3s ease;
}
.partnerCarousel .partner-card .partner-country {
  font-size: 0.78rem;
  color: #64748B;
  font-weight: 600;
}
.partnerCarousel .partner-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-gold);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}
.partnerCarousel .partner-card:hover .partner-logo-wrap img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}
.partnerCarousel .partner-card:hover .partner-name {
  color: #B59226;
}
.partnerCarousel {
  /* Partner Slider Controls */
}
.partnerCarousel .carousel-control-prev-partner, .partnerCarousel .carousel-control-next-partner {
  width: 40px;
  height: 40px;
  background: #0F2C59;
  border: 2px solid #D4AF37;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  transition: all 0.3s ease;
  opacity: 0.9;
}
.partnerCarousel .carousel-control-prev-partner:hover, .partnerCarousel .carousel-control-next-partner:hover {
  background: #D4AF37;
  color: #0F2C59;
  opacity: 1;
}
.partnerCarousel .carousel-control-prev-partner {
  left: -18px;
}
.partnerCarousel .carousel-control-next-partner {
  right: -18px;
}
@media (max-width: 768px) {
  .partnerCarousel .history-timeline::before {
    left: 20px;
  }
  .partnerCarousel .timeline-content {
    width: calc(100% - 50px);
    margin-left: 50px !important;
  }
  .partnerCarousel .timeline-badge {
    left: 20px;
  }
  .partnerCarousel .carousel-control-prev-partner {
    left: 2px;
  }
  .partnerCarousel .carousel-control-next-partner {
    right: 2px;
  }
}

/* Breadcrumb Bar */
.breadcrumb-section {
  background-color: #EEF2F6;
  padding: 14px 0;
  font-size: 0.9rem;
}
.breadcrumb-section a {
  color: var(--primary-navy);
  text-decoration: none;
  font-weight: 600;
}

/* ARTICLE CONTENT STYLING */
.article-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 20px rgba(15, 44, 89, 0.05);
}
.article-card .article-featured-img {
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 14px;
  margin-bottom: 25px;
}
.article-card .article-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 15px;
  font-size: 0.88rem;
  color: #64748B;
  font-weight: 600;
  flex-wrap: wrap;
}
.article-card .article-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.3;
  margin-bottom: 20px;
}
.article-card .article-lead-text {
  font-size: 1.15rem;
  color: #475569;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 25px;
  border-bottom: 1px solid #E2E8F0;
  padding-bottom: 20px;
}
.article-card {
  /* Highlight Blockquote Callout */
}
.article-card .article-highlight-quote {
  background: linear-gradient(135deg, rgba(15, 44, 89, 0.05), rgba(212, 175, 55, 0.1));
  border-left: 5px solid var(--accent-gold);
  border-radius: 0 12px 12px 0;
  padding: 22px 28px;
  margin: 30px 0;
  position: relative;
}
.article-card .article-highlight-quote p {
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0;
  line-height: 1.6;
}
.article-card .article-body-text p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 20px;
}
.article-card .article-body-text h3 {
  color: var(--primary-navy);
  font-weight: 800;
  margin-top: 30px;
  margin-bottom: 15px;
}
.article-card {
  /* Inline Gallery Grid */
}
.article-card .article-gallery-grid {
  margin: 35px 0;
}
.article-card .article-gallery-grid img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.article-card .article-gallery-grid img:hover {
  transform: scale(1.03);
}

.sidebar-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  padding: 28px 24px;
  box-shadow: 0 4px 15px rgba(15, 44, 89, 0.04);
  margin-bottom: 30px;
}

.sidebar-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.sidebar-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 3px;
  background: var(--accent-gold);
  border-radius: 2px;
}

/* 5-Blog List Item in Sidebar */
.sidebar-blog-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #F1F5F9;
  text-decoration: none;
}

.sidebar-blog-item:last-child {
  border-bottom: none;
}

.sidebar-blog-img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}

.sidebar-blog-heading {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.35;
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.sidebar-blog-item:hover .sidebar-blog-heading {
  color: #B59226;
}

.sidebar-blog-date {
  font-size: 0.78rem;
  color: #94A3B8;
  font-weight: 600;
}

.blog-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 30px rgba(15, 44, 89, 0.12);
}

.blog-img-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.blog-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrap img {
  transform: scale(1.08);
}

.read-time-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(15, 44, 89, 0.88);
  backdrop-filter: blur(5px);
  color: #FFDD00;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent-gold);
  color: #0F2C59;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.blog-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-card-body .blog-date {
  font-size: 0.82rem;
  color: #64748B;
  font-weight: 600;
  margin-bottom: 8px;
}
.blog-card-body .blog-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.4;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.blog-card-body .blog-card:hover .blog-title {
  color: #B59226;
}
.blog-card-body .blog-excerpt {
  color: #64748B;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

@media (max-width: 991px) {
  .article-card {
    padding: 25px 20px;
  }
  .article-title {
    font-size: 1.75rem;
  }
  .article-featured-img {
    height: 260px;
  }
}
/* PAGINATION CONTROLS */
.custom-pagination .page-link {
  color: var(--primary-navy);
  font-weight: 700;
  border: 1px solid #E2E8F0;
  padding: 10px 18px;
  margin: 0 4px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.custom-pagination .page-link:hover {
  background-color: #F1F5F9;
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

.custom-pagination .page-item.active .page-link {
  background-color: var(--primary-navy);
  border-color: var(--primary-navy);
  color: var(--accent-gold);
  box-shadow: 0 4px 12px rgba(15, 44, 89, 0.2);
}

/* OUR TEAM CARDS */
.team-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(15, 44, 89, 0.12);
  border-color: #D4AF37;
}
.team-card .team-photo-wrap {
  height: 260px;
  overflow: hidden;
  position: relative;
}
.team-card .team-photo-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.team-card:hover .team-photo-wrap img {
  transform: scale(1.06);
}
.team-card .team-social-overlay {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  gap: 8px;
}
.team-card .team-social-overlay a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(15, 44, 89, 0.85);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.team-card .team-social-overlay a:hover {
  background: #D4AF37;
  color: #0F2C59;
}

/* 2-COLUMN BRANCH CONTACT & LOCATION HUB */
.branch-info-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 35px 30px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 10px 30px rgba(15, 44, 89, 0.06);
  height: 100%;
}
.branch-info-card .info-entry-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.branch-info-card .info-entry-item .info-entry-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(15, 44, 89, 0.08);
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.branch-info-card .contact-person-badge {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 18px 20px;
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.branch-info-card .contact-person-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid var(--accent-gold);
}

/* Right Side Map Container */
.branch-map-side {
  min-height: 100%;
  height: 100%;
  position: relative;
}
.branch-map-side iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

.contact-person-badge {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 16px 20px;
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-person-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid var(--accent-gold);
  flex-shrink: 0;
}

.branch-row-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #E2E8F0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 44, 89, 0.05);
  margin-bottom: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.branch-row-card:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
  transform: translateY(-4px);
}

.branch-content-side {
  padding: 38px 35px;
}

.info-entry-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.info-entry-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(15, 44, 89, 0.08);
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.destination-hero-banner {
  position: relative;
  padding: 90px 0 80px;
  color: var(--white);
}

.snapshot-bar {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 24px;
  margin-top: 30px;
}

.snapshot-item {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.snapshot-item:last-child {
  border-right: none;
}

.snapshot-item .val {
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFDD00;
}

.snapshot-item .lbl {
  font-size: 0.82rem;
  color: #E2E8F0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.visa-card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.35s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}
.visa-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 30px rgba(15, 44, 89, 0.1);
}
.visa-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--primary-navy);
}
.visa-card.popular::before {
  background: var(--accent-gold);
}

/* Criteria List */
.criteria-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.criteria-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #334155;
}
.criteria-list li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: #10B981;
  font-size: 1.1rem;
}

/* Requirement Highlights Table */
.table-custom {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
}
.table-custom thead {
  background-color: var(--primary-navy);
  color: #ffffff;
}
.table-custom tbody tr:nth-child(even) {
  background-color: #F8FAFC;
}

/* Quick Callout Cards */
.info-callout-box {
  background: #F8FAFC;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid #E2E8F0;
  height: 100%;
}

/* DESTINATION CARD STYLING */
.destination-grid-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #E2E8F0;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}
.destination-grid-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 30px rgba(15, 44, 89, 0.12);
}
.destination-grid-card:hover .destination-img-wrap img {
  transform: scale(1.08);
}
.destination-grid-card .destination-img-wrap {
  height: 230px;
  overflow: hidden;
  position: relative;
}
.destination-grid-card .destination-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

/* Overlay Badges */
.destination-flag-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 44, 89, 0.9);
  backdrop-filter: blur(5px);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  gap: 6px;
}

.psw-pill-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(212, 175, 55, 0.95);
  color: #0F2C59;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.destination-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.destination-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.destination-description {
  color: #64748B;
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 18px;
}

/* Key Metrics Row */
.destination-meta-row {
  border-top: 1px solid #F1F5F9;
  border-bottom: 1px solid #F1F5F9;
  padding: 12px 0;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  background-color: #FAFCFE;
  border-radius: 8px;
  padding: 10px 14px;
}

.meta-entry {
  display: flex;
  flex-direction: column;
}

.meta-entry span.label {
  font-size: 0.75rem;
  color: #94A3B8;
  font-weight: 600;
  text-transform: uppercase;
}

.meta-entry span.val {
  font-size: 0.85rem;
  color: var(--primary-navy);
  font-weight: 700;
}

.success_stories_list {
  /* VISA SUCCESS CARD STYLING */
}
.success_stories_list .success-card-v2 {
  background: #ffffff;
  border-radius: 18px;
  border: 2px solid #E2E8F0;
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 6px 20px rgba(15, 44, 89, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  /* Diagonal Corner Visa Ribbon */
}
.success_stories_list .success-card-v2:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 18px 35px rgba(212, 175, 55, 0.18);
}
.success_stories_list .success-card-v2:hover .student-photo-wrapper img {
  transform: scale(1.06);
}
.success_stories_list .success-card-v2 .visa-corner-ribbon {
  position: absolute;
  top: 22px;
  right: -35px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.8px;
  padding: 6px 38px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
  z-index: 10;
}
.success_stories_list .success-card-v2 .student-photo-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.success_stories_list .success-card-v2 .student-photo-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.success_stories_list .success-card-v2 .floating-celebration-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 221, 0, 0.95);
  color: #0F2C59;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 5px;
}
.success_stories_list .success-card-v2 .branch-origin-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(15, 44, 89, 0.9);
  backdrop-filter: blur(8px);
  color: #FFDD00;
  font-weight: 700;
  font-size: 0.76rem;
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px solid rgba(255, 221, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 5;
}
.success_stories_list .success-card-v2 {
  /* Card Content Area */
}
.success_stories_list .success-card-v2 .success-card-body {
  padding: 22px 20px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.success_stories_list .success-card-v2 .visa-tags-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.success_stories_list .success-card-v2 .country-tag-badge {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}
.success_stories_list .success-card-v2 .visa-type-badge {
  font-size: 0.75rem;
  font-weight: 700;
  background: #EEF2F6;
  color: var(--primary-navy);
  border: 1px solid #CBD5E1;
  padding: 4px 10px;
  border-radius: 20px;
}
.success_stories_list .success-card-v2 .student-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 4px;
}
.success_stories_list .success-card-v2 .course-university-info {
  color: #059669;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-grow: 1;
}
.success_stories_list .success-card-v2 .grant-date-pill {
  background: #F1F5F9;
  color: #64748B;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: auto;
}

.testimonial_page {
  /* SOCIAL POST / TIMELINE CARD DESIGN */
}
.testimonial_page .social-feed-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #E4E6EB;
  padding: 22px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testimonial_page .social-feed-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  border-color: #CBD5E1;
}
.testimonial_page {
  /* Post Header */
}
.testimonial_page .social-post-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.testimonial_page .post-avatar-wrapper {
  position: relative;
}
.testimonial_page .post-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid var(--accent-gold);
}
.testimonial_page .social-network-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.testimonial_page .social-network-badge.fb {
  background-color: var(--fb-blue);
}
.testimonial_page .social-network-badge.tw {
  background-color: var(--twitter-blue);
}
.testimonial_page .post-author-name {
  font-weight: 800;
  color: var(--primary-navy);
  font-size: 1.05rem;
  margin-bottom: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.testimonial_page .verified-check {
  color: var(--fb-blue);
  font-size: 0.95rem;
}
.testimonial_page .post-handle {
  font-size: 0.82rem;
  color: #64748B;
}
.testimonial_page {
  /* Branch & Country Tag Row */
}
.testimonial_page .post-meta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.testimonial_page .badge-country {
  font-size: 0.75rem;
  font-weight: 700;
  background: #EFF6FF;
  color: #1D4ED8;
  border: 1px solid #BFDBFE;
  padding: 3px 10px;
  border-radius: 12px;
}
.testimonial_page .badge-branch {
  font-size: 0.75rem;
  font-weight: 700;
  background: #FEF3C7;
  color: #92400E;
  border: 1px solid #FDE68A;
  padding: 3px 10px;
  border-radius: 12px;
}
.testimonial_page {
  /* Post Content */
}
.testimonial_page .post-text-content {
  font-size: 0.94rem;
  line-height: 1.6;
  color: #334155;
  margin-bottom: 14px;
  flex-grow: 1;
}
.testimonial_page .post-rating-stars {
  color: #F59E0B;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.testimonial_page {
  /* Attached Media/Photo in Post */
}
.testimonial_page .post-attached-media {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
  max-height: 220px;
}
.testimonial_page .post-attached-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.testimonial_page .social-feed-card:hover .post-attached-media img {
  transform: scale(1.04);
}
.testimonial_page .media-visa-stamp {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(16, 185, 129, 0.95);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
}

/* IN-DEPTH SERVICE BLOCKS */
.service-detail-section {
  padding: 60px 0;
  border-bottom: 1px solid #E2E8F0;
}
.service-detail-section .service-detail-section:nth-child(even) {
  background-color: #F8FAFC;
}
.service-detail-section .service-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 44, 89, 0.1);
}
.service-detail-section .service-img-wrapper img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.service-detail-section .service-img-wrapper:hover img {
  transform: scale(1.05);
}
.service-detail-section .service-badge-pill {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--primary-navy);
  color: var(--accent-gold);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid var(--accent-gold);
}
.service-detail-section .service-feature-card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
.service-detail-section .service-feature-card:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.15);
  transform: translateX(4px);
}
.service-detail-section .feature-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(15, 44, 89, 0.08);
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.our_partner {
  /* Filter Pills */
}
.our_partner .filter-pill-btn {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  color: var(--primary-navy);
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 0.9rem;
}
.our_partner .filter-pill-btn:hover,
.our_partner .filter-pill-btn.active {
  background: var(--primary-navy);
  color: var(--accent-gold);
  border-color: var(--primary-navy);
  box-shadow: 0 4px 12px rgba(15, 44, 89, 0.15);
}
.our_partner {
  /* Partner Grid Card */
}
.our_partner .partner-grid-card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}
.our_partner .partner-grid-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 14px 30px rgba(212, 175, 55, 0.2);
}
.our_partner .partner-card-logo-wrap {
  height: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.our_partner .partner-card-logo-wrap img {
  max-height: 65px;
  max-width: 140px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}
.our_partner .partner-grid-card:hover .partner-card-logo-wrap img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}
.our_partner .partner-card-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 4px;
  transition: color 0.3s ease;
}
.our_partner .partner-grid-card:hover .partner-card-name {
  color: #B59226;
}
.our_partner .partner-card-location {
  font-size: 0.82rem;
  color: #64748B;
  font-weight: 600;
  margin-bottom: 12px;
}
.our_partner .partner-card-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  background: #F1F5F9;
  color: var(--primary-navy);
  border: 1px solid #E2E8F0;
}
.our_partner .btn-view-profile {
  color: var(--primary-navy);
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 15px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.our_partner .partner-grid-card:hover .btn-view-profile {
  color: var(--accent-gold);
}
.our_partner {
  /* Detail Modal Styling */
}
.our_partner .partner-modal .modal-content {
  border-radius: 20px;
  border: none;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 44, 89, 0.25);
}
.our_partner .modal-header-custom {
  background: var(--primary-navy);
  color: #ffffff;
  padding: 24px 30px;
}
.our_partner .partner-modal-logo {
  max-height: 70px;
  max-width: 160px;
  background: #ffffff;
  padding: 8px 14px;
  border-radius: 10px;
  -o-object-fit: contain;
     object-fit: contain;
}
.our_partner .info-pill-stat {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 14px 18px;
  height: 100%;
}
.our_partner .info-pill-stat .lbl {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #94A3B8;
  font-weight: 700;
  margin-bottom: 2px;
}
.our_partner .info-pill-stat .val {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0;
}

.universityplacement {
  /* Feature Cards */
}
.universityplacement .feature-box-card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 30px 24px;
  height: 100%;
  transition: all 0.35s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}
.universityplacement .feature-box-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 30px rgba(15, 44, 89, 0.1);
}
.universityplacement .icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: rgba(15, 44, 89, 0.08);
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.universityplacement {
  /* Process Steps */
}
.universityplacement .process-step-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid #E2E8F0;
  position: relative;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}
.universityplacement .step-count-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2.2rem;
  font-weight: 900;
  color: #E2E8F0;
  line-height: 1;
}
.universityplacement {
  /* Admission Checklist Box */
}
.universityplacement .checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.universityplacement .checklist-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.12);
  color: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.visa_approach {
  /* Feature Box Cards */
}
.visa_approach .feature-box-card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 30px 24px;
  height: 100%;
  transition: all 0.35s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}
.visa_approach .feature-box-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 30px rgba(15, 44, 89, 0.1);
}
.visa_approach .icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: rgba(15, 44, 89, 0.08);
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.visa_approach {
  /* Process Steps */
}
.visa_approach .process-step-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid #E2E8F0;
  position: relative;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}
.visa_approach .step-count-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2.2rem;
  font-weight: 900;
  color: #E2E8F0;
  line-height: 1;
}
.visa_approach {
  /* Visa Checklist Items */
}
.visa_approach .checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.visa_approach .checklist-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.12);
  color: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Full Hero Banner */
.service-hero-banner {
  position: relative;
  background: linear-gradient(135deg, rgba(15, 44, 89, 0.94), rgba(51, 92, 103, 0.88)), url("https://images.unsplash.com/photo-1434030216411-0b793f4b4173?auto=format&fit=crop&w=1920&q=80") center/cover no-repeat;
  padding: 85px 0 75px;
  color: var(--white);
}

/* Section Layouts */
.process_section .process-step-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid #E2E8F0;
  position: relative;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}
.process_section .step-count-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2.2rem;
  font-weight: 900;
  color: #E2E8F0;
  line-height: 1;
}

/* Feature Box Cards */
.feature-box-card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 30px 24px;
  height: 100%;
  transition: all 0.35s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}
.feature-box-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 30px rgba(15, 44, 89, 0.1);
}
.feature-box-card .icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: rgba(15, 44, 89, 0.08);
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.visa_processing {
  /* Visa Checklist Items */
}
.visa_processing .checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.visa_processing .checklist-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.12);
  color: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.counseling-approach {
  /* Feature Cards */
}
.counseling-approach .feature-box-card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 30px 24px;
  height: 100%;
  transition: all 0.35s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}
.counseling-approach .feature-box-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 30px rgba(15, 44, 89, 0.1);
}
.counseling-approach .icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: rgba(15, 44, 89, 0.08);
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.process_step {
  /* Process Steps */
}
.process_step .process-step-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid #E2E8F0;
  position: relative;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}
.process_step .step-count-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2.2rem;
  font-weight: 900;
  color: #E2E8F0;
  line-height: 1;
}/*# sourceMappingURL=style.css.map */