@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');
.mar-lg-10 {
  margin-left: 10px;
  margin-right: 10px;
}

.mar-lg-20 {
  margin-left: 20px;
  margin-right: 20px;
}

.mar-lg-30 {
  margin-left: 30px;
  margin-right: 30px;
}

.mar-lg-40 {
  margin-left: 40px;
  margin-right: 40px;
}

.mar-lg-50 {
  margin-left: 50px;
  margin-right: 50px;
}

.mar-lg-60 {
  margin-left: 60px;
  margin-right: 60px;
}

.mar-lg-70 {
  margin-left: 70px;
  margin-right: 70px;
}

.mar-lg-80 {
  margin-left: 80px;
  margin-right: 80px;
}

.mar-lg-90 {
  margin-left: 90px;
  margin-right: 90px;
}

.mar-lg-100 {
  margin-left: 100px;
  margin-right: 100px;
}

.mar-lg-r-0 {
  margin-right: 0px !important;
}

.pad-lg-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.pad-lg-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.pad-lg-30 {
  padding-left: 30px;
  padding-right: 30px;
}

.pad-lg-40 {
  padding-left: 40px;
  padding-right: 40px;
}

.pad-lg-50 {
  padding-left: 50px;
  padding-right: 50px;
}

.pad-lg-60 {
  padding-left: 60px;
  padding-right: 60px;
}

.pad-lg-70 {
  padding-left: 70px;
  padding-right: 70px;
}

.pad-lg-80 {
  padding-left: 80px;
  padding-right: 80px;
}

.pad-lg-90 {
  padding-left: 90px;
  padding-right: 90px;
}

.pad-lg-100 {
  padding-left: 100px;
  padding-right: 100px;
}
.pad-tb{padding-top: 60px;padding-bottom: 60px;}
.onhover {
  transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  -webkit-transition: all .3s ease-out 0s;
  -o-transition: all .3s ease-out 0s;
}

/*=========Vertical Scroller CSS==========*/
::-webkit-scrollbar {
  width: 4px; // to adjust width
}

::-webkit-scrollbar-track {
  background: #221640;
  border: rgba(33, 33, 33, 1);
}

::-webkit-scrollbar-thumb {
  background: #00ABCD;
}

::-webkit-scrollbar-thumb:hover {
  background: #00ABCD;
}

::-webkit-scrollbar-thumb:active {
  background: #00ABCD;
}

* {
  padding: 0;
  margin: 0;
}

html,
body {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

p {
  padding: 0;
  margin: 0;
}
a{text-decoration:none;}
/*========Header=========*/
header {
  padding: 4px 0px;
/*  position: fixed;*/
  width: 100%;
  z-index: 999;
  transition: background-color 0.4s ease;
}

/* progress bar at bottom of header */
    #progressBar {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 2px;
      background: #00D0E4;
      width: 0%;
      transition: width 0.1s linear;
    }

header .logo img {
  max-width: 150px;
/*  filter: brightness(0) invert(1);*/
}

header.scrolled .logo img {
  max-width: 120px;
  filter: brightness(1) invert(0);
}

header .callus {
  text-align: right;
}
header .callus ul{list-style: none;margin: 0}
header .callus ul li{display: inline;}
header .callus ul li a {
  font-size: 13px;
  text-decoration: none;
  background: #E52125;
  padding: 10px;
  font-weight: 600;
  color: #fff;
  border-radius: 30px;
  display: inline-block;
  padding: 6px 20px;
  position: relative;
  overflow: hidden;
}
header .callus ul li a span{font-size: 18px;}
@keyframes glow {
  0%, 100% {
    background-color: #006075; /* Original deep red */
  }
  50% {
    background-color: #E52125; /* Lighter/brighter red for glow effect */
  }
}

/* First link: starts immediately */
header .callus ul li:nth-child(1) a {
  animation: glow 2s ease-in-out infinite;
  font-size: 12px;
  font-weight: 500;
}

/* Second link: delay to alternate */
header .callus ul li:nth-child(2) a {
  animation: glow 2s ease-in-out infinite;
  animation-delay: 1s;
  font-size: 16px;
}

header.scrolled {
  background-color: rgba(255, 255, 255, .99);
  padding: 4px 0px;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  position: fixed;
}

header.scrolled .navbar {
    border-bottom: 1px solid rgba(20, 70, 128, 0);
}

header.scrolled .menu>.menu-item>a {
  color: #0f4680;
}

/* Smooth hide for .callus */
.callus {
  max-height: 60px;
  overflow: hidden;
  opacity: 1;
  transition: all 0.4s ease;
}

header.scrolled .callus {
  max-height: 0;
  opacity: 0;
  padding: 0;
  margin: 0;
}

/*========Header=========*/


/*========menu==========*/
.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
  max-width: 100%;
  height: auto;
  padding: 0;
}

.navbar {
  max-width: 100%;
  height: auto;
  padding: 0px;
/*  border-bottom: 1px solid rgba(20, 70, 128, 0.1);*/
}

.menu {
  margin: 0px;
}

.menu>.menu-item {
  position: relative;
  display: inline-block;
  margin: 0 1.4rem;
}

