@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #606060;
  --white-color: #ffffff;
  --black-color: #000000;

  --heading: "Lora", serif;
  --font-body: "Open Sans", sans-serif;
}

/* custom css */

body,
html {
  height: 100%;
  width: 100%;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

.section-space {
  padding: 80px 0;
}

.top-space {
  padding-top: 80px;
}

.bottom-space {
  padding-bottom: 80px;
}

ul {
  list-style: none;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

strong {
  font-weight: 700;
}

p {
  font-family: var(--font-body);
  margin-bottom: 25px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  line-height: 1.2;
  font-family: var(--heading);
  letter-spacing: 0;
  margin: 0;
  margin-bottom: 15px;
  font-weight: 600;
}

h1 {
  font-size: 58px;
  margin-bottom: 25px;
}

h2 {
  font-size: 42px;
  margin-bottom: 25px;
}

h3 {
  font-size: 20px;
  margin-bottom: 25px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 14px;
}

.btn-gray {
  background: var(--primary-color);
  color: var(--white-color);
  font-weight: 600;
  font-family: var(--font-body);
}

.btn-whites {
  background: var(--white-color);
  color: var(--primary-color);
  font-weight: 700;
}

.btn-whites:hover {
  color: var(--white-color);
  border: 1px solid var(--white-color);
}

.t-justify {
  text-align: justify;
}

/*========================================================================================================================================================================================*/
/* HOME PAGE + HEADER + FOOTER CSS */
/*========================================================================================================================================================================================*/

.top-bar {
  background: var(--primary-color);
  padding: 8px 0;
  position: relative;
  z-index: 3;
  width: 100%;
  overflow-x: hidden;
  max-width: 100vw;
}

.address-info ul {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.address-info ul li a {
  color: var(--white-color);
  white-space: nowrap;
  font-size: 14px;
}

.top-bar .social {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 100%;
  overflow-x: hidden;
}

.top-bar ul.item-flex {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 100%;
  overflow-x: hidden;
}

.top-bar .social a {
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.945);
  border-radius: 50%;
  text-align: center;
}

.top-bar ul.item-flex i {
  margin-right: 0;
}

.top-bar .social li a img {
  height: 16px;
  transition: all 0.35s ease-in-out;
}

/* Enhanced dropdown menu styles for modern design */
.modern-dropdown {
  background: var(--white-color);
  border: 1px solid rgba(128, 128, 128, 0.2);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  margin-top: 8px;
  min-width: 200px;
  animation: dropdownSlideDown 0.4s ease-out;
  transform-origin: top;
}

/* Mega dropdown slide animations */
.mega-dropdown-menu {
  animation: megaDropdownSlideDown 0.5s ease-out;
  transform-origin: top;
  transition: all 0.3s ease-out;
}

/* Dropdown closing animation classes */
.modern-dropdown.closing {
  animation: dropdownSlideUp 0.3s ease-in forwards;
}

.mega-dropdown-menu.closing {
  animation: megaDropdownSlideUp 0.4s ease-in forwards;
}

/* Dropdown slide down animation */
@keyframes dropdownSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px) scaleY(0);
  }

  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

/* Mega dropdown slide down animation */
@keyframes megaDropdownSlideDown {
  from {
    opacity: 0;
    transform: translateY(-30px) scaleY(0);
  }

  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

/* Dropdown slide up animation (for closing) */
@keyframes dropdownSlideUp {
  from {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }

  to {
    opacity: 0;
    transform: translateY(-20px) scaleY(0);
  }
}

/* Mega dropdown slide up animation (for closing) */
@keyframes megaDropdownSlideUp {
  from {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }

  to {
    opacity: 0;
    transform: translateY(-30px) scaleY(0);
  }
}

/* Legacy fade animation for backward compatibility */
@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modern-dropdown .dropdown-item {
  padding: 12px 20px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--black-color);
  border-radius: 4px;
  margin: 2px 8px;
  transition: all 0.3s ease;
  opacity: 0;
  animation: dropdownItemFadeIn 0.4s ease-out 0.1s forwards;
}

/* Staggered animation for dropdown items */
.modern-dropdown .dropdown-item:nth-child(1) {
  animation-delay: 0.1s;
}

.modern-dropdown .dropdown-item:nth-child(2) {
  animation-delay: 0.15s;
}

.modern-dropdown .dropdown-item:nth-child(3) {
  animation-delay: 0.2s;
}

.modern-dropdown .dropdown-item:nth-child(4) {
  animation-delay: 0.25s;
}

.modern-dropdown .dropdown-item:nth-child(5) {
  animation-delay: 0.3s;
}

.modern-dropdown .dropdown-item:nth-child(6) {
  animation-delay: 0.35s;
}

/* Dropdown item fade in animation */
@keyframes dropdownItemFadeIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.modern-dropdown .dropdown-item:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: translateX(4px);
}

.modern-dropdown .dropdown-item:focus {
  background-color: var(--primary-color);
  color: var(--white-color);
}

