/********** Template CSS **********/
:root {
  --primary: #ff3e41;
  --secondary: #51cfed;
  --light: #f8f2f0;
  --dark: #060315;
}

.fw-medium {
  font-weight: 600 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** 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-weight: 600;
  transition: 0.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;
}

/*** Navbar ***/
/* all selectors now scoped under .nl-navbar */

/* dropdown arrow */
.nl-navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

/* link base styles */
.nl-navbar.navbar-light .navbar-nav .nav-link {
  position: relative;
  margin-right: 30px;
  padding: 25px 0;
  color: #ffffff;
  font-size: 15px;
  text-transform: uppercase;
  outline: none;
}

/* hover & active */
.nl-navbar.navbar-light .navbar-nav .nav-link:hover,
.nl-navbar.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary);
}

/* mobile adjustments */
@media (max-width: 991.98px) {
  .nl-navbar.navbar-light .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }
  .nl-navbar.navbar-light .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
}

/* brand & button height */
.nl-navbar.navbar-light .navbar-brand,
.nl-navbar.navbar-light a.btn {
  height: 75px;
}

/* link default color & weight */
.nl-navbar.navbar-light .navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
}

/* sticky hide transition */
.nl-navbar.navbar-light.sticky-top {
  top: -100px;
  transition: 0.5s;
}

/* desktop hover underline & dropdown */
@media (min-width: 992px) {
  /* underline */
  .nl-navbar.navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 5px;
    top: -6px;
    left: 50%;
    background: #ffffff;
    transition: 0.5s;
  }
  .nl-navbar.navbar-light .navbar-nav .nav-link:hover::before,
  .nl-navbar.navbar-light .navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
  }

  /* hide underline on contact if needed */
  .nl-navbar.navbar-light .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }

  /* dropdown menu */
  .nl-navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }
  .nl-navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }
}

/* note: Bootstrap’s own classes (navbar, navbar-expand-lg, etc.) remain,
/* Hero Section */
.nl-hero {
  height: 80vh;
  overflow: hidden;
  display: flex;
}

/* Mobile first: stack text then video */
@media (max-width: 991.98px) {
  .nl-hero {
    flex-direction: column;
    height: auto; /* Let content decide */
  }
  .nl-hero-text {
    width: 100%;
    padding: 1rem;
  }
  .nl-hero-media {
    width: 100%;
    height: 60vh;
    margin-top: 1rem;
  }
}

/* Desktop: two-column layout */
@media (min-width: 992px) {
  .nl-hero {
    flex-direction: row;
    height: 80vh;
  }
  .nl-hero-text {
    width: 50%;
    padding-left: 4rem;
    padding-right: 2rem;
  }
  .nl-hero-media {
    width: 50%;
    height: 100%;
    margin-top: 0;
  }
}

/* Text defaults */
.nl-hero-text {
  background: transparent;
  z-index: 2;
}


.nl-hero-title,
.nl-hero-desc {
  color: #000 !important;
  margin: 0;
}

.nl-hero-highlight {
  color: #e91b1b;
}

/* Video container */
.nl-hero-media {
  position: relative;
}

.nl-video-fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nl-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2); /* optional overlay */
}


/* Video & overlay */
.video-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 2, 15, 0.3);
}
/* About Section */
.nl-about-section {
  background: #f9fafc;
  position: relative;
}

.nl-about-image {
  display: flex;
  align-items: center; /* Vertically center */
  justify-content: center; /* Horizontally center */
  height: 100%; /* Take full height of parent column */
  position: relative;
  flex-direction: column; /* Stack image + text */
}

.nl-about-image img {
  width: 60%;
  max-width: 350px;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.6s ease;
}

.nl-about-image img:hover {
  transform: scale(1.05);
}

/* Founder Info under image */
.nl-founder-info {
  margin-top: 12px;
  text-align: center;
}

