/********** Template CSS **********/
/*#ce9233*/
body{
    overflow-x: hidden;
}
:root {
  --bg-gredient:linear-gradient(135deg, #CE9233 0%, #1a1a1a 100%);
  --color-primary: #20282D;
  --color-secondary: #1F1F25;
  --color-blue: #0b4df5;
  --color-sky: #82b440;
  --color-body: #5D666F;
  --color-heading-1: #1C2539;
  --color-title: #141416;
  --color-heading-dark: #141416;
  --transition: .3s;
  --bg-dark-1: #1E1E20;
  --color-white: #fff;
  --color-border: #DDD8F9;
  --border-width: 1px;
  --radius: 10px;
  --color-success: #3EB75E;
  --color-danger: #FF0003;
  --color-warning: #FF8F3C;
  --color-info: #1BA2DB;
  --color-facebook: #3B5997;
  --color-twitter: #1BA1F2;
  --color-youtube: #ED4141;
  --color-linkedin: #0077B5;
  --color-pinterest: #E60022;
  --color-instagram: #C231A1;
  --color-vimeo: #00ADEF;
  --color-twitch: #6441A3;
  --color-discord: #7289da;
  --p-light: 300;
  --p-regular: 400;
  --p-medium: 500;
  --p-semi-bold: 600;
  --p-bold: 700;
  --p-extra-bold: 800;
  --p-black: 900;
  --s-light: 300;
  --s-regular: 400;
  --s-medium: 500;
  --s-semi-bold: 600;
  --s-bold: 700;
  --s-extra-bold: 800;
  --s-black: 900;
  --transition: 0.3s;
  --font-primary: "Red Hat Display", serif;
  /*--font-secondary: "DM Sans", serif;*/
  --font-3: "fontawesome";
  --font-size-b1: 16px;
  --font-size-b2: 15px;
  --font-size-b3: 22px;
  --line-height-b1: 26px;
  --line-height-b2: 26px;
  --line-height-b3: 1.7;
  --h1: 60px;
  --h2: 48px;
  --h3: 30px;
  --h4: 26px;
  --h5: 24px;
  --h6: 18px;
}
.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}
.breadcrumb,
nav[aria-label="breadcrumb"] {
    display: none !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 600;
}

.mt-6 {
    margin-top: 5rem;
}

.mb-6 {
    margin-bottom: 5rem;
}

.pt-6 {
    padding-top: 5rem;
}

.pb-6 {
    padding-bottom: 5rem;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.top-header{
    background: linear-gradient(135deg, #947741) !important;
}

/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--bs-light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--bs-dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 25px;
    height: 25px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-xl-square {
    width: 60px;
    height: 60px;
}

.btn-xxl-square {
    width: 75px;
    height: 75px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square,
.btn-xl-square,
.btn-xxl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--bs-dark);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}
.navbar-brand .logo{
    max-height: 130px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
    .dropdown-menu1,
     .dropdown-menu2 {
        width: 70%;
        display: block;
        border: none;
        margin-top: 0;
        top: 0%;
        left: 0%;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: .5s;
        z-index: 999;
        pointer-events: none;
    }

    .dropdown1:hover .dropdown-menu1 {
        opacity: 1 !important;
        visibility: visible !important;
        transition: .5s;
        pointer-events: auto;
    }
    .dropdown2:hover .dropdown-menu2 {
        visibility: visible !important;
        opacity: 1 !important;;
        transition: .5s;
        pointer-events: auto;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        /*max-width: 500px;*/
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }

    .dropdown-menu1,
     .dropdown-menu2 {
        width: 100%;
        display: block;
        border: none;
        margin-top: 0;
        top: 0%;
        left: 90%;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: .5s;
        z-index: 999;
        pointer-events: none;
    }

    .dropdown1:hover .dropdown-menu1 {
        opacity: 1 !important;
        visibility: visible !important;
        left: 100%;
        transition: .5s;
        pointer-events: auto;
    }
    .dropdown2:hover .dropdown-menu2 {
        left: 100%;
        visibility: visible !important;
        opacity: 1 !important;;
        transition: .5s;
        pointer-events: auto;
    }

}
.dropdown-item{
    text-wrap-mode: wrap;
}
.dropdown-item:hover{
  background: linear-gradient(135deg, #947741);
  color: #ffffff !important;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.dropdown-item.active{
  background: linear-gradient(135deg, #947741);
  color: #ffffff !important;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}




/* elements  */
.hero-slider img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  /*filter: brightness(70%);*/
}
.slide1 {
  background-image: url(../img/banner/slide1.png);
  height: 500px;
  position: relative;
  z-index: 1;
  /*background-position: 0%, 45%;*/
  background-repeat: no-repeat;
  background-size: cover;
}
.slide2 {
  background-image: url(../img/banner/slide2.png);
  height: 500px;
  position: relative;
  z-index: 1;
  background-position: 0%, 45%;
  background-repeat: no-repeat;
  /*background-size: cover;*/
}
.slide3 {
  background-image: url(../img/banner/slide3.png);
  height: 500px;
  position: relative;
  z-index: 1;
  /*background-position: 0%, 45%;*/
  background-repeat: no-repeat;
  background-size: cover;
}
.slide4 {
  background-image: url(../img/banner/slide4.png);
  height: 500px;
  position: relative;
  z-index: 1;
  background-position: 0%, 45%;
  background-repeat: no-repeat;
  /*background-size: cover;*/
}

.slide5 {
  background-image: url(../img/banner/slide5.png);
  height: 500px;
  position: relative;
  z-index: 1;
  background-position: 0%, 45%;
  background-repeat: no-repeat;
  /*background-size: cover;*/
}
.slide6 {
  background-image: url(../img/banner/slide6.png);
  height: 500px;
  position: relative;
  z-index: 1;
  background-position: 0%, 45%;
  background-repeat: no-repeat;
  /*background-size: cover;*/
}
.banner-style-one {
  /*background-image: url(../img/banner/0002.png);*/
  height: 500px;
  position: relative;
  z-index: 1;
  /*background-position: 50%, 45%;*/
  /*background-repeat: no-repeat;
  background-size: cover;*/
}
.banner-style-one .container{
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
}
  .banner-style-one::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    /*background: rgba(255, 255, 255, 0.4509803922);*/
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.55) 0%, transparent 60%);
    z-index: 1;
  }
}
@media only screen and (max-width: 768px) {
  .banner-style-one {
    height: auto;
    background-position: 18%, 45%;
  }
  .banner-style-one::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.4509803922);
    z-index: -1;
  }
  
}
@media only screen and (max-width: 575px) {
  .banner-style-one{
    height: auto;
    background-position: 18%, 45%;
  }
  .banner-style-one::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.4509803922);
    z-index: 1;
  }
  .slide1,.slide2,.slide3,.slide4,.slide5,.slide6{
    height: 683px;
    background-position: 18%, 45%;
  }
}
@media only screen and (max-width: 479px) {
  .banner-style-one {
    height: auto;
    background-position: 18%, 45%;
  }
}
.banner-style-one .banner-one-inner {
    width: 45%;
    right: -10%;
    margin-left: auto;
    padding: 40px 0 190px 0;
    position: absolute;
    display: block;
    margin-top: 43px;
}
.color-h-black{
    border-radius: 12px;
}
.button-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 800px;
  margin: auto;
}

