/* CSS Custom Properties for consistent theming */
:root {
  --primary-color: #4fc3d7;
  --primary-dark: #3aafcc;
  --purple-primary: #8b5cf6;
  --purple-dark: #7c3aed;
  --secondary-color: #f8f9fa;
  --text-primary: #2c3e50;
  --text-secondary: #6c757d;
  --text-light: #adb5bd;
  --white: #ffffff;
  --warning: #ffc107;
  --border-color: #e9ecef;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: "Poppins",sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  padding-top: 70px;
}

.header {
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
}

@keyframes logoFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }
}

.logo-animation {
  animation: logoFloat 3s ease-in-out infinite;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 0.5rem;
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  transition: var(--transition);
  transform: translateX(-50%);
  border-radius: 2px;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Dropdown arrow positioning */
.dropdown-toggle::after {
  display: none;
}

.dropdown-arrow {
  font-size: 0.75rem;
  transition: var(--transition);
}

.nav-link.dropdown-toggle[aria-expanded="true"] .dropdown-arrow {
  transform: rotate(180deg);
}

/* Mobile responsive styles */
.navbar-toggler {
  border: none;
  padding: 0;
  width: 30px;
  height: 20px;
  position: relative;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--text-primary);
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: var(--transition);
}

.navbar-toggler span:nth-child(1) {
  top: 0;
}

.navbar-toggler span:nth-child(2) {
  top: 8px;
}

.navbar-toggler span:nth-child(3) {
  top: 16px;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
  top: 8px;
  transform: rotate(135deg);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  left: -20px;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
  top: 8px;
  transform: rotate(-135deg);
}

.cta-button {
  font-weight: bold;
  background-color: rgb(211, 211, 211);
  border-radius: 20px;
}

/* Mobile menu adjustments */
@media (max-width: 991.98px) {
  .navbar-nav {
    padding: 1rem 0;
  }

  .nav-item {
    margin: 0.5rem 0;
    width: 100%;
  }

  .nav-link {
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    justify-content: flex-start;
    width: 100%;
  }

  .nav-link:hover {
    background-color: rgba(58, 134, 255, 0.1);
  }

  .dropdown-menu {
    border: none;
    box-shadow: none;
    padding-left: 1.5rem;
    background-color: rgba(58, 134, 255, 0.05);
    width: 100%;
  }

  .dropdown-item {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
  }

  .cta-button {
    /* border: 2px solid rgb(253, 142, 142); */
    background-color: rgb(211, 211, 211);
    margin-top: 1rem;
    text-align: center;
    display: block;
    width: 100%;
    margin: 0 auto;
  }

  /* Fix alignment for all nav items */
  .navbar-nav .nav-item .nav-link {
    justify-content: flex-start;
    padding-left: 1rem;
  }

  /* Adjust logo size on mobile */
  .navbar-brand img {
    height: 50px;
  }

  /* Ensure all nav items have the same alignment */
  .navbar-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Desktop specific styles */
@media (min-width: 992px) {
  .dropdown-menu {
    border: none;
    box-shadow: var(--shadow);
    padding: 0.5rem 0;
  }

  .dropdown-item {
    padding: 0.5rem 1rem;
    transition: var(--transition);
  }

  .dropdown-item:hover {
    background-color: rgba(58, 134, 255, 0.1);
  }

  .nav-link .dropdown-arrow {
    margin-left: 0.25rem;
  }

  /* Desktop specific alignment */
  .navbar-nav .nav-item .nav-link {
    justify-content: center;
  }
}

.hero-section {
  background: url('../images//europe-hero.jpg') no-repeat center center/cover;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
}

.hero-btn1 {
  background-color: #003399;
  border: none;
  font-weight: 600;
  padding: 18px 26px;
  border-radius: 50px;
}

.hero-btn1:hover {
  background-color: #0c3eb3;
}

/* Smooth scrolling for any anchor links */
html {
  scroll-behavior: smooth;
}

/* Roadmap Section Styles */
.roadmap-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  position: relative;
  font-family: "Poppins", sans-serif;
}

.roadmap-section .container {
  /* border: 2px solid black; */
  /* border: 2px solid; */
  margin: 0 auto;
  border-radius: 20px;
  background-color: rgb(243, 241, 241);
  padding: 2rem 2rem 6rem 2rem;
}

/* Roadmap Header */
.roadmap-tag {
  background: #dfe4ee;
  color: #003399;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.roadmap-tag.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.roadmap-heading {
  /* font-size: 2.5rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.2s; */
  font-size: 2.1rem;
  font-weight: 800;
  color: #000000;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.2s;
}

.roadmap-heading.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.roadmap-heading .text-danger {
  color: #dc3545 !important;
}

.roadmap-description {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.4s;
}

.roadmap-description.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Slider Container */
.roadmap-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.roadmap-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  overflow: hidden;
  position: relative;
  min-height: 300px;
}

/* Roadmap Steps */
.roadmap-step {
  flex: 0 0 250px;
  background: rgba(255, 255, 255);
  padding: 2rem 1.5rem;
  border-radius:0px;
  text-align: center;
  /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
  transition: all 0.6s ease;
  /* opacity: 0.6; */
  transform: scale(0.9) translateY(20px);
  /* backdrop-filter: blur(10px); */
  position: relative;
  position: relative;
  min-height: 330px; 
  display: flex;
  flex-direction: column;
}

 /* .roadmap-step.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 1);
} */

