/********** Template CSS **********/



:root {
  --primary: #06BBCC;
  --light: #F0FBFC;
  --dark: #181d38;
}

.fw-medium {
  font-weight: 600 !important;
}

.fw-semi-bold {
  font-weight: 700 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}



.whatsapp {
  position: fixed;
  bottom: 80px;
  right: 80px;
}

.our-clients {
  width: 100%;
  height: auto;
  text-align: center;
}

.our-clients ul {
  padding: 0;
  margin: 0;
}

.our-clients ul li {
  list-style: none;
  display: inline-block;
  width: 180px;
  height: 100px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  margin: 10px;
  box-shadow: 0px 0px 10px -7px #555;
  transition: .5s;
}

.our-clients ul li img {
  width: 100%;
  height: 100%;
}

.our-clients ul li img:nth-child(1) {
  transform: translateY(0);
  transition: .5s;
}

.our-clients ul li img:nth-child(2) {
  transform: translateY(0);
  transition: .5s;
}



.container1 {
  /* height: 100vh; */
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.card1-container1 {
  height: 300px;
  width: 250px;
  /* background-color: yellow; */
  position: relative;
}

.card1 {
  height: 100%;
  width: 100%;
  position: absolute;
  /* background-color:pink; */
  transform-style: preserve-3d;
  transition: all 1s;
}


.card1-front1 {
  height: 100%;
  position: absolute;
  width: 100%;
  /* background-color:red; */
  border-radius: 10px;
  backface-visibility: hidden;
}

.card1-front1 img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.card1-back1 {
  height: 100%;
  position: absolute;
  width: 100%;
  background: linear-gradient(#f85032, #e73827);
  transform: rotateY(180deg);
  border-radius: 10px;
  backface-visibility: hidden;
}

.card1:hover {
  transform: rotateY(180deg);
}

.content {
  position: absolute;
  top: 70px;
  text-align: center;
  color: white;

}

.content h1 {
  margin-bottom: 5px;
}

.content p {
  align-items: justify;
  padding: 20px;
  border: 1px solid white;
}



.login-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1099;
  background-color: rgba(0, 0, 0, 0.6);
  visibility: hidden;
  opacity: 0;
  transition: all 1s ease;
}

.login-popup.show {
  visibility: visible;
  opacity: 1;
}

.login-popup .box {
  background-color: #ffffff;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-wrap: wrap;
  opacity: 0;
  margin-left: 50px;
  transition: all 1s ease;

}

.login-popup.show .box {
  opacity: 1;
  margin-left: 0;
}

.login-popup .box .img-area {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
  overflow: hidden;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-popup .box .img-area .img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url('img/bg.jpg');
  background-size: cover;
  background-position: center;
  animation: zoomInOut 7s linear infinite;
  z-index: -1;

}

@keyframes zoomInOut {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.login-popup .box .form {
  /* flex:0 0 50%;
max-width: 50%;
padding:40px 30px; */
}


.login-popup .box .form .btn:focus {
  outline: none;
}

.login-popup .box .form .close {
  position: absolute;
  right: 10px;
  top: 0px;
  font-size: 30px;
  cursor: pointer;
}

/*responsive*/
@media(max-width: 767px) {
  .login-popup .box {
    width: calc(100% - 30px);
  }

  .login-popup .box .img-area {
    display: none;
  }

  .login-popup .box .form {
    flex: 0 0 100%;
    max-width: 100%;
  }
}


@media only screen and (max-width: 460px) {
  #main_logo11 {
    display: none;
  }
}


.iframe-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
}

.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}





/*** 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;
}


/*** Button ***/
.btn {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #FFFFFF;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 0px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #FFFFFF;
  font-size: 15px;
  text-transform: uppercase;
  outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #471ff8c4 !important;
}

@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar-light .navbar-nav {
    border-top: 1px solid #EEEEEE;
  }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
  /* height: 15px; */
}

.navbar-light .navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
}

.navbar-light.sticky-top {
  top: -100px;
  transition: .5s;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
  }

  .navbar .dropdown-menu.fade-down {
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .nav-item:hover .dropdown-menu {      
    top: 100%;
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
  }
}


/* style for career button */

    .custom-btn {
        background-color: #13a6e0;
        border-radius: 4px;
        color: #fff;
        padding: 10px 20px;
        text-decoration: none;
        font-weight: 600;
        display: inline-block;
        transition: background-color 0.3s ease;
    }

    .custom-btn:hover {
        background-color: #0d8ac0;
        color: #fff;
    }

/*end style for career button */