.button-container a {
  flex: 1 1 calc(33.33% - 10px); /* first line 3 buttons */
  text-align: center;
  white-space: nowrap;
  padding: 12px;
}

.button-container a:nth-child(n+4) {
  flex: 1 1 calc(50% - 10px); /* 2nd line 2 buttons */
}
@media only screen and (max-width: 1199px) {
  .banner-style-one .banner-one-inner {
    margin-left: 0;
    width: 100%;
  }
}
@media screen and (max-width: 768px){
   .banner-style-one .banner-one-inner {
    width: 90%;
    right: 0%;
    margin-left: auto;
    padding: 40px 0 190px 0;
    position: relative;
    
   }
}
@media only screen and (max-width: 575px) {
  .banner-style-one .banner-one-inner {
    padding: 106px 5px 126px 5px;
  }
  .button-container a {
      flex: 1 1 calc(33.33% - 10px); /* first line 3 buttons */
      text-align: center;
      white-space: nowrap;
      font-size: 13px;
    }

    .button-container a:nth-child(n+4) {
      flex: 1 1 calc(33.33% - 10px) !important; /* 2nd line 2 buttons */
    }
}
.banner-style-one .banner-one-inner .pre-title {
  color: #1C2539;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 10px;
  font-family: var(--font-secondary);
  letter-spacing: 1px;
}
.banner-style-one .banner-one-inner .pre-title span {
  color: var(--color-primary);
  font-weight: 800;
}
.banner-style-one .banner-one-inner .title {
    font-weight: 700;
    line-height: 82px;
    margin-bottom: 23px;
    font-size: 42px;
    color: var(--color-primary);
    line-height: 1.2;
}
.banner-style-one .banner-one-inner .title span {
  font-style: italic;
  color: var(--color-primary);
  font-weight: 400;
  font-size: 42px;
  line-height: 1.3;
}
.banner-style-one .banner-one-inner p.disc.banner-para {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #1C2539;
}
@media only screen and (max-width: 768px) {
  .banner-style-one .banner-one-inner .title ,.banner-style-one .banner-one-inner .title span{
    font-size: 36px;
  }
}
@media only screen and (max-width: 575px) {
  .banner-style-one .banner-one-inner .title {
    font-size: 30px;
  }
  .banner-style-one .banner-one-inner .title span {
    font-size: 30px;
  }
  .banner-style-one .banner-one-inner p.disc.banner-para {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: #1C2539;
}
}
@media only screen and (max-width: 768px) {
  .banner-style-one .shape-iamge-area {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .banner-style-one .shape-iamge-area {
    display: none;
  }
}
.banner-style-one .shape-iamge-area .one {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 16%;
}
.banner-style-one .shape-iamge-area .two {
    position: absolute;
    right: 7%;
    bottom: 62%;
    z-index: 1;
    animation: jump-2 10s linear infinite;
    opacity: 0.7;
}
@keyframes jump-2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}



