/* Ensure about image is right-aligned on desktop and centered on mobile */
.about-image-desktop {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}
.about-image-desktop .about-image-wrapper {
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 992px) {
  .about-image-desktop {
    justify-content: center;
  }
  .about-image-desktop .about-image-wrapper {
    margin: 0 auto;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header Styles */
.top-bar {
  background: #1a237e;
  color: white;
  padding: 8px 0;
  font-size: 13px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  gap: 20px;
}

.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-bar-right {
  display: flex;
  gap: 15px;
}

.top-bar-right a {
  color: white;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Main Header */
.main-header {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 30px 0;
  /* height: 450px; */
  transition: all 0.3s ease;
}

.main-header.scrolled {
  padding: 18px 0;
  /* height: 80px; */
}

.main-header .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.logo {
  position: absolute;
  left: 0;
  top: 40px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  z-index: 10;
}

.logo-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-wrapper {
  background: rgba(255, 255, 255, 0.97);
  padding: 16px 8px;
  border-radius: 320px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  font-size: 13px;
  padding: 10px 16px;
  border-radius: 25px;
  transition: all 0.3s;
  display: block;
  white-space: nowrap;
}

.nav-menu li a:hover {
  color: #275DAA;
}

.nav-menu li a.active {
  background: #275DAA;
  color: white;
}

/* Mobile Navigation Toggle Button */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.97);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  right: 15px;
  z-index: 10001;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.nav-toggle .hamburger {
  width: 20px;
  height: 2px;
  background: #275DAA;
  border-radius: 2px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: #275DAA;
  border-radius: 2px;
  transition: all 0.3s ease;
  left: 0;
}

.nav-toggle .hamburger::before {
  top: -6px;
}

.nav-toggle .hamburger::after {
  top: 6px;
}

/* Hamburger animation when active */
.nav-toggle.active .hamburger {
  background: transparent;
}

.nav-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9990;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* Prevent body scroll when nav is open */
body.nav-open {
  overflow: hidden;
}

/* Responsive Navigation */
@media (max-width: 992px) {
  .nav-toggle {
    display: flex !important;
  }

  .nav-wrapper {
    position: fixed !important;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff !important;
    border-radius: 0 !important;
    padding: 100px 30px 30px !important;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    transition: right 0.4s ease;
    z-index: 10000;
    overflow-y: auto;
    pointer-events: auto;
  }

  .nav-wrapper.active {
    right: 0 !important;
  }

  .nav-menu {
    flex-direction: column;
    gap: 5px;
    align-items: stretch;
    position: relative;
    z-index: 10001;
  }

  .nav-menu li {
    position: relative;
    z-index: 10001;
  }

  .nav-menu li a {
    padding: 15px 20px;
    font-size: 15px;
    border-radius: 10px;
    text-align: left;
    display: block;
    position: relative;
    z-index: 10001;
    pointer-events: auto;
  }

  .nav-menu li a:hover {
    background: rgba(21, 101, 192, 0.1);
  }

  .nav-menu li a.active {
    background: #275DAA;
    color: white;
  }

  .main-header .container {
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .main-header {
    top: 80px;
  }
  
  .nav-wrapper {
    width: 100%;
    right: -100%;
  }

  .nav-wrapper.active {
    right: 0 !important;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../assets/hero-background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform-origin: center center;
  transform: scale(1);
  /* Optimize rendering performance */
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-person {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

.hero-person img {
  max-height: 70vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transform: rotate(3deg);
}

/* Hero mobile image - hidden on desktop, shown on mobile */


.hero .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding-top: 200px;
  padding-bottom: 40px;
  position: relative;
  z-index: 3;
}

.hero-content {
  flex: 1;
  color: white;
  z-index: 2;
}

.hero-content h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 52px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-content h3 .hero-brand {
  font-weight: 700;
  color: #FFDD8D;
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 450px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  gap: 15px;
}

.btn-primary {
  background: #275DAA;
  color: white;
  padding: 14px 35px;
  min-width: 178px;
  height: 54px;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 14px;
}

.btn-primary:hover {
  background: #275eaad1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-secondary {
  background: #FFDD8D;
  color: #000000;
  padding: 14px 35px;
  min-width: 178px;
  height: 54px;
  /* border: 2px solid white; */
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 14px;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Counselling Form */
.counselling-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px 25px;
  border-radius: 20px;
  border: 3px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  width: 380px;
  flex-shrink: 0;
}

.counselling-form h6 {
  color: #FFF;
  text-align: left;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -0.64px;
  margin-bottom: 25px;
  white-space: nowrap;
}

.counselling-form .form-group {
  margin-bottom: 20px;
}

.counselling-form .form-group label {
  display: none;
}

.counselling-form .form-group select,
.counselling-form .form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.counselling-form .form-group select {
  background: rgba(255, 255, 255, 0.95)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23555' d='M6 8L1 3h10z'/%3E%3C/svg%3E")
    no-repeat right 16px center;
}

.counselling-form .form-group select:focus,
.counselling-form .form-group input:focus {
  outline: none;
  border-color: #275DAA;
  background-color: #fff;
}

.counselling-form .submit-btn {
  width: 100%;
  background: #275DAA;
  color: white;
  padding: 16px;
  min-height: 54px;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 16px */
}

.counselling-form .submit-btn:hover {
  background: #275eaad1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hero-image {
  display: none;
}

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  color: #1f1f1f;
  margin-bottom: 0;
}

.section-title p {
  color: #A7A7A7;
  max-width: 600px;
  margin: 0 auto;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 300;
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, #1a3a5c 0%, #0d1f3c 50%, #1a3a5c 100%);
  padding: 40px 0 10px 0;
  position: relative;
  overflow: hidden;
}

.about-section > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.about-section .container {
  position: relative;
  z-index: 1;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
  color: white;
  max-width: 550px;
}

.about-text h1 {
  font-size: 42px;
  color: white;
  margin-top: 100px;
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 1.2;
}

.about-text h1 .text-bold {
  font-weight: 700;
}

.about-subtitle {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.about-subtitle .subtitle-icon {
  width: 28px;
  height: 28px;
  background: #c9a227;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-subtitle .subtitle-icon i {
  color: white;
  font-size: 12px;
}

.about-subtitle p {
  margin: 0;
  color: #FFF;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%; /* 38.4px */
}

.about-description-box {
  border-radius: 12px;
  margin-bottom: 25px;
}

.about-description-box p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 160%;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 300;
  text-align: justify;
}

.about-description-box p:last-child {
  margin-bottom: 0;
}

.about-btn {
  background: #FFDD8D;
  color: #1f1f1f;
  padding: 10px 26px;
  min-width: 178px;
  height: 54px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.about-btn:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.about-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

/* Hide mobile image on desktop, show desktop image */
.about-image-mobile {
  display: none !important;
  width: 100%;
  justify-content: center;
  margin: 20px 0;
}

.about-image-mobile img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
}

.about-image {
  display: flex !important;
}

.about-image-desktop {
  display: flex !important;
}

.about-image-wrapper {
  display: block !important;
}

/* Show mobile image only on mobile, hide desktop image */
@media (max-width: 768px) {
  .about-image-mobile {
    display: flex !important;
    justify-content: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow: visible !important;
    margin: 20px -15px 0 -15px !important;
    width: calc(100% + 30px) !important;
  }
  
  .about-image-mobile img {
    width: 170% !important;
    max-width: 170% !important;
    height: auto !important;
    object-fit: contain !important;
    transform: rotate(3deg) !important;
    margin-left: -15% !important;
  }
  
  .about-image {
    display: none !important;
  }
  
  .about-image-wrapper {
    display: none !important;
  }
  
  .counselling-form {
    padding-top: 0 !important;
    margin-top: -30px !important;
    background: #275DAA !important;
    position: relative !important;
    z-index: 10 !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 40px 40px 0 0 !important;
    margin-left: -20px !important;
    margin-right: -20px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    width: calc(100% + 40px) !important;
    padding-bottom: 0 !important;
  }
  
  .counselling-form h6 {
    padding-top: 15px !important;
  }
  
  .counselling-form .submit-btn {
    background: #FFDD8D !important;
    color: #000 !important;
    border-radius: 10px !important;
    height: 56px !important;
    min-height: 56px !important;
    margin-bottom: 25px !important;
  }
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 680px;
}

.about-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
  scale: 1;
}
@media (min-width: 1500px) {
  .about-image img {
    scale: 1.2;
  }
}

.about-features {
  display: none;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.about-feature i {
  color: #c9a227;
  font-size: 20px;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-card {
  background: #1a237e;
  color: white;
  padding: 30px 25px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(26, 35, 126, 0.3);
}

.service-card i {
  font-size: 40px;
  margin-bottom: 20px;
  color: #c9a227;
}

.service-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  opacity: 0.8;
}

/* New Services Section Layout */
.services-section-new {
  background: #f8f9fa;
  position: relative;
  overflow: visible;
}

.services-section-new > img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  max-width: 80%;
  height: auto;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

.services-section-new .container {
  position: relative;
  z-index: 1;
}
.services-section-new .section-title {
  position: absolute;
  width: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 992px) {
  .services-section-new .section-title {
    position: static;
    transform: none;
    margin-bottom: 30px;
  }
}
.services-layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  padding-top: 10px;
}

.services-left,
.services-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: white;
  padding: 15px;
  border-radius: 40px;
  box-shadow: none;
  transition: all 0.3s;
  max-width: 450px;
}

.service-item:hover {
  transform: translateY(-3px);
  box-shadow: none;
}

.service-icon {
  width: 80px;
  height: 100px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  padding: 12px;
  padding-right: 5px;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-icon i {
  color: white;
  font-size: 28px;
}

.service-content {
  flex: 1;
  padding-top: 5px;
}

.service-content h3 {
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.3;
}

.service-content p {
  font-size: 12px;
  color: #666;
  line-height: 1.2;
  margin-bottom: 15px;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #275DAA;
  color: white;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 600;
  border: 1px solid #e0e0e0;
}

.section .partners-section {
  background-color: #233f6e;
}

.read-more-btn:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.services-center {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.services-person-img {
  max-width: 350px;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Success Stories Section */
.success-stories-section {
  background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
  padding: 80px 0;
  overflow: hidden;
}

.success-stories-section .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.success-stories-section .section-title h2 {
  color: white;
  font-size: 42px;
  font-weight: 700;
  display: inline;
}

.success-stories-section .section-title p {
  color: #A7A7A7;
  font-size: 16px;
}

.success-stories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.success-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.success-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.success-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 1200px) {
  .success-stories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .success-stories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .success-stories-section .section-title h2 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .success-stories-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }
  
  .success-stories-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
  }
  
  .success-card {
    flex: 0 0 85%;
    max-width: 350px;
  }
  
  .success-stories-section .section-title h2 {
    font-size: 28px;
  }
  
  .success-stories-section {
    padding: 60px 0;
  }
}

/* Top Universities Section */
.section.top-universities-section .container {
  max-width: unset;
}
.top-universities-section {
  background: white;
  padding: 40px 0;
  overflow: hidden;
}

.top-universities-section .section-title h2 {
  color: #1a1a1a;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
}

.top-universities-section .section-title p {
  color: #888;
  font-size: 14px;
}

.universities-marquee-wrapper {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.universities-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

@media (max-width: 768px) {
  .marquee-content {
    gap: 10px;
  }
}
.universities-marquee.reverse .marquee-content {
  animation: marquee-reverse 30s linear infinite;
}

.universities-marquee:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-reverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.uni-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 80px;
  /* padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05); */
  transition: all 0.3s;
  cursor: pointer;
  flex-shrink: 0;
}

.uni-logo-item img {
  max-width: 100px;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s;
}

.uni-logo-item:hover {
  transform: none;
  box-shadow: none;
}

.uni-logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Top Countries Section */
.top-countries-section {
  background: white;
  padding: 40px 0;
}

.top-countries-section .section-title h2 {
  color: #1a1a1a;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
}

.top-countries-section .section-title p {
  color: #888;
  font-size: 14px;
  margin-bottom: 50px;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.country-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 315px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.country-card:hover {
  transform: none;
  box-shadow: none;
}

.country-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  position: absolute;
  top: 0;
  left: 0;
}

.country-card:hover img {
  transform: scale(1.15);
}

.country-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #275daa 100%);
  display: flex;
  align-items: flex-end;
  padding: 25px;
  color: white;
  z-index: 1;
  transition: opacity 0.5s ease;
}

.country-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.country-card:hover .country-overlay::before {
  opacity: 0;
}

.country-card:hover .country-overlay {
  background: transparent;
}

.country-overlay h3 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
  line-height: 32px;
}