.menu>.menu-item:last-child {
  margin-right: 0;
}

.menu>.menu-item>a {
  text-transform: uppercase;
  display: block;
  font-family: inherit;
  font-size: 16px;
  font-weight:600;
  line-height: inherit;
  padding: 1rem 0;
  text-decoration: none;
  border: none;
  outline: none;
  color: #006075;
  text-rendering: optimizeLegibility;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.menu>.menu-item>.sub-menu .menu-item a img{max-width: 30px;border: 1px solid #ccc;}
.menu>.menu-item>a .expand {
  position: relative;
  display: none;
  height: 0.75rem;
  width: 0.75rem;
  margin-left: 0.35rem;
  border: none;
  outline: none;
  pointer-events: none;
}

.menu>.menu-item>a .expand:before,
.menu>.menu-item>a .expand:after {
  position: absolute;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  content: '';
  left: 50%;
  top: 50%;
  width: 100%;
  height: 2px;
  background: #121212;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.menu>.menu-item:hover>a {
  color: #00D0E4;
}

.menu>.menu-item:hover>a .expand::before,
.menu>.menu-item:hover>a .expand::after {
  background: #00D0E4;
}

.menu>.menu-item>a .expand::after {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
  -ms-transform: translate(-50%, -50%) rotate(-90deg);
  transform: translate(-50%, -50%) rotate(-90deg);
}

.menu>.menu-item>.sub-menu>.menu-item>a:hover {
  color: #00D0E4;
}

.menu>.menu-item>.sub-menu {
  z-index: 99;
  position: absolute;
  left: -1rem;
  top: 120%;
  width: 14rem;
  height: auto;
  padding: 0.4rem 0;
  border: none;
  outline: none;
  opacity: 0;
  visibility: hidden;
  border-top: 3px solid #00abcd;
  background: #ffffff;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  -webkit-transform: translateY(1rem);
  -ms-transform: translateY(1rem);
  transform: translateY(1rem);
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.menu>.menu-item>.sub-menu>.menu-item {
  display: block;
}

.menu>.menu-item>.sub-menu>.menu-item>a {
  display: block;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: inherit;
  padding: 0.8rem 1.25rem;
  color: #03576e;
  text-transform: capitalize;
  text-rendering: optimizeLegibility;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  text-decoration: none;
}

.opened-menu {
  position: relative;
  display: none;
  cursor: pointer;
  width: 2rem;
  height: 1rem;
  border: none;
  outline: none;
  opacity: 0;
  visibility: hidden;
  background: none;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.opened-menu span {
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  left: 0;
  border: none;
  outline: none;
  opacity: 1;
  border-radius: 0.25rem;
  background: #006176;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.opened-menu span:nth-child(1) {
  top: 0;
}

.opened-menu span:nth-child(2),
.opened-menu span:nth-child(3) {
  top: 0.5rem;
}

.opened-menu span:nth-child(4) {
  top: 1rem;
}

.closed-menu {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  outline: none;
  background: none;
}

.closed-menu img.closed-icon {
  display: block;
  width: 1rem;
  height: auto;
}

.overlay {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

@media only screen and (min-width: 993px) {
  .menu>.menu-item-has-children:hover>.sub-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  .menu>.menu-item-has-children:hover>a .expand::after {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    -ms-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@media only screen and (max-width: 992px) {
  .overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .navbar {
    position: fixed;
    top: 0;
    left: -18rem;
    width: 18rem;
    height: 100%;
    padding: 1rem 0;
    z-index: 999;
    opacity: 0;
    overflow-y: auto;
    visibility: hidden;
    background: #ffffff;
    -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .navbar.active {
    left: 0rem;
    opacity: 1;
    visibility: visible;
  }

  .navbar::-webkit-scrollbar {
    width: 5px;
  }

  .navbar::-webkit-scrollbar-thumb {
    border-radius: 1rem;
    background: #e6e6e6;
    -webkit-box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.12);
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.12);
  }

  .menu {
    width: 100%;
    height: auto;
    margin-top: 0;
  }

  .menu>.menu-item {
    display: block;
    margin: 0;
  }

  .menu>.menu-item-has-children>a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .menu>.menu-item>a {
    padding: 0.75rem 1rem;
    color: #121212;
    border-bottom: 1px solid #f2f2f2;
  }

  .menu>.menu-item:first-child>a {
    border-top: 1px solid #f2f2f2;
  }

  .menu>.menu-item>a .expand::before,
  .menu>.menu-item>a .expand::after {
    background: #121212;
  }

  .menu>.menu-item-has-children.active>a .expand:after {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    -ms-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .menu>.menu-item>.sub-menu {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-height: 0;
    padding: 0px;
    border: none;
    outline: none;
    opacity: 1;
    overflow: hidden;
    visibility: visible;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
  }

  .menu>.menu-item>.sub-menu>.menu-item>a {
    padding: 0.75rem 2rem;
    color: #121212;
    border-bottom: 1px solid #f2f2f2;
  }

  .opened-menu {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .closed-menu {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 1rem;
    right: 0.5rem;
  }
}
/*========menu==========*/


/*========slider==========*/
#slider_sec {
  position: relative;
  border-bottom: 15px solid #00D0E4;
}
#slider_sec .slider_banner{
  background: url(../images/bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  padding-top: 2%;
  padding-bottom: 5%;
  height: auto;
  overflow: visible;
}
#slider_sec .slider_banner .item {}
#slider_sec .owl-nav {
  position: absolute;
  left: 50px;
  transform: translateY(-50%);
  z-index: 99;
  margin-top: 0px;
  bottom: 15px;
}
#slider_sec .owl-dots {
    position: absolute;
    right: 60px;
    transform: translateY(-50%);
    z-index: 99;
    margin-top: 0px;
    bottom: 25px;
}
#slider_sec .owl-theme .owl-nav [class*=owl-]:hover {
  background: transparent;
}

#slider_sec .owl-theme .owl-dots .owl-dot span {
    width: 25px;
    height: 10px;
    margin: 5px 3px;
    background: rgba(0, 208, 228, .2);
    display: block;
    -webkit-backface-visibility: visible;
    transition: width 0.3s ease, background 0.3s ease;
    border-radius: 30px;
}

#slider_sec .owl-theme .owl-dots .owl-dot.active span {
    width: 50px;
    background: #00D0E4;
}


#slider_sec .banner1 {
      display: flex;
      flex-wrap: wrap;
      min-height: 100vh;
    }
#slider_sec .banner1 .banner-text {
      flex: 0 0 40%;
      padding: 0px 0px 0px 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
#slider_sec .banner1 .banner-text p{font-size: 26px;color: #fff;margin-bottom: 5px;}   
#slider_sec .banner1 .banner-text h2 {
     font-size: 38PX;
     color: #fff;
     margin-bottom: 10px;
    }