/*** Header ***/
.carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    text-align: left;
    background: rgba(0, 0, 0, .7);
    padding: 3rem;
    padding-left: 11rem;
    z-index: 1;
}

.carousel .carousel-indicators {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 80px;
    flex-direction: column;
    margin: 0;
    margin-left: 3rem;
}

.carousel .carousel-indicators [data-bs-target] {
    width: 70px;
    height: 70px;
    text-indent: 0;
    margin: 5px 0;
    border: 2px solid #FFFFFF;
    overflow: hidden;
}

.carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .carousel .carousel-item {
        position: relative;
        min-height: 600px;
    }
    
    .carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel .carousel-indicators [data-bs-target] {
        width: 60px;
        height: 60px;
    }

    .carousel .carousel-caption {
        padding-left: 10rem;
    }
}

@media (max-width: 768px) {
    .carousel .carousel-item {
        min-height: 500px;
    }

    .carousel .carousel-indicators [data-bs-target] {
        width: 50px;
        height: 50px;
    }

    .carousel .carousel-caption {
        padding-left: 9rem;
    }
}

@media (min-width: 1200px) {
    .carousel .carousel-item .display-1 {
        font-size: 7rem;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/header-image.png) 0% 75% no-repeat;
    /*background-size: cover;*/
}


/*** About ***/
.about-img {
    position: relative;
    padding-left: 45px;
}

.about-img::before {
    position: absolute;
    content: "";
    width: 200px;
    height: 300px;
    top: 0;
    left: 0;
    border: 5px solid var(--bs-primary);
    animation: animateUpDown 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes animateUpDown { 
    0% { 
        top: -25px;
    }
    50% { 
        top: -45px;
    }
    100% { 
        top: -25px;
    } 
}


/*** Service ***/
.service .service-item {
    position: relative;
    margin-top: 45px;
}

.service .service-inner {
    position: relative;
    height: 100%;
    margin-top: 45px;
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.service .service-inner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    transition: 1s;
    background: var(--bs-primary);
}

.service .service-inner:hover::before {
    height: 100%;
    top: 0;
}

.service .service-item img {
    margin-top: -45px;
    padding-left: 45px;
    height: 174px;
    object-fit: cover;
}

.service .service-item * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service .service-item:hover h5,
.service .service-item:hover p {
    color: var(--bs-white);
}

.service .service-item:hover a {
    padding-left: 45px !important;
}



.slider div  {
    overflow: hidden;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    /*height: 400px;*/
    /*margin: 0 20px ;*/
}
.slider .slick-slide {
  margin: 0 20px;
}

.slider .slick-list {
  margin: 0 -20px;
}

.university-banner {
  height: 50vh;
  min-width: 420px;
  width: 420px;

}
.university-banner img {
    width: 100%;
    height: 100%;
}
@media (max-width: 768px){
    .university-banner {
      height: 30vh;
      min-width: 220px;
      width: 220px;

    }
}

/*.slider-section {
  background-attachment: fixed;
  position: relative;
  color: white;
}*/

/* Slider images */
.slider img {
  border-radius: 8px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  /*object-fit: cover;*/

}

/*.slider img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}*/

/* Slider Section Background */
.card-stack-slider {
  background: linear-gradient(135deg, #CE9233 0%, #1a1a1a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.wave-top svg,
.wave-bottom svg {
  height: 60px;
  width: 100%;
}


/* Heading */
.card-stack-slider h2 {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 1;
}

/* Combined Control Buttons */
.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 40px;
  padding: 8px 16px;
  backdrop-filter: blur(6px);
  width: fit-content;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Navigation Buttons */
.slider-btn {
  background: rgba(255, 255, 255, 0.85);
  border: 2px solid #CE9233;
  color: #111;
  font-size: 18px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin: 0 5px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-btn:hover {
  background: #CE9233;
  color: #fff;
  border-color: #fff;
  transform: scale(1.1);
}

.slider-btn:focus {
  outline: none;
}



/*** Team ***/
.team .team-item {
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.team .team-item .team-social {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    transition: .5s;
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team .team-item:hover .team-social {
    width: 100%;
    left: 0;
}

.team .team-item .team-social .btn {
    opacity: 0;
    transition: .5s;
}

.team .team-item:hover .team-social .btn {
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-img {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.testimonial-img div {
    position: absolute;
    width: 100px;
    height: 100px;
    animation-duration: 5s;
}

.testimonial-img div:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: .1s;
}

.testimonial-img div:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: .4s;
}

.testimonial-img div:nth-child(3) {
    top: 20%;
    left: 60%;
    animation-delay: .7s;
}

.testimonial-img div:nth-child(4) {
    bottom: 10%;
    right: 10%;
    animation-delay: 1s;
}

/*.testimonial-img div::after {
    position: absolute;
    content: "";
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    box-shadow: 0 0 10px 10px var(--bs-white) inset;
    z-index: 1;
}*/
.testimonial-img img {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  border-radius: 12px;
}



.testimonial-carousel .owl-item img {
    width: 150px;
    height: 150px;
}

.testimonial-carousel .owl-nav {
    margin-top: 15px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    color: var(--bs-primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-dark);
}

/* Make logos */
.partner-logo {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 25px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  width: 15%;
  height: 175px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-color: #3B301E;
}

.partner-logo img {
  /*filter: grayscale(100%);*/
  opacity: 1;
  transition: all 0.4s ease;
  width: 100%;
  max-height: 130px;
  object-fit: contain;
}

/*.partner-logo:hover {
  border-color: #007bff;
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 123, 255, 0.1);
}

.partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}*/

.uni{
    width: 15.66%;
}

@media (max-width: 992px){
    .uni{
    width: 50%;
}
}
@media (max-width: 768px){
    .uni{
    width: 50%;
}
}
@media (max-width: 600px){
    .uni{\
    width: 50%;
}
}
 .icon{
  background: var(--bs-primary);
  width: 70px;
  height: 70px;
  top: -20px;
  transition: 0.5s ease;
}
/*.card-slider .slick-slide {
  margin: 0 20px;
}*/

/*.card-slider .slick-list {
  margin: 0 -20px;
}*/
.stat-slider .slick-track {
    /*height: 500px;*/
    padding: 50px 0 30px;
}
.stat-slide{
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);

}
.stat{
  border-right: 3px solid #CE9233 !important;
  transition: 0.5s ease;
  background: #000;
  width: 100%;


}
.stat h2,.stat p{
    color: white;
}
.stat4{
  /*border-right: 2px solid #CE9233 !important;*/

}

.stat1:hover .icon1,
.stat2:hover .icon2,
.stat3:hover .icon3,
.stat4:hover .icon4 {
  transform: translateX(50px);
}
.stat-container{
    width: 90%;
}
@media (max-width: 768px){
.stat{
  border-bottom: 2px solid #CE9233 !important;
  /*border-right: 0px solid #CE9233 !important;*/


}
}

/*** Contact ***/
.contact {
    /*background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7));*/
    /*background-size: cover;*/
    background: var(--bg-gredient);
}

@media (min-width: 992px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 0px;
        height: 100%;
        top: 0;
        left: 50%;
        border-left: 1px dashed rgba(255, 255, 255, .2);
    }
}

@media (max-width: 991.98px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 0px;
        top: 50%;
        left: 0;
        border-top: 1px dashed rgba(255, 255, 255, .2);
    }
}


/*** Newsletter ***/
.newsletter {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-3.jpg) left center no-repeat;
    background-size: cover;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--bs-secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--bs-primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--bs-primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: #222222;
}

.copyright a {
    color: var(--bs-white);
}

.copyright a:hover {
    color: var(--bs-primary);
}

/* Slider Section */
.slider-area {
    background: #f8f8f8;
    padding: 70px 0;
    border-bottom: 1px solid var(--color-border);
}


.slider-area .slider-img {
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    height: 880px;
}
.slider .slick-slide {
    margin: 0 20px;
    border-radius: 18px;
}

.slider-area .slider-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #3b2416;
    font-size: 18px;
    margin: 0 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.slider-area .slider-btn:hover {
    background: #3b2416;
    color: #fff;
}

.about-area {
    background: var(--bg-gredient); 
    padding: 80px 0;
}

.about-box {
    background: rgba(255, 255, 255, 0.06); 
    border-radius: 18px;
    color: var(--color-white);
}

.about-text {
    color: var(--color-white);
    opacity: 0.85;
}

.single-content-list i {
    color: var(--color-primary) !important;
}
.single-content-list span {
    color: #fff;
}
/* Light Section Background */
.light-section {
    background: #f9f9f9;
}

/* Section Title */
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 50px 0;
}

/* YouTube Responsive */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Dark Background Section */
.dark-section {
    background: var(--bg-gredient);
    color: var(--color-white);
}

/* Section Title */
.qualification-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
}