.country-overlay h3 span {
  font-weight: 600;
}

/* Featured Countries in Universities Section */
.featured-countries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 40px;
}

.featured-country-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 160px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.featured-country-card:hover {
  transform: none;
  box-shadow: none;
}

.featured-country-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  position: absolute;
  top: 0;
  left: 0;
}

.featured-country-card:hover img {
  transform: scale(1.15);
}

.featured-country-card .country-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #275daa 100%);
  display: flex;
  align-items: flex-end;
  padding: 15px;
  color: white;
  z-index: 1;
  transition: opacity 0.5s ease;
}

.featured-country-card .country-overlay h3 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
  line-height: 32px;
}

.featured-country-card:hover .country-overlay {
  background: transparent;
}

/* Responsive for Featured Countries */
@media (max-width: 992px) {
  .featured-countries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-country-card {
    height: 140px;
  }
}

@media (max-width: 576px) {
  .featured-countries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-country-card {
    height: 120px;
  }
  .featured-country-card .country-overlay h3 {
    font-size: 14px;
  }
}

/* Responsive for Top Countries */
@media (max-width: 992px) {
  .countries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .country-card {
    height: 120px;
  }

  .country-overlay h3 {
    font-size: 14px;
  }
}

/* Blog Section */
.blog-section {
  background: white;
  padding: 40px 0;
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.blog-header .section-title h2 {
  color: #1a1a1a;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 5px;
}

.blog-header .section-title p {
  color: #888;
  font-size: 14px;
}

.see-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 35px;
  min-width: 140px;
  height: 48px;
  background: white;
  color: #1f1f1f;
  text-decoration: none;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.see-all-btn:hover {
  transform: translateY(-2px);
}

.see-all-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.see-all-btn:hover i {
  transform: translateX(3px);
}

.blog-carousel-wrapper {
  position: relative;
  padding: 10px 0px;
  overflow: hidden;
}

.blog-carousel {
  display: flex;
  gap: 25px;
  transition: transform 0.5s ease;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  flex: 0 0 calc(33.333% - 17px);
  min-width: calc(33.333% - 17px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 20px;
}

.blog-date {
  font-size: 12px;
  font-weight: 300;
  color: #A7A7A7
}

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

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 0px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 15px;
}

.blog-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-meta {
  font-size: 10px;
  color: #1f1f1f;
  margin: 0;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: white;
  border: 1px solid #e0e0e0;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.carousel-btn:hover {
  background: #275DAA;
  color: white;
  border-color: #275DAA;
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

.carousel-btn i {
  font-size: 16px;
}

/* Responsive for Blog Section */
@media (max-width: 992px) {
  .blog-card {
    flex: 0 0 calc(50% - 13px);
    min-width: calc(50% - 13px);
  }

  .blog-carousel-wrapper {
    padding: 0 50px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .blog-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .blog-carousel-wrapper {
    padding: 0;
  }

  .carousel-btn {
    display: none;
  }
}

/* Destinations Section */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.destination-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.destination-card:hover img {
  transform: scale(1.1);
}

.destination-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 30px 20px 20px;
  color: white;
}

.destination-overlay h4 {
  font-size: 20px;
  margin-bottom: 5px;
}

.destination-overlay p {
  font-size: 14px;
  opacity: 0.8;
}

/* Universities Section */
.universities-section {
  background: #1a237e;
  color: white;
}

.universities-section .section-title h2 {
  color: white;
}

.universities-section .section-title p {
  color: rgba(255, 255, 255, 0.8);
}

.universities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.university-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s;
}

.university-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.university-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.university-info {
  padding: 20px;
  color: #333;
}

.university-info h4 {
  font-size: 16px;
  margin-bottom: 5px;
  color: #1a237e;
}

.university-info p {
  font-size: 13px;
  color: #666;
}

/* Testimonials Section */
.testimonials-section {
  background: #f8f9fa;
}

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

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.testimonial-header img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-header h4 {
  font-size: 16px;
  color: #333;
}

.testimonial-header p {
  font-size: 13px;
  color: #666;
}

.testimonial-card .quote {
  color: #666;
  font-style: italic;
}

.stars {
  color: #c9a227;
  margin-bottom: 15px;
}

/* Student Reviews Section */
.student-reviews-section {
  background: white;
  padding: 40px 0;
  overflow-x: hidden;
}

.student-reviews-section .container {
  overflow-x: hidden;
}

/* Reviews Top Section - Title and Stats in one row */
.reviews-top-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  gap: 40px;
}