/*** Header carousel ***/
@media (max-width: 768px) {
  .header-carousel .owl-carousel-item {
    position: relative;
    min-height: 500px;
  }

  .header-carousel .owl-carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.header-carousel .owl-nav {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  margin: 7px 0;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: transparent;
  border: 1px solid #FFFFFF;
  font-size: 22px;
  transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.page-header {
  background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7)), url(../img/70.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-header-inner {
  background: rgba(15, 23, 43, .7);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--light);
}


/*** Section Title ***/
.section-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.section-title::before {
  position: absolute;
  content: "";
  width: calc(100% + 80px);
  height: 2px;
  top: 4px;
  left: -40px;
  background: var(--primary);
  z-index: -1;
}

.section-title::after {
  position: absolute;
  content: "";
  width: calc(100% + 120px);
  height: 2px;
  bottom: 5px;
  left: -60px;
  background: var(--primary);
  z-index: -1;
}

.section-title.text-start::before {
  width: calc(100% + 40px);
  left: 0;
}

.section-title.text-start::after {
  width: calc(100% + 60px);
  left: 0;
}


/*** Service ***/
.service-item {
  background: var(--light);
  transition: .5s;
}

.service-item:hover {
  margin-top: -10px;
  background: var(--primary);
}

.service-item * {
  transition: .5s;
}

.service-item:hover * {
  color: var(--light) !important;
}


/*** Categories & Courses ***/
.category img,
.course-item img {
  transition: .5s;
}

.category a:hover img,
.course-item:hover img {
  transform: scale(1.1);
}


/*** Team ***/
.team-item img {
  transition: .5s;
}

.team-item:hover img {
  transform: scale(1.1);
}


/*** Testimonial ***/
.testimonial-carousel::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

.testimonial-carousel::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

@media (min-width: 768px) {

  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 200px;
  }
}

@media (min-width: 992px) {

  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 300px;
  }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
  transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
  background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
  color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  border: 1px solid #CCCCCC;
  transition: .5s;
}

.testimonial-carousel .owl-dot.active {
  background: var(--primary);
  border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-weight: normal;
  border: 1px solid #FFFFFF;
  border-radius: 35px;
  transition: .3s;
  background-color: #000000 !important;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #FFFFFF;
  font-size: 15px;
  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;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}


/* css for home page */

/* style for home page */
body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

#upcoming-event {
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow-x: hidden;
}

#upcoming-event video {
  max-width: 100vw;
  left: 0;
}

.glass-box {
  background: rgba(34, 92, 218, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  padding: 30px 25px;
  min-width: 90px;
  min-height: 120px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.glass-box span {
  font-size: 2.2rem;
  color: #fdfdfd;
  font-weight: bold;
  display: block;
}

.glass-box small {
  font-size: 1rem;
  color: #ffffff;
}

#countdown {
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  #upcoming-event {
    clip-path: none;
    padding-top: 60px;
  }

  .glass-box {
    min-height: 100px;
    padding: 20px;
  }

  .glass-box span {
    font-size: 1.8rem;
  }
}


/* end css for home page */


/* <!-- start Css for About Us --> */


/* Glass effect */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease-in-out;
}

.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

/* Glow on image */
.elegant-glow {
  filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.15));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.elegant-glow:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.25));
}


/* <!-- end Css for About Us --> */




/* <!-- css for mission why choose us and all --> */
.dark-theme {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: #ffffff;
}

.dark-theme .service-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
}

.dark-theme .service-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.8);
}

.dark-theme .service-item i {
  color: #0dcaf0;
  transition: transform 0.3s ease;
}

.dark-theme .service-item:hover i {
  transform: scale(1.2);
}

.dark-theme .p-4 {
  padding: 2rem;
}

.dark-theme h5 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.dark-theme p {
  color: #d0d0d0;
}

@media (max-width: 767.98px) {
  .dark-theme h5 {
    font-size: 1.1rem;
  }

  .dark-theme p {
    font-size: 0.95rem;
  }
}

/* <!-- end css for mission why choose us and all --> */



/* <!-- start style for our services --> */

.bg-glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bg-glass:hover {
  transform: scale(1.01);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.05);
}

.object-fit-cover {
  object-fit: cover;
}

.service-img {
  height: 280px;
}

@media (max-width: 767.98px) {
  .service-img {
    height: 200px;
  }
}


/* <!-- End start style for our services --> */


/* <!-- start style for testmonials --> */


.testimonial-multi {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);

  
  color: #fff;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 30px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  text-align: center;
  height: 100%;
  margin: 15px;
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0dcaf0;
  margin-bottom: 15px;
}