/* Table Styling */
.qualification-table {
    background: rgba(255,255,255,0.06);
    border-radius: 14px;
    overflow: hidden;
}

.qualification-table td {
    padding: 16px 18px;
    color: var(--color-white);
    vertical-align: middle;
    border-color: rgba(255,255,255,0.09);
}

.qualification-table tr:hover {
    background: rgba(255,255,255,0.08);
    transition: 0.3s;
}

/* Light Section */
.light-section {
    background: #ffffff;
}

/* Text Styling */
.qualifi-text {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

/* Modern Icon List */
.qualifi-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.qualifi-list li {
    font-size: 17px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}

.qualifi-list li i {
    color: var(--color-primary);
    font-size: 18px;
}
/* Grey Background */
.grey-section {
    background: #f3f4f6;
}

/* Titles */
.section-title {
    color: var(--color-primary);
    font-size: 32px;
    font-weight: 700;
}

/* Text */
.pathways-text {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

/* Image Styling */
.pathways-img img {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/*.shape {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}*/

.shape-top {
  top: 0;
  transform: translateY(-99%) rotateX(180deg); 
}

.shape-bottom {
  bottom: 0;
  transform: translateY(99%);
}

.shape svg {
  display: block;
  width: 100%;
  height: 80px;
}


.shape-top svg,
.shape-bottom svg {
    fill: #F3F4F6;
}

/* Light Section */
.section-light {
  /*background-color: #f9f9f9;*/
  color: #333;
  margin: 100px 0 80px 0;
}
.section-light .university-list {
  list-style: none;
  padding: 0;
}
.section-light .university-list li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    position: relative;
    font-size: 17px;
    /*margin-bottom: 12px;*/
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}
/*.section-light .university-list li::before {
  content: "\f101";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #e0c893;
}*/

/* Dark Section */
.section-dark {
  background: var(--bg-gredient);
  color: #f1f1f1;
}
.section-dark h2 {
  color: var(--color-white);
}
.section-dark p {
  color: var(--color-white);
}


  .welcome-area {
    position: relative;
    min-height: 70vh;
    background: var(--bg-gredient);
  }

  .bg-overlay::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 0;
  }

  .welcome-intro {
    position: relative;
    z-index: 1;
  }

  .welcome-intro h3 {
    font-size: 2.5rem;
    font-weight: 700;
  }

  .welcome-intro h4 {
    font-size: 2rem;
    font-weight: 600;
  }

  .welcome-intro p {
    line-height: 1.7;
    font-size: 1rem;
  }

  .btn-warning {
    background-color: #FFD700;
    border: none;
    color: #000;
    font-weight: 600;
  }

  .btn-warning:hover {
    background-color: #FFC107;
    color: #000;
  }
  .atl-skyline {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 0;
}
@media (max-width: 992px) {
    
    .welcome-area {
    min-height: 70vh;
   }
  }

  @media (max-width: 768px) {
    .welcome-intro h3 {
      font-size: 1.6rem;
    }
    .welcome-intro h4 {
      font-size: 1.5rem;
    }
    .welcome-area {
    min-height: 86vh;
   }
   .fs-6 {
    font-size: 0.9rem !important;
}
  }

  .about-content h2, .about-content h3 {
    font-weight: 700;
    letter-spacing: 0.5px;
  }
  .about-content p {
    line-height: 1.7;
    font-size: 1rem;
  }
  ul.list-unstyled li i {
    min-width: 25px;
  }
  .media-body b {
    font-size: 1rem;
  }
  @media (max-width: 768px) {
    .about-thumb img {
      margin-bottom: 20px;
    }
  }
  .service-area{
    padding-bottom: 30px;
  }
.service-area .shape-top svg,.service-area .shape-bottom svg{
    fill: #fff;
} 
.amu .shape-top svg,.amu .shape-bottom svg{
    fill: #f8f9fa;
}
.service-area .shape-top,.service-area .shape-bottom{
   position: absolute;
   inset: 0;
   width: 100%;
} 
.amu .shape-top,.amu .shape-bottom{
   position: absolute;
   inset: 0;
   width: 100%;
}
  .service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  min-height: 220px;
}
.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Gradient backgrounds */
.bg-gradient-light {
  background: linear-gradient(135deg, #ffffff 0%, #f1f3f6 100%);
}
.bg-gradient-dark {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: #fff;
}

.service-icon i {
  transition: transform 0.3s ease;
}
.service-card:hover .service-icon i {
  transform: scale(1.2) rotate(10deg);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: #6c757d;
  font-size: 1rem;
  margin-bottom: 3rem;
}

.amu-section {
  padding: 60px 0 108px 0;
  background: linear-gradient(180deg, #f8f9fc, #eef0f4);
}

.amu-wrapper {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  text-align: center;
}

.amu-main-img {
  border-radius: 18px;
  margin-bottom: 25px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.amu-title {
  margin: 20px 0 30px;
  font-weight: 700;
  color: #1c2539;
}

.amu-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  align-items: center;
}

.amu-logos img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  padding: 10px;
  background: #fff;
}
.amu-logos img:first-child {
  width: auto;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  padding: 10px;
  background: #fff;
  margin:0 auto;
}
.amu{
    margin-top: 50px;
}
#service{
    margin-top: 0px;
}
@media  (max-width: 992px){
    .amu-logos img:first-child {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  padding: 10px;
  background: #fff;
}
}
.award-section {
  background: linear-gradient(135deg, #f6f7fb, #dfe4ea);
}

.award-box {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.award-item {
  flex: 1;
  padding: 50px 30px;
  text-align: center;
  color: #fff;
}

.award-item h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
}

.award-item p {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.award-item.left {
  background: linear-gradient(160deg, #3b5998, #192f60);
}

.award-item.right {
  background: linear-gradient(160deg, #5c2b8a, #2d1646);
}

@media (max-width: 767px) {
  .award-item {
    padding: 40px 20px;
  }
}

.hero-img img{
    width: auto;
    max-height: 400px;
    animation: animate 6s ease infinite;
    margin-bottom: 40px;
}


@keyframes animate {
    0%,100%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(30px);
    }
}
.welcome-area-eiu {
    position: relative;
    min-height: 90vh;
    background: var(--bg-gredient);
}
#gallery {
    margin: 1rem;
}
#gallery img{
    margin: .2rem;
  }
#gallery .slick-slide {
  margin: 0 20px;
}

