:root {
  --alt-font: "Plus Jakarta Sans", sans-serif;
  --primary-font: "Inter", sans-serif;
  --base-color: #ec1e27;
  --sec-color: #094c72;
  --white: #ffffff;
  --black: #000000;
}
.bg-sec {
  background-color: var(--sec-color);
}
.overflow-hidden {
  overflow: hidden;
}
.h-460px{
  height: 460px;
}
.w-full{
  width: 100%;
}
.h-full{
  height: 100%;
}
/* header  */

.text-gradient-brand {
  background: -webkit-linear-gradient(#094c72, #eb232a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header {
  background: linear-gradient(234deg, #09206b 0%, #35448f 50%, #ff0909 100%);
  /* background: #991B1B; */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  overflow: visible;
  z-index: 1000;
  width: 100%;
}
.header-top {
  display: flex;
  justify-content: end;
  align-items: center;
  padding: 3px 0;
}
.header.sticky.sticky-active {
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.459);
  transform: translateY(0);
  border-color: transparent !important;
}
/* .header.sticky.sticky-active .contact-info{
            display: none;
        } */

.contact-info {
  display: flex;
  justify-content: end;
  gap: 30px;
  color: white;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:hover {
  color: #fbbf24;
}
.navbar-section {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: end;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

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

.social-links a {
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
  background: #ef4444;
  transform: translateY(-2px) rotate(360deg);
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  width: 90px;
  height: 90px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.logo-inner {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 24px;
  background: linear-gradient(45deg, #ef4444, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-text {
  color: white;
}

.brand-name {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.brand-tagline {
  font-size: 14px;
  opacity: 0.9;
  font-weight: 300;
}

.nav-menu {
  display: flex;
  list-style: none;

  /* align-items: center; */
  position: relative;
}

.nav-menu li {
  position: relative;
}

.nav-menu li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 0;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  /* align-items: center; */
  gap: 5px;
}



.nav-menu li a:hover::after,
.nav-menu li a.active::after {
  width: 100%;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: #fbbf24;
  transform: translateY(-2px);
}

.search-wrapper .dropdown-arrow{
  right: 24px;
}
.dropdown-arrow {
  transition: transform 0.3s ease;
  font-size: 12px;

}

.nav-menu li:hover .dropdown-arrow {
  transform: rotate(180deg);
}
.submenu {
  position: absolute;
  top: 100%;
  left: -25px;
  background: white;
  /* min-width: 295px; */
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  /* overflow: hidden; */
  padding: 10px;
  border: 1px solid rgba(59, 130, 246, 0.1);
}



/* Target the scrollbar itself */
.submenu-content::-webkit-scrollbar {
  width: 3px;            /* Width for vertical scroll */
  height: 2px;           /* Height for horizontal scroll */
}

/* Track (the background) */
.submenu-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

/* Thumb (the handle) */
.submenu-content::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

/* Hover effect on thumb */
.submenu-content::-webkit-scrollbar-thumb:hover {
  background: #555;
}





.submenu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 30px;
  width: 16px;
  height: 16px;
  background: white;
  transform: rotate(45deg);
  border-left: 1px solid rgba(59, 130, 246, 0.1);
  border-top: 1px solid rgba(59, 130, 246, 0.1);
}

.submenu-header {
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  color: white;
  padding: 15px 20px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.submenu-header i {
  color: #fbbf24;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

.submenu-content {
  padding: 10px 0;
  max-height: 400px;
  overflow-y: auto;
  width: 100%;
}

.destination-item {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: #374151;
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  position: relative;
}

.destination-item:hover {
  background: linear-gradient(
    90deg,
    rgba(59, 130, 246, 0.05),
    rgba(239, 68, 68, 0.05)
  );
  /* border-left-color: #ef4444; */
  transform: translateX(5px);
  color: #1e40af;
}

.flag-icon {
  width: 32px;
  height: 24px;
  border-radius: 4px;
  margin-right: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform 0.3s ease;
}
.submenu-content a:nth-of-type(1) .flag-icon i {
  color: red;
}
.submenu-content a:nth-of-type(2) .flag-icon i {
  color: blue;
}
.submenu-content a:nth-of-type(3) .flag-icon i {
  color: green;
}
.submenu-content a:nth-of-type(4) .flag-icon i {
  color: pink;
}
.submenu-content a:nth-of-type(5) .flag-icon i {
  color: purple;
}
.submenu-content a:nth-of-type(6) .flag-icon i {
  color: blueviolet;
}

.destination-item:hover .flag-icon {
  transform: scale(1.1) rotate(5deg);
}

.destination-info {
  flex: 1;
}

.destination-name {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 2px;
  color: black;
}

.destination-desc {
  font-size: 12px;
  color: #6b7280;
  opacity: 0.8;
}

.destination-stats {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
  font-size: 11px;
  color: #9ca3af;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 3px;
}

.stat-item i {
  color: #ef4444;
}

.popular-badge {
  background: linear-gradient(45deg, #ef4444, #f97316);
  color: white;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 600;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 5px rgba(239, 68, 68, 0.5);
  }
  to {
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.8);
  }
}

.cta-button {
  background: linear-gradient(45deg, #ef4444, #dc2626);
  color: white;
  padding: 12px 25px !important;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
  border: 2px solid transparent;
}

.cta-button:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
  background: linear-gradient(45deg, #dc2626, #b91c1c);
}

.mobile-menu-toggle {
  display: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
}
.mobile-menu{
    display: none;
  }
 .nav-menu li:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* Mobile Responsive */
@media (min-width:992px) {
  .nav-menu{
    gap: 35px;
  }
  .nav-menu li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #ef4444, #fbbf24);
  transition: width 0.3s ease;
  border-radius: 2px;
}
 
.submenu.destinations {
  min-width: 360px;
}
  .submenu{
    min-width: 295px;
  }
}
@media (max-width: 1200px) {
  .brand-text {
    display: none;
  }
}
@media (max-width: 1400px) {
  .nav-menu li a.cta-button {
    display: none;
  }
}
@media (max-width: 992px) {
  .navbar-section {
    display: none;
  }
  .nav-menu {
    display: none;
    width: 100%;
    background: rgba(30, 58, 138, 0.95);
    padding: 20px;
    /* border-radius: 10px; */
    margin-top: 20px;
     position: absolute;
        top: 77px; 
        left: 0;
        max-height: 300px;
        overflow: auto;
        transition: 0.99s all ease-in-out;
    
  }

  .nav-menu.active {
    display: flex;
    flex-direction: column;
  }
  .mobile-menu-toggle {
    display: block;
    /* position: absolute;
    top: 20px;
    right: 20px; */
  }
  .mobile-menu{
    display: block;
  }

  .submenu {
     position: static;
        display: none;
        background: #fff;
        border-radius: 0;
        width: 100%;
}
 .submenu.active {
  display: flex;
 }
   .nav-menu .dropdown-toggle {
        width: 100%;
        text-align: left;
        background: none;
        border: none;
        color: white;
        padding: 10px;
        font-size: 16px;
        cursor: pointer;
      }
}
@media (max-width: 768px) {
  .header-top {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .contact-info {
    flex-direction: column;
    gap: 10px;
  }

  .logo-container {
    flex-direction: column;
    text-align: center;
  }

  .brand-name {
    font-size: 24px;
  }

  .nav-menu {
    flex-direction: column;
    gap: 20px;
  }

  /* .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    margin-top: 10px;
  } */
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 15px;
  }

  .logo {
    width: 60px;
    height: 60px;
  }

  .logo-inner {
    font-size: 20px;
  }

  .brand-name {
    font-size: 20px;
  }

  .nav-menu {
    gap: 15px;
    top: 48px;
    max-height: 250px;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 14px;
  }

  .submenu {
    min-width: 280px;
  }
}

.portfolio-classic .portfolio-box {
  height: 240px;
}
.portfolio-box .portfolio-image {
  height: 100%;
  padding: 10px;
}
.grid-item .portfolio-image img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: white;
  padding: 10px;
}
.portfolio-classic .portfolio-box .portfolio-hover {
  height: 100%;
}

/* course page  */
.search-container {
  max-width: 800px;
  margin: 0 auto;
}

.search-wrapper {
  display: flex;
  gap: 15px;
  background: white;
  padding: 8px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}

.search-wrapper:focus-within {
  border-color: var(--sec-color);
  box-shadow: 0 10px 40px rgba(0, 123, 255, 0.15);
  transform: translateY(-2px);
}

.search-input-group {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 20px;
  color: #6c757d;
  font-size: 18px;
  z-index: 2;
}

.search-input {
  width: 100%;
  padding: 15px 20px 15px 50px;
  border: none;
  outline: none;
  font-size: 16px;
  background: transparent;
  color: #2c3e50;
}

.search-input::placeholder {
  color: #adb5bd;
  font-weight: 400;
}

.filter-dropdown {
  position: relative;
  min-width: 180px;
}

.filter-select {
  width: 100%;
  padding: 15px 45px 15px 20px;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  color: #495057;
  background: #f8f9fa;
  border-radius: 40px;
  cursor: pointer;
  appearance: none;
  transition: all 0.3s ease;
}

.filter-select:hover {
  background: #e9ecef;
}

.filter-select:focus {
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.dropdown-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  pointer-events: none;
  transition: transform 0.3s ease;
}

@media (min-width:992px) {
  .dropdown-arrow {
      right: -19px;

  }
  .nav-menu li:hover{
    .dropdown-arrow {
      display: none;
    }

}
  
}

.filter-select:focus + .dropdown-arrow {
  transform: translateY(-50%) rotate(180deg);
}

.search-button {
  background: var(--sec-color);
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 120px;
  justify-content: center;
}

.search-button:hover {
  background: linear-gradient(135deg, red, #094c73);
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.search-button:active {
  transform: translateY(0);
}

/* Results Preview */
.results-preview {
  margin-top: 20px;
  text-align: center;
  color: #6c757d;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.results-preview.show {
  opacity: 1;
}

/* Quick Filters */
.quick-filters {
  margin-top: 25px;
  text-align: center;
}

.quick-filters-label {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 15px;
  font-weight: 500;
}

.quick-filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.quick-tag {
  background: white;
  color: #495057;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid #dee2e6;
  transition: all 0.3s ease;
}

.quick-tag:hover {
  background: var(--sec-color);
  color: white;
  border-color: var(--sec-color);
  transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .search-wrapper {
    flex-direction: column;
    border-radius: 20px;
    padding: 15px;
    gap: 15px;
  }

  .search-input-group {
    order: 1;
  }

  .filter-dropdown {
    order: 2;
    min-width: auto;
  }

  .search-button {
    order: 3;
    border-radius: 15px;
    padding: 15px 20px;
  }

  .search-input {
    padding: 15px 20px 15px 50px;
    border-radius: 15px;
    background: #f8f9fa;
  }

  .filter-select {
    border-radius: 15px;
  }

  .quick-filter-tags {
    gap: 8px;
  }

  .quick-tag {
    font-size: 12px;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .search-wrapper {
    padding: 12px;
  }

  .search-input {
    font-size: 15px;
  }

  .filter-select {
    font-size: 15px;
  }
}

/* Loading state */
.search-button.loading {
  background: #6c757d;
  cursor: not-allowed;
}

.search-button.loading i {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* scholarship table  */
.scholarship-table-wrapper {
  /* padding: 30px; */
  height: 500px;
  overflow: auto;
}

.scholarship-data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.scholarship-table-head {
  /* background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); */
  background-color: var(--sec-color);
  color: white;
}

.scholarship-header-cell {
  padding: 18px 15px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.scholarship-header-cell:last-child {
  border-right: none;
}

.scholarship-header-cell::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
}

.scholarship-table-body {
  background: white;
}

.scholarship-row {
  transition: all 0.3s ease;
  border-bottom: 1px solid #f1f3f4;
}

.scholarship-row:hover {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f4fd 100%);
  transform: scale(1.01);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.scholarship-row:nth-child(even) {
  background: #fafbfc;
}

.scholarship-row:nth-child(even):hover {
  background: linear-gradient(135deg, #f0f8ff 0%, #e0f2fe 100%);
}

.scholarship-data-cell {
  padding: 20px 5px;
  vertical-align: top;
  border-right: 1px solid #f1f3f4;
  position: relative;
}

.scholarship-data-cell:last-child {
  border-right: none;
}

.scholarship-name-cell {
  font-weight: 600;
  color: #2c3e50;
  font-size: 15px;
}

.scholarship-name-highlight {
  /* color: #667eea; */
  color: black;
  font-weight: 700;
  padding-left: 10px;
}

.scholarship-amount-cell {
  font-weight: 700;
  color: #27ae60;
  font-size: 16px;
}

.scholarship-criteria-list {
  list-style: none;
  padding: 0;
}

.scholarship-criteria-item {
  padding: 3px 0;
  position: relative;
  padding-left: 15px;
  color: #495057;
  font-size: 13px;
}

.scholarship-criteria-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

.scholarship-deadline-cell {
  font-weight: 600;
  color: #dc3545;
}

.scholarship-status-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.scholarship-status-open {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.scholarship-status-closing {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}

.scholarship-status-closed {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.scholarship-level-tag {
  background: #e3f2fd;
  color: #1565c0;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  display: inline-block;
  margin: 2px;
}

.scholarship-country-flag {
  font-size: 16px;
  margin-right: 5px;
}

.scholarship-requirements-list {
  font-size: 12px;
  color: #6c757d;
  line-height: 1.4;
}

.detail-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.scholarship-table-footer {
  background: #f8f9fa;
  padding: 20px 30px;
  text-align: center;
  border-top: 1px solid #dee2e6;
}

.scholarship-footer-text {
  color: #6c757d;
  font-size: 14px;
}

.scholarship-footer-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
}

.scholarship-footer-link:hover {
  text-decoration: underline;
}
.detail-btn {
  color: white;
  background-color: var(--sec-color);
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 20px;
  text-align: center;
  display: block;
}
/* Responsive Design */
@media (max-width: 1200px) {
  .scholarship-data-table {
    font-size: 13px;
  }

  .scholarship-header-cell,
  .scholarship-data-cell {
    padding: 15px 5px;
  }
}

@media (max-width: 768px) {
  .scholarship-table-header {
    padding: 20px;
  }

  .scholarship-table-title {
    font-size: 24px;
  }

  .scholarship-data-table {
    font-size: 12px;
  }

  .scholarship-header-cell,
  .scholarship-data-cell {
    padding: 12px 5px;
  }

  .scholarship-row:hover {
    transform: none;
  }
}

@media (max-width: 480px) {
  .scholarship-table-title {
    font-size: 20px;
  }

  .scholarship-header-cell,
  .scholarship-data-cell {
    padding: 10px 6px;
  }
}

/* Loading Animation */
.scholarship-loading {
  opacity: 0.6;
}

.scholarship-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #667eea;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: scholarshipSpin 1s linear infinite;
}

@keyframes scholarshipSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* course finder page  */

/* Filter Section */
.course-filter-section {
  background: white;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid #f1f3f4;
}

.course-filter-title {
  font-size: 24px;
  font-weight: 600;
  color: #094c72;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.course-filter-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #094c72, #eb232b);
  border-radius: 2px;
}

.course-filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

.course-filter-group {
  position: relative;
}

.course-filter-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #094c72;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.course-filter-select,
.course-filter-input {
  width: 100%;
  padding: 15px 10px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  background: #f8f9fa;
  color: #333;
  transition: all 0.3s ease;
  appearance: none;
}

.course-filter-select:focus,
.course-filter-input:focus {
  outline: none;
  border-color: #eb232b;
  background: white;
  box-shadow: 0 0 0 3px rgba(235, 35, 43, 0.1);
  transform: translateY(-2px);
}

.course-filter-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23094C72' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 45px;
}

.course-filter-input::placeholder {
  color: #adb5bd;
}

/* Price Range Slider */
.course-price-range {
  position: relative;
  margin-top: 10px;
}

.course-range-slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #e9ecef;
  outline: none;
  appearance: none;
}

.course-range-slider::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #eb232b;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(235, 35, 43, 0.3);
}

.course-range-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #eb232b;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 6px rgba(235, 35, 43, 0.3);
}

.course-range-values {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12px;
  color: #6c757d;
}

/* Filter Tags */
.course-filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}

.course-filter-tag {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  color: #094c72;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
  font-weight: 500;
}

.course-filter-tag:hover {
  border-color: #eb232b;
  background: #fff5f5;
  transform: translateY(-1px);
}

.course-filter-tag.active {
  background: linear-gradient(135deg, #eb232b, #094c72);
  border-color: #eb232b;
  color: white;
  box-shadow: 0 4px 12px rgba(235, 35, 43, 0.3);
}

/* Results Section */
.course-results-section {
  margin-bottom: 40px;
}

.course-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px 0;
  border-bottom: 2px solid #f1f3f4;
}

.course-results-count {
  font-size: 18px;
  font-weight: 600;
  color: #094c72;
}

.course-sort-select {
  padding: 10px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 14px;
  background: white;
  color: #333;
  cursor: pointer;
  width: 170px;
}

/* Course Grid */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.course-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: #eb232b;
}

.course-card-image {
  height: 200px;
  /* background: linear-gradient(135deg, #094C72, #EB232B); */

  position: relative;
  overflow: hidden;
}

.course-card-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="lines" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 0 5 L 10 5" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23lines)"/></svg>');
  opacity: 0.3;
}

.course-card-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.9);
  color: #094c72;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.course-card-level {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #eb232b;
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

.course-card-content {
  padding: 25px;
}

.course-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #094c72;
  margin-bottom: 10px;
  line-height: 1.3;
}