#slider_sec .banner1 .banner-text ul {
      list-style: none;
      padding-left: 0;
    }
#slider_sec .banner1 .banner-text ul li {
  position: relative;
  padding-left: 30px;
  font-size: 23px;
  color: #fff;
  list-style: none;
  line-height: 2;
}

#slider_sec .banner1 .banner-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px; /* adjust as needed */
  width: 18px;
  height: 18px;
  background-image: url('../images/slider/check-01.svg'); 
  background-size: contain;
  background-repeat: no-repeat;
}
#slider_sec .banner1 .contact-btn {
      background-color: #00D0E4;
      color: #fff;
      border: none;
      padding: 15px 35px;
      font-weight: 600;
      border-radius: 30px;
      margin-top: 20px;
      width: fit-content;
      transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    }

#slider_sec .banner1 .contact-btn:hover {
   background: #03829d!important;
  color: #fff;
  transform: scale(1.04);
} 
#slider_sec .bg1 {
      flex: 0 0 60%;
      min-height: 85vh;
      background-image: url('../images/slider/globaledugateway.png');
      /*background-size: contain;*/
      background-repeat: no-repeat;
      background-position: right center;
    }

#slider_sec .bg2 {
      flex: 0 0 60%;
      min-height: 85vh;
      background-image: url('../images/slider/mbbs-in-kyrgyzstan.png');
      /*background-size: contain;*/
      background-repeat: no-repeat;
      background-position: right center;
    } 
#slider_sec .bg3 {
      flex: 0 0 60%;
      min-height: 85vh;
      background-image: url('../images/slider/mbbs-in-russia.png');
      /*background-size: contain;*/
      background-repeat: no-repeat;
      background-position: right center;
    }  

#slider_sec .bg4 {
      flex: 0 0 60%;
      min-height: 85vh;
      background-image: url('../images/slider/mbbs-in-uzbekistan.png');
      /*background-size: contain;*/
      background-repeat: no-repeat;
      background-position: right center;
    } 
#slider_sec .bg5 {
      flex: 0 0 60%;
      min-height: 85vh;
      background-image: url('../images/slider/mbbs-in-georgia.png');
      /*background-size: contain;*/
      background-repeat: no-repeat;
      background-position: right center;
    }                

    @media (max-width: 768px) {
      #slider_sec .banner1 .banner-text {
        padding: 40px 20px;
        text-align: center;
      }
      #slider_sec .banner1 .banner-image {
        min-height: 300px;
      }
    }

/*========slider==========*/



/*============why==============*/

#why {
  position: relative;
  padding: 80px 0px 100px;
  background: url(../images/bg1.jpg) no-repeat center center ;
  background-size: cover;
  z-index: 1;
  overflow: hidden;
}

#why::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.88);
  z-index: 1;
}

/* Make sure content stays on top of the overlay */
#why > * {
  position: relative;
  z-index: 2;
}


#why .heading {
  margin-bottom:15px;
}

#why .heading h3 {
  color: #006176;
  font-size: 24px;
  margin: 0px;
  font-weight: 700;
  text-transform: uppercase;
}

#why .heading p {
  color: #006176;
  font-size: 20px;
  font-weight: 500;
}

#why .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin: auto;
}

#why .box {
  background-color: #0296AF;
  color: #fff;
  padding: 40px 20px;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  text-align: center;
}

#why .box.light {
  background-color: #006176;
  color: #fff;
}

#why .box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
}