#gallery .slick-list {
  margin: 0 -20px;
}
.masked-slider {
    margin: 0px 0 0px 0;
    padding: 4em 2em;
    /* overflow: hidden; */
    position: relative;
    }

.masked-slider .slick-list, .masked-slider .slick-track {
    height: 162px;
    padding: 10px 0;
}


.masked-slider .slide {
  flex-shrink: 0;
}
.masked-slider .slick-slide {
  background: #fff;
  height: 130px;
  width: 230px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
}
.masked-slider .slide img{
    width: auto;
    height: auto;
}
.masked-slider .slide-track:hover {
  animation-play-state: paused;
}
 .masked-slider {
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 20%, rgba(0,0,0,1) 80%, rgba(0, 0, 0, 0) 100%);
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
}
.modern-single-image {
    position: relative;
    min-height: 400px;
    overflow: hidden;
    border-radius: 20px;
    /*max-height: 700px;*/
}
.modern-single-image .img-modern {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.floating-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.25;
}
.floating-shape.circle {
    width: 140px;
    height: 140px;
    background: #2AAEAE;
    top: -40px;
    right: -40px;
    animation: float-slow 7s infinite ease-in-out;
}

.floating-shape.dot {
    width: 80px;
    height: 80px;
    background: #24407E;
    bottom: -30px;
    left: -30px;
    animation: float-slow 9s infinite alternate ease-in-out;
}