.section-title-reviews {
  flex: 0 0 auto;
}

.section-title-reviews h2 {
  color: #1a1a1a;
  font-size: 28px;
  font-weight: 700;
}

.section-title-reviews p {
  color: #888;
  font-size: 18px;
  margin: 0;
}

/* Horizontal Rating Stats */
.rating-stats-horizontal {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.rating-stat-item {
  background: #f8f9fa;
  padding: 20px 24px;
  border-radius: 15px;
  min-width: 160px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  flex: 1 1 auto;
}

.rating-stat-item::after {
  content: '→';
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 18px;
  color: #999;
}
.stat-con {
  display: flex;
  justify-content: space-between;

  align-items: center;
  gap: 5px;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
  white-space: normal;
  max-width: 100%;
}

.stars-small {
  color: #ffc107;
  font-size: 14px;
  display: flex;
  gap: 3px;
}

.stars-small i {
  font-size: 14px;
}

/* Reviews Bottom Section - Sidebar and Detail Card */
.reviews-bottom-section {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: flex-start;
}

/* Reviews List Sidebar */
.reviews-list-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-user-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
}

.review-user-item:hover {
  background: #f0f0f0;
}

.review-user-item.active {
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.review-user-item img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.review-user-info h5 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 4px 0;
}

.review-user-info p {
  font-size: 13px;
  color: #999;
  margin: 0;
}