#why .icon {
  font-size: 30px;
  margin-bottom: 15px;
  text-align: center;
  display: inline;
}

#why .icon img {
  padding: 4px;
  min-width: 65px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .099);
  transition: transform 0.3s ease;
}

#why .box:hover .icon img {
  transform: scale(1.2);
}

#why .box h3 {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 500;
  position: relative;
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.3;
}

#why .box h3::after {
    content: "";
    position: absolute;
    bottom: -10px; /* adjust if needed */
    left: 50%;
    transform: translateX(-50%);
    width: 10%;
    height: 1px;
    background-color: #FFF; /* Change to your desired color */
}

#why .box p {
  font-size: 18px;
  font-weight: 300;
}

/*============why==============*/


/*============about==============*/

#about {
  position: relative;
  padding: 100px 0px 100px;
  background: url(../images/bg2.png) no-repeat center center ;
  background-size: cover;
  z-index: 1;
  overflow: hidden;
}

#about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.88);
  z-index: 1;
}

/* Make sure content stays on top of the overlay */
#about > * {
  position: relative;
  z-index: 2;
}

#about .blue{background: rgba(0, 97, 118, .8);padding: 10px;border-radius: 5px;}
#about .blue .heading{padding: 40px 0px 20px 40px;}
#about .blue .heading h3 {
  color: #fff;
  font-size: 24px;
  margin: 0px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom:15px;
}

#about .blue .heading p {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}
.global{font-family: "Marcellus", serif;font-size:22px;text-transform:none;}
.global2{font-family: "Marcellus", serif;font-size:12px;text-transform:none;}
.global3{font-family: "Marcellus", serif;font-size:16px;text-transform:none;}
.global4{font-family: "Marcellus", serif;font-size:18px;text-transform:none;}
#about .blue .heading p+h3+p{color: #fff;font-size: 21px;font-weight: 300;text-transform: none;margin: 0px;}


/*============directors==============*/
#directors {
  position: relative;
  padding: 100px 0px 100px;
  background: url(../images/bg3.png) no-repeat center center ;
  background-size: cover;
  z-index: 1;
  overflow: hidden;
}

#directors::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.88);
  z-index: 1;
}

/* Make sure content stays on top of the overlay */
#directors > * {
  position: relative;
  z-index: 2;
}

#directors .blue{background: rgba(0, 97, 118, .8);padding: 10px;border-radius: 5px;}
#directors .blue .heading{padding: 40px 0px 0px 40px;}
#directors .blue .heading h3 {
  color: #fff;
  font-size: 24px;
  margin: 0px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom:15px;
}

#directors .blue .heading p {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}
#directors .blue .heading p+h3+p{color: #fff;font-size: 16px;font-weight: 400;text-transform: none;margin: 0px;}

#directors .d1 img{border-radius: 5px;}

#directors .img1 .image-wrapper {
      position: relative;
    }
#directors .img1 .image-container {
      
      border-radius: 5px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }
#directors .img1 .image-container img {
      width: 100%;
      display: block;
    }
#directors .img1 .small-box {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 2px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    margin-top: -70px;
    margin-right: -10px;
    float: right;
    }

#directors .d_name h4 {
  color: #fff;
  font-size: 22px;
  margin: 0px;
  font-weight: 500;
  margin-bottom:5px;
}

#directors .d_name p {
  color: #fff;
  font-size: 16px;
  font-weight:400;
}
#directors .d_name .br{position: relative;}
#directors .d_name .br::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 4%;
    transform: translateX(-50%);
    width: 8%;
    height: 2px;
    background-color: #FFF;
}
#directors .d_name .description p {
    color: #fff;
    font-size: 18px;
    font-weight:300;
    text-transform: none;
    text-align: justify;
    min-height: 135px;
/*    word-break: break-all;*/
    text-align-last: left; /* Important for the last line */
    word-spacing: normal; /* ensures spacing stays natural */
}
#directors .d_name .description {
     position: relative;
    }
#directors .d_name .description .extra-content {
      display: none;
      overflow: hidden;
    }
#directors .d_name .description .read-more-link {
      background-color: #00D0E4;
      color: #fff;
      border: none;
      padding: 10px 25px;
      font-weight: 600;
      border-radius: 30px;
      width: fit-content;
      text-decoration: none;
      display: inline-block;
      cursor: pointer;
      transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    }

#directors .d_name .description .read-more-link:hover {
   background: #006176!important;
  color: #fff;
  transform: scale(1.04);
} 


#directors .container_des{ margin-top: 0px;display: flex;
      justify-content: space-between;
      align-items: center;}

 .icon-group {
      display: flex;
      gap: 10px;
    }

    .icon {
      width: 35px;
      height: 35px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 16px;
      cursor: pointer;
      transition: transform 0.2s;
    }

    .icon.linkedin {
      background-color: #0A66C2;
      text-decoration: none;
      border: 2px solid rgba(255, 255, 255, .3);
    }

    .icon.mail {
      background-color: #3C4A9D;
      text-decoration: none;
      border: 2px solid rgba(255, 255, 255, .3);
    }

    .icon:hover {
      transform: scale(1.1);
    }

#directors #desc2 .read-more-link {
      background-color: #006176!important;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