@keyframes float-slow{
0% {
    transform: translate(0px, 0px);
}
50% {
    transform: translate(10px, -20px);
}
100% {
    transform: translate(0px, 0px);
}
}

  #about-section-about {
    background: linear-gradient(135deg, #ffffff 0%, #f3f4f7 40%, #e8ecf1 100%);
    padding: 80px 0;
  }

  #about-section-about .about-wrapper {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  }

  #about-section-about img {
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.10);
  }

  #about-section-about h3.h3-head {
    font-size: 26px;
    margin-top: 25px;
    font-weight: 700;
    color: #1d3557;
    border-left: 4px solid #e63946;
    padding-left: 12px;
  }

  #about-section-about p,
  #about-section-about ul li {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
  }

  #about-section-about ul {
    padding-left: 18px;
    margin-top: 10px;
    list-style: none;
  }

  #about-section-about ul li {
    margin-bottom: 6px;
    position: relative;
  }

  #about-section-about ul li::before {
    content: "●";
    color: #e63946;
    margin-right: 8px;
    font-size: 10px;
  }
  /* Base */
#about { 
    padding: 50px 0; 
    background: #f7f9fb; 
    color:#1b1b1b; 
    font-family: 'Inter', system-ui, sans-serif; 
}
#about .container { 
    max-width:1200px; 
    margin:0 auto; 
    padding:0 20px; 
}

/* Headings */
.section-heading { 
    font-size: 28px; 
    margin-bottom:18px; 
    color:#0f1724; 
    font-weight:700; 
    letter-spacing:0.2px; 
}

/* ---------- VIDEOS GRID ---------- */
.videos-grid { 
    display:grid; grid-template-columns: 
    repeat(auto-fit, minmax(250px,1fr)); 
    gap:22px; 
}
.video-item { 
    background:#fff;
    border-radius:12px; 
    overflow:hidden; box-shadow:0 8px 30px rgba(17,24,39,0.06); 
    transition:transform .25s ease, box-shadow .25s ease; 
    display:flex; 
    flex-direction:column; 
}
.video-item:hover { 
    transform:translateY(-6px); 
    box-shadow:0 18px 50px rgba(17,24,39,0.09); 
}
.thumb { 
    background-size:cover; 
    background-position:center; 
    height:180px; 
    position:relative; 
    display:flex; 
    align-items:center; 
    justify-content:center; 
}
.play-btn { 
    width:64px; 
    height:64px; 
    border-radius:50%; 
    border:0; 
    /*background:linear-gradient(135deg,#d4af37,#b8860b); */
    background: var(--bs-primary); 
    color:#fff; 
    font-size:22px; 
    display:flex; 
    align-items:center; 
    justify-content:center; 
    box-shadow:0 8px 20px rgba(180,140,50,0.25); 
    cursor:pointer; 
    transition:transform .18s ease; 
}
.play-btn:hover { 
    transform:scale(1.06); 
}
.video-title { 
    padding:14px 16px; 
    font-size:15px; 
    font-weight:600; 
    margin:0; 
    color:#0b1220; 
}

/* Modal for video */
.modal { 
    position:fixed; 
    inset:0; 
    display:none; 
    align-items:center; 
    justify-content:center; 
    background:rgba(2,6,23,0.7); 
    z-index:3000; padding:20px; 
}
.modal-inner { 
    width:100%; 
    max-width:980px; 
    background:transparent; 
    position:relative; 
    border-radius:8px; 
}
.modal .modal-close { 
    position:absolute; 
    right:-8px; 
    top:-8px; 
    background:#fff; 
    border-radius:50%; 
    width:36px; 
    height:36px; 
    border:0; 
    font-size:16px; 
    cursor:pointer; 
    box-shadow:0 6px 18px rgba(2,6,23,0.4); 
}
.video-wrap { 
    background:#000; 
    padding-top:56.25%; 
    position:relative; 
    border-radius:10px; 
    overflow:hidden; 
}
.video-wrap iframe { 
    position:absolute; 
    inset:0; 
    width:100%; 
    height:100%; 
    border:0; 
}