/* Updated main navigation styles */
.main-menu .navbar {
  background: var(--white-color) !important;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Desktop Menu Styles */
.desktop-menu {
  display: block;
}

.mobile-menu {
  display: none;
}

/* Mobile Menu Styles */
.mobile-menu .navbar {
  background: var(--white-color) !important;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-navbar-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.mobile-nav-item {
  border-bottom: 1px solid rgba(128, 128, 128, 0.1);
}

.mobile-nav-item:last-child {
  border-bottom: none;
}

/* Mobile nav item container for items with dropdowns */
.mobile-nav-item-container {
  display: flex;
  align-items: center;
  width: 100%;
}

.mobile-nav-link {
  flex: 1;
  padding: 15px 20px;
  color: var(--black-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  background: transparent;
  border: none;
  text-align: left;
}

.mobile-nav-link:hover {
  background-color: rgba(128, 128, 128, 0.05);
  color: var(--primary-color);
}

.mobile-dropdown-toggle {
  background: transparent;
  border: none;
  padding: 15px 20px;
  cursor: pointer;
  color: var(--primary-color);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
}

.mobile-dropdown-toggle:hover {
  background-color: rgba(128, 128, 128, 0.05);
}

.mobile-arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
  color: var(--primary-color);
}

.mobile-dropdown-toggle[aria-expanded="true"] .mobile-arrow {
  transform: rotate(180deg);
}

/* Mobile Dropdown Content */
.mobile-dropdown-content,
.mobile-mega-dropdown-content {
  background-color: rgba(128, 128, 128, 0.02);
  border-left: 3px solid var(--primary-color);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Mobile dropdown show/hide animation */
.mobile-dropdown-content,
.mobile-mega-dropdown-content {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.mobile-dropdown-content.show,
.mobile-mega-dropdown-content.show {
  display: block !important;
  max-height: 500px;
  opacity: 1;
}

.mobile-dropdown-items,
.mobile-mega-items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-dropdown-items .mobile-nav-item,
.mobile-mega-item {
  border-bottom: 1px solid rgba(128, 128, 128, 0.05);
}

.mobile-dropdown-items .mobile-nav-link,
.mobile-mega-link {
  padding: 12px 30px;
  font-size: 14px;
  color: var(--black-color);
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.mobile-dropdown-items .mobile-nav-link:hover,
.mobile-mega-link:hover {
  background-color: rgba(128, 128, 128, 0.1);
  color: var(--primary-color);
  padding-left: 35px;
}

/* Mobile Mega Menu Items */
.mobile-mega-item {
  border-bottom: 1px solid rgba(128, 128, 128, 0.05);
}

.mobile-mega-link {
  padding: 12px 30px;
  font-size: 14px;
  color: var(--black-color);
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.mobile-mega-link:hover {
  background-color: rgba(128, 128, 128, 0.1);
  color: var(--primary-color);
  padding-left: 35px;
}

.main-menu .navbar .nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--black-color);
  padding: 12px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.main-menu .navbar .nav-link:hover {
  color: #767676;
}

.main-menu .navbar .hover-active:hover {
  border: none !important;

}

.main-menu .navbar .hover-active:active {
  border: none !important;

}

.main-menu .navbar .hover-active:focus-visible {
  border: none !important;

}

.navbar .nav-item.hover-active>.nav-link,
.navbar .nav-link.hover-active {
  border: none !important;
}


.current_page_item .nav-link {
  color: #767676 !important;
}

.main-menu .navbar .nav-link.active {
  color: #767676;
  ;
  background-color: rgba(128, 128, 128, 0.15);
}

/* CTA buttons styling */
.navbar-cta .btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.navbar-cta .btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.navbar-cta .btn-outline-primary:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.navbar-cta .btn-primary {
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  color: var(--white-color);
}

.navbar-cta .btn-primary:hover {
  background: transparent;
  color: var(--primary-color);
}

/* Enhanced dropdown toggle arrow */
.navbar .dropdown-toggle::after {
  border-top: 0.4em solid;
  border-right: 0.4em solid transparent;
  border-bottom: 0;
  border-left: 0.4em solid transparent;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.navbar .dropdown.show .dropdown-toggle::after {
  transform: rotate(180deg);
}

/* Responsive design improvements */
@media (max-width: 991.98px) {

  /* Hide desktop menu and show mobile menu */
  .desktop-menu {
    display: none !important;
  }

  .mobile-menu {
    display: block !important;
  }

  /* Mobile menu container styling */
  .mobile-menu .navbar-collapse {
    background: var(--white-color);
    border-top: 1px solid rgba(128, 128, 128, 0.1);
    margin-top: 15px;
    padding-top: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    max-height: 70vh;
    overflow-y: auto;
  }

  /* Ensure mobile menu doesn't close when interacting with dropdowns */
  .mobile-menu .navbar-collapse.show {
    display: block !important;
  }

  /* Mobile navbar toggler */
  .mobile-menu .navbar-toggler {
    border: 2px solid var(--primary-color);
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
  }

  .mobile-menu .navbar-toggler:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
  }

  .mobile-menu .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(128, 128, 128, 0.25);
    outline: none;
  }

  .mobile-menu .navbar-toggler-icon {
    transition: transform 0.3s ease;
  }

  .mobile-menu .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    transform: rotate(90deg);
  }

  /* CTA buttons on mobile */
  .navbar-cta {
    margin-top: 15px;
    flex-direction: column;
    gap: 10px !important;
  }

  .navbar-cta .btn {
    width: 100%;
    text-align: center;
  }

  /* Hide desktop-specific elements on mobile */
  .modern-dropdown {
    border: none;
    box-shadow: none;
    background: rgba(128, 128, 128, 0.05);
    border-radius: 0;
    margin: 0;
    padding: 0;
  }

  .modern-dropdown .dropdown-item {
    margin: 0;
    border-radius: 0;
    padding: 15px 30px;
    border-bottom: 1px solid rgba(128, 128, 128, 0.1);
  }

  .modern-dropdown .dropdown-item:hover {
    transform: none;
    background-color: rgba(128, 128, 128, 0.1);
    color: var(--black-color);
  }
}

@media (max-width: 768px) {
  .main-menu .navbar .nav-link {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(128, 128, 128, 0.1);
  }

  /* Tablet and Mobile Top Bar Layout */
  .top-bar {
    padding: 10px 0;
  }

  .top-bar .container {
    padding: 0 15px;
  }

  .top-bar .row {
    align-items: center;
    text-align: center;
  }

  .top-bar .address-info {
    margin-bottom: 10px;
  }

  .socail_mobile {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .top-bar .address-info ul {
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: center;
  }

  .top-bar .address-info ul li {
    text-align: center;
  }

  .top-bar .address-info ul li a {
    font-size: 13px;
    display: block;
    padding: 2px 0;
  }

  .top-bar ul.item-flex {
    justify-content: center;
    margin-top: 10px;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .top-bar .social a {
    height: 28px;
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .topbar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
  }

  .topbar .contact-btn {
    margin-top: 0;
    padding: 8px 20px;
    font-size: 13px;
    white-space: nowrap;
  }

  /* Enhanced mobile menu for tablets */
  .navbar-collapse {
    margin-top: 10px;
    padding: 20px;
  }

  .navbar-nav .nav-link {
    padding: 18px 25px;
    font-size: 16px;
  }

  .navbar .dropdown-menu .dropdown-item {
    padding: 15px 35px;
    font-size: 15px;
  }

  .mega-dropdown-menu {
    padding: 20px !important;
  }

  .country-card {
    padding: 15px;
  }

  .country-image {
    width: 50px;
    height: 50px;
  }
}

/* hero-section */

.banner-area {
  /* height: 100%; */
  width: 100%;
  position: relative;
}

.banner-area .swiper-slide .item {
  height: 555px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner-area .swiper-slide .item h3 {
  background: linear-gradient(90deg, #2f2f2f, #2f2f2f00);
  color: white;
  display: inline-block;
  padding: 12px;
}

.banner-area .swiper-slide .item h1 span {
  color: var(--primary-color);
}

/* features section */

section.features-section {
  position: relative;
  z-index: 1;
  height: clamp(180px, 25vw, 280px);
  /* min, preferred, max */
  margin-top: calc(-1 * clamp(160px, 24vw, 270px));
}

@media (max-width: 576px) {
  section.features-section {
    height: 280px;
    margin-top: -310px;
  }

  .banner-area .swiper-slide .item {
    height: 60vh;
    min-height: 350px;
  }

  .banner-area .swiper-slide .item h1 {
    font-size: 28px;
  }

  .banner-area .swiper-slide .item h3 {
    font-size: 16px;
    padding: 8px;
  }
}

.card.apply-card {
  border-radius: 15px;
  padding: 15px;
}

.apply-card h3 {
  color: var(--primary-color);
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 600;
}

.arrow-link i {
  color: var(--primary-color);
  font-size: 24px;
}

/* about section */

img.about2-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 325px;
}

.year-box {
  position: absolute;
  top: 62px;
  right: 5px;
  width: 170px;
  height: 170px;
  background: linear-gradient(113.66deg, rgba(0, 0, 0, 0.35) 10.44%, rgba(102, 102, 102, 0.35) 88.69%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.year-box h2 {
  font-size: 64px;
  color: var(--black-color);
}

.year-box p {
  font-size: 18px;
}

.about-section .about-content h3 {
  color: var(--primary-color);
  text-transform: uppercase;
}

.about-section .about-content h2 span {
  color: var(--primary-color);
}

.about-section .about-content p {
  color: var(--primary-color);
}

.about-content ul li {
  padding: 8px 0;
}

.about-content ul li span {
  font-size: 20px;
  color: var(--black-color);
  font-weight: 600;
}

/* services section */

.services {
  background: url(../images/services/ser-bg.jpg) no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  height: fit-content;
}

.ser-content h2 span {
  color: var(--black-color);
}

.services-section {
  margin-top: -65px;
}

.servicesSlide .card {
  border-radius: 50px 15px 50px 15px;
  padding: 15px;
  text-align: center;
  min-height: 290px;
}

.card-body-home {
  flex: 1 1 auto;
  color: var(--bs-card-color);
  padding: 0;
  margin-top: 15px;
}

.servicesSlide .card h3 {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .servicesSlide .card {
    min-height: 250px;
  }
}

@media (max-width: 576px) {
  .servicesSlide .card-body {
    height: 10px;
    width: auto;
  }
}

/* choose section */

.why-choose-section h2 span {
  color: var(--black-color);
}

.why-choose-section p.small {
  color: var(--primary-color);
}

/* country section */

.country .ser-content h3 {
  color: var(--primary-color);
}

.country .ser-content h2 span {
  color: var(--primary-color);
}

.country .ser-content p {
  color: var(--primary-color);
}

.countrySlide .card {
  border-radius: 50px 15px 15px;
}

.countrySlide h3.card-title {
  position: absolute;
  bottom: 0;
  color: #fff;
  left: 30px;
}

/* faqs section */

.faq-section h2 span {
  color: var(--black-color);
}

.faq-section .accordion {
  margin: 40px 0;
}

.faq-section button.btn.btn-link.collapsed i {
  transform: rotate(0deg);
}

.faq-section button.btn.btn-link i {
  transform: rotate(180deg);
  transition: 0.5s;
}

.faq-section button:focus:not(:focus-visible) {
  outline: 0;
  border: 0;
  box-shadow: none;
}

.faq-section .accordion-item {
  margin: 20px 0;
}

.faq-section .accordion-button:not(.collapsed) {
  color: #000;
}

/* testimonail section */

.client-content {
  margin-bottom: 70px;
}

.testimonial h2 {
  color: var(--primary-color);
}

.testimonial h2 span {
  color: var(--black-color);
}

.testimonial .test .row {
  gap: 100px;
}

.testimonial .card {
  background: var(--primary-color);
}

.testimonial .card::before {
  content: url(../images/icons/quote.png);
  position: absolute;
  top: 6px;
  left: 40%;
}

.testimonial .card::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 12.5px solid transparent;
  border-right: 12.5px solid transparent;
  border-top: 20px solid #606060;
  bottom: -18px;
  position: absolute;
  left: 38px;
}

.testimonial .card p {
  color: var(--white-color);
}

.rating i {
  color: #fa8714;
}

.testimonial .card-body {
  position: absolute;
  bottom: -120%;
  left: 9px;
}

.client-name {
  position: relative;
  bottom: -5px;
  left: 16px;
}

.home-testimonial-img {
  border-radius: 30px;
}

/* Blog section */

.blogs-section {
  background: url(../images/blogs/blog-bg1.jpg) no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.blogs-section .ser-content h3 {
  color: var(--primary-color);
}

.blogs-section .ser-content h2 span {
  color: var(--primary-color);
}

.blogs-section .ser-content p {
  color: var(--primary-color);
}

.blogsPart .card {
  background: transparent;
}

.blogs-section .card-body {
  background: var(--white-color);
  max-width: 357px;
  margin: 0 auto;
  margin-top: -20%;
  border-radius: 15px;
}

.blogs-section .card-body .admin a {
  color: var(--primary-color);
}

.home-blog-img {
  border-radius: 30px;
}

/* contact section */

.contact-form {
  background: var(--primary-color);
  border-radius: 40px;
  padding: 25px;
  margin-left: 0;
  margin-right: 0;
}

.contact-form h2 span {
  color: var(--black-color);
}

.contact-form form label {
  color: var(--white-color);
  font-family: var(--heading);
}

@media (max-width: 576px) {
  .contact-form {
    margin-left: 0;
    margin-right: 0;
  }
}

/* looking section */

.looking-section {
  background: var(--primary-color);
}

/* footer section */

.footer-section p {
  font-size: 15px;
  color: var(--primary-color);
  white-space: none;
}

.footer-section .social {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-section ul.item-flex {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-section .social a {
  color: #fff;
  display: inline-flex;
  height: 30px;
  width: 30px;
  line-height: 40px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.footer-section ul.item-flex i {
  margin-right: 0;
}

.footer-section .social li a img {
  height: 16px;
  transition: all 0.35s ease-in-out;
  color: #606060;
}

.footer-section h4 {
  color: var(--primary-color);
  font-size: 19px;
}

.footer-section .studyList li {
  padding: 3px 0;
}

.footer-section .studyList a {
  font-size: 14px;
  color: var(--black-color);
  font-family: var(--font-body);
  font-weight: 600;
}

.footer-section .map-footer {
  width: 100%;
  max-width: 513px;
  aspect-ratio: 513 / 316;
  /* Maintains the original aspect ratio */
  border-radius: 15px;
  object-fit: cover;
  overflow: hidden;
  box-shadow: 0 0 16px 0 rgb(0 0 0 / 44%);
}

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

  .test-img {
    margin-top: 40px;
  }

  .footer-topbar-text {
    margin-bottom: 20px;
  }

  .footer-topbar-text h3 {
    text-align: center;
  }

  .footer-topbar-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  footer .container-footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
  }

  .footer-section p {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
  }

  .footer-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
  }


  .footer-section .map-footer {
    width: 100%;
    height: 100%;
  }


  .footer-bottom .row {
    justify-content: center;
  }

  .footer-bottom .col-lg-6,
  .footer-bottom .col-lg-3 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
  }
}

.footer-section .cont-info li {
  padding: 3px 0;
}

.footer-section .cont-info a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5) !important;
  font-family: var(--font-body);
  font-weight: 400;
}

.footer-section .cont-info a i {
  padding-right: 10px;
}

.copyright {
  background: var(--primary-color);
}

.scroll-to-top {
  position: fixed;
  right: 100px;
  bottom: 15px;
  height: 40px;
  width: 40px;
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  background-color: var(--primary-color);
  z-index: 100;
  display: none;
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  transition: all 300ms ease;
  line-height: 40px;
  font-size: 20px;
}

.scroll-to-top span {
  margin-top: 10px;
}

.scroll-to-top:hover {
  transform: scale(1.2) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    pointer-events: auto !important;
}

/* media query  */

@media (max-width: 576px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 18px;
  }

  p {
    font-size: 14px;
  }

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

  .address-info ul li a {
    font-size: 14px;
  }

  .top-bar ul.item-flex {
    justify-content: center;
  }

  .services-section {
    margin-top: -40px;
  }

  .home-testimonial-img {
    margin-top: 50px;
  }
}

/* Desktop styles */
@media (min-width: 992px) {
  .navbar .dropdown:hover>.dropdown-menu {
    display: block;
  }

  .navbar .dropdown-menu {
    margin-top: 0;
  }

  .navbar .dropdown-toggle[data-toggle="both"]::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
  }

  .navbar .dropdown-menu {
    transition: all 0.3s ease;
  }
}

/* Mobile styles */
@media (max-width: 991.98px) {
  .navbar .dropdown-menu {
    border: none;
    padding-left: 15px;
  }

  .navbar .dropdown-item {
    padding: 0.5rem 1rem;
  }

  .navbar .dropdown-toggle::after {
    float: right;
    margin-top: 8px;
  }

  /* Ensure proper spacing for mobile menu */
  .navbar-nav .dropdown {
    position: static;
  }

  /* Mobile menu animation */
  .navbar-collapse {
    transition: all 0.3s ease-in-out;
  }

  .navbar-collapse.collapsing {
    height: auto;
  }

  /* Mobile dropdown arrow positioning */
  .navbar .dropdown-toggle::after {
    margin-left: auto;
    margin-right: 0;
    transition: transform 0.3s ease;
  }

  .navbar .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
  }

  /* Mobile mega menu improvements */
  .mega-dropdown-menu .country-cards-row {
    max-height: 300px;
    overflow-y: auto;
  }

  /* Mobile menu scroll for long menus */
  .navbar-collapse {
    max-height: 70vh;
    overflow-y: auto;
  }

  /* Custom scrollbar for mobile menu */
  .navbar-collapse::-webkit-scrollbar {
    width: 4px;
  }

  .navbar-collapse::-webkit-scrollbar-track {
    background: rgba(128, 128, 128, 0.1);
    border-radius: 2px;
  }

  .navbar-collapse::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 2px;
  }

  .navbar-collapse::-webkit-scrollbar-thumb:hover {
    background: rgba(128, 128, 128, 0.8);
  }
}

.header-logo {
  height: 100px !important;
  width: 80px !important;
}

.footer-logo {
  height: 100px;
  width: auto;
}

.phone-email {
  display: flex;
  justify-content: space-between;
  gap: 6px;
}

.form-new {
  width: 100%;
  max-width: 362px;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  box-sizing: border-box;
  outline-style: none;
}

/* Improve layout on smaller screens */
@media (max-width: 576px) {
  .phone-email {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .form-new {
    width: 100%;
    max-width: none;
    border-radius: 0.37rem;
    box-sizing: border-box;
  }
}

.form-textarea {
  height: 150px;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: .375rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  outline-style: none;
}

/*========================================================================================================================================================================================*/
/* ABOUT PAGE CSS START HERE */
/*========================================================================================================================================================================================*/

.breadcrumb {
  background: url(../images/about/about-page-bg.jpg) no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  height: auto;
}

.breadcrumb-content ul li a {
  color: var(--white-color);
}

.about-section2 .about-content h3 {
  color: var(--primary-color);
  text-transform: uppercase;
}

.about-section2 .about-content h2 span {
  color: var(--primary-color);
}

.about-section2 .about-content p {
  color: var(--primary-color);
}

.about-section2 .about-content ul li {
  padding: 8px 0;
}

.about-section2 .about-content ul li span {
  font-size: 20px;
  color: var(--black-color);
  font-weight: 600;
}

.about-section2 .visaStamp {
  position: absolute;
  bottom: -41%;
  /* width: 200px; */
  left: 7px;
}

.about-section2 img.aboutus2-img {
  width: 249px;
  height: 302px;
  position: absolute;
  bottom: -57%;
  right: 0;
}

.about-year-box {
  position: absolute;
  top: 0;
  right: 0;
  width: 170px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.about-year-box h2 {
  font-size: 48px;
  margin-top: 80px;
  margin-bottom: 0;
  font-family: var(--heading);
}

.about-year-box .exp {
  writing-mode: vertical-rl;
  transform: rotate(360deg);
  top: 65px;
  right: 71px;
  text-align: left;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  margin-top: 10px;
  font-family: var(--heading);
}

.about-year-box .exp p {
  margin-top: 20px;
}

.services2 {
  background: url(../images/about/bg-2.jpg) no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  height: 350px;
}

.services-section2 {
  margin-top: -10%;
}

.destinationSlide .card-body h3 {
  text-align: center;
  font-size: 24px;
}

.visa-content h2 span {
  color: var(--primary-color);
}

.gray1-bg {
  background: var(--primary-color);
}

.process1 {
  margin: 40px 0 80px;
}

.process1 .card {
  background: var(--primary-color);
  padding: 18px;
  border-radius: 15px;
  box-shadow: 0 0 7px 0 rgb(0 0 0 / 25%);
}

.process1 img {
  width: 140px;
}

.count-section {
  background: url(../images/about/count.jpg) no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.counter-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.counter-box h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white-color);
  font-size: 64px;
  margin-bottom: 10px;
}

.counter-box p {
  margin: 5px 0 0;
  padding: 0;
  color: var(--white-color);
  font-size: 20px;
  font-family: var(--heading);
}

.counter {
  font-size: 64px;
  font-weight: 700;
  color: var(--white-color);
}

.member-bg {
  background: url(../images/member/member-bg.jpg) no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.member-bg .card {
  border-radius: 20px;
}

.member-bg .card .card-body {
  background-color: var(--primary-color);
  width: 100%;
  border-radius: 0 0px 18px 18px;
}

.member-bg .card img {
  width: 188px;
  height: auto;
  padding: 20px 0;
}

.testimonial .card-body.aboutus {
  position: absolute;
  bottom: 23px !important;
  left: 12px;
  z-index: 99999;
}

/* swiper navigation style */
.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 30px;
  font-weight: 800;
}

.swiper-button-prev {
  color: #606060;
}

.swiper-button-next {
  color: #606060;
}

.swap-card {
  position: relative;
  height: 350px;
  /* Adjust as needed */
  overflow: hidden;
  transition: all 0.9s ease-in-out;
}

.swap-card .card-img-container,
.swap-card .card-body {
  position: absolute;
  width: 100%;
  transition: transform 0.9s ease-in-out;
}

/* Initial positions */
.swap-card .card-img-container {
  top: 0px;
  z-index: 1;
}

.swap-card:hover .card-img-container {
  top: 12px;
  z-index: 1;
}

.swap-card .card-body {
  top: 50%;
  background-color: white;
  z-index: 2;
  padding: 20px;
}

/* On hover: swap the positions */
.swap-card:hover .card-img-container {
  transform: translateY(100%);
}

.swap-card:hover .card-body {
  transform: translateY(-100%);
}

/* Remove navigation button on smaller screens*/
@media screen and (max-width: 800px) {
  .content {
    margin: 0 10px;
  }

  .swiper-navBtn {
    display: none;
  }
}

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

  .services-section2 {
    margin-top: -54%;
  }

  .swap-card {
    margin-top: 50px;
    height: 350px !important;
  }

  .swap-card .card-body {
    top: 67% !important;
  }

  .swap-card:hover .card-body {
    top: 33% !important;
  }

  .swap-card:hover .card-img-container {
    top: -53% !important;
  }

  .top-space {
    padding-top: 40px;
  }

  .bottom-space {
    padding-bottom: 40px;
  }

  .mobile-fix {
    margin-top: 120px;
  }

  .about-year-box {
    position: absolute;
    width: 100%;
    height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    z-index: 9;
  }

  .about-year-box h2 {
    margin-top: 0;
    margin-right: 15px;
    z-index: 9;
  }

  .about-year-box .exp {
    writing-mode: horizontal-tb;
    transform: none;
    position: relative;
    top: auto;
    right: auto;
    margin-top: 0;
    z-index: 9;
  }

  .about-year-box .exp p {
    margin-top: 0;
    z-index: 9;
  }

  .aboutus2-img {
    margin-right: 20px;
    margin-bottom: -10px;
  }

  .testimonial-image-fix {
    margin-top: 50px;
  }

  .aboutus_2images .col-12 {
    width: 50% !important;
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
}

/*========================================================================================================================================================================================*/
/* BLOG PAGE STYLE START HERE */
/*========================================================================================================================================================================================*/

.card-title a {
  color: inherit;
  text-decoration: none;
}

.card-title a:hover {
  color: var(--primary-color);
}

/*========================================================================================================================================================================================*/
/* CONTACT US PAGE STYLE START HERE */
/*========================================================================================================================================================================================*/

.query {
  width: 100%;
  /*height: 650px;*/
  background: var(--primary-color);
  padding: 20px 20px 20px;
  border-radius: 40px;
}

@media (max-width: 576px) {
  .query {
    width: auto;
    height: auto;
    margin-top: 20px;
  }
}

.form-section form input,
.form-section form select,
.form-section form textarea {
  border-radius: 15px;
  padding: 12px 10px;
}

.form-section form input:focus,
.form-section form select:focus,
.form-section form textarea:focus {
  border: 0;
  outline: 0;
  box-shadow: none;
}

.contact-box {
  background: var(--primary-color);
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 200px;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contact-box i {
  font-size: 42px;
  color: var(--black-color);
  margin-bottom: 10px;
}

.contact-box h4 {
  font-size: 30px;
  color: var(--black-color);
  margin-bottom: 10px;
}

.contact-box a {
  color: var(--white-color);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-box a:hover {
  color: var(--white-color);
  text-decoration: underline;
}

/* swiper navigation style */
.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 30px;
  font-weight: 800;
}

.swiper-button-prev {
  color: #606060;
}

.swiper-button-next {
  color: #606060;
}

/* Remove navigation button on smaller screens*/
@media screen and (max-width: 800px) {
  .content {
    margin: 0 10px;
  }

  .swiper-navBtn {
    display: none;
  }
}

.map iframe {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: 15px;
}

/* Responsive map height */
@media (max-width: 768px) {
  .map iframe {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .map iframe {
    height: 300px;
  }
}

/* Make fixed-width elements responsive */
@media (max-width: 1200px) {
  .contact-form {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .contact-box {
    min-height: 180px;
    padding: 15px;
  }

  .contact-box i {
    font-size: 36px;
  }

  .contact-box h4 {
    font-size: 24px;
  }

  .contact-box a {
    font-size: 12px;
  }
}

/* Tablet Header Top Bar Improvements */
@media (max-width: 991.98px) and (min-width: 769px) {
  .top-bar .row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .top-bar .col-lg-6:first-child {
    flex: 1;
    text-align: left;
  }

  .top-bar .col-lg-6:last-child {
    flex: 1;
    text-align: right;
  }

  .top-bar .address-info ul {
    flex-direction: row;
    gap: 15px;
    justify-content: flex-start;
  }

  .top-bar .address-info ul li a {
    font-size: 12px;
  }

  .top-bar ul.item-flex {
    justify-content: flex-end;
    gap: 8px;
    margin-top: 0;
  }

  .topbar {
    display: inline-flex;
    justify-content: flex-end;
    margin-top: 0;
    margin-left: 15px;
  }

  .topbar .contact-btn {
    margin-top: 0;
    padding: 6px 16px;
    font-size: 12px;
  }
}

/* Medium Mobile Header Top Bar Improvements */
@media (max-width: 768px) and (min-width: 577px) {
  .top-bar .row {
    flex-direction: column;
    /* gap: 8px; */
  }

  .top-bar .col-lg-6 {
    width: 100%;
    text-align: center;
  }

  .top-bar .address-info ul {
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    flex-wrap: nowrap;
  }

  .top-bar .address-info ul li a {
    font-size: 12px;
  }

  .top-bar ul.item-flex {
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
  }

  .topbar {
    display: flex;
    justify-content: center;
    margin-top: 8px;
  }

  .topbar .contact-btn {
    padding: 7px 18px;
    font-size: 12px;
  }
}

/* Mobile Header Top Bar Improvements */
@media (max-width: 576px) {

  /* Mobile Top Bar Layout */
  .top-bar {
    padding: 6px 0;
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .top-bar .container {
    padding: 0 8px;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .top-bar .row {
    flex-direction: column;
    gap: 6px;
    margin: 0;
    max-width: 100%;
  }

  .top-bar .col-lg-6 {
    width: 100%;
    text-align: center;
    padding: 0 5px;
    max-width: 100%;
  }

  .top-bar .address-info {
    margin-bottom: 6px;
    max-width: 100%;
    overflow-x: hidden;
  }

  .top-bar .address-info ul {
    gap: 3px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
    overflow-x: hidden;
  }

  .top-bar .address-info ul li a {
    font-size: 11px;
    padding: 1px 0;
    white-space: nowrap;
    max-width: 100%;
  }

  .top-bar ul.item-flex {
    gap: 6px;
    margin-top: 8px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 100%;
    overflow-x: hidden;
  }

  .top-bar .social a {
    height: 26px;
    width: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .topbar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
    width: 100%;
    max-width: 100%;
  }

  .topbar .contact-btn {
    padding: 6px 16px;
    font-size: 12px;
    margin-top: 0;
    white-space: nowrap;
    min-width: 100px;
    max-width: 100%;
  }

  .phone-email {
    width: 100% !important;
    max-width: 100%;
  }
  
  .socail_mobile {
    max-width: 100%;
    overflow-x: hidden;
  }

  .query {
    width: 100% !important;
    padding: 15px;
  }

  .contact-box {
    min-height: 160px;
    padding: 12px;
  }

  .contact-box i {
    font-size: 32px;
  }

  .contact-box h4 {
    font-size: 20px;
  }

  .contact-box a {
    font-size: 11px;
  }
}

/*========================================================================================================================================================================================*/
/* Gallery PAGE CSS START HERE */
/*========================================================================================================================================================================================*/

.section-space {
  padding: 80px 0;
}

.breadcrumb {
  background-color: #333;
  padding: 60px 0;
}

.breadcrumb-content h1 {
  font-size: 36px;
  font-weight: 700;
}

.breadcrumb ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb ul li {
  display: inline-block;
  color: #ccc;
}

.breadcrumb ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb ul li a:hover {
  color: #aaa;
}

.gallery-section {
  background-color: #fff;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.section-subtitle {
  color: #777;
  font-size: 18px;
}

/* Gallery Filter */
.gallery-filter {
  margin-bottom: 30px;
}

.filter-btn {
  background: none;
  border: 1px solid #ddd;
  color: #666;
  padding: 8px 20px;
  margin: 0 5px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #333;
  color: #fff;
  border-color: #333;
}

/* Gallery Grid */
.gallery-grid {
  margin: 0 -15px;
}

.gallery-item {
  padding: 0 15px;
  margin-bottom: 30px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.gallery-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.gallery-img-container {
  position: relative;
  overflow: hidden;
}

.gallery-img-container img {
  width: 100%;
  height: auto;
  transition: transform 0.5s;
}

.gallery-card:hover .gallery-img-container img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 20px;
  color: #fff;
}

.gallery-overlay-content h5 {
  font-size: 18px;
  margin-bottom: 15px;
}

.gallery-view-btn {
  /*   display: inline-block; */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: #fff;
  color: #333;
  border-radius: 50%;
  text-align: center;
  transition: all 0.3s;
}

.gallery-view-btn:hover {
  background-color: #333;
  color: #fff;
  transform: scale(1.1);
}

/* Load More Button */
.btn-load-more {
  background-color: #333;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-load-more:hover {
  background-color: #555;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .section-space {
    padding: 50px 0;
  }

  .gallery-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .filter-btn {
    margin: 5px;
  }

  .gallery-item {
    margin-bottom: 15px;
  }
}

/* Add these to your existing CSS */
.gallery-item {
  transition: all 0.3s ease;
}

.isotope-hidden {
  display: none !important;
}

/* Loading animation */
.gallery-grid.isotope .isotope-item {
  transition-duration: 0.8s;
}

.gallery-grid.isotope .isotope-item:hover {
  transition-duration: 0.1s;
}

.fancybox__toolbar {
  background: rgba(0, 0, 0, 0.3) !important;
}

.fancybox__nav {
  --f-button-width: 40px;
  --f-button-height: 40px;
  --f-button-border-radius: 50%;
  --f-button-color: #fff;
  --f-button-hover-color: #fff;
  --f-button-bg: rgba(0, 0, 0, 0.5);
  --f-button-hover-bg: rgba(0, 0, 0, 0.7);
  --f-button-active-bg: rgba(0, 0, 0, 0.8);
}

.fancybox__nav::before {
  background: none !important;
}

.f-button.is-next,
.f-button.is-prev {
  width: var(--f-button-width);
  height: var(--f-button-height);
  border-radius: var(--f-button-border-radius);
  color: var(--f-button-color);
  background: var(--f-button-bg);
}

.f-button.is-next:hover,
.f-button.is-prev:hover {
  color: var(--f-button-hover-color);
  background: var(--f-button-hover-bg);
}

.fancybox__thumbs {
  background: rgba(0, 0, 0, 0.3) !important;
}

/* Loading animation for isotope */
.gallery-grid.isotope {
  transition: height 0.4s ease;
}

.gallery-item {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.isotope-hidden {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
}

/* Fancybox navigation buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.fancybox-button:hover {
  background: rgba(0, 0, 0, 0.8);
}

.fancybox-button--close {
  right: 20px;
  top: 20px;
}

.fancybox-button--next,
.fancybox-button--prev {
  top: 50%;
  transform: translateY(-50%);
}

.fancybox-button--next {
  right: 20px;
}

.fancybox-button--prev {
  left: 20px;
}

/* =================================================================================================
SERVICES SINGLE PAGE - PROFESSIONAL STYLING
================================================================================================= */

/* Sidebar Styles */
.sidebar-widgets {
  padding-left: 30px;
}

.widget {
  margin-bottom: 40px;
}

.widget-title {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

/* Search Widget */
.search-widget .search-form {
  position: relative;
}

.search-widget .input-group {
  display: flex;
}

.search-widget .form-control {
  border-radius: 4px 0 0 4px;
  border-right: none;
}

.search-widget .btn {
  border-radius: 0 4px 4px 0;
}

/* Related Posts Widget */
.related-posts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-posts-list li {
  padding: 10px 0;
  border-bottom: 1px dashed #eee;
}

.related-posts-list li:last-child {
  border-bottom: none;
}

.related-posts-list li a {
  display: block;
  color: #333;
  text-decoration: none;
  margin-bottom: 5px;
  font-weight: 500;
}

.related-posts-list li a:hover {
  color: var(--primary-color);
}

.related-posts-list .post-date {
  display: block;
  font-size: 0.8rem;
  color: #777;
}

/* Categories Widget */
.categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-list li {
  padding: 8px 0;
  border-bottom: 1px dashed #eee;
}

.categories-list li:last-child {
  border-bottom: none;
}

.categories-list li a {
  color: #555;
  text-decoration: none;
  transition: all 0.3s;
}

.categories-list li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

/* Tags Widget */
.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tags-list .tag {
  display: inline-block;
  padding: 5px 12px;
  background: #f5f5f5;
  color: #555;
  border-radius: 3px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s;
}

.tags-list .tag:hover {
  background: var(--primary-color);
  color: #fff;
}

.country-page {
  margin-left: 50px;
}

/* =================================================================================================
PRIVACY POLICY PAGE
================================================================================================= */

.container .policy-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 10px;
  background-color: #fff;
  border-radius: 12px;
}

.policy-section .page-title {
  font-size: 3rem;
  margin-bottom: 10px;
  text-align: center;
  color: #222;
  font-weight: 700;
}

.policy-section .policy-section {
  margin-bottom: 50px;
}

.policy-section h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #1a1a1a;
  border-bottom: 2px solid #eee;
  padding-bottom: 8px;
}

.policy-section p,
.policy-section ul {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
}

.policy-section ul {
  list-style-type: disc;
  margin-left: 25px;
}

/* ================================================================================================
TERMS & CONDITIONS PAGE
================================================================================================= */
.terms-page .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 20px;
}

.terms-page .page-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
}

.terms-page h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.terms-page p,
.terms-page ul {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
}

.terms-page ul {
  list-style-type: disc;
  margin-left: 20px;
}

/* ================================================================================================
REFUND & CANCELLATION POLICY PAGE
================================================================================================= */
.refund-page .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 20px;
}

.refund-page .page-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
}

.refund-page h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.refund-page p,
.refund-page ul {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
}

.refund-page ul {
  list-style-type: disc;
  margin-left: 20px;
}

/* ================================================================================================
COOKIE POLICY PAGE
================================================================================================= */
.cookie-page .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 20px;
}

.cookie-page .page-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
}