/* Review Detail Card */
.review-detail-card {
  background: white;
  padding: 35px 40px;
  border-radius: 15px;
}
.review-dashed-line {
  height: 1px;
  margin: 0 -40px 50px -40px;
  border-top: 1px dashed #ddd;
}
.review-detail-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 8px 0;
}

.stars-rating {
  color: #ffc107;
  font-size: 16px;
  display: flex;
  gap: 4px;
  margin-bottom: 25px;
}

.stars-rating i {
  font-size: 16px;
}

.review-content-text {
  color: #555;
  line-height: 1.9;
}

.review-content-text p {
  margin: 0 0 18px 0;
  font-size: 15px;
  line-height: 1.8;
}

.review-content-text p:last-child {
  margin-bottom: 0;
}

/* Responsive for Reviews Section */
@media (max-width: 1200px) {
  .reviews-top-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .rating-stats-horizontal {
    width: 100%;
    flex-wrap: wrap;
  }

  .rating-stat-item {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
  }
}

@media (max-width: 992px) {
  .reviews-bottom-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .reviews-list-sidebar {
    flex-direction: row;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .review-user-item {
    min-width: 200px;
    max-width: 250px;
    flex-shrink: 0;
  }

  .review-detail-card {
    padding: 30px 25px;
  }
}

@media (max-width: 768px) {
  .section-title-reviews h2 {
    font-size: 24px;
  }

  .section-title-reviews p {
    font-size: 16px;
  }

  .rating-stats-horizontal {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .rating-stat-item {
    width: 100%;
    min-width: 0;
    flex: 1 1 100%;
  }

  .review-detail-card {
    padding: 25px 20px;
  }

  .review-dashed-line {
    margin: 0 -20px 40px -20px;
  }

  .review-user-item {
    min-width: 180px;
  }
}

@media (max-width: 576px) {
  .student-reviews-section {
    padding: 40px 0;
  }

  .reviews-top-section {
    margin-bottom: 30px;
    gap: 20px;
  }

  .section-title-reviews h2 {
    font-size: 22px;
  }

  .section-title-reviews p {
    font-size: 14px;
  }

  .stat-value {
    font-size: 22px;
  }

  .stat-label {
    font-size: 12px;
  }

  .rating-stat-item {
    padding: 16px 20px;
  }

  .review-detail-card {
    padding: 20px 16px;
  }

  .review-content-text p {
    font-size: 14px;
  }
}

.rating-box {
  width: 100%;
}

.reviews-list {
  flex-direction: row;
  overflow-x: auto;
  gap: 10px;
}

.review-item {
  min-width: 200px;
}

/* Free Counselling Section */
.free-counselling-section {
  width: 100%;
  background: #1e3a5f;
  padding: 40px 0;
}

.counselling-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.counselling-content {
  flex: 1;
  max-width: 550px;
}

.counselling-content h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  white-space: nowrap;
}

.counselling-content > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 35px;
}