#directors #desc2 .read-more-link:hover {
   background: #00D0E4!important;
  color: #fff;
  transform: scale(1.04);
}    


#directors .sub_dir{background: rgba(2, 150, 175, 0.88);padding: 20px;border-radius: 5px;box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);}


#directors .img2 .image-wrapper {
      position: relative;
      margin-bottom: 25px;
    }
#directors .img2 .image-container {
      
      border-radius: 5px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }
#directors .img2 .image-container img {
      width: 100%;
      display: block;
    }
#directors .img2 .small-box {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 2px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    margin-top: -75px;
    margin-right: -5px;
    float: right;
    }




/*========sec_five==========*/
#sec_five {
  position: relative;
  padding: 80px 0px 100px;
  background: url(../images/bg4.jpg) no-repeat center center ;
  background-size: cover;
  z-index: 1;
  overflow: hidden;
}

#sec_five::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.888);
  z-index: 1;
}

/* Make sure content stays on top of the overlay */
#sec_five > * {
  position: relative;
  z-index: 2;
}


#sec_five .heading {
  margin-bottom:15px;
}

#sec_five .heading h4 {
  color: #006176;
  font-size: 24px;
  margin: 0px;
  font-weight: 700;
  text-transform: uppercase;
}

#sec_five .heading p {
  color: #006176;
  font-size: 20px;
  font-weight: 500;
}

#sec_five .heading h4+p {
  color: #006176;
  font-size: 21px;
  font-weight: 400;
  margin-top: 10px;
  text-transform: none;
  margin-bottom: 30px;
}

#sec_five .steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 0; /* vertical gap only */
  transition: all 0.3s ease;
/*  max-width: 1000px;*/
  margin: 0 auto;
}

#sec_five .step {
  text-align: center;
  width: 22%; /* allows 4 in a row including gap */
  margin: 0 1.5%; /* spacing between items */
  min-width: 120px;
  transition: transform 0.3s ease, filter 0.3s ease;
  position: relative;
}

/* Hover effect */
#sec_five .step:hover {
  transform: scale(1.1);
}



#sec_five .step-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  font-size: 24px;

  background-image: url('../images/icons/step-01.svg');
  /* or base64 svg background */
  background-repeat: no-repeat;

}

.step-icon[data-icon="discover"] {
  background-position: 0 0;
}

.step-icon[data-icon="counselled"] {
  background-position: 0 -55px;
}

.step-icon[data-icon="shortlist"] {
  background-position: 0 -110px;
}

.step-icon[data-icon="exams"] {
  background-position: 0 -165px;
}

.step-icon[data-icon="apply"] {
  background-position: 0 -220px;
}

.step-icon[data-icon="letter"] {
  background-position: 0 -275px;
}

.step-icon[data-icon="assistance"] {
  background-position: 0 -330px;
}

.step-icon[data-icon="future"] {
  background-position: 0 -385px;
}

.step-icon[data-icon="campus"] {
  background-position: 0 -440px;
}

#sec_five .step:hover .step-icon {
  background-color: #0F4680;
  color: #fff;
}

#sec_five .step-title {
  font-size: 22px;
  font-weight: 500;
  color: #006176;
  margin-bottom: 5px;
  transition: transform 0.3s ease;
}

#sec_five .step-text {
  font-size: 16px;
  color: #006176;
  transition: transform 0.3s ease;
}

#sec_five .tooltip {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #0f4680;
  color: #fff;
  padding: 4px 10px;
  border-radius: 30px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

#sec_five .step:hover .tooltip {
  opacity: 1;
}

@media (max-width: 768px) {
  #sec_five .step {
    width: 45%;
  }
}

@media (max-width: 480px) {
  #sec_five .step {
    width: 100%;
  }
}
#sec_five .para{margin-top: 30px;}
#sec_five .para p{color: #0f4680;font-size: 16px;font-weight: 400;}


#sec_five .cta {
  margin-top: 35px;
  text-align: left;
}

#sec_five .cta a.redcta {
  border: 1px solid rgba(255, 255, 255, .5);
  background: #006176;
  padding: 12px 25px;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  border-radius: 35px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  /* Added transform transition */
}

#sec_five .cta a.redcta:hover {
  background: #00D0E4;
  color: #fff;
  transform: scale(1.02);
}

#sec_five .cta a.red2cta {
  border: 1px solid rgba(255, 255, 255, .5);
  background: #00D0E4;
  padding: 12px 25px;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  margin-left: 5px;
  border-radius: 35px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

#sec_five .cta a.red2cta:hover {
   background: #006176;
  color: #fff;
  transform: scale(1.02);
}    



/*========sec_fourth==========*/
#sec_fourth {
  background: #006176;
}

#sec_fourth .abg {
  background: url(../images/faq.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  position: relative;
/*  background-attachment: fixed;*/
  overflow: hidden; /* Ensure overlay doesn't overflow */
}

#sec_fourth .abg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}



#sec_fourth .about_heading {
  position: relative;
  z-index: 2;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  height: 100%;
}

#sec_fourth .about_heading h2 {
  font-size: 28px;
  text-align: left;
}