/* ---------- CERTIFICATES CAROUSEL ---------- */
.mt-60 { margin-top:60px; }
.cert-carousel { 
    display:flex; 
    align-items:center; 
    gap:12px; margin:18px 0 8px; 
    position:relative; 
}
.cert-track { 
    display:flex; 
    gap:14px; 
    overflow:hidden; 
    scroll-behavior:smooth; 
    padding:6px 0; 
}
.cert-item { 
    min-width:220px; 
    background:#fff;
     border-radius:12px; 
     padding:14px; box-shadow:0 8px 30px rgba(17,24,39,0.06); 
     text-align:center; transition:transform .18s ease; 
 }
.cert-item img { 
    width:100%; 
    height:140px; 
    object-fit:cover; 
    border-radius:8px; 
}
.cert-item h5 { 
    margin-top:10px; 
    font-size:14px; 
    font-weight:600; 
}

/* arrows */
.cert-arrow { 
    background:#fff; 
    border:0; 
    width:44px; 
    height:44px; 
    border-radius:8px; 
    box-shadow:0 6px 18px rgba(2,6,23,0.08); 
    cursor:pointer; font-size:20px; 
}

/* ---------- GALLERY ---------- */
.gallery-grid { 
    display:grid; 
    grid-template-columns: repeat(3,1fr); 
    gap:16px; margin-top:14px; 
}
.g-item { 
    display:block; 
    overflow:hidden; 
    border-radius:12px; 
    box-shadow:0 12px 30px rgba(17,24,39,0.06); 
    position:relative; 
}
.g-item img { 
    width:100%; 
    height:100%; 
    display:block; 
    object-fit:cover; 
    transition:transform .35s ease, filter .35s ease; 
}
.g-item:hover img {
 transform:scale(1.06); 
 filter:brightness(.9); 
}

/* variations */
.g-item.tall { 
    grid-row: span 2; 
}
.g-item.wide { 
    grid-column: span 2; 
}

/* LIGHTBOX */
.img-lightbox { 
    position:fixed; 
    inset:0; 
    display:none; 
    align-items:center; 
    justify-content:center; 
    background:rgba(3,6,12,0.8); 
    z-index:4000; 
    padding:20px; 
}
.img-lightbox .lb-content { 
    max-width:1100px; 
    width:100%; 
    text-align:center; 
}
.img-lightbox img { 
    width:100%; 
    max-height:85vh; 
    object-fit:contain; 
    border-radius:10px; 
    box-shadow:0 18px 60px rgba(2,6,23,0.6); 
}
.lb-close, .lb-prev, .lb-next { 
    position:fixed;
    background:transparent; 
    border:0; color:#fff; 
    font-size:36px; 
    cursor:pointer; 
    z-index:4100; 
}
.lb-close {
 top:18px;
  right:22px;
   }

.lb-prev {
 left:18px;
  top:50%;
   transform:translateY(-50%); 
}
.lb-next {
 right:18px; 
 top:50%; 
 transform:translateY(-50%); 
}

/* Responsive adjustments */
@media (max-width:1000px){
 .gallery-grid { 
    grid-template-columns: repeat(2,1fr);
    } 
    .g-item.tall { 
        grid-row:auto; 
    } .g-item.wide { 
        grid-column:auto; 
    } 
}
@media (max-width:640px){ 
    .videos-grid { 
        grid-template-columns:1fr; 
    } 
    .gallery-grid { 
        grid-template-columns:1fr; 
    } 
    .cert-item img { 
        height:110px; 
    } .cert-item {
     min-width:160px; 
    } .cert-arrow {
      /*display:none; */
    } .modal .modal-close { 
        right:6px; top:6px; 
    } 
}

  /* Heading */
  .section-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin: 40px 0 25px;
    color: #1d3557;
    position: relative;
  }

  .section-title:after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: #e63946;
    margin: 12px auto 0;
    border-radius: 2px;
  }
/*  .text-slider {
  height: 22px;
  overflow: hidden;
  position: relative;
}

.text-slider span {
  position: absolute;
  width: 100%;
  animation: slideText 8s linear infinite;
  opacity: 0;
}

.text-slider span:nth-child(1) { animation-delay: 0s; }
.text-slider span:nth-child(2) { animation-delay: 2s; }
.text-slider span:nth-child(3) { animation-delay: 4s; }
.text-slider span:nth-child(4) { animation-delay: 6s; }

@keyframes slideText {
  0% { opacity: 0; transform: translateY(20px); }
  5% { opacity: 1; transform: translateY(0); }
  20% { opacity: 1; transform: translateY(0); }
  25% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 0; }
}*/

.draw-curve path {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    stroke: darkkhaki;
    transition: 1s ease;
    opacity: 0;
    stroke-width: 7px;
}

.program-menu li.active .draw-curve path {
    stroke-dashoffset: 1200 ;
    opacity: 1 !important;
    animation: drawLine 1s ease forwards;
}