.roadmap-step.animate-in {
  /* opacity: 0.6; */
  transform: scale(0.9) translateY(0);
}

/* .roadmap-step.active.animate-in {
  opacity: 1;
  transform: scale(1) translateY(0);
}  */
/* Step Number */
.step-number {
  position: absolute;
  top: -15px;
  left: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

/* Step Icon */
.step-icon {
  margin: 1rem 0;
  color: #dc3545;
}

.step-icon img {
  width: 50%;
  height: 50%;
  stroke-width: 2;
}

/* Step Content */
.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  margin: 1rem 0 0.5rem;
  line-height: 1.3;
}

.step-description {
  font-family: "Roboto";
  font-size: 0.9rem;
  color: black;
  line-height: 1.5;
  margin-bottom: 1rem;
  text-align: start;
}

/* Step Arrow */
.step-arrow {
  position: absolute;
  right: -25%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3.5rem;
  color: #949191;
  opacity: 0.7;
}

.roadmap-step:last-child .step-arrow {
  display: none;
}

.slider-navigation {
  position: absolute;
  bottom: -60px;
  left: 0;
  display: flex;
  gap: 1rem;
}

.nav-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid #000000;
  color: #000000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.nav-btn:hover {
  background: #6d6c6c;
  color: white;
  transform: scale(1.1);
}