.counselling-form-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.counselling-form-grid .form-row {
  display: flex;
  gap: 15px;
}

.counselling-form-grid .form-row.single {
  max-width: calc(50% - 10px);
}

.counselling-form-grid .form-group {
  flex: 1;
  margin-bottom: 0;
}

.counselling-form-grid .form-group label {
  display: none;
}

.counselling-form-grid .form-group input,
.counselling-form-grid .form-group select {
  width: 100%;
  padding: 14px 16px;
  background: #fff;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  color: #333;
  font-family: inherit;
}

.counselling-form-grid .form-group input::placeholder {
  color: #999;
}

.counselling-form-grid .form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.btn-counselling-submit {
  background: #275DAA;
  color: white;
  border: none;
  padding: 16px 50px;
  min-width: 178px;
  height: 54px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 15px;
  margin-bottom: 40px;
  align-self: flex-start;
}

.btn-counselling-submit:hover {
  background: #275eaad7;
}

/* Counselling Image */
.counselling-image {
  display: block;
  flex: 0 0 auto;
  position: relative;
}

.image-frame {
  position: relative;
  width: 450px;
  height: 450px;
}

.image-frame img {
  width: 65%;
  height: 100%;
  object-fit: contain;
  position: center;
  z-index: 2;
  scale: 1.2;
  margin-left: 0px;
  overflow: hidden;
}