.course-card-instructor {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 15px;
  font-weight: 500;
}

.course-card-description {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 20px;
}

.course-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-top: 15px;
  border-top: 1px solid #f1f3f4;
}

.course-card-duration {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #6c757d;
}

.course-card-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #ffc107;
  font-weight: 600;
}

.card-button {
  /* width: 100%; */
  background: linear-gradient(135deg, #094c72, #eb232b);
  color: white;
  border: none;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.card-button:hover {
  color: white;
}
.course-card-button {
  width: 100%;
  background: linear-gradient(135deg, #094c72, #eb232b);
  color: white;
  border: none;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.course-card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(235, 35, 43, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .course-finder-container {
    padding: 20px 15px;
  }

  .course-finder-hero {
    padding: 30px 20px;
  }

  .course-finder-title {
    font-size: 28px;
  }

  .course-filter-section {
    padding: 25px 20px;
  }

  .course-filter-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .course-results-header {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }

  .course-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .course-card-content {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .course-finder-title {
    font-size: 24px;
  }

  .course-filter-section {
    padding: 20px 15px;
  }

  .course-card-meta {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
.university-courses li {
  border: 1px solid grey;
  border-radius: 20px;
  padding: 10px;
  margin-bottom: 20px;
  cursor: pointer;
}
.university-courses li:hover {
  box-shadow: 0 5px 15px grey;
  transition: 0.5s all ease-in-out;
  border: none;
}

.university-courses li a {
  color: #75726f;
}
.where-abroad a {
  color: var(--sec-color);
}
.where-abroad a:hover {
  color: var(--sec-color);
  text-decoration: underline;
}
.list-flex {
  display: flex;
  gap: 5px;
  padding-left: 0;
  margin: 0;
}
.list-flex li a {
  border-right: 1px solid var(--sec-color);
  font-size: 12px;
  color: var(--sec-color);
  padding-right: 10px;
}

/* cost  calculator  */
.cost-calculator-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

/* Calculator Form */
.cost-calculator-form {
  background: white;
  border-radius: 8px;
  padding: 40px;
  border: 1px solid #e1e8ed;
}

.cost-section {
  margin-bottom: 40px;
  /* padding-bottom: 32px; */
  /* border-bottom: 1px solid #f1f3f4; */
}

.cost-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.cost-section-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cost-section-icon {
  font-size: 20px;
  color: #6c757d;
}

.cost-input-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.cost-input-field {
  position: relative;
}

.cost-input-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #495057;
  margin-bottom: 8px;
}

.cost-input {
  width: 100%;
  padding: 12px 16px;
  padding-left: 32px;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  background: white;
  color: #495057;
  transition: all 0.2s ease;
}

.cost-input:focus {
  outline: none;
  border-color: #094c72;
  box-shadow: 0 0 0 3px rgba(9, 76, 114, 0.1);
}

.cost-input::placeholder {
  color: #adb5bd;
}

.cost-currency-symbol {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  font-weight: 500;
  font-size: 16px;
  margin-top: 12px;
}

/* Duration Selector */
.duration-selector {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.duration-option {
  background: white;
  border: 1px solid #dee2e6;
  color: #495057;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.duration-option:hover {
  border-color: #094c72;
  background: #f8f9fa;
}

.duration-option.active {
  background: #094c72;
  border-color: #094c72;
  color: white;
}

/* Summary Panel */
.cost-summary-panel {
  background: white;
  border-radius: 8px;
  padding: 32px;
  border: 1px solid #e1e8ed;
  position: sticky;
  top: 20px;
  height: fit-content;
}

.cost-summary-title {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 24px;
  text-align: center;
}

.cost-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #f8f9fa;
  font-size: 16px;
}

.cost-summary-item:last-child {
  border-bottom: none;
}

.cost-summary-label {
  color: #6c757d;
  font-weight: 400;
}

.cost-summary-value {
  color: #1a1a1a;
  font-weight: 600;
  font-size: 16px;
}

.cost-total {
  background: #f8f9fa;
  padding: 24px;
  border-radius: 6px;
  margin-top: 24px;
  text-align: center;
  border: 1px solid #e9ecef;
}

.cost-total-label {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 8px;
  font-weight: 500;
}

.cost-total-value {
  font-size: 32px;
  font-weight: 700;
  color: #eb232b;
  margin-bottom: 4px;
}

.cost-per-month {
  font-size: 14px;
  color: #6c757d;
  font-weight: 400;
}

/* Breakdown Chart */
.cost-breakdown-chart {
  margin-top: 32px;
  padding: 24px;
  background: #f8f9fa;
  border-radius: 6px;
  border: 1px solid #e9ecef;
}

.cost-breakdown-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
  text-align: center;
}

.cost-breakdown-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.cost-breakdown-item:last-child {
  margin-bottom: 0;
}

.cost-breakdown-color {
  width: 16px;
  height: 16px;
  border-radius: 2px;
  margin-right: 12px;
  background: #dee2e6;
}

.cost-breakdown-color.primary {
  background: #094c72;
}

.cost-breakdown-color.secondary {
  background: #eb232b;
}

.cost-breakdown-color.tertiary {
  background: #6c757d;
}

.cost-breakdown-label {
  flex: 1;
  font-size: 14px;
  color: #495057;
}

.cost-breakdown-percentage {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}

/* Action Buttons */
.cost-calculator-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  justify-content: center;
}

.cost-action-button {
  background: #094c72;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cost-action-button:hover {
  background: #073a5a;
}

.cost-action-button.secondary {
  background: white;
  color: #495057;
  border: 1px solid #dee2e6;
}

.cost-action-button.secondary:hover {
  background: #f8f9fa;
  border-color: #adb5bd;
}

/* Tips Section */
.cost-tips-section {
  background: white;
  border-radius: 8px;
  padding: 40px;
  border: 1px solid #e1e8ed;
}

.cost-tips-title {
  font-size: 28px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 32px;
  text-align: center;
}

.cost-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.cost-tip-card {
  background: #f8f9fa;
  padding: 24px;
  border-radius: 6px;
  border: 1px solid #e9ecef;
  transition: all 0.2s ease;
}

.cost-tip-card:hover {
  border-color: #dee2e6;
  background: white;
}

.cost-tip-icon {
  font-size: 24px;
  color: #6c757d;
  margin-bottom: 16px;
}

.cost-tip-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.cost-tip-description {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .cost-calculator-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cost-summary-panel {
    position: static;
  }
}

@media (max-width: 768px) {
  .cost-calculator-container {
    padding: 40px 16px;
  }

  .cost-calculator-hero {
    padding: 40px 24px;
  }

  .cost-calculator-title {
    font-size: 32px;
  }

  .cost-calculator-form,
  .cost-summary-panel,
  .cost-tips-section {
    padding: 24px;
  }

  .cost-input-group {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cost-calculator-actions {
    flex-direction: column;
  }

  .cost-tips-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .cost-calculator-title {
    font-size: 28px;
  }

  .cost-section {
    /* padding-bottom: 24px; */
    margin-bottom: 32px;
  }

  .cost-total-value {
    font-size: 28px;
  }

  .duration-selector {
    justify-content: center;
  }
}

/* Clean focus states */
.cost-input:focus,
.duration-option:focus,
.cost-action-button:focus {
  outline: 2px solid #094c72;
  outline-offset: 2px;
}

/* Subtle animations */
.cost-tip-card,
.cost-input,
.duration-option,
.cost-action-button {
  transition: all 0.2s ease;
}

/* backpack  */
.backpack-document {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgb(131, 130, 130);
  margin: 30px 0;
}
.backpack-document th,
.backpack-document td {
  border: 1px solid rgba(180, 180, 180, 0.527);
  padding: 10px;
}
.backpack-document th {
  background-color: var(--sec-color);
  color: white;
}

/* currency converter   */
.select2-container .select2-selection--single {
  height: 47px !important;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  padding-top: 8px;
  padding-left: 13px;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  top: 11px !important;
}
.select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--sec-color) !important;
}
.currency-converter .currency {
  display: flex;
  align-items: center;
  gap: 10px;
}

.select2-results__option img {
  width: 20px;
  height: 15px;
  margin-right: 8px;
  vertical-align: middle;
}

.select2-selection__rendered img {
  width: 20px;
  height: 15px;
  margin-right: 8px;
  vertical-align: middle;
}
.currency-converter .convert {
  display: flex;
  justify-content: center;
  align-items: center;
}
.currency-converter .convert img {
  width: 40px;
}
.money-exchange h5 {
  font-size: 16px;
  margin: 0;
}
.money-exchange a {
  color: var(--base-color);
  text-decoration: underline;
}

/* study-destination  */
.study-destination .uni-box {
  height: 170px;
  /* box-shadow: 0 5px 13px gray; */
  border-bottom: 5px solid grey;
  display: flex;
  align-items: center;
  padding: 10px;
}


/* contact  */
.contact-indi{
  max-height: 600px;
  overflow: auto;
}

/* Target the scrollbar itself */
.contact-indi::-webkit-scrollbar {
  width: 3px;            /* Width for vertical scroll */
  height: 2px;           /* Height for horizontal scroll */
}

/* Track (the background) */
.contact-indi::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

/* Thumb (the handle) */
.contact-indi::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

/* Hover effect on thumb */
.contact-indi::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.uni-photo{
  height: 400px;
}
.uni-photo img{
  height:100% ;
  width: 100%;
  object-fit: cover;
}
.image-gallery-style-05 .gallery-box{
  height: 500px;
}
.image-gallery-style-05 .gallery-box .image-inside{
  height: 100%;
  border: 1px solid gray;
  border-radius: 10px;
  
}
.image-gallery-style-05 .gallery-box .image-inside img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
/* footer  */
footer{
  background-color: #06275c;
}
.elements-social .dark li a {
  color: white;
}
footer input:focus, .form-control:focus{
  color: white !important;
}
.bibhuti{
  font-family: 'pacifico', cursive;
}