.cookie-page h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.cookie-page p,
.cookie-page ul {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
}

.cookie-page ul {
  list-style-type: disc;
  margin-left: 20px;
}

/* ================================================================================================
COMPLIANCE & DATA SECURITY PAGE
================================================================================================= */
.compliance-page .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 20px;
}

.compliance-page .page-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
}

.compliance-page h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.compliance-page p,
.compliance-page ul {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
}

.compliance-page ul {
  list-style-type: disc;
  margin-left: 20px;
}

/* ================================================================================================
USER AGREEMENT PAGE
================================================================================================= */
.user-agreement-page .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 20px;
}

.user-agreement-page .page-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
}

.user-agreement-page h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.user-agreement-page p,
.user-agreement-page ul {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
}

.user-agreement-page ul {
  list-style-type: disc;
  margin-left: 20px;
}

/* ================================================================================================
Tourist Visa Page
================================================================================================= */

.tourist-visa-page {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.visa-hero {
  text-align: center;
  padding: 40px 0;
  background: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 30px;
}

.visa-hero h1 {
  color: var(--primary-color);
  font-size: 2.5em;
  margin-bottom: 10px;
}

.visa-hero .tagline {
  font-size: 1.5em;
  color: #4a90e2;
  margin-bottom: 20px;
}

.why-choose-us,
.visa-services,
.popular-destinations,
.how-it-works,
.contact-cta {
  margin: 40px 0;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.container h2 {
  color: var(--primary-color);
  /* border-bottom: 2px solid #4a90e2; */
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.benefits-list,
.services-list {
  list-style-type: none;
  padding-left: 0;
}

.benefits-list li,
.services-list li {
  padding: 8px 0;
  font-size: 1.1em;
}

.flags-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.flags-grid div {
  padding: 15px;
  background: #f0f7ff;
  border-radius: 5px;
  text-align: center;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.step {
  flex: 1;
  min-width: 200px;
  padding: 20px;
  background: #f0f7ff;
  border-radius: 8px;
  text-align: center;
}

.step span {
  font-size: 2em;
  display: block;
  margin-bottom: 10px;
}

.contact-cta {
  text-align: center;
  background: var(--primary-color);
  color: white;
}

.contact-cta h2 {
  color: white;
  border-bottom: 2px solid #4a90e2;
}

.contact-info {
  margin: 20px 0;
}

.contact-info a {
  color: white;
  text-decoration: underline;
}

.cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: #ff6b35;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 20px;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #e05a2a;
  color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .steps {
    flex-direction: column;
  }

  .flags-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ================================================================================================
Visa Pages Common Styles
================================================================================================= */

.business-visa-page,
.student-visa-page,
.work-visa-page,
.family-visa-page,
.immigration-page {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.visa-hero {
  text-align: center;
  padding: 40px 0;
  background: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 30px;
}

.visa-hero h1 {
  color: var(--primary-color);
  font-size: 2.5em;
  margin-bottom: 10px;
}

.visa-hero .tagline {
  font-size: 1.5em;
  color: #9f9f9f;
  margin-bottom: 20px;
}

.why-choose-us,
.visa-services,
.popular-destinations,
.how-it-works,
.contact-cta {
  margin: 40px 0;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.visa-page h2 {
  color: var(--primary-color);
  border-bottom: 2px solid #d3d3d3;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.benefits-list,
.services-list {
  list-style-type: none;
  padding-left: 0;
}

.benefits-list li,
.services-list li {
  padding: 8px 0;
  font-size: 1.1em;
}

.flags-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.flags-grid div {
  padding: 15px;
  background: #d3d3d3;
  border-radius: 5px;
  text-align: center;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.step {
  flex: 1;
  min-width: 200px;
  padding: 20px;
  background: #d3d3d3;
  border-radius: 8px;
  text-align: center;
  border-left: 4px solid var(--primary-color);
}

.step span {
  font-size: 2em;
  display: block;
  margin-bottom: 10px;
}

.contact-cta {
  text-align: center;
  background: var(--primary-color);
  color: white;
}

.contact-cta h2 {
  color: white;
  border-bottom: 2px solid white;
}

.contact-info {
  margin: 20px 0;
}

.contact-info a {
  color: white;
  text-decoration: underline;
}

.cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: #ff6b35;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 20px;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #e05a2a;
}

/* Business Visa Specific Styles */
.business-visa-page .visa-hero {
  background: #ffff;
}

.business-visa-page .contact-cta {
  background: var(--primary-color);
}

/* Student Visa Specific Styles */
.student-visa-page .visa-hero {
  background: #ffff;
}

.student-visa-page .contact-cta {
  background: var(--primary-color);
}

/* Work Visa Specific Styles */
.work-visa-page .visa-hero {
  background: #ffff;
}

.work-visa-page .contact-cta {
  background: var(--primary-color);
}

/* Family Visa Specific Styles */
.family-visa-page .visa-hero {
  background: #ffff;
}

.family-visa-page .contact-cta {
  background: var(--primary-color);
}

/* Immigration Specific Styles */
.immigration-page .visa-hero {
  background: #ffff;
}

.immigration-page .contact-cta {
  background: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .steps {
    flex-direction: column;
  }

  .flags-grid {
    grid-template-columns: 1fr 1fr;
  }

  .visa-hero h1 {
    font-size: 1.8em;
  }

  .visa-hero .tagline {
    font-size: 1.2em;
  }
}

@media (max-width: 576px) {
  .flags-grid {
    grid-template-columns: 1fr;
  }

  .step {
    min-width: 100%;
  }
}

/* Work Visa Specific Styles */
.work-visa-page .flags-grid div {
  background: #d3d3d3;
}

.work-visa-page .step {
  background: #d3d3d3;
  border-left: 4px solid var(--primary-color);
}

/* Family Visa Specific Styles */
.family-visa-page .flags-grid div {
  background: #d3d3d3;
}

.family-visa-page .step {
  background: #d3d3d3;
  border-left: 4px solid var(--primary-color);
}

/* Immigration Specific Styles */
.immigration-page .flags-grid div {
  background: #d3d3d3;
}

.immigration-page .step {
  background: #d3d3d3;
  border-left: 4px solid var(--primary-color);
}

/* Enhanced Step Cards */
.step {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Improved Flags Grid */
.flags-grid div {
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

.flags-grid div:hover {
  transform: scale(1.05);
}

/* Responsive Improvements */
@media (max-width: 768px) {

  .visa-services ul,
  .why-choose-us ul {
    padding-left: 20px;
  }

  .benefits-list li,
  .services-list li {
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .visa-hero {
    padding: 30px 15px;
  }

  .why-choose-us,
  .visa-services,
  .popular-destinations,
  .how-it-works {
    padding: 20px 15px;
  }
}

/* Fixed mega dropdown styles for horizontal country cards - keeping original styling */
.mega-dropdown-menu {
  background: var(--white-color);
  border: 1px solid rgba(128, 128, 128, 0.2);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  margin-top: 8px;
  /* Full width responsive positioning */
  width: 100vw;
  left: 50% !important;
  transform: translateX(-50%) !important;
  /* Animation properties */
  animation: megaDropdownSlideDown 0.5s ease-out;
  transform-origin: top;
  position: absolute;
  z-index: 1000;
  box-sizing: border-box;
}

@keyframes megaDropdownFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-15px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Centered horizontal layout for country cards - preserving original styling */
.country-cards-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 15px;
}

.country-cards-row>div {
  /* Fixed width approach to ensure 6 cards fit in one row */
  flex: 0 0 170px;
  width: 170px;
  min-width: 170px;
  max-width: 170px;
}

/* Original country card styling - completely preserved */
.country-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  color: var(--black-color);
  text-align: center;
  padding: 0px;
  transition: all 0.3s ease;
  background: var(--white-color);
  opacity: 0;
  animation: countryCardSlideIn 0.5s ease-out forwards;
}

/* Staggered animation for country cards */
.country-card:nth-child(1) {
  animation-delay: 0.1s;
}

.country-card:nth-child(2) {
  animation-delay: 0.15s;
}

.country-card:nth-child(3) {
  animation-delay: 0.2s;
}

.country-card:nth-child(4) {
  animation-delay: 0.25s;
}

.country-card:nth-child(5) {
  animation-delay: 0.3s;
}

.country-card:nth-child(6) {
  animation-delay: 0.35s;
}

.country-card:nth-child(7) {
  animation-delay: 0.4s;
}

.country-card:nth-child(8) {
  animation-delay: 0.45s;
}

/* Country card slide in animation */
@keyframes countryCardSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Original image styling - with proper centering */
.country-image {
  width: 100%;
  height: 143px;
  overflow: hidden;
  margin: 0 auto 15px auto;
  background: #f8f9fa;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.country-image img {
  width: 100%;
  height: 143px;
  transition: transform 0.3s ease;
}

/* Original title styling - completely preserved */
.country-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--black-color);
  margin: 0;
  line-height: 1.4;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  position: relative;
  transition: transform 0.3s ease;
  width: 180px;
}

/* Original arrow styling - completely preserved */
.country-card .arrow-rt {
  opacity: 0;
  transition: opacity 0.3s ease;
  margin-right: 8px;
  margin-left: 0;
  display: inline-block;
  vertical-align: middle;
  height: 15px;
  width: 20px;
}

/* Original hover effects - completely preserved */
.country-card:hover .arrow-rt {
  opacity: 1;
}

.country-card:hover .country-title {
  color: var(--primary-color, #007bff);
  transform: translateX(5px);
}

/* Enhanced mega dropdown container positioning */
.mega-dropdown {
  position: static;
}

.mega-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
}

/* Responsive layout adjustments - keeping original breakpoints */
@media (max-width: 1400px) {
  .country-cards-row {
    max-width: 1140px;
    gap: 20px;
  }

  .country-cards-row>div {
    flex: 0 0 calc(16.666% - 17px);
    min-width: 170px;
    max-width: 170px;
  }
}

@media (max-width: 1200px) {
  .country-cards-row {
    max-width: 1000px;
    gap: 18px;
  }

  .country-cards-row>div {
    flex: 0 0 calc(16.666% - 15px);
    min-width: 150px;
    max-width: 150px;
  }
}

@media (max-width: 1100px) {
  .country-cards-row {
    max-width: 900px;
    gap: 16px;
  }

  .country-cards-row>div {
    flex: 0 0 calc(16.666% - 13px);
    min-width: 130px;
    max-width: 130px;
  }
}

@media (max-width: 1000px) {
  .country-cards-row {
    max-width: 800px;
    gap: 14px;
  }

  .country-cards-row>div {
    flex: 0 0 calc(20% - 11px);
    min-width: 140px;
    max-width: 140px;
  }

  .country-image {
    width: 150px;
    height: 107px;
  }

  .country-image img {
    width: 130px;
    height: 107px;
  }

  .country-title {
    font-size: 13px;
  }
}

@media (max-width: 900px) {
  .country-cards-row {
    max-width: 700px;
    gap: 12px;
  }

  .country-cards-row>div {
    flex: 0 0 calc(25% - 9px);
    min-width: 150px;
    max-width: 150px;
  }

  .country-image {
    width: 120px;
    height: 86px;
  }

  .country-image img {
    width: 100px;
    height: 86px;
  }

  .country-title {
    font-size: 12px;
  }
}

@media (max-width: 800px) {
  .country-cards-row {
    max-width: 600px;
    gap: 10px;
  }

  .country-cards-row>div {
    flex: 0 0 calc(33.333% - 7px);
    min-width: 120px;
    max-width: 120px;
  }

  .country-image {
    width: 100px;
    height: 72px;
  }

  .country-image img {
    width: 80px;
    height: 72px;
  }

  .country-title {
    font-size: 11px;
  }
}

/* Mobile-only text display - hide images and show vertical text list */
@media (max-width: 991.98px) {
  .mega-dropdown-menu {
    width: 100% !important;
    left: 0 !important;
    transform: none !important;
    border-radius: 0;
    margin: 0;
    padding: 15px 20px;
    animation: none;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .country-cards-row {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

  .country-cards-row>div {
    flex: none;
    min-width: 100%;
    max-width: 100%;
  }

  .country-card {
    padding: 12px 15px;
    border: none;
    border-bottom: 1px solid rgba(128, 128, 128, 0.1);
    border-radius: 0;
    background: transparent;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
  }

  .country-card:last-child {
    border-bottom: none;
  }

  .country-card:hover {
    transform: none;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.05);
  }

  /* Hide images completely on mobile */
  .country-image {
    display: none;
  }

  .country-title {
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    justify-content: flex-start;
    margin: 0;
    width: auto;
  }

  .country-card .arrow-rt {
    opacity: 0;
  }

  .country-card:hover .arrow-rt {
    opacity: 1;
  }

  .country-card:hover .country-title {
    transform: none;
  }
}

@media (max-width: 576px) {
  .mega-dropdown-menu {
    padding: 10px 15px;
  }

  .country-card {
    padding: 10px 15px;
  }

  .country-title {
    font-size: 15px;
  }
}

/* Additional responsive improvements for very small screens */
@media (max-width: 480px) {
  .mega-dropdown-menu {
    padding: 8px 12px;
  }

  .country-card {
    padding: 8px 12px;
  }

  .country-title {
    font-size: 14px;
  }
}

/* Ensure mega dropdown works on all screen sizes */
@media (max-width: 400px) {
  .mega-dropdown-menu {
    padding: 6px 10px;
  }

  .country-card {
    padding: 6px 10px;
  }

  .country-title {
    font-size: 13px;
  }
}

/* ================================================================================================
Why Chose Us Pages Common Styles
================================================================================================= */

.why-choose-section {
  background-color: #ffffff;
  padding: 60px 20px;
}

.why-choose-section .section-title {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}

.feature-card {
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  transition: 0.3s ease-in-out;
}

.feature-card:hover {
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.feature-icon {
  font-size: 2.5rem;
  color: #606060;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-description {
  font-size: 1rem;
  color: #555;
}

/* ================================================================================================
Additional CSS for hover effects
================================================================================================= */

/* Additional CSS for hover effects */
.destination-item:hover {
  background-color: #f8f9fa !important;
  transform: translateX(5px) !important;
}

.view-more-btn:hover {
  background-color: #f8f9fa !important;
  padding-right: 25px !important;
}

.view-more-btn:hover i {
  transform: translateX(3px);
}

.btn-outline-secondary:hover {
  background-color: #f8f9fa !important;
  color: #333333 !important;
}

.btn-primary:hover {
  background-color: #000000 !important;
  border-color: #000000 !important;
}

.servicesSlide .card {
  margin-bottom: 10px;
}

.servicesSlide .card:hover {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  animation-name: example;
  animation-duration: 0.25s;
  border-left: 8px solid #000000;
  box-shadow: 0 14px 23px rgb(0 0 0 / 11%), 0 7px 10px rgb(0 0 0 / 17%);
}

@keyframes example {
  0% {
    border-left: 2px solid #ffffff;
  }

  25% {
    border-left: 3px solid #ffe6e6;
  }

  50% {
    border-left: 4px solid #000000;
  }

  100% {
    border-left: 5px solid #000000;
  }
}

.countrySlide .card img:hover {
  filter: grayscale(1);
  mask: linear-gradient(135deg, #000c 40%, #000, #000c 60%) 100% 100% / 250% 250%;
  -webkit-mask: linear-gradient(135deg, #000c 40%, #000, #000c 60%) 100% 100% / 250% 250%;
  transform: perspective(400px) rotate3d(12, 13, -1, 8deg);
}

.featuredSwiper .card:hover {
  filter: grayscale(1);
  mask: linear-gradient(135deg, #000c 40%, #000, #000c 60%) 100% 100% / 250% 250%;
  -webkit-mask: linear-gradient(135deg, #000c 40%, #000, #000c 60%) 100% 100% / 250% 250%;
  transform: perspective(400px) rotate3d(12, 13, -1, 8deg);
}


/*-----------------------------------   29 august 2025  footer --------------- */
footer {
  background: #606060;
}

.top-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(45deg, #606060, #606060) !important;
}

.footer-bottom {
  background: linear-gradient(45deg, #606060, #606060) !important;
}

.footer-col h4 {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body);
  margin-top: 15px !important;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7) !important;
  font-weight: 400 !important;
}

.looking-section {
  background: linear-gradient(45deg, #606060, #606060) !important;
}

.mega-dropdown-container {
  padding: 20px 100px !important;
}

.swiper-pagination-bullet-active {
  background: #1f2937 !important
}

.breadcrumb ul {
  align-items: center;
}

.accordion-button:not(.collapsed) {
  background-color: #969696 !important;
}

/* ================================================================================================
Expert Cards Styling
================================================================================================= */

.expert-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  position: relative;
  min-height: 280px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  padding: 0;
}

.expert-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: #d0d0d0;
}

.expert-image-container {
  height: 220px;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  position: relative;
  background: #f8f9fa;
  margin: 0;
  padding: 0;
}

.expert-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 12px 12px 0 0;
}

.expert-card:hover .expert-image {
  transform: scale(1.1);
  filter: brightness(1.1) contrast(1.05);
}

.expert-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(120, 113, 108, 0.5);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 3;
  border-radius: 12px;
}

.expert-card:hover .expert-overlay {
  opacity: 1;
}

.expert-card .card-body {
  padding: 1rem 1.25rem 1.25rem;
  background: transparent;
  position: relative;
  z-index: 4;
  flex-grow: 0;
}

.expert-card .card-img-top {
  margin: 0;
  padding: 0;
}

.expert-card .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #ffffff !important;
  line-height: 1.3;
  transition: all 0.3s ease;
}

.expert-card:hover .card-title {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.expert-card .card-text {
  font-size: 0.85rem;
  color: #ffffff !important;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.expert-card:hover .card-text {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .expert-card {
    min-height: 260px;
  }

  .expert-image-container {
    height: 200px;
  }
}

@media (max-width: 767.98px) {
  .expert-card {
    min-height: 240px;
  }

  .expert-image-container {
    height: 180px;
  }

  .expert-card .card-title {
    font-size: 1rem;
  }

  .expert-card .card-text {
    font-size: 0.8rem;
  }

  section.features-section {
    height: 305px !important;
  }
	
	.year-box {
		display: none;
	}
	
	.arrow_gif {
		display: none;
	}
	
	.about2-img {
		display: none;
	}
}

@media (max-width: 575.98px) {
  .expert-card {
    min-height: 220px;
  }

  .expert-image-container {
    height: 160px;
  }

  .expert-card .card-body {
    padding: 0.75rem 1rem 1rem;
  }
}

@media (max-width: 768px) {
    .footer-section .container-footer-logo {
        text-align: center !important;
        margin: 0 auto;
        margin-bottom: 20px!important;
    }
    
    .top-footer .container.pt-5{
        padding-top: 18px!important;
    }
}