.nav-btn i {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .roadmap-slider {
    flex-direction: column;
    gap: 1.5rem;
  }

  .roadmap-step {
    flex: none;
    width: 100%;
    max-width: 400px;
  }

  .step-arrow {
    display: none;
    right: 50%;
    top: auto;
    bottom: -65px;
    transform: translateX(50%) rotate(90deg);
  }

  .roadmap-heading {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .roadmap-section {
    padding: 3rem 0;
  }

  .roadmap-section .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .roadmap-heading {
    font-size: 1.8rem;
  }

  .roadmap-description {
    font-size: 1rem;
  }

  .roadmap-step {
    padding: 1.5rem 1rem;
  }

  .step-title {
    font-size: 1.1rem;
  }

  .step-description {
    font-size: 0.85rem;
  }
}

@media (max-width: 575.98px) {
  .roadmap-section .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .roadmap-slider {
    gap: 1rem;
  }

  .roadmap-step {
    padding: 1.2rem 0.8rem;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .nav-btn {
    width: 40px;
    height: 40px;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {

  .roadmap-tag,
  .roadmap-heading,
  .roadmap-description,
  .roadmap-step {
    transition: none !important;
    animation: none !important;
  }
}

.study-abroad-section-3 {
  margin: 0 auto;
  max-width: 84%;
  padding: 80px 0;
  position: relative;
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
}


@media (max-width: 992px) {
  .study-abroad-section-3 {
    max-width: 100%;
  }
}


/* Header Section */
.header-section-3 {
  margin-bottom: 3rem;
}

.badge-container-3 {
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInUp-3 0.8s ease forwards;
}

.badge-3 {
  background-color: #d1d6e0;
  color: #003399;
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 800;
  display: inline-block;
  margin-bottom: 24px;
}

.main-heading-3 {
  color: #012169;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp-3 1s ease 0.3s forwards;
}
.main-heading-1 {
  color: #012169;
  font-size: 34px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp-3 1s ease 0.3s forwards;
}

.subtitle-3 {
  color: #000000;
  font-family: "Roboto";
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp-3 1s ease 0.6s forwards;
  max-width:100%;
}

.country-buttons-3 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp-3 1s ease 0.9s forwards;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.country-buttons-3::-webkit-scrollbar {
  display: none;
}

.country-btn-3 {
  padding: 12px 32px;
  border-radius: 12px;
  border: 2px solid #000000;
  background: white;
  color: #012169;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  font-size: 18px;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
}

.country-btn-3.active-3 {
  background: linear-gradient(90deg, black, #dd0000 , #ffce00);
  color: white;
  border-color: #012169;
}

/* .country-btn-3:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  color: #1a73e8;
  border-color: #1a73e8;
} */

.country-btn-3.active-3:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
  color: white;
}

/* Main Content Section */
.main-content-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.left-content-3 {
  grid-column: span 1;
}

.right-benefits-3 {
  grid-column: span 1;
}

.country-title-3 {
  color: #012169;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp-3 1s ease 1.2s forwards;
  line-height: 1.5;
}

.hero-btn {
  font-weight: bold;
  background-color: #b22234;
  padding: 10px 30px;
  border-radius: 50px;
}

.country-description-3 {
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp-3 1s ease 1.2s forwards;
  max-width: 80%;
}

.description-text-3 {
  color: #000000;
  font-family: "Roboto";
  font-size: 18.5px;
  line-height: 1.6;
}

.action-buttons-3 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp-3 1s ease 1.5s forwards;
}

.consultation-btn-3 {
  background: transparent;
  border: 2px solid #012169;
  color: #012169;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 15px;
  cursor: pointer;
}

.consultation-btn-3:hover {
  background: linear-gradient(135deg, #324779, #012169);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px #011a55;
}

.eligibility-btn-3 {
  border: 2px solid black;
  background-color: #ffd6d6;
  color: #dd0000;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.eligibility-btn-3:hover {
  background: #ef9a9a;
  color: white;
}

/* Benefits Section */
.benefits-card-3 {
  background-image: url("../images/europey.jpg");
  /* background: rgba(255, 255, 255, 0.9); */
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.benefits-list-3 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item-3 {
  display: flex;
  align-items: flex-start;
  transition: all 0.2s ease;
}

.benefit-item-3:hover {
  transform: translateX(5px);
}

.bullet-3 {
  width: 8px;
  height: 8px;
  background: #333;
  border-radius: 50%;
  margin-right: 1rem;
  margin-top: 8px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.benefit-item-3:hover .bullet-3 {
  background: #4285f4;
  transform: scale(1.2);
}

.benefit-content-3 {
  flex: 1;
}

.benefit-title-3 {
  font-size:18px;
  font-weight: 650;
  color: #000000;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.benefit-desc-3 {
  font-family: "Roboto";
  font-size: 0.8rem;
  color: #000000;
  margin-bottom: 0;
  line-height: 1.4;
}

/* Animations */
@keyframes fadeInUp-3 {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (min-width: 1024px) {
  .main-content-3 {
    grid-template-columns: 7fr 5fr;
  }

  .action-buttons-3 {
    flex-direction: row;
  }
}

@media (max-width: 991px) {
  .main-heading-3 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .main-heading-3 {
    font-size: 2.4rem;
  }

  .country-buttons-3 {
    gap: 6px;
    padding-right: 20px;
  }

  .country-btn-3 {
    padding: 8px 12px;
    font-size: 12px;
    min-width: fit-content;
  }

  .country-title-3 {
    font-size: 2rem;
  }

  .benefits-card-3 {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .study-abroad-section-3 {
    padding: 40px 0;
  }

  .main-heading-3 {
    font-size: 2rem;
  }

  .country-buttons-3 {
    gap: 4px;
    padding-right: 20px;
  }

  .country-btn-3 {
    padding: 6px 10px;
    font-size: 11px;
    min-width: fit-content;
  }

  .country-title-3 {
    font-size: 1.75rem;
  }

  .benefits-card-3 {
    padding: 1.2rem;
  }

  .benefit-item-3 {
    margin-bottom: 1.5rem;
  }

  .benefits-list-3 {
    gap: 1.5rem;
  }
}

/* Hover effects */
.study-abroad-section-3:hover .country-btn-3:not(:hover):not(.active-3) {
  opacity: 0.7;
  transform: scale(0.98);
}

/* 
.study-abroad-section-2 {

  margin: 0 auto;
  max-width: 80%;
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  min-height: 100vh;
  text-align: right;
}

.top-courses-badge-2 {
  background-color: #cef0e3;
  color: #169b62;
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInUp-2 0.8s ease forwards;
}

.main-heading-2 {
  color: #169b62;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp-2 1s ease 0.3s forwards;
  text-align: right;
}

.subtitle-2 {
  color: #5f6368;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp-2 1s ease 0.6s forwards;
  max-width: 100%;
  text-align: right;
}

.category-buttons-2 {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp-2 1s ease 0.9s forwards;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  justify-content: flex-end;
}

.category-buttons-2::-webkit-scrollbar {
  display: none;
}

.category-btn-2 {
  padding: 10px 36px;
  border-radius: 10px;
  border: 2px solid #e0e0e0;
  background: white;
  color: #169b62;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  font-size: 13px;
  white-space: nowrap;
  flex-shrink: 0;
}

.category-btn-2.active {
  background: linear-gradient(135deg, #51d88e, #169b62);
  color: white;
  border-color: #169b62;
}

.category-btn-2:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  color: #1a73e8;
  border-color: #1a73e8;
}

.category-btn-2.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
  color: white;
}

.description-text-2 {
  color: #3c4043;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp-2 1s ease 1.2s forwards;
  max-width: 520px;
  text-align: justify;
  margin-left: 20px; 
  margin-right: 0; 
  display: inline-block;
  width: auto;
}

.consultation-btn-2 {
  background: transparent;
  border: 2px solid #169b62;
  color: #169b62;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp-2 1s ease 1.5s forwards;
  font-size: 15px;
}

.consultation-btn-2:hover {
  background: linear-gradient(135deg, #51d88e, #169b62);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}

.image-section-2 {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  opacity: 0;
  animation: fadeIn-2 1.2s ease 1.8s forwards;
}

.university-image-2 {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.stat-callout-2 {
  position: absolute;
  background: #fffdfd;
  color: rgb(0, 0, 0);
  border-radius: 10px;
  border: 2px solid black;
  padding: 8px 16px;
  box-shadow: 2px 2px black;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transform: scale(0);
  animation: scaleIn-2 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  z-index: 3;
}

.stat-callout-2::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
}

.stat-callout-2.stat-1-2 {
  top: 10px;
  right: -5px;
  animation-delay: 2.2s;
}

.stat-callout-2.stat-2-2 {
  top: 50%;
  left: -60px;
  transform-origin: right center;
  animation-delay: 2.5s;
}

.stat-callout-2.stat-3-2 {
  bottom: 10px;
  right: -15px;
  animation-delay: 2.8s;
}

.blue-circle-2 {
  display: none;
}


@keyframes fadeInUp-2 {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn-2 {
  to {
    opacity: 1;
  }
}

@keyframes scaleIn-2 {
  to {
    transform: scale(1);
  }
}

@media (max-width: 991px) {
  .main-heading-2 {
    font-size: 2.8rem;
  }

  .university-image-2 {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 768px) {
  .main-heading-2 {
    font-size: 2.4rem;
  }

  .category-buttons-2 {
    gap: 6px;
    padding-right: 20px;
  }

  .category-btn-2 {
    padding: 8px 12px;
    font-size: 12px;
    min-width: fit-content;
  }

  .university-image-2 {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 576px) {
  .study-abroad-section-2 {
    padding: 40px 0;
  }
  .consultation-btn-2 {
    margin: 20px auto;
  }
  .description-text-2 {
    text-align: justify;
    margin-left: 10px; 
    margin-right: 0;
    width: auto;
  }
  .main-heading-2 {
    font-size: 2rem;
  }

  .category-buttons-2 {
    gap: 4px;
    padding-right: 20px;
  }

  .category-btn-2 {
    padding: 6px 10px;
    font-size: 11px;
    min-width: fit-content;
  }

  .university-image-2 {
    width: 220px;
    height: 220px;
  }
} */

.study-abroad-section-2 {
  /* border: 2px solid green; */
  max-width: 84%;
  margin: 0 auto;
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  min-height: 100vh;
  text-align: right;
}

.top-courses-badge-2 {
  background-color: rgba(20, 38, 56, 0.067);
  color: #012169;
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInUp-2 0.8s ease forwards;
}

.main-heading-2 {
  color: #012169;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp-2 1s ease 0.3s forwards;
  text-align: right;
}

.subtitle-2 {
  color: #5f6368;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp-2 1s ease 0.6s forwards;
  max-width: 100%;
  text-align: right;
}

.category-buttons-2 {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp-2 1s ease 0.9s forwards;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  justify-content: flex-end;
  -webkit-overflow-scrolling: touch;
  /* Smooth scrolling on mobile */
}

.category-buttons-2::-webkit-scrollbar {
  display: none;
}

.category-btn-2 {
  padding: 10px 36px;
  border-radius: 10px;
  border: 2px solid #e0e0e0;
  background: white;
  color: #012169;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  font-size: 13px;
  white-space: nowrap;
  flex-shrink: 0;
}

.category-btn-2.active {
  background: linear-gradient(135deg, #4c5e88, #012169);
  color: white;
  border-color: #012169;
}

.category-btn-2:hover {
  /* transform: translateY(-2px); */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  color: #1a73e8;
  border-color: #1a73e8;
}

.category-btn-2.active:hover {
  /* transform: translateY(-2px); */
  box-shadow: 0 8px 25px #012169;
  color: rgb(0, 0, 0);
}

.description-text-2 {
  color: #3c4043;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp-2 1s ease 1.2s forwards;
  max-width: 520px;
  text-align: justify;
  margin-left: 20px;
  /* Spacing on the left side */
  margin-right: 0;
  /* No spacing on the right side */
  display: inline-block;
  width: auto;
}

.consultation-btn-2 {
  background: transparent;
  border: 2px solid #012169;
  color: #012169;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp-2 1s ease 1.5s forwards;
  font-size: 15px;
}

.consultation-btn-2:hover {
  background: linear-gradient(135deg, #43588a, #012169);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px #012169;
}

.image-section-2 {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  opacity: 0;
  animation: fadeIn-2 1.2s ease 1.8s forwards;
  text-align: center;
  /* Center the image on mobile */
}

.university-image-2 {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.stat-callout-2 {
  position: absolute;
  background: #fffdfd;
  color: rgb(0, 0, 0);
  border-radius: 10px;
  border: 2px solid black;
  padding: 8px 16px;
  box-shadow: 2px 2px black;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transform: scale(0);
  animation: scaleIn-2 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  z-index: 3;
}

.stat-callout-2::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
}

.stat-callout-2.stat-1-2 {
  top: 10px;
  right: -5px;
  animation-delay: 2.2s;
}

.stat-callout-2.stat-2-2 {
  top: 50%;
  left: -60px;
  transform-origin: right center;
  animation-delay: 2.5s;
}

.stat-callout-2.stat-3-2 {
  bottom: 10px;
  right: -15px;
  animation-delay: 2.8s;
}

.blue-circle-2 {
  display: none;
}

/* Animations */
@keyframes fadeInUp-2 {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn-2 {
  to {
    opacity: 1;
  }
}

@keyframes scaleIn-2 {
  to {
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .main-heading-2 {
    font-size: 2.8rem;
  }

  .university-image-2 {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 768px) {
  .main-heading-2 {
    font-size: 2.4rem;
  }

  .category-buttons-2 {
    gap: 6px;
    padding-right: 20px;
  }

  .category-btn-2 {
    padding: 8px 12px;
    font-size: 12px;
    min-width: fit-content;
  }

  .university-image-2 {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 576px) {
  .study-abroad-section-2 {
    padding: 40px 0;
  }

  .consultation-btn-2 {
    margin: 20px auto;
  }

  .description-text-2 {
    text-align: justify;
    margin-left: 10px;
    /* Adjusted for smaller screens */
    margin-right: 0;
    width: auto;
  }

  .main-heading-2 {
    font-size: 2rem;
    text-align: center;
  }

  .subtitle-2 {
    text-align: center;
  }

  .category-buttons-2 {
    gap: 4px;
    padding-right: 0;
    /* Remove extra padding to allow full scroll */
    justify-content: flex-start;
    /* Align to start for smooth scrolling */
    overflow-x: auto;
    /* Ensure horizontal scroll */
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on mobile */
    white-space: nowrap;
    /* Prevent wrapping */
  }

  .category-btn-2 {
    padding: 6px 10px;
    font-size: 11px;
    min-width: fit-content;
    display: inline-block;
    /* Ensure inline behavior for scrolling */
  }

  .image-section-2 {
    justify-content: center;
    /* Center the image */
  }

  .university-image-2 {
    width: 220px;
    height: 220px;
  }

  .row.align-items-center.mt-4 {
    flex-direction: column;
    text-align: center;
  }

  .col-lg-4,
  .col-lg-8 {
    width: 100%;
    max-width: 100%;
  }
}

/* study abroad section */

.study-abroad-section {
  padding: 80px 0;
  position: relative;
}

.top-courses-badge {
  background-color: #e4e8f3;
  color: #012169;
  padding: 2px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInUp 0.8s ease forwards;
}

.main-heading {
  color: #012169;
  font-size: 2 0.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.3s forwards;
}

.subtitle {
  color: #000000;
  font-family: "Roboto";
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease 0.6s forwards;
}

.category-buttons {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease 0.9s forwards;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.category-buttons::-webkit-scrollbar {
  display: none;
}

.category-btn {
  padding: 10px 15px;
  border-radius: 10px;
  border: 3px solid black;
  background: white;
  color: #012169;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  font-size: 16px;
  white-space: nowrap;
  flex-shrink: 0;
}

.category-btn.active {
  background:  #012169;
  color: white;
  border-color: #012169;
}

/* 
.category-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  color: #1a73e8;
  border-color: #1a73e8;
} */

.category-btn.active:hover {
  /* transform: translateY(-2px); */
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
  color: white;
}

.description-text {
  color: #000000;
  font-family: "Roboto";
  font-size: 19px;
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease 1.2s forwards;
  max-width: 620px;
}

.consultation-btn {
  background: transparent;
  border: solid#012169;
  color: #012169;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease 1.5s forwards;
  font-size: 15px;
}

.consultation-btn:hover {
  background: #012169;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px#012169;
}

.image-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  opacity: 80%;
  animation: fadeIn 1.2s ease 1.8s forwards;
}

@media screen and (max-width:678px) {
  .image-section {
    margin-top: 60px !important;
  }
}

.university-image {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.stat-callout {
  position: absolute;
  background: #fffdfd;
  color: rgb(0, 0, 0);
  border-radius: 10px;
  border: 2px solid black;
  padding: 8px 16px;
  box-shadow: 2px 2px black;
  font-family: "Roboto";
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transform: scale(0);
  animation: scaleIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  z-index: 3;
}

.stat-callout::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
}

.stat-callout.stat-1 {
  top: -3px;
  left: 65px;
  animation-delay: 2.2s;
}

.stat-callout.stat-2 {
  top: 30px;
  right: 65px;
  transform-origin: right center;
  animation-delay: 2.5s;
}

.stat-callout.stat-3 {
  bottom: 0px;
  right: 45px;
  animation-delay: 2.8s;
}

.blue-circle {
  display: none;
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  to {
    transform: scale(1);
  }
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .main-heading {
    font-size: 2.8rem;
  }

  .university-image {
    width: 280px;
    height: 280px;
  }

  .blue-circle {
    width: 320px;
    height: 320px;
  }
}

@media (max-width: 768px) {
  .main-heading {
    font-size: 2.4rem;
  }

  .category-buttons {
    gap: 6px;
    padding-right: 20px;
  }

  .category-btn {
    padding: 8px 12px;
    font-size: 12px;
    min-width: fit-content;
  }

  .university-image {
    width: 250px;
    height: 250px;
  }

  .blue-circle {
    width: 280px;
    height: 280px;
  }

  .stat-callout {
    font-size: 12px;
    padding: 6px 12px;
  }

  .stat-callout.stat-2 {
    left: -60px;
  }
}

@media (max-width: 576px) {
  .study-abroad-section {
    padding: 40px 0;
  }

  .main-heading {
    font-size: 2rem;
  }

  .category-buttons {
    gap: 4px;
    padding-right: 20px;
  }

  .category-btn {
    padding: 6px 10px;
    font-size: 14px;
    min-width: fit-content;
    font-weight: bold;
  }

  .university-image {
    width: 220px;
    height: 220px;
  }

  .blue-circle {
    width: 250px;
    height: 250px;
  }

  .stat-callout.stat-2 {
    left: -10px;
  }

  .stat-callout.stat-3 {
    margin-right: 10px;
  }
}

/* Hover effects */
.content-section:hover .category-btn:not(:hover):not(.active) {
  opacity: 0.7;
  transform: scale(0.98);
}

.image-section:hover .university-image {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

.image-section:hover .stat-callout {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* big cta section */
.cta-2-hero-section {
  background-image: url("../images/cta-2.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 400px;
  /* Set fixed height to 400px */
  position: relative;
  display: flex;
  align-items: center;
  padding: 1rem;
  /* Reduced padding */
  overflow: hidden;
  border-radius: 1.5rem;
  margin: 0 auto;
  max-width: 1200px;
  font-family: "Poppins", sans-serif;
}

@media screen and (max-width:992px) {
  .cta-2-hero-section {
    max-width: 90%;
  }

  .width {
    width: 100% !important;
  }

  .arrow-mark {
    right: 0 !important;
  }

  .subtitle-3,
  .description-text-3,
  .hero-subtext,
  .description-text {
    text-align: justify;
  }

  .country-description-3 {
    max-width: 100% !important;
  }
}

.cta-2-bg-container {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-2-bg-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
}

.cta-2-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.3) 100%);
  z-index: 10;
  border-radius: 1.5rem;
}

.cta-2-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 20;
}

.cta-2-content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  /* Reduced gap */
  align-items: center;
}

.cta-2-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  /* Reduced gap */
}

.cta-2-heading {
  font-size: 1.5rem;
  /* Reduced font size */
  font-weight: 700;
  color: white;
  line-height: 1.3;
  margin-bottom: 0;
}

.cta-2-heading-accent {
  color: white;
}

.cta-2-subtitle {
  font-size: 0.875rem;
  /* Reduced font size */
  color: rgba(0, 0, 0, 0.9);
  font-weight: 700;
  max-width: 36rem;
}

.cta-2-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  /* Reduced gap */
  max-width: 28rem;
}

.cta-2-university-card {
  background: rgb(243, 240, 240);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 5px;
  padding: 5px;
  /* Reduced padding */
  cursor: pointer;
  transition: all 0.3s ease;
  max-width: 150px;
}

.cta-2-university-card:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.cta-2-card-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-2-university-icon {
  
  width: 1rem;
  /* Slightly reduced */
  height: 1.25rem;
  /* Slightly reduced */
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-2-icon {
  width: 30px;
  /* Reduced */
  height: 20px;
  /* Reduced */
  
  stroke-width: 2;
}

.cta-2-university-name {
  color: rgb(0, 0, 0);
  font-weight: bold;
  font-size: 0.525rem;
  align-items: center;
  /* Reduced font size */
  line-height: 1.2;
  text-align: center;
}
.tuition-free {
  max-width: 60%;
}
.cta-2-button {
  background-color:#003399;
  /* box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3); */
  color: white;
  padding: 15px 35px;
  border-radius: 5px;
  font-weight: 400;
  font-size: 1.2rem;
  /* Reduced font size */
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
  padding-left: 17%;
}

.cta-2-button:hover {
  background: linear-gradient(135deg,
      hsl(220, 91%, 55%) 0%,
      hsl(220, 91%, 50%) 100%);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

.cta-2-button:active {
  transform: translateY(0);
}

.cta-2-button:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.3);
}

.cta-2-arrow {
  width: 0.875rem;
  /* Slightly reduced */
  height: 0.875rem;
  /* Slightly reduced */
  stroke-width: 2;
}

.cta-2-image-space {
  display: none;
}

/* Tablet and Desktop Responsive */
@media (min-width: 768px) {
  .cta-2-hero-section {
    height: 400px;
    /* Keep fixed at 400px */
    padding: 1.5rem;
    /* Reduced padding */
  }

  .cta-2-content-wrapper {
    grid-template-columns: 7fr 5fr;
  }

  .cta-2-content {
    gap: 1.25rem;
    /* Reduced gap */
  }

  .cta-2-heading {
    font-size: 2rem;
    /* Reduced font size */
  }

  .cta-2-subtitle {
    font-size: 1rem;
    /* Reduced */
  }

  .cta-2-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-2-bg-image {
    width: 50%;
  }

  .cta-2-image-space {
    display: block;
  }
}

/* Large Desktop */
@media (min-width: 1024px) {
  .cta-2-heading {
    font-size: 2.5rem;
    /* Reduced from original */
  }
}

/* Animation keyframes for loading effects */
@keyframes cta-2-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cta-2-fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Add animations to elements */
.cta-2-heading {
  animation: cta-2-fadeInLeft 0.8s ease-out;
}

.cta-2-subtitle {
  animation: cta-2-fadeInUp 0.8s ease-out 0.2s both;
}

.cta-2-cards-grid {
  animation: cta-2-fadeInUp 0.8s ease-out 0.4s both;
}

.cta-2-button {
  animation: cta-2-fadeInUp 0.8s ease-out 0.6s both;
}

.cta-2-university-card:nth-child(1) {
  animation-delay: 0.1s;
}

.cta-2-university-card:nth-child(2) {
  animation-delay: 0.2s;
}

.cta-2-university-card:nth-child(3) {
  animation-delay: 0.3s;
}

.cta-2-university-card:nth-child(4) {
  animation-delay: 0.4s;
}

.cta-2-university-card:nth-child(5) {
  animation-delay: 0.5s;
}

.cta-2-university-card:nth-child(6) {
  animation-delay: 0.6s;
}

/* marquee section  */
.marquee-section {
  /* border: 2px solid;  */
  /* background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d); */
  color: rgb(0, 0, 0);
  padding: 40px 0;
  overflow: hidden;
  position: relative;
  max-width: 86%;
  margin: 0 auto;
}

.marquee-title {
  font-weight: 700;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 30px;
  /* text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3); */
}

.marquee-container {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 80px;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0 10px;
}

.marquee-track {
  display: flex;
  animation: marquee-scroll 25s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: flex;
  align-items: center;
  padding: 0 30px;
  flex-shrink: 0;
}

.marquee-item img {
  height: 70px;
  width: auto;
  margin-right: 15px;
  border-radius: 4px;
  object-fit: contain;
}

.institution-name {
  font-size: 1.3rem;
  font-weight: 600;
  white-space: nowrap;
}

.ec-logo {
  font-weight: 800;
  font-size: 1.5rem;
  background: white;
  color: #1a2a6c;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Pause animation on hover */
.marquee-track:hover {
  animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .marquee-title {
    font-size: 1.5rem;
    padding: 0 15px;
  }

  .marquee-item {
    padding: 0 20px;
  }

  .institution-name {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .marquee-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .marquee-container {
    height: 70px;
  }

  .marquee-item {
    padding: 0 15px;
  }

  .marquee-item img {
    height: 35px;
    margin-right: 10px;
  }

  .institution-name {
    font-size: 1rem;
  }

  .ec-logo {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .marquee-section {
    padding: 30px 0;
  }

  .marquee-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .marquee-container {
    height: 60px;
  }

  .marquee-item {
    padding: 0 10px;
    flex-direction: column;
  }

  .marquee-item img {
    height: 30px;
    margin-right: 0;
    margin-bottom: 5px;
  }

  .institution-name {
    font-size: 0.8rem;
    text-align: center;
  }

  .ec-logo {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
    margin-right: 8px;
  }
}

.hero-banner {
  background: linear-gradient(135deg, #2e2e2ede 0%, #2e2e2ee1 100%), url('../images/banner-bg4.png') no-repeat;
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  max-width: 84%;
  margin: 40px auto;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.hero-title{
  font-size:40px;
  font-weight: bolder;
  color: #000;
  max-width: 700px;
}
.hero-subtext{
  font-family: "Roboto",sans-serif;
  color:black;
  font-size: 20px;
  font-weight: 450;
}
.hero-title-2 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px 30px;
  text-align: left;
}

.hero-subtitle {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 0 30px;
  text-align: justify;
  width:600px;
}

.btn-consultation-2 {
  background-color:#003399;
  color: white;
  padding: 16px 38px;
  border-radius: 0;
  font-weight: 400;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
}

.btn-consultation-2:hover {
  background: #012169;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px #012169;
  color: white;
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Background geometric shapes */
.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  right: 10%;
  background: rgba(139, 92, 246, 0.2);
}

.shape-2 {
  width: 150px;
  height: 150px;
  bottom: -30px;
  left: 5%;
  background: rgba(16, 185, 129, 0.2);
}

.shape-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  right: 5%;
  background: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .hero-banner {
    padding: 40px 0;
    max-width: 90%;
  }

  .hero-title-2 {
    font-size: 2rem;
    text-align: center;
    margin: 0 0 20px 0;
  }

  .hero-subtitle {
    font-size: 1rem;
    text-align: justify;
    margin: 0 15px 20px 15px;
  }

  .btn-consultation-2 {
    display: block;
    text-align: center;
    margin: 0 auto;
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  .text-end {
    text-align: center !important;
  }

  .shape-1 {
    width: 150px;
    height: 150px;
    top: -30px;
    right: 5%;
  }

  .shape-2 {
    width: 100px;
    height: 100px;
    bottom: -20px;
    left: 3%;
  }

  .shape-3 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 3%;
  }
}

@media (max-width: 575.98px) {
  .hero-banner {
    padding: 30px 0;
    max-width: 95%;
    border-radius: 12px;
  }

  .hero-title-2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 10px 15px 10px;
    text-align: justify;
  }

  .btn-consultation-2 {
    padding: 12px 24px;
    font-size: 0.85rem;
    margin: 0 auto;
  }

  .shape-1 {
    width: 100px;
    height: 100px;
    top: -20px;
  }

  .shape-2 {
    width: 80px;
    height: 80px;
    bottom: -15px;
  }

  .shape-3 {
    width: 60px;
    height: 60px;
    top: 65%;
  }
}

/* Footer Styles */

.footer-section {
  /* border: 2px solid; */
  padding-left: 100px;
  background: rgb(203 164 235 / 15%);
  padding: 60px 0 0;
  color: #4a5568;
}

.footer-section .container {
  /* border: 2px solid; */
  max-width: 84%;
  margin: 0 auto;
}

.footer-brand {
  margin-bottom: 30px;
}

.logo-container {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.logo-icon {
  margin-right: 12px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #8b5cf6;
}

.footer-description {
  text-align: justify;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #718096;
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #8b5cf6;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #7c3aed;
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 25px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #718096;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #8b5cf6;
}

.contact-info {
  font-size: 0.95rem;
}

.contact-item {
  margin-bottom: 15px;
  color: #718096;
}

.contact-item strong {
  color: #4a5568;
}

/* Quote Section Styles */
.quote-section {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  position: relative;
  border-left: 4px solid #8b5cf6;
}

.quote-mark {
  font-size: 3rem;
  color: #8b5cf6;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}

.quote-content {
  font-size: 1.1rem;
  line-height: 1.4;
}

.quote-text-1 {
  color: #4a5568;
  font-weight: 500;
}

.quote-text-2 {
  color: #8b5cf6;
  font-weight: 700;
  font-style: italic;
}

.quote-text-3 {
  color: #8b5cf6;
  font-weight: 700;
}

.quote-attribution {
  color: #718096;
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 5px;
}

.success-description {
  font-size: 0.95rem;
  color: #718096;
  margin-bottom: 25px;
}

.btn-journey {
  /* background: #8b5cf6; */
  color: #000000;
  border: 2px solid black;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-journey:hover {
  background: #7c3aed;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

/* Footer Bottom */
.footer-bottom {
  background: #e2e8f0;
  padding: 20px 0;
  margin-top: 50px;
}

.footer-copyright {
  color: #718096;
  font-size: 0.9rem;
  padding-bottom: 18px;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    text-align: center;
    margin-bottom: 30px;
  }

  .btn-consultation {
    display: block;
    text-align: center;
    margin: 0 auto;
  }

  .footer-section {
    padding: 40px 0 0;
  }
}

@media (max-width: 767.98px) {
  .hero-banner {
    padding: 40px 0;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn-consultation {
    font-size: 1rem;
    padding: 12px 25px;
  }

  .quote-section {
    padding: 20px;
  }

  .quote-mark {
    font-size: 2.5rem;
  }

  .quote-content {
    font-size: 1rem;
  }

}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .quote-section {
    padding: 15px;
  }

  .btn-consultation {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .btn-journey {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}

/* Hover effects for better interactivity */
.footer-links a,
.contact-item {
  transition: all 0.3s ease;
}

.footer-links a:hover {
  padding-left: 5px;
}

/* Focus states for accessibility */
.btn-consultation:focus,
.btn-journey:focus,
.social-link:focus {
  outline: 2px solid #8b5cf6;
  outline-offset: 2px;
}

.under-line {
  border-bottom: 1px solid #000;
}

.arrow-mark {
  position: absolute;
  bottom: -20px;
  right: 320px;
}

.founding-team-section {
  background-color: #f8f8f8;
  border-radius: 15px;
  padding: 49px 0px 40px 50px;
  overflow: hidden;
}
/* Team Container */
.team-container {
  margin-top: 60px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden !important;
}

/* Team Members */
/* Scroll Container Setup */
.team-members {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0px 10px;
  margin-bottom: 40px;
      padding-left: 76px;
}

/* Each Card Column */
.team-member-col {
  flex: 0 0 23%;
  /* Show 4 cards per row */
  padding: 0px 16px;
  transition: all 0.3s ease;
}

@media screen and (max-width: 678px) {
  .team-member-col {
    height: 350px;
  }

  .member-photo {
    height: 40%;
  }
}

.team-member-col:first-child {
  padding-left: 10px !important;
}

.team-member-col:last-child {
  padding-right: 10px !important;
}

/* Responsive Tweaks */
@media (max-width: 1200px) {
  .team-member-col {
    flex-basis: 33.33%;
    /* 3 cards visible */
  }
}

@media (max-width: 992px) {
  .team-member-col {
    flex-basis: 50%;
    /* 2 cards visible */
  }
}

@media (max-width: 576px) {
  .team-member-col {
    flex-basis: 100%;
    /* 1 card visible */
  }
}

/* Hide scrollbar (optional aesthetic) */
.team-members::-webkit-scrollbar {
  display: none;
}

.team-members {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.team-member-card {
  background: white;
  /* border-radius: 10px; */
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 94%;
}

/* .team-member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
} */

.member-photo {
  /* width: 100%;
  overflow: hidden;
  position: relative; */
  margin: 1rem 0;
  color: #dc3545;
}
/* .step-icon {
  margin: 1rem 0;
  color: #dc3545;
}

.step-icon img {
  width: 50%;
  height: 50%;
  stroke-width: 2;
} */

.member-photo img {
  width: 75%;
  height: 75%;
  display: block;
  stroke-width: 2;
}

.member-info {
  padding: 20px 15px;
  text-align: center !important;
}

.member-name {
  font-family: "poppins", "sans-serif";
  font-size: 19px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.member-title {
  font-family: "roboto", "sans-serif";
  font-size: 12px;
  color: #000000;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 0;
}

/* Navigation Arrows */
.navigation-arrows {
  color: #000;
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  /* margin-left: 15px; */
  margin-top: 50px;
  margin-bottom: 10px;
}

.nav-arrow {
  width: 30px;
  height: 30px;
  border: 1px solid #000000;
  border-radius: 50%;
  color: #000000;
  /* font-size: 24px; */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  box-sizing: border-box;
  transition: all 0.3s ease;
  line-height: 1;
}
/* .nav-arrow {
  width: 35px;
  height: 35px;
  border: 1px solid #000;
  border-radius: 50%;
  background: #fff;
  display: inline-flex; 
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
  cursor: pointer;
  transition: 0.3s ease;
} */

.nav-arrow i {
  font-size: 18px;
  line-height: 1; /* Important to center icon perfectly */
  color: #000;
  pointer-events: none;
}


.nav-arrow:hover {
  border-color: #000000;
  color: #000000;
  transform: scale(1.015);
}
.step-arrow {
  /* position: absolute; */
  right: 300px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 52px;
  background-color: transparent;
  /* color: #949191; */
  /* opacity: 0.7; */
}

.step-arrow-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin: 0; /* Remove extra spacing */
  padding: 0; /* Remove extra spacing */
  width: auto;
}

.team-member-col {
  margin: 0; /* Remove margin around cards */
}

/* Remove padding inside grid */
.team-member-col.px-5,
.team-member-col.px-4 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/*------------- Card Slider CSS End -------------------------*/