.nl-founder-info h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.nl-founder-info span {
  font-size: 16px;
  color: #777;
}

.nl-section-subtitle {
  text-transform: uppercase;
  
  color: #f60000; /* Accent color */
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 8px;
}

.nl-section-title {
  font-size: 40px;
  font-weight: 700;
  color: #222;
}

.nl-about-description {
  font-size: 16px;
  color: #555;
  text-align: justify;
  line-height: 1.7;
}

/* Buttons */
/* Purple Button - Bits & Bytes */
.nl-btn-bnb {
  background: #e91ba8; /* Deep purple */
  color: #000;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.nl-btn-bnb:hover {
  background: #e22ba5;
  color: #fff;
  transform: translateY(-2px);
}

/* Neon Green Button - Cybergyan */
.nl-btn-cyber {
  background: #39ff14;
  color: #000;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.nl-btn-cyber:hover {
  background: #32cd32;
  color: #fff;
  transform: translateY(-2px);
}

/* Text above buttons */
.nl-explore-text {
  font-size: 18px;
  color: #333;
  font-weight: 500;
}


/* services card */

/*** Header Carousel ***/

/* Desktop & Tablet */
.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; /* Ensures image covers container without stretching */
  object-position: center; /* Centers the image */
}

.header-carousel .owl-carousel-item h1 {
  font-size: 50px;
  font-weight: 600;
}

.header-carousel .owl-carousel-item h5,
.header-carousel .owl-carousel-item p {
  font-size: 16px;
  font-weight: 400;
}

/* Owl Carousel Navigation */
.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;
  border-radius: 50%;
  font-size: 22px;
  transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/*** Mobile Responsiveness ***/
@media (max-width: 768px) {
  .header-carousel .header-carousel-item {
    position: relative;
    height: 50vw; /* Dynamic height based on viewport width */
    max-height: 400px; /* Prevents excessive height on taller screens */
    overflow: hidden;
    background: #000; /* fallback if image is smaller */
  }

  .header-carousel .header-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fill container without distortion */
    object-position: center; /* Keep image centered */
  }

  .header-carousel .owl-carousel-item h1 {
    font-size: 24px !important;
    font-weight: 600;
  }

  .header-carousel .owl-carousel-item h5,
  .header-carousel .owl-carousel-item p {
    font-size: 12px !important;
    font-weight: 400 !important;
  }

  /* Adjust navigation buttons for mobile */
  .header-carousel .owl-nav {
    right: 4%;
  }

  .header-carousel .owl-nav .owl-prev,
  .header-carousel .owl-nav .owl-next {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}