.testimonial-stars {
  color: #ffc107;
}

.carousel-inner .carousel-item>.row {
  display: flex;
}

@media (max-width: 992px) {
  .carousel-inner .carousel-item>.row {
    flex-wrap: wrap;
  }

  .carousel-inner .carousel-item .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: brightness(0) invert(1);
}

.carousel-indicators [data-bs-target] {
  background-color: #0dcaf0;
}


/* <!-- end Style for testmonilas --> */



/* <!-- start style for testmonials --> */


.testimonial-multi {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  
  color: #fff;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 30px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  text-align: center;
  height: 100%;
  margin: 15px;
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0dcaf0;
  margin-bottom: 15px;
}

.testimonial-stars {
  color: #ffc107;
}

.carousel-inner .carousel-item>.row {
  display: flex;
}

@media (max-width: 992px) {
  .carousel-inner .carousel-item>.row {
    flex-wrap: wrap;
  }

  .carousel-inner .carousel-item .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: brightness(0) invert(1);
}

.carousel-indicators [data-bs-target] {
  background-color: #0dcaf0;
}


/* <!-- end Style for testmonilas --> */



/* css for flip card  */


/* Start Flip Card Styles */

  .card-flip {
    position: relative;
    perspective: 10
    00px;
    height: 320px;
    margin-bottom: 30px;
    background-color: #000;
    border-radius: 1rem;
    overflow: hidden;
  }

  .card-flip .card {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 0.7s;
    backface-visibility: hidden;
    border: 2px solid #ffc107;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
  }

  .card-flip .back {
    transform: rotateY(180deg);
  }

  .card-flip:hover .front {
    transform: rotateY(180deg);
  }

  .card-flip:hover .back {
    transform: rotateY(0deg);
  }

  .custom-front {
    background-color: #ffffff !important;
    color: #000000;
  }

  .custom-back {
    background-color: #4d4c41 !important;
    color: #ffffff;
  }

  .logo-wrapper {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
  }

  .event-logo {
  height: 120px;
  width: 250px;
  object-fit: contain;
  display: block;
}


  .event-details {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    text-align: center;
  }


/* end css for flip card */

/* 
style Event Heighlights */

.bg-video-section {
  position: relative;
  overflow: hidden;
  background-color: #0a0a0a;
  z-index: 1;
}

.bg-video-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  opacity: 0.15;
  z-index: 0;
}

.bg-video-content {
  position: relative;
  z-index: 2;
  padding: 5rem 1rem;
  background-color: rgba(0, 0, 0, 0.85);
  color: #ffffff;
}

.card {
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  /* or any desired radius */
  overflow: hidden;
  /* ensures iframe corners are clipped */
}

.card iframe {
  border: none;
  width: 100%;
  height: 200px;
  border-radius: 0;
  /* this is optional since it's inside a rounded container */
}

.card iframe {
  border: none;
  width: 100%;
  height: 200px;
  border-radius: 0;
  /* this is optional since it's inside a rounded container */
}

.card-title {
  color: #ffffff;
}

@media (min-width: 768px) {
  .card iframe {
    height: 250px;
  }
}
/* end style of event heighlights */

/* start style social media icons */
/* Social icons container on left */
.social-icons-left {
  position: fixed;
  top: 70%;
  left: 10px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
  opacity: 0;
  animation: slideInLeft 1s ease-out forwards;
}