#sec_fourth .about_content {
  padding: 130px 0px 130px 0px;
}

#sec_fourth .about_content p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 20px;
}

#sec_fourth .about_content {
  margin-top: 15px;
}

#sec_fourth .about_content .anchor a {
  background: #003F7D;
  padding: 12px 30px;
  font-size: 16px;
  color: #fff;
  display: inline-block;
  border-radius: 5px;
  text-decoration: none;
}

#sec_fourth .about_content .anchor a:hover {
  background: #FF8C00;
  color: #fff;
}

#sec_fourth .services-section {
  background-color: #006176;
  color: #002c3e;
  padding: 80px 10px;
}

#sec_fourth .services-section h2 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

#sec_fourth .services-section h6 {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

#sec_fourth .services-section p {
  font-size: 16px;
  margin-bottom: 30px;
}

#sec_fourth .service-item {
  margin-bottom: 0px;
}

#sec_fourth ul.service-list {
  padding: 0;
}


#sec_fourth .service-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

#sec_fourth .service-list li {
  padding: 14px 0 14px 30px;
  border-bottom: 1px solid #0f7289;
  position: relative;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

#sec_fourth .service-list li:last-child {
  border-bottom: none;
}

#sec_fourth .service-list li::before {
  content: "•";
  color: #fff;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 42%;
  transform: translateY(-50%);
  transition: top 0.3s ease;
}

#sec_fourth .service-list li:hover::before,
#sec_fourth .service-list li.active::before {
  top: 25%;
}

#sec_fourth .service-list li a {
  text-decoration: none;
  font-size: 20px;
  color: #fff;
  display: block;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 6px;
}

#sec_fourth .service-list li p {
  margin: 0;
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

#sec_fourth .service-list li.active p {
  max-height: 500px;
  opacity: 1;
  font-size: 16px;
}
/*
#sec_fourth .service-list li.blur:not(.active):not(:hover) {
  filter: blur(2px);
  opacity: 0.5;
}*/

/*========sec_five==========*/

#certificate {
  position: relative;
  padding: 80px 0px 100px;
  background: url(../images/bg4.png) no-repeat center center ;
  background-size: cover;
  z-index: 1;
  overflow: hidden;
}

#certificate::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.88);
  z-index: 1;
}

/* Make sure content stays on top of the overlay */
#certificate > * {
  position: relative;
  z-index: 2;
}


#certificate .heading {
  margin-bottom:15px;
}

#certificate .heading h5 {
  color: #006176;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

#certificate .heading p {
  color: #006176;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}


#certificate .gallery-img {
      cursor: pointer;
      transition: transform 0.3s;
    }
#certificate .gallery-img:hover {
      transform: scale(1.05);
    }

/*#certificate img{box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);padding: 10px;background: #f4f4f4;border-radius:3px;border: 8px solid #006176;}*/


/*=========footer============*/

/* Top Contact Section */
    .contact-top {
      background-color: #006176;
      padding: 40px 0 20px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .contact-top .links{text-align: left;}
    .contact-top .links img{max-width: 30px;}
    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 15px;
    }

    .contact-icon {
      background-color: #00D0E4;
      color: #fff;
      border-radius: 10px;
      font-size: 24px;
      height: 50px;
      padding: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .contact-text h5 {
      color: #00D0E4;
      font-weight: bold;
      margin-bottom: 5px;
    }

    .contact-text p {
      margin: 0;
      font-size: 14px;
      color: #fff;
    }
    .contact-text .big{
      font-size: 24px;
      color: #fff;
    }
    .contact-text address {
      margin: 0;
      font-size: 13px;
      color: #fff;
    }
    .contact-text address strong{
      margin: 0;font-size: 15px;color: #fff;margin-bottom: 10px}

     .contact-text address small{font-size:9px;}


     .links h5 {
      color: #00D0E4;
      margin-bottom: 15px;
      font-weight: 600;
    }
    .links p{padding-bottom: 0!important}
    .links p, .links a {
      color: #ccc;
      font-size: 12px;
      text-decoration: none;
      padding-bottom: 6px;
      display: block;
    }

    .links a:hover {
      color: #fff;
    }


    /* Footer Main Section */
    .footer {
      padding:20px 0 0px;
      background-color: #006176;
    }

    .footer h5 {
      color: #00D0E4;
      margin-bottom: 10px;
    }

    .footer p, .footer a {
      color: #ccc;
      font-size: 12px;
      text-decoration: none;
      padding-bottom: 6px;
    }

    .footer a:hover {
      color: #fff;
    }

    .social-icons a {
      color: #fff;
      font-size: 18px;
      margin-right: 10px;
      display: inline-block;
    }

    .subscribe-box input {
      border: none;
      border-radius: 5px 0 0 5px;
      padding: 10px;
      width: 80%;
    }

    .subscribe-box button {
      border: none;
      background-color: #00D0E4;
      color: #fff;
      padding: 10px 35px;
      border-radius: 0 5px 5px 0;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      margin-top: 0px;
      padding-top: 15px;
      font-size: 13px;
    }

    @media(max-width: 767px) {
      .contact-item {
        margin-bottom: 20px;
      }
    }


    .social-icons {
      display: flex;
      gap:1px;
      flex-wrap: wrap;
      justify-content: right;
    }

    .social-icons a {
      display: flex;
      justify-content: center;
      align-items: center;
      width:35px;
      height: 35px;
      border-radius: 50%;
      color: white;
      text-decoration: none;
      font-size: 18px;
      transition: transform 0.3s ease;
      padding-top: 8px;
    }

    .social-icons a:hover {
      transform: scale(1.1);
    }

    .whatsapp { background-color: #25D366; }
    .linkedin  { background-color: #0077B5; }
    .facebook  { background-color: #3B5998; }
    .youtube   { background-color: #FF0000; }
    .instagram { background-color: #C13584; }

    @media (max-width: 600px) {
      .social-icons a {
        width: 25px;
        height: 25px;
        font-size: 24px;
      }
    }

.terms {}
.terms ul {}
.terms ul li {
  display: inline-block;
  padding: 0px 15px;
}
.terms ul li:last-child {
  padding-right: 0px;
}



/*=====back to top========*/
#backToTop {
  position: fixed;
  bottom: 5px;
  right: 5px;
  z-index: 999;
  background-color: #00cfe3;
  color: #fff;
  border: none;
  outline: none;
  width: 38px;
  height: 38px;
  border-radius:3px;
  font-size: 18px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s, transform 0.3s;
}

#backToTop:hover {
  background-color: #023c49;
  transform: scale(1.1);
}

#exampleModal .modal-content{background: #fff;}
#exampleModal .modal-dialog{min-width: 750px;}
#exampleModal .modal-body{padding: 0px;}

.wrapperimg .spider {
    margin: 0px auto;
    border: 28px solid transparent;
    border-image-source: url(../images/border-img.png);
    border-image-slice: 46 49;
    border-image-repeat: round;
    min-height: 250px;
/*    height: 260px;*/
    width: 100%;
    overflow: hidden;
}


/*=========Inner Pages=======*/
#banner {
    position: relative;
    overflow: hidden;
    height: 400px;
}

#banner img {
    position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   z-index: 0;
}

#banner .overlay_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  
}

#banner .content {
    color: white;
    text-align: left;
    padding: 25px 50px 15px;
}

#banner .content p {
    margin: 0px 0px 10px;
    font-size: 16px;
}