/* Medium devices */
@media (min-width: 1100px) {
  .image-frame img {
    scale: 1.6;
    margin-left: 0px;
  }
}

/* Large devices (1500px and above) */
@media (min-width: 1500px) {
  .image-frame img {
    scale: 2.2;
    margin-left: 80px;
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .counselling-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
  }

  .counselling-content {
    max-width: 100%;
  }

  .counselling-form-grid .form-row.single {
    max-width: 100%;
  }

  .btn-counselling-submit {
    width: 100%;
    margin-bottom: 40px;
  }

  .counselling-image {
    display: none;
    order: -1;
  }

  .image-frame {
    width: 280px;
    height: 280px;
  }
  .counselling-form-grid .form-group label {
    display: none;
  }
}

@media (max-width: 768px) {
  .counselling-form-grid .form-row {
    flex-direction: column;
  }

  .counselling-content h2 {
    font-size: 28px;
  }
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
  color: white;
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-section p {
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Contact Form Section */
.contact-section {
  background: #f8f9fa;
}

.contact-content {
  display: flex;
  gap: 60px;
}

.contact-form {
  flex: 1;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
  font-size: 24px;
  color: #1a237e;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: none;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1a237e;
}

.submit-btn {
  margin-top: 15px;
  padding: 14px 32px;
  background: #275DAA;
  color: white;
  border: none;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-btn:hover {
  background: #1f4d8a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.contact-info {
  flex: 1;
}

.contact-info h3 {
  font-size: 24px;
  color: #1a237e;
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-item i {
  font-size: 24px;
  color: #c9a227;
  margin-top: 5px;
}

.contact-item h4 {
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
}

.contact-item p {
  color: #666;
  font-size: 14px;
}

/* Footer */
.footer {
  background: #111826;
  color: white;
  padding: 60px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1.5fr auto;
  gap: 50px;
  margin-bottom: 40px;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
}

.footer-logo {
  max-width: 100px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-brand h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.footer-brand p {
  opacity: 0.8;
  font-size: 14px;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  transition: all 0.3s;
  text-decoration: none;
}

.social-links a:hover {
  background: #c9a227;
  border-color: #c9a227;
}

.footer-links h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #c9a227;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

/* Footer Destinations Two Column Layout */
.footer-destinations {
  min-width: 320px;
}

.footer-destinations ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 30px;
}

.footer-destinations li {
  margin-bottom: 0;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .footer-destinations {
    min-width: auto;
  }
  
  .footer-destinations ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* Footer Contact Block */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-block h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #c9a227;
}

.contact-block p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.contact-block p a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
  display: inline-block;
}

.contact-block p a:hover {
  color: #c9a227;
  transform: scale(1.05);
}

.contact-block .locations {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Footer Support */
.footer-support h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #c9a227;
}

.footer-support a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

.footer-support a:hover {
  color: #c9a227;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 20px;
}

/* Footer Responsive */
@media (max-width: 1100px) {
  .footer-content {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    justify-content: center;
  }
  
  .footer-support {
    grid-column: 1 / -1;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 576px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
  }
  
  .footer-links li {
    margin-bottom: 0;
  }
  
  .social-links {
    justify-content: center;
  }
}

/* Responsive */
@media (max-width: 992px) {
  /* Navigation is handled by the mobile nav styles above */

  .logo-icon {
    padding-bottom: 50px;
    width: 120px;
  }
  .logo-icon img {
    width: 50%;
    height: auto;
  }

  /* Extend hero section height to include mobile image and form */
  .hero {
    min-height: auto;
    padding-bottom: 0;
  }

  /* Ensure hero background covers the entire hero section including mobile image */
  .hero-bg-wrapper {
    height: 100% !important;
    min-height: 100vh;
  }

  .hero-bg {
    background-image: url("../assets/mobile-bg-new.webp") !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
  }

  .hero-overlay {
    display: none !important;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 0px;
    gap: 0;
    margin-top: -10px;
  }

  /* Hide hero person image on mobile */
  .hero-person {
    display: none !important;
  }

  /* Show hero mobile image on mobile */
  .hero-mobile-image {
    display: block;
    margin-top: 20px;
    
margin-bottom: 0;
    text-align: center;
    width: 100%;
  }

  .hero-mobile-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    display: block;
  }

  .hero-content h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: -0.02em;
  }

  .hero-content p {
    max-width: 100%;
  }

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

  /* Glass effect for counselling form in mobile */
  .counselling-form {
    width: calc(100% + 40px) !important;
    max-width: none !important;
    margin-top: 20px;
    margin-left: -20px !important;
    margin-right: -20px !important;
    border-radius: 40px 40px 0 0 !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    background: #275DAA !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
  }

  .services-grid,
  .destinations-grid,
  .universities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-section {
    padding: 40px 0;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    max-width: 100%;
    display: flex;
    flex-direction: column;
  }

  .about-text h1 {
    font-size: 28px;
    order: 1;
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .about-subtitle {
    order: 2;
    justify-content: center;
    margin-bottom: 15px;
  }

  /* Show mobile image, hide desktop image on mobile */
  .about-image-mobile {
    display: flex;
    justify-content: center;
    order: 5;
    margin: 15px 0 0 0;
  }

  .about-image {
    display: none !important;
  }

  .about-description-box {
    order: 3;
    text-align: left;
    margin-bottom: 15px;
  }

  .about-description-box .hero-btns {
    justify-content: center;
  }

  .about-image-wrapper::before {
    width: 60%;
    height: 80%;
    right: 20%;
    transform: translateX(50%);
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  /* New Services Section Responsive */
  .services-layout {
    flex-direction: column;
    gap: 10px;
  }

  .services-center {
    order: 2;
    margin-top: 20px !important;
    margin-bottom: 0;
  }

  .services-left {
    order: 1;
  }

  .services-right {
    order: 3;
  }

  .services-person-img {
    display: none !important;
  }

  .services-center {
    display: none;
  }
}

@media (max-width: 576px) {
  .top-bar {
    display: none;
  }

  .hero-content h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: -0.02em;
  }

  .counselling-form {
    padding: 25px 20px;
  }

  .services-grid,
  .destinations-grid,
  .universities-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .contact-content {
    flex-direction: column;
  }
}

/* ================================
   ABOUT PAGE STYLES
   ================================ */

/* About Hero Section */
.about-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1b3659 0%, #0f2540 50%, #1b3659 100%);
  padding-top: 120px;
  padding-bottom: 60px;
  overflow: hidden;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.about-hero .container {
  position: relative;
  z-index: 2;
}

.about-page-logo {
  position: absolute;
  left: 15px;
  top: 40px;
  z-index: 10;
}

.about-hero-content {
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 80px;
}

.about-hero-content h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

/* About Main Section */
.about-main-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.about-main-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-main-text {
  flex: 1;
}

.about-main-text h2 {
  font-size: 36px;
  color: #1a1a1a;
  margin-bottom: 25px;
  font-weight: 700;
}

.about-main-text p {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-main-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-main-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

/* Mission & Vision Section */
.mission-vision-section {
  background: white;
  padding: 80px 0;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.mission-card,
.vision-card {
  background: linear-gradient(135deg, #275DAA 0%, #1a3a5c 100%);
  padding: 40px;
  border-radius: 20px;
  color: white;
  text-align: center;
}

.mission-icon,
.vision-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.mission-icon i,
.vision-icon i {
  font-size: 32px;
  color: white;
}

.mission-card h3,
.vision-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
}

.mission-card p,
.vision-card p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.9;
}

/* Why Choose Us Section */
.why-choose-section {
  background: #f8f9fa;
  padding: 80px 0;
}

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

.why-choose-item {
  background: white;
  padding: 35px 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.why-choose-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.why-choose-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #275DAA 0%, #1a3a5c 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.why-choose-icon i {
  font-size: 28px;
  color: white;
}

.why-choose-item h4 {
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 12px;
  font-weight: 600;
}

.why-choose-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Locations Section */
.locations-section {
  background: white;
  padding: 80px 0;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.location-item {
  background: #f8f9fa;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.location-item:hover {
  background: #275DAA;
  color: white;
}

.location-item i {
  font-size: 28px;
  color: #275DAA;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.location-item:hover i {
  color: white;
}

.location-item h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

/* About CTA Section */
.about-cta-section {
  background: linear-gradient(135deg, #1e3a5e 0%, #122947 100%);
  padding: 80px 0;
}

.about-cta-content {
  text-align: center;
  color: white;
}

.about-cta-content h2 {
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 700;
}

.about-cta-content p {
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-cta-content .btn-primary {
  background: white;
  color: #1e3a5e;
}

.about-cta-content .btn-primary:hover {
  background: #f0f0f0;
}

/* About Page Responsive */
@media (max-width: 992px) {
  .about-hero-content h1 {
    font-size: 36px;
  }

  .about-main-content {
    flex-direction: column;
    text-align: center;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .about-hero {
    min-height: 50vh;
    padding-top: 100px;
  }

  .about-hero-content h1 {
    font-size: 28px;
  }

  .about-hero-content p {
    font-size: 15px;
  }

  .about-main-text h2 {
    font-size: 28px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-cta-content h2 {
    font-size: 28px;
  }
}

/* Floating Buttons Container */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

/* Floating Call Button */
.call-float {
  width: 60px;
  height: 60px;
  background-color: #275DAA;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 22px;
  box-shadow: 0 4px 15px rgba(39, 93, 170, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.call-float:hover {
  background-color: #1a3d7a;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(39, 93, 170, 0.6);
}

.call-float i {
  margin: 0;
}

/* Call button pulse animation */
.call-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #275DAA;
  animation: call-pulse 2s infinite;
  z-index: -1;
}

@keyframes call-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
  margin: 0;
}

/* WhatsApp button pulse animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25D366;
  animation: whatsapp-pulse 2s infinite;
  z-index: -1;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* Hero Mobile Image - Hidden on desktop, shown on mobile */
.hero-mobile-image {
    display: none;
}

@media (max-width: 992px) {
    .hero-mobile-image {
        display: block;
        text-align: center;
        margin: 20px -15px 0 -15px;
        padding: 0;
        overflow: visible;
        width: calc(100% + 30px);
    }

    .hero-mobile-image img {
        width: 143% !important;
        max-width: 143% !important;
        height: auto !important;
        min-height: unset !important;
        border-radius: 12px;
        display: block;
        margin: 0 auto;
        margin-left: -20%;
        object-fit: contain !important;
    }
}

/* Mobile responsiveness for floating buttons */
@media (max-width: 768px) {
  .floating-buttons {
    bottom: 20px;
    right: 20px;
    gap: 12px;
  }

  .whatsapp-float,
  .call-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}