/* Individual icons */
.social-icons-left a {
  font-size: 1rem;
  color: white;
  padding: 10px;
  border-radius: 60%;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.social-icons-left a.facebook { background-color: #3b5998; }
.social-icons-left a.twitter { background-color: #1da1f2; }
.social-icons-left a.instagram { background-color: #e1306c; }
.social-icons-left a.linkedin { background-color: #0077b5; }
.social-icons-left a.youtube {
  background-color: #ff0000; /* YouTube red */
}

/* Hover effect */
.social-icons-left a:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Slide-in animation */
@keyframes slideInLeft {
  0% {
    transform: translate(-50px, -50%);
    opacity: 0;
  }
  100% {
    transform: translateY(-50%);
    opacity: 1;
  }
}

/* 
end css social media icons */


/* style for gallery section */
h1, h2 {
  text-align: center;       /* horizontal centering */
  width: 100%;              /* take full width */
  margin: 0 auto;           /* optional, ensures block centering */
  padding: 2rem 0;          /* spacing above and below */
  font-size: 2rem;          /* adjust size as needed */
  color: white;             /* make sure it’s visible on dark bg */
}

  .row-container {
  overflow: hidden; /* hide the overflow */
  width: 100%;
}

.marquee-wrapper {
  display: block;
  width: 100%;
}

.marquee {
  display: flex;
  gap: 15px;
  flex-wrap: nowrap;
  animation: scroll-left 50s linear infinite;
}

.marquee.reverse {
  animation: scroll-right 50s linear infinite;
}

 /* keyframes for continuous scroll */
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Rectangles */
.hex {
  flex: 0 0 auto;
  width: 220px;
  height: 150px;
  background-color: #222;
  border-left: 5px solid #0af;
  border-right: 5px solid #0af;
  overflow: hidden;
}

.hex img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* end style for gallery section */


/* 
css for logo */
/* this is for sliders logo if height is not managed by this you have add auto hide */
.responsive-logo {
  max-width: 95%;
  height: 170px;   
  object-fit: contain;
  transition: transform 0.3s ease;
}


/* 
end css for logo */




/* css for pagination */

/* Navigation Buttons - moved more to the sides */
.swiper-button-next {
  right: -12px;  /* Increase negative value to move further out */
}

.swiper-button-prev {
  left: -12px;
}

/* Pagination - move it down */
.swiper-pagination {
  bottom: -30px;  /* Increase negative value to move further down */
}


@media (max-width: 320px) {
  .swiper-pagination,
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
}


 /* end css for pagination */


 
/* for hide scrolling */
html, body {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}
/* end for hide scrolling */


@media (max-width: 576px) {
  .swiper-slide > .w-100 {
    text-align: center !important;
  }

  .swiper-slide .col-lg-6 {
    width: 100% !important;
    max-width: 100% !important;
  }

  .swiper-slide .col-lg-6.d-flex.justify-content-center {
    display: block !important;
  }

  .glass-card {
    margin: 0 auto !important;
  }
}



/* style for partners */

/* 
  body {
    background-color: #003279;
    font-family: 'Poppins', sans-serif;
    color: #fff;
  } 

  .partners-section {
    padding: 20px 0;
    background: linear-gradient(180deg, #01060d 0%, #062147 100%);
  }

  .partners-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #00bfff;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
  }

  .partners-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #00bfff;
    margin: 15px auto 0;
    border-radius: 2px;
  }

  .partner-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 12px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 174, 255, 0.08);
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0, 174, 255, 0.4);
  }

  .partner-card img {
    width: 90%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
  }

  .partner-card:hover img {
    transform: scale(1.1);
  }

  @media (max-width: 768px) {
    .partners-title {
      font-size: 32px;
    }
    .partner-card {
      padding: 10px;
    }
  }

  @media (max-width: 576px) {
    .partner-card img {
      width: 80%;
    }
  }
 */

             body {
                font-family: Poppins, sans-serif;
                background: #000000;
            }

            .partners-section {
                padding: 60px 0;
                text-align: center;
            }

            .partners-section h2 {
                color: #134bb8;
                margin-bottom: 50px;
            }

            /* Grid container: 5 logos per row */
            .partner-grid {
                display: grid;
                grid-template-columns: repeat(5, 1fr);
                gap: 30px;
                justify-items: center;
            }

            /* Stable card */
            .partner-card {
                width: 200px;
                height: 140px;
                background: #fff;
                border-radius: 15px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
                transition: transform 0.3s, box-shadow 0.3s;
                filter: grayscale(80%);
                cursor: pointer;
                position: relative;
                overflow: hidden;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            /* Logos centered and contained */
            .partner-card img {
                max-width: 80%;
                max-height: 80%;
                object-fit: contain;
                transition: transform 0.3s;
            }

            /* Hover effects */
            .partner-card:hover {
                filter: grayscale(0);
                transform: translateY(-5px);
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            }

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

            /* Light sweep overlay */
            .partner-card::before {
                content: "";
                position: absolute;
                top: -50%;
                left: -50%;
                width: 200%;
                height: 200%;
                background: linear-gradient(120deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 60%);
                transform: rotate(25deg) translateX(-100%);
                transition: transform 0.5s;
            }

            .partner-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 30px;
        justify-items: center;   /* center each card in its column */
        justify-content: center; /* center the last row if incomplete */
    }


            .partner-card:hover::before {
                transform: rotate(25deg) translateX(100%);
            }

            /* Responsive: Reduce columns on smaller screens */
            @media (max-width: 1200px) {
                .partner-grid {
                    grid-template-columns: repeat(4, 1fr);
                }
            }

            @media (max-width: 992px) {
                .partner-grid {
                    grid-template-columns: repeat(3, 1fr);
                }
            }

            @media (max-width: 768px) {
                .partner-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
            }

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