#banner .content h1 {
    font-size:20px;
    font-weight: 600;
    text-align: left;
    margin-bottom: 10px;
    color: #00cfe3;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(16, 210, 246, 0.3);
    padding-bottom: 10px;
}

#banner .content h1 span {
    color: #0FD8FD;
}

#banner .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 10px;
}

#banner .breadcrumb .breadcrumb-item a {
    color: white;
    text-decoration: none;
    font-weight: 300;

}

#banner .breadcrumb .breadcrumb-item.active {
    color: white;
    font-weight: 300;
}

#banner .breadcrumb-item+.breadcrumb-item::before {
    float: left;
    color: #fff;

}


#imageModal .modal-content {
    background-color: transparent;
    background-clip: padding-box;
    border: none;
}

.formsdiv_inr{background: #015e73;padding:0px;border-radius: 10px;box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);}
.sticky-top {position: sticky;top: 110px;z-index: 10;}


/*=======university========*/

.univercity_sec .university-box {
  margin-top: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
  text-align: center;
  background: #0296AF;
  padding: 10px;
  border-radius: 5px;
}
.univercity_sec .university-box.odd {
  background: #006176;
}

.univercity_sec .image-wrapper {
  overflow: hidden;
}

.univercity_sec .image-wrapper img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.univercity_sec .university-name{margin-top: 10px;}
.univercity_sec .university-name a {
  margin-top: 10px;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 500;
  color: #fff;
  transition: font-size 0.3s ease;
}

.univercity_sec .university-box:hover img {
  transform: scale(1.1);
}

.univercity_sec .university-box:hover .university-name a {
  font-size: 1.15rem;
}
article{background: #f4f4f4}
.page_bg{background: #fff;padding: 20px 20px 30px;border-radius: 5px;}
.page_bg2{background: #fff;padding: 20px 20px 20px;border-radius: 5px;}


.content .banner1 {
      display: flex;
      flex-wrap: wrap;
      min-height: 100vh;
    }
.content .banner-text {
      flex: 0 0 40%;
      padding: 0px 0px 10px 0px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
.content .banner-text h2 {
     font-size:32PX;
     color: #fff;
     margin-bottom: 10px;
     font-weight: 600;
    }
.content .banner-text ul {
      list-style: none;
      padding-left: 0;
    }
.content .banner-text ul li {
  position: relative;
  padding-left: 30px;
  font-size:18px;
  color: #fff;
  list-style: none;
  line-height: 2;
}

.content .banner-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px; /* adjust as needed */
  width: 18px;
  height: 18px;
  background-image: url('../images/slider/check-01.svg'); 
  background-size: contain;
  background-repeat: no-repeat;
}
.content .contact-btn {
      background-color: #00D0E4;
      color: #fff;
      border: none;
      padding: 15px 35px;
      font-weight: 600;
      border-radius: 30px;
      margin-top: 20px;
      width: fit-content;
      transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    }

.content .contact-btn:hover {
   background: #03829d!important;
  color: #fff;
  transform: scale(1.04);
} 


.heading_c {
  margin-bottom:0px;
}

.heading_c h3 {
  color: #006176;
  font-size: 24px;
  margin: 0px;
  font-weight: 700;
  text-transform: uppercase;
}

.heading_c p {
  color: #006176;
  font-size: 20px;
  font-weight: 500;
}






/*========Services==========*/
#services_sec {
  background-image: url('../images/map-01.svg');
  background-color: #2f7687;
  background-repeat: no-repeat;
  background-position: top right;
  padding: 70px 0px 100px;
}

#services_sec .heading {
  margin-bottom: 30px;
}

#services_sec .heading h3 {
  color: #fff;
  font-size: 24px;
  margin: 0px;
  text-transform: uppercase;
  font-weight: 700
}

#services_sec .heading p {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}
#services_sec .owl-nav{margin-top: 40px;}
#services_sec .countrycards {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

#services_sec .card {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 5x;
  cursor: pointer;
  transition: transform 0.3s ease;
/*  border: 1px solid #01d2fd;*/
}