.page-header {
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

/*** About ***/
@media (min-width: 992px) {
  .container.about {
    max-width: 100% !important;
  }

  .about-text {
    padding-right: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .about-text {
    padding-right: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .about-text {
    padding-right: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*** Feature ***/
@media (min-width: 992px) {
  .container.feature {
    max-width: 100% !important;
  }

  .feature-text {
    padding-left: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .feature-text {
    padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .feature-text {
    padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*** Service, Price & Team ***/
.service-item,
.price-item,
.team-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

.service-item img,
.team-item img {
  transition: 0.5s;
}

.service-item:hover img,
.team-item:hover img {
  transform: scale(1.1);
}

.service-item a.btn-slide,
.price-item a.btn-slide,
.team-item div.btn-slide {
  position: relative;
  display: inline-block;
  overflow: hidden;
  font-size: 0;
}

.service-item a.btn-slide i,
.service-item a.btn-slide span,
.price-item a.btn-slide i,
.price-item a.btn-slide span,
.team-item div.btn-slide i,
.team-item div.btn-slide span {
  position: relative;
  height: 40px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  color: #ffffff;
  background: var(--primary);
  border-radius: 0 35px 35px 0;
  transition: 0.5s;
  z-index: 2;
}

.team-item div.btn-slide span a i {
  padding: 0 10px;
}

.team-item div.btn-slide span a:hover i {
  background: var(--secondary);
}

.service-item a.btn-slide span,
.price-item a.btn-slide span,
.team-item div.btn-slide span {
  padding-left: 0;
  left: -100%;
  z-index: 1;
}

.service-item:hover a.btn-slide i,
.price-item:hover a.btn-slide i,
.team-item:hover div.btn-slide i {
  border-radius: 0;
}

.service-item:hover a.btn-slide span,
.price-item:hover a.btn-slide span,
.team-item:hover div.btn-slide span {
  left: 0;
}

.service-item a.btn-slide:hover i,
.service-item a.btn-slide:hover span,
.price-item a.btn-slide:hover i,
.price-item a.btn-slide:hover span {
  background: var(--secondary);
}
/* ---------- Team images: keep head visible, no cutting on mobile ---------- */

/* Desktop / tablet (keep the card layout and subtle hover) */
.team-item .overflow-hidden {
  height: 320px;                 /* equal card height on larger screens */
  overflow: hidden;
  display: flex;
  align-items: flex-start;       /* anchor image to top so head stays visible */
  justify-content: center;
}

.team-item .overflow-hidden img {
  width: 100%;
  height: 100%;
  object-fit: cover;             /* fills the box on larger screens */
  object-position: top center;   /* keep head toward the top of box */
  transition: transform 0.45s ease;
  transform-origin: center top;  /* zoom anchored at top */
}

.team-item:hover .overflow-hidden img {
  transform: scale(1.03);        /* gentle zoom on hover (desktop) */
}

/* Mobile: ensure full image shows, disable crop & zoom */
@media (max-width: 768px) {
  .team-item .overflow-hidden {
    height: auto !important;     /* allow natural image height */
    overflow: visible !important;
    display: block;
    padding: 0;
  }

  .team-item .overflow-hidden img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;     /* show full image (no crop) */
    object-position: top center !important;
    transform: none !important;
    transition: none !important;
  }

  .team-item:hover .overflow-hidden img {
    transform: none !important;
  }
}
/* Fix team images on mobile */
@media (max-width: 576px) {
  .team-item img {
    width: 100%;
    height: auto;
    max-height: 250px;  /* limit height so it won’t look too big */
    object-fit: cover;  /* keeps proper proportion */
    object-position: top; /* ensures head part is visible */
  }
}


/*** Testimonial ***/
.testimonial-carousel .testimonial-item {
  min-height: 300px; /* adjust value as per your design */
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.testimonial-carousel .owl-item.center .testimonial-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  animation: pulse 1s ease-out 0.5s;
}

.testimonial-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
}


.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: var(--primary);
  border: 5px solid var(--light);
  border-radius: 15px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  background: var(--light);
  border-color: var(--primary);
}

/*** Contact ***/
@media (min-width: 992px) {
  .container.contact-page {
    max-width: 100% !important;
  }

  .contact-page .contact-form {
    padding-left: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .contact-page .contact-form {
    padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .contact-page .contact-form {
    padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*** Footer ***/
.site-footer {
  background: linear-gradient(rgba(6, 3, 21, 0.5), rgba(6, 3, 21, 0.5)),
    url(../img/map.png) center center no-repeat;
  background-size: cover;
}

.site-footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid #ffffff;
  border-radius: 35px;
  transition: 0.3s;
}

.site-footer .btn.btn-social:hover {
  color: var(--primary);
}

.site-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: 0.3s;
}

.site-footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.site-footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.site-footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.site-footer .copyright a {
  color: var(--light);
}

/* Footer Responsive Fix */
@media (max-width: 767.98px) {
  .site-footer .container {
    margin-left: 0 !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .site-footer .row {
    flex-direction: column !important;
    text-align: left !important;
  }

  .site-footer [class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
  }

  .site-footer p {
    display: flex !important;
    align-items: flex-start !important;
    gap: 8px;
    text-align: left !important;
    white-space: normal !important;
    margin-bottom: 10px !important;
  }

  .site-footer p i {
    flex-shrink: 0;
    margin-top: 3px;
  }

  .site-footer .btn.btn-link {
    display: flex !important;
    align-items: flex-start !important;
    gap: 8px;
    padding: 0 !important;
    margin-bottom: 8px !important;
    text-align: left !important;
    white-space: normal !important;
  }

  .site-footer .btn.btn-link::before {
    position: relative;
    top: 4px;
    margin-right: 8px;
  }

  .site-footer .btn-social {
    margin-right: 8px !important;
    margin-bottom: 8px !important;
  }

  .site-footer .copyright {
    text-align: left !important;
    font-size: 14px !important;
    margin-top: 15px;
  }
}


.fab-right-group {
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fab-btn {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.18), 0 0 0 0 transparent;
  transition: all 0.2s, box-shadow 0.4s;
  font-size: 1.4rem;
  padding: 0;
  position: relative;
  outline: none;
}
.fab-btn.whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 0 12px 2px #25d36655;
}
.fab-btn.call {
  background: #007bff;
  color: #fff;
  box-shadow: 0 0 12px 2px #007bff55;
}
.fab-btn-arrow {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 1000;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #fb2e2e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px 2px #764ba255;
  font-size: 1.4rem;
  transition: all 0.2s, box-shadow 0.4s;
}
.fab-btn:hover,
.fab-btn:focus {
  transform: scale(1.12);
  filter: brightness(1.1);
}
.fab-btn.whatsapp:hover,
.fab-btn.whatsapp:focus {
  box-shadow: 0 0 24px 6px #25d366cc, 0 0 0 0 #25d366;
}
.fab-btn.call:hover,
.fab-btn.call:focus {
  box-shadow: 0 0 24px 6px #007bffcc, 0 0 0 0 #007bff;
}
.fab-btn-arrow:hover,
.fab-btn-arrow:focus {
  background: #ff0000;
  transform: scale(1.12);
  box-shadow: 0 0 24px 6px #e66868cc, 0 0 0 0 #a24b4b;
}

/* Tooltip styles */
.fab-btn[data-tooltip]::after,
.fab-btn-arrow[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 110%;
  top: 50%;
  transform: translateY(-50%) scale(0.95);
  background: #222;
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  font-size: 0.95rem;
  z-index: 1001;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  margin-right: 8px;
}
.fab-btn[data-tooltip]:hover::after,
.fab-btn[data-tooltip]:focus::after,
.fab-btn-arrow[data-tooltip]:hover::after,
.fab-btn-arrow[data-tooltip]:focus::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.fab-btn.whatsapp[data-tooltip]::after {
  background: #25d366;
  color: #fff;
}
.fab-btn.call[data-tooltip]::after {
  background: #007bff;
  color: #fff;
}
.fab-btn-arrow[data-tooltip]::after {
  background: #ff4343;
  color: #fff;
}
/* 
/* Scroll Wrapper */
.scroll-section {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.scroll-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: slideLoop 40s linear infinite; /* slower */
}

.student-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 1.2rem;
  min-width: 250px;
  height: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.student-card img {
  width: 100%;
  height: 200px;
  border-radius: 8px;   /* keeps corners slightly rounded, remove if you want sharp corners */
  margin-bottom: 0.8rem;
  object-fit: cover;    /* ensures image fills nicely */
  object-position: center;
}

.student-card:hover {
  transform: scale(1.08);
}

/* Animation for infinite scroll */
@keyframes slideLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item img {
    object-fit: cover;
}


@media (min-width: 1200px) {
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        height: 700px;
    }
}

@media (max-width: 1199px) {
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        height: 1200px;
    }
}
.header-carousel .owl-nav {
    display: none !important;
}

.header-carousel .owl-nav .owl-prev {
    display: none;
}

.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    bottom: -60px;
    right: 50%;
    transform: translateY(-50%);
    margin-right: -60px;
    border-radius: 60px;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-light);
    color: var(--bs-primary);
}



@keyframes carousel-next-btn {
    0%  {margin-top: 35%;}
    50%  {margin-bottom: 70%;}
    100% {margin-top: 35%;}
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    align-items: center;
}

.carousel-caption .ticket-form {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
}

.header-carousel .header-carousel-item img {
    animation-name: image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

@keyframes image-zoom {
    0%  {width: 100%; height: 100%;}

    25% {width: 115%; height: 115%;}

    50% {width: 130%; height: 130%;}

    75% {width: 120%; height: 120%;}

    100% {width: 100%; height: 100%;}
}
/*** Carousel Hero Header End ***/

.about-text,
.about-images {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.about-text.show {
  opacity: 1;
  transform: translateX(0);
  animation: slideInLeft 0.8s forwards;
}

.about-images.show {
  opacity: 1;
  transform: translateX(0);
  animation: slideInRight 0.8s forwards;
}

@keyframes slideInLeft {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
  from { transform: translateX(50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}


/* founder */



.mission-vision-section {
    padding: 60px 0;
    background: #fff;
}

.section-header {
    margin-bottom: 40px;
}

.section-subtitle {
    color: #d60000;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
}

.mv-card {
    background: linear-gradient(135deg, #ffefef, #ffd6d6);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(214, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0; /* for animation */
    transform: translateY(40px); /* for animation */
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(214, 0, 0, 0.2);
}

.mv-icon {
    font-size: 40px;
    color: #d60000;
    margin-bottom: 15px;
}

.mv-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.mv-card p {
    color: #555;
    line-height: 1.6;
}

/* Scroll Animation */
[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease-out;
}
.section-subtitle {
    color: #d60000;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 25px;
}

.mv-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.mv-item i {
    font-size: 28px;
    color: #d60000;
    margin-right: 15px;
    flex-shrink: 0;
}

.mv-item h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.mv-item p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}
/*** Service Start ***/
.service .nav .nav-item {
    width: 75%;
    border: 1px solid var(--bs-primary);
    background: var(--bs-light);
}

.service .nav .nav-item a {
    display: flex;
    justify-content: center;
}


.owl-stage-outer {
    margin-right: -1px;
}
.service .nav-item a.active {
    background: var(--bs-primary);
}

.service .nav-item a span {
    color: var(--bs-dark);
}

.service .nav-item a.active span {
    color: var(--bs-white);
}

.service-carousel .owl-nav .owl-prev,
.service-carousel .owl-nav .owl-next {
    position: absolute !important;
    width: 60px !important; /* Box width */
    height: 60px !important; /* Box height */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 2px solid var(--bs-primary) !important; /* Primary border */
    background: var(--bs-light) !important;
    color: var(--bs-dark) !important;
    font-size: 28px !important; /* Arrow size */
    cursor: pointer !important;
    transition: 0.3s ease !important;
    box-sizing: border-box !important; /* Ensures border doesn't cut inside */
}

.service-carousel .owl-nav .owl-prev:hover,
.service-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary) !important;
    color: #fff !important;
}


.service-carousel .owl-nav .owl-prev:hover,
.service-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .service-carousel .owl-nav .owl-prev {
        top: 0;
        left: -115px;
    }
    
    .service-carousel .owl-nav .owl-next {
        bottom: 0;
        left: -115px;
    }
}

@media (max-width: 991px) {
    .owl-stage-outer {
        margin-bottom: 70px;
    }
    .service-carousel .owl-nav .owl-prev {
        bottom: -70px;
        left: 0;
    }

    .service-carousel .owl-nav .owl-next {
        bottom: -70px;
        right: 0;
    }

    .service .nav {
        display: flex;
        justify-content: center;
    }
}
/*** Service End ***/

.custom-about-image {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.custom-about-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

.founder-info {
  text-align: center;
  margin-top: 10px;
}

.founder-info h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 4px;
}

.founder-info span {
  font-size: 1rem;
  color: #777;
  font-style: italic;
}

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: url(../img/contact.png) center center / cover no-repeat;
    padding: 120px 0;   /* was 60px → increased height */
    transition: 0.5s;
    text-align: center;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
    display: inline-block;
    padding: 0;
    margin: 0;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

/* ===== Responsive Fixes ===== */
@media (max-width: 992px) {  /* Tablets */
  .bg-breadcrumb {
    padding: 70px 0;   /* slightly reduced for tablet */
    background-position: center top;
  }
}

@media (max-width: 768px) {  /* Small tablets & large mobiles */
  .bg-breadcrumb {
    padding: 60px 0;
    background-position: top center;
  }
  .bg-breadcrumb .breadcrumb {
    font-size: 14px;
  }
}

@media (max-width: 576px) {  /* Mobile screens */
  .bg-breadcrumb {
    padding: 50px 15px;  /* enough height but not too tall */
    background-position: top center;
    background-size: cover;
  }
  .bg-breadcrumb .breadcrumb {
    font-size: 12px;
  }
}

/*** Single Page Hero Header End ***/

/* clients */
.clients-section {
    padding: 40px 0;
    background: #f8f9fa;
    text-align: center;
}

.clients-section h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

.marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.marquee-content {
    display: flex;
    gap: 40px;
    animation: marquee-scroll 20s linear infinite;
}

.marquee-content img {
    height: 100px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    filter: grayscale(50%);
}

.marquee-content img:hover {
    transform: scale(1.2);
    filter: grayscale(0%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.marquee:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
/*** Reviews Section Start ***/
.reviews-section {
    position: relative;
    overflow: hidden;
}

.reviews-section::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../img/logo2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -2;
    animation-name: image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

.reviews-section::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    z-index: -1;
}

.reviews-section .reviews-carousel .review-card {
    text-align: center;
    border-radius: 10px;
    background: rgba(256, 256, 256, 0.2);
}

.reviews-carousel .review-card .review-inner {
    display: flex;
    justify-content: center;
}

.review-card .review-inner .review-img {
    position: relative;
}

.review-card .review-inner .review-img img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    border: 2px solid var(--bs-white);
}

.review-card .review-inner .review-img .review-quote {
    position: absolute;
    top: 0;
    left: -25px;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.reviews-carousel .owl-dots {
    display: flex;
    justify-content: center;
}

.reviews-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    margin: 20px 10px 0 10px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.reviews-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: var(--bs-light);
    transition: 0.5s;
}

.reviews-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.reviews-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-primary);
}

.reviews-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
    transition: 0.5s;
}

.reviews-carousel .owl-nav {
    position: absolute;
    bottom: -22px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: -210px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-carousel .owl-nav .owl-prev {
    font-size: 50px;
    margin-right: 80px;
    color: var(--bs-white);
    transition: 0.5s;
}

.reviews-carousel .owl-nav .owl-next {
    font-size: 50px;
    margin-left: 80px;
    color: var(--bs-white);
    transition: 0.5s;
}

.reviews-carousel .owl-nav .owl-prev:hover,
.reviews-carousel .owl-nav .owl-next:hover {
    color: var(--bs-primary);
}
/* Background video default */
.reviews-section .bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: -2;
  object-fit: cover; /* desktop default */
}

/* Mobile fix: keep full video visible */
@media (max-width: 768px) {
  .reviews-section .bg-video {
    object-fit: contain;   /* don’t crop video */
    width: 100vw;
    height: 100vh;
    background: #000;      /* black borders fill */
  }
}

/*** Reviews Section End ***/

.mv-video {
  width: 100%;             
  max-width: 700px;         
  height: 500px;            
  object-fit: cover;        
  border-radius: 15px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.15);
}