@keyframes imgScale {
    0%{
        transform: scale(1.02);
        opacity: 0.8;
    }
    100%{
        transform: scale(1);
        opacity: 1;
    }
}


@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}
.program-menu li {
    font-size: 32px;
    width: 50%;
    padding: 20px 10px;
    cursor: pointer;
    line-height: 35px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.program-menu li svg{
    width: 50%;
    top: 0;
    left: 5%;
    z-index: -1;
}
.program-menu li a {
    color: rgba(255, 255, 255, 0.7);
}
.program-menu li.active a {
    color: white;
}
.team {
    background: white;
}
.program-menu:nth-child(2) li:first-child svg,
.program-menu:nth-child(3) li svg
{
    top: -10%;
}
@media (max-width: 768px){
    .program-menu li {
        font-size: 14px;
         line-height: 20px;
         word-break: break-word; 
    }
    .program-menu li svg {
        width: 96%;
        top: 20%;
    }
    .draw-curve path {
        stroke-width: 13px;
    }
    .program-menu:nth-child(2) li:first-child svg, .program-menu:nth-child(3) li svg {
        top: 15%;
    }
}

 .news {
    border-radius: 20px;
    /*background: var(--bg-gredient);*/
    padding: 15px;
}
.box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    /* padding: 0 10px; */
}
.item {
    width: 30%;
    height: 400px;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease-in-out;
}

.item.active {
    width: 100%;
}
.item.active .overlay {
    background-color: rgba(0, 0, 0, 0);
}

.item:not(.active) {
    width: 25%;
}

.item .img1{
    width: 100%;
    height: 100%;
    border-radius: 10px;

}
.item h2{
    color: white;
}

.item-text {
    height: 100%;
    top: 50%;
    display: none;
}
.item-text .position-absolute {
    top: -100%;
    left: 0;
    padding: 15px 15px 0 20px;
    color: white;
    z-index: 10;
    opacity: 0;
    transition:
    top 0.7s ease 0.2s,   /* delay ONLY top */
    opacity 0.2s ease 0s;  /* no delay */
}
.item.active .item-text .position-absolute {
    top: 5%;
    opacity: 1;
}

.overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
     border-radius: 10px; 
    z-index: 1;
}
@media (max-width: 768px){
    .news {
    padding: 0px;
}
    .box {
    display: block;
    position: relative;
    height: 430px;
}
.box .items {
    width: 100%;
    height: 400px;
    position: absolute;
    transition: 0.4s ease-in-out;
    overflow: hidden;
}
.items h2 {
    color: white;
}
.items img {
    opacity: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.box .items.active {
    width: 100%;
}
.items.active .item-text .position-absolute {
    top: 5%;
    opacity: 1;
}
.items.active img {
    opacity: 1;
    position: relative;
}
.items .item-text {
    opacity: 0;
    z-index: 3;
}

.item-text.show {
  opacity: 1;
}

}
/* --- Top Icon Feature Boxes --- */
.feature-box{
    background:#fff;
    padding:20px;
    border-radius:15px;
    box-shadow:0px 4px 20px rgba(0,0,0,0.08);
    display:flex;
    align-items:center;
    transition:0.3s;
}
.feature-box:hover{
    transform:translateY(-5px);
    box-shadow:0px 8px 25px rgba(0,0,0,0.15);
}
.feature-box i{
    font-size:30px;
    color: var(--bs-primary);
    padding-right:15px;
}

/* Left Tabs */
.nav-tabs {
  border: none;
  display: block;
}

.nav-tabs .nav-link {
  border: none;
  width: 100%;
  text-align: left;
  padding: 12px 18px;
  margin-bottom: 6px;
  background: #f2f4f7;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s ease-in-out;
  color: #333;
}

.nav-tabs .nav-link:hover {
  background: #e9ecef;
}

.nav-tabs .nav-link.active {
  background: var(--bs-primary);
  color: #fff !important;
  border-radius: 8px;
}

/* Content Area */
.tab-content {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 35px rgba(0,0,0,0.08);
}

.tab-pane ul {
  list-style: none;
  padding-left: 0;
}

.tab-pane ul li {
  background: #f5f8ff;
  padding: 12px 16px;
  margin-bottom: 10px;
  border-left: 4px solid var(--bs-primary);
  border-radius: 6px;
  font-size: 15px;
  line-height: 22px;
  color: #333;
  transition: 0.25s ease;
}

/* Hover effect */
.tab-pane ul li:hover {
  background: #e8f0ff;
  transform: translateX(5px);
}


/* Table styling */
.table-bordered th,
.table-bordered td {
  padding: 12px;
  vertical-align: middle;
}

.table-bordered tr:nth-child(even) {
  background: #f8f9fa;
}


/* --- Timer Box --- */
.timer_box{
    background:#fff;
    border-radius:12px;
    padding:20px;
    box-shadow:0px 4px 15px rgba(0,0,0,0.08);
    margin-top:20px;
}

/* --- Award Box --- */
.award_box{
    background:#fff;
    border-radius:12px;
    box-shadow:0px 4px 15px rgba(0,0,0,0.08);
}

/* --- Right Content --- */
.tab-content{
    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0px 6px 20px rgba(0,0,0,0.06);
}