/*#services_sec .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 82, 170, 1) 0%, rgba(0, 82, 170, 0.2) 50%, rgba(0, 82, 170, 0) 100%);
  z-index: 1;
}*/
#services_sec .country-flag img {height: auto!important;width:40px!important;position: relative !important;}
#services_sec .card img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

#services_sec .content {
  position: relative;
  bottom: 0;
  background:#006176;
  color: white;
  z-index: 2;
  padding: 10px;
}
#services_sec .item a{text-decoration: none;color: #fff;}
#services_sec .item a h3{text-decoration: none;color: #fff;}
#services_sec .item{text-decoration: none;}
#services_sec .content h3 {
  font-size: 18px;
  margin-bottom: 0px;
  text-decoration: none;
}

#services_sec .arrow {
  display: inline-block;
  font-size: 22px;
  transition: transform 0.3s ease;
}

#services_sec .card:hover img {
  transform: scale(1.1);
}

#services_sec .card:hover .arrow {
  transform: translateX(10px);
}


#sec_three .heading {
  margin-bottom: 30px;
}

#sec_three .heading h3 {
  color: #341F61;
  font-size: 24px;
  margin: 0px;
  font-weight: 700;
  text-transform: uppercase;
}

#sec_three .heading p {
  color: #00ABCD;
  font-size: 16px;
  font-weight: 500
}

#sec_three .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin: auto;
}

#sec_three .box {
  background-color: #341F61;
  color: #fff;
  padding: 40px 20px;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  text-align: center;
}

#sec_three .box.light {
  background-color: #768BC6;
  color: #fff;
}

#sec_three .box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
}

#sec_three .icon {
  font-size: 30px;
  margin-bottom: 15px;
  text-align: center;
}

#sec_three .icon img {
  padding: 8px;
  border-radius: 50%;
  background: linear-gradient(to bottom, rgba(0, 82, 170, 0.5) 0%, rgba(0, 82, 170, 0.1) 50%, rgba(0, 82, 170, 0) 100%);
  transition: transform 0.3s ease;
}

#sec_three .box:hover .icon img {
  transform: scale(1.2);
}

#sec_three .box h3 {
  margin-top: 0;
  font-size: 16px;
  font-weight: 600;
}

#sec_three .box p {
  font-size: 12px;
  line-height: 1.6;
}

#card_slider .owl-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -65px; /* Dots ka vertical position adjust karne ke liye */
    z-index: 99;
    margin-top: 0;
}
#card_slider .owl-theme .owl-nav [class*=owl-]:hover {
  background: transparent;
}

#card_slider .owl-dots .owl-dot span {
    width: 25px;
    height: 10px;
    margin: 5px 3px;
    background: rgba(0, 208, 228, .2);
    display: block;
    -webkit-backface-visibility: visible;
    transition: width 0.3s ease, background 0.3s ease;
    border-radius: 30px;
}

#card_slider .owl-dots .owl-dot.active span {
    width: 50px;
    background: #00D0E4;
}

.country-name{color:#fff;}
.model_btn{text-align:right}
.model_btn button{background-color: #01bfe5;color: #fff;opacity: 1;padding: 10px;}


/* Make nav buttons full height and center vertically */
#slider .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* allows clicks through transparent area */
}

#slider .owl-prev,
#slider .owl-next {
  position: absolute;
  top: 47%;
  transform: translateY(-50%);
  pointer-events: all; /* allow clicks on icons */
  font-size: 28px;
  color: #fff;
  background: rgba(255,255,255,0.3);
  padding: 5px 15px!important;
  z-index: 2;
}

#slider .owl-prev {
  left: 2px;
}

#slider .owl-next {
  right: 2px;
}


.speech-bubble {
      position: relative;
      background: #e12227; /* Red background */
      color: #fff;
      font-weight: 500;
      font-size: 18px;
      padding: 10px 5px;
      border-radius: 5px;
      text-align: center;
      max-width: 90%;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      margin-bottom: 10px;
    }
