@import url(https://fonts.cdnfonts.com/css/ica-rubrik-black);
@import url(https://fonts.cdnfonts.com/css/poppins);

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



body {
  margin-top: 0
}

html {
  scroll-behavior: smooth
}

.hero-heading,
.section-title,
h1,
h2,
h3 {
  font-family: 'Bebas Neue', sans-serif

}

.hero-paragraph,
.hero-subheading,
a,
body,
li,
p {
  font-family: Poppins, sans-serif
}

.container,
.navbar,
.topbar {
  overflow-x: hidden
}

@media (max-width:768px) {
  .topbar .container {
    flex-direction: column;
    align-items: flex-start
  }

  .topbar-left {
    margin: 5px 0
  }
}

body::before {
  position: absolute;
  width: min(1400px, 90vw);
  top: 10%;
  left: 50%;
  height: 90%;
  transform: translateX(-50%);
  content: '';
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  pointer-events: none
}

.topbar {
  width: 100%;
  background-color: #1e1e2f;
  z-index: 1000;
  font-size: 14px;
  position: static;
  border-bottom: 2px solid #1aa3a3;
  transition: top .2s
}

.topbar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap
}

.topbar-left {
  display: flex;
  /* flex-wrap: wrap; */
  align-items: center;
  /* margin-right: auto; */
}

.topbar-left span {
  margin-right: 25px;
  display: inline-flex;
  align-items: center;
  color: #ddd
}

.topbar-left i {
  margin-right: 6px;
  color: #1aa3a3
}

.topbar-left a {
  color: #fff;
  text-decoration: none;
  margin-left: 2px;
}

.topbar-left a:hover {
  color: #1aa3a3 !important
}

@media (max-width:768px) {
  .topbar {
    display: none;
  }

  .topbar .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 15px
  }

  .topbar-left {
    width: 100%;
    margin-bottom: 8px
  }

  .topbar-left span {
    display: block;
    margin-bottom: 8px;
    font-size: 14px
  }
}



        /* NAVBAR */
.navbar,
.navbar-container,
.nav-links li {
  overflow: visible !important;
}

.navbar {
  position: relative;
  top: auto;
  width: 100%;
  z-index: 999;
  background: rgb(30, 30, 47);
  backdrop-filter: blur(10px);
  padding: 15px 60px !important;
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand img {
  height: 65px !important;
  width: 200px !important;
  margin-right: 56px !important;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin-left: 140px;
  align-items: center;
  position: relative;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #ccc;
  font-weight: 600;
  padding: 14px 20px;
  text-decoration: none;
  display: block;
  border-radius: 6px;
  transition: 0.3s ease;
}

.nav-links a:hover {
  background-color: rgba(0, 173, 181, 0.15);
}

.contact-btn {
  background-color: #00adb5;
  color: #1e1e2f !important;
  font-weight: bold;
  border-radius: 6px;
 /*margin-top: 10px;*/
}

.contact-btn:hover {
  background-color: #00adb5 !important;
  color: #fff !important;
}

/* DROPDOWN MENU */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0%;
  background: #1e1e2f !important;
  min-width: 200px;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  padding: 10px 0;
  z-index: 9999 !important;
  flex-direction: column;
}

.dropdown:hover > .dropdown-menu,
.dropdown-submenu:hover > .dropdown-menu {
  display: flex;
}

.dropdown-menu li a {
  padding: 5px 12px;
  color: #ccc;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background-color: rgba(0, 173, 181, 0.1);
  color: #00adb5;
}

/* RIGHT SIDE DROPDOWN */
.dropdown-menu.right {
    left: 100%;
    top: 0px;
    margin-left: 0px;
}

.dropdown-submenu {
  position: relative;
  font-size: 15px;
}
        /* Mobile Sidebar */
        .mobile-sidebar {
            position: fixed;
            top: 0;
            left: -100%;
            width: 298px;
            height: 100vh;
            background: #1e1e2f;
            box-shadow: 2px 0 6px rgba(0, 0, 0, 0.1);
            transition: left 0.3s ease-in-out;
            padding: 20px;
            overflow-y: auto;
            z-index: 9999;
        }
.nav-toggle {
  display: none;
  font-size: 35px;
  background: none;
  border: none;
  cursor: pointer;
  color: #00adb5; /* Change as needed */
  z-index: 10001;
}
        .mobile-sidebar.active {
            left: 0;
        }

        .close-btn {
            font-size: 24px;
            border: none;
            background: none;
            float: right;
            cursor: pointer;
            margin-bottom: 20px;
            color: #00adb5; /* Change as needed */
        }

   

        .mobile-nav li {
            list-style: none;
            border-top: 1px solid #eee;
        }

        .mobile-nav a {
            display: block;
            padding: 12px;
            color: white;
            text-decoration: none;
            font-weight: bold;
            margin-top: 10px;
            margin-bottom: 10px;
        }

        /* .mobile-nav a:hover {
            background: #f0f0f0;
        } */

        .has-dropdown>a::after {
            content: ' ▼';
            float: right;
            font-size: 12px;
        }

        .submenu {
            display: none;
            padding-left: 10px;
        }

        .has-dropdown.open>.submenu {
            display: block;
        }

     /* Show toggler only on mobile */
.nav-toggle {
  display: none; /* Default hidden */
}

@media (max-width: 991px) {
  .nav-toggle {
    display: block; /* Show on mobile only */
  }

  .nav-links {
    display: none;
  }

  .mobile-sidebar {
    display: block;
  }
}

@media (min-width: 992px) {
  .nav-toggle {
    display: none ; /* Ensure it's hidden on desktop */
  }

  .mobile-sidebar,
  .close-btn {
    display: none;
  }
}


  .search-box {
            display: flex;
            margin-bottom: 20px;
        }



.hero-heading-wrapper {
  background: linear-gradient(-45deg, #1e1e2f, #0d7377, #1e1e2f, #1aa3a3);
  background-size: 400% 400%;
  animation: gradientBG 10s ease infinite;

  padding: 58px 20px 40px;
  text-align: center;
  position: relative;
  border-bottom: 3px solid #00fff0;
  margin: 0;
  overflow: hidden;
}

/* Gradient animation */
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Heading text */
.hero-heading {
  font-family: Poppins, sans-serif;
  font-size: clamp(18px, 5vw, 51px); /* fully responsive */
  font-weight: 900;
  background: linear-gradient(90deg, #00fff0, #ff6f61, #00adb5);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-block;
  position: relative;

  border-right: 3px solid #00fff0;
  overflow: hidden;
  animation: blinkCursor 0.7s infinite;
}
/* Cursor blink */
@keyframes blinkCursor {
  0%, 50% { border-color: #00fff0; }
  51%, 100% { border-color: transparent; }
}

/* Shine effect */
.hero-heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  height: 100%;
  width: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
  animation: shine 4s infinite;
}
/* Cursor blink */
@keyframes blinkCursor {
  0%,50% { border-color: #00fff0; }
  51%,100% { border-color: transparent; }
}

/* Shine animation */
@keyframes shine {
  0% { left: -100%; }
  60% { left: 100%; }
  100% { left: 100%; }
}
/* Floating particles */
.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  overflow: hidden;
  pointer-events: none;
}

.particles::before,
.particles::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background-image: radial-gradient(rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: moveParticles 40s linear infinite;
}

.particles::after {
  animation-duration: 60s;
  opacity: 0.5;
}

@keyframes moveParticles {
  from { transform: translateY(0) translateX(0); }
  to { transform: translateY(-200px) translateX(-200px); }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .hero-heading-wrapper { padding: 50px 15px 35px; }
}

@media (max-width: 992px) {
  .hero-heading-wrapper { padding: 45px 12px 30px; }
}

@media (max-width: 768px) {
  .hero-heading {
    font-size: clamp(22px, 6vw, 36px);
  }
  .particles::before,
  .particles::after {
    width: 150%;
    height: 150%;
    background-size: 30px 30px;
  }
  .hero-heading::before {
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: clamp(18px, 7vw, 28px);
  }
  .particles::before,
  .particles::after {
    width: 120%;
    height: 120%;
    background-size: 20px 20px;
  }
  .hero-heading::before {
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
  }
}
/* Mobile adjustments for small screens */
@media (max-width: 480px) {
  .hero-heading-wrapper {
    padding: 50px 15px 25px; /* increase top padding to shift text down */
  }

  .hero-heading {
    font-size: clamp(18px, 7vw, 28px);
    white-space: normal; /* allow wrapping if needed */
  }

  .particles::before,
  .particles::after {
    width: 120%;
    height: 120%;
    background-size: 20px 20px;
  }

  .hero-heading::before {
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
  }
}







.herosection {
  padding: 100px 20px;
  background: #1e1e2f;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Floating Orbs */
.orbs {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.orbs::before, .orbs::after {
  content: "";
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,255,231,0.2), transparent 70%);
  animation: floatOrb 20s ease-in-out infinite;
}
.orbs::after {
  width: 200px; height: 200px;
  top: 65%; left: 70%;
  background: radial-gradient(circle, rgba(255,111,97,0.25), transparent 70%);
  animation-duration: 28s;
}
@keyframes floatOrb {
  0% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-60px) translateX(50px) scale(1.1); }
  100% { transform: translateY(0) translateX(0); }
}

/* Glowing background lines */
.glow-lines::before, .glow-lines::after {
  content: "";
  position: absolute;
  top: 0; left: -50%;
  width: 200%; height: 100%;
  background: repeating-linear-gradient(
    120deg,
    rgba(0,255,231,0.05) 0px,
    rgba(0,255,231,0.05) 2px,
    transparent 2px,
    transparent 6px
  );
  animation: moveLines 18s linear infinite;
  z-index: 0;
}
.glow-lines::after {
  animation-duration: 25s;
  opacity: 0.5;
}
@keyframes moveLines {
  from { transform: translateX(0); }
  to { transform: translateX(-200px); }
}

/* Author wrapper */
.author-wrapper {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Subheading */
.hero-subheading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #00adb5;
  opacity: 0;
  transform: translateY(20px);
  animation: slideFadeIn 1.5s ease forwards;
}
@keyframes slideFadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.highlight {
  color: #00ffe7;
  font-weight: 600;
  animation: glowPulse 2s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { text-shadow: 0 0 8px rgba(0,255,231,0.7); }
  50% { text-shadow: 0 0 18px rgba(0,255,231,1); }
}

/* Paragraph + staggered sentences */
.hero-paragraph {
  text-align: justify;
  font-size: 17px;
  line-height: 1.8;
  max-width: 800px;
  margin: 20px auto;
  padding: 0 20px;
  color: #ccc;
}
.hero-paragraph .sentence {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: revealSentence 1.2s ease forwards;
}
.hero-paragraph .sentence:nth-child(1) {
  animation-delay: 1s;
}
.hero-paragraph .sentence:nth-child(2) {
  animation-delay: 2s;
}
.hero-paragraph .sentence:nth-child(3) {
  animation-delay: 3s;
}
@keyframes revealSentence {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-subheading { font-size: 26px; }
  .hero-paragraph { font-size: 15px; }
}



.container-xxl img {
  transition: transform .2s ease, box-shadow .2s ease;
  border-radius: 8px;
  animation: floatImage 2s ease-in-out infinite alternate;
  box-shadow: 0 2px 10px #212424;
  /* height:128px;
  width: 268px !important; */
}
.img-fluidic {
    max-width: 230%! important;
    height: 120px! important;
}

@keyframes floatImage {
  0% {
    transform: translateY(0)
  }

  100% {
    transform: translateY(-15px)
  }
}

.container-xxl {
  font-family: Poppins, sans-serif!important;
}

.container-xxl .display-5,
.container-xxl h1,
.container-xxl h4 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px
}

.container-xxl img:hover {
  transform: scale(1.6);
  box-shadow: 0 2px 30px #1aa3a3;
  z-index: 1
}

.col-lg-5,
.testimonial-item {
  background-color: #2b2b44;
  padding: 30px;
  border-radius: 12px;
  transition: background-color .2s ease, transform .2s ease;
  cursor: default;
  color: #ddd
}

.col-lg-5:hover {
  background-color: #343454;
  transform: translateY(-4px);
  box-shadow: 0 2px 30px #1aa3a3
}
.testimonial-item:hover {
  background-color: #343454;
  transform: translateY(10px);
  box-shadow: 0 2px 30px #1aa3a3
}
.testimonial-section {
  padding: 40px;
  padding-bottom: 1px;
  background: #1e1e2f;
  position: relative;
}

.testimonial-item {
  background: #2b2b44;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.testimonial-icon {
  font-size: 40px;
  color: #1aa3a3;
  margin-bottom: 15px;
}

.testimonial-name {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.testimonial-text {
  font-size: 15px;
  color: white;
}

.custom-nav {
  margin-top: 20px;
  text-align: center;
}

.custom-nav button {
  border: none;
  background: #1aa3a3;
  color: #1e1e2f;
  padding: 8px 15px;
  margin: 6px 8px;
  border-radius: 5px;
  cursor: pointer;
}
.custom-nav button:hover {
  background: #1e1e2f;
  color: #1aa3a3;
  box-shadow: rgb(26, 163, 163, 0.5) 0px 2px 10px;
}
.heading {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  opacity: 0;
  animation: fadeUp .4s forwards;
  animation-delay: .4s
}

.subtext {
  font-size: 18px;
  color: #ccc !important;
  opacity: 0;
  animation: fadeUp .2s forwards;
  animation-delay: .2s
}

.btn-green {
  background-color: #1aa3a3 !important;
  color: #fff;
  padding: 12px 32px;
  font-size: 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: transform .4s ease, background-color .4s ease;
  display: inline-block;
  margin-top: 10px
}

.btn-green:hover {
  background-color: #169090;
  transform: scale(1)
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

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

.mission-section {
  background: linear-gradient(to right, #f5f7fa, #fff);
  padding: 80px 20px;
  font-family: Poppins, sans-serif;
  color: #222;
}

.mission-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.mission-left,
.mission-right {
  flex: 1 1 500px;
}

/* ✅ Image with Hover Button Styling */
.image-grid {
  position: relative;
  display: inline-block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.image-grid img {
  display: block;
  width: 100%;
  height: auto;
  transition: 0.4s ease-in-out;
}

.image-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.image-grid:hover img {
  transform: scale(1.05);
  filter: brightness(80%);
}

.image-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 1;
  pointer-events: none;
}
.hover-button {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 12px 28px;
  background: linear-gradient(135deg, #00adb5, #00adb5);
  color: #1e1e2f;
  font-weight: bold;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  opacity: 0;
  transition: 0.4s ease;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 2;
}


.image-grid:hover .hover-button {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.hover-button:hover {
  background: linear-gradient(135deg, #1e1e2f, #1e1e2f);
  color: #fff;
}

.mission-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #00adb5;
}

.mission-subheading {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
  max-width: 600px;
}

.mission-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 21px;
}




.stat-item {
  background: #fff;
  border: 2px solid #eee;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
  text-align: center;
  transition: transform .3s
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 2px 20px rgb(0, 173, 181, .5)
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #00adb5;
  display: block
}

.stat-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e1e2f;
  margin: 5px 0
}

.stat-item p {
  color: #555;
  font-size: .9rem
}

@media (max-width:768px) {
  .mission-container {
    flex-direction: column;
    text-align: center
  }
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px
}

.image-grid img {
  width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  height: 100%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .1);
  transition: transform .3s ease;
  margin-top: 0px
}

.image-grid img:hover {
  transform: scale(1.05)
}

.impact-section {
  padding: 60px 20px;
  background: #1e1e2f;
  color: #222;
  text-align: center
}

.impact-title {
  font-size: 2rem;
  font-weight: 700;
  color: #00adb5;
  margin-bottom: 10px
}

.impact-subtitle {
  font-size: 1.1rem;
  color: #fff;
  max-width: 700px;
  margin: 0 auto 40px
}

.impact-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  position: relative
}

.impact-card {
  flex: 1 1 220px;
  max-width: 250px;
  border-right: 2px dashed #ddd;
  padding: 0 20px
}

.impact-card:last-child {
  border-right: none
}

.impact-number {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 10px
}

.yellow {
  color: red
}

.orange {
  color: red
}

.impact-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #00adb5
}

.impact-card p {
  font-size: .95rem;
  color: #fff
}

@media (max-width:768px) {
  .impact-cards {
    flex-direction: column;
    align-items: center
  }

  .impact-card {
    border-right: none;
    border-bottom: 2px dashed #eee;
    margin-bottom: 20px;
    max-width: 100%
  }

  .impact-card:last-child {
    border-bottom: none
  }
}



.text-success {
  color: #00aab3
}

.avatar-icon {
  font-size: 48px;
  background: #00aab3;
  color: #1e1e2f;
  width: 100px;
  height: 100px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px
}

.university-partners {
  background: linear-gradient(135deg, #f8fbff, #d9f1ff, #e4f9f5);
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%)
}

.university-partners::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(0, 178, 255, .1);
  border-radius: 50%;
  z-index: 0
}

.university-partners .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.logos {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 5px
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center
}

.logo-row img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  transition: transform .3s ease, filter .3s ease;
  filter: grayscale(30%)
}

.logo-row img:hover {
  transform: scale(1.08);
  filter: grayscale(0)
}

.content {
  flex: 1;
  min-width: 300px
}

.content h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #00aab3;
  margin-bottom: 20px
}

.content p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6
}

.content {
  flex: 1;
  min-width: 300px
}

.content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #00adb5;
  margin-bottom: 20px
}

.content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6
}


@media (hover: hover) and (pointer: fine) {
  /* Base .cursor-dot */
  .cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    background: #1e1e2f;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    box-shadow: 0 0 6px #00adb5;
    transform: translate(-50%, -50%);
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.05s ease;
  }

  body.hovered .cursor-dot {
    background: #00adb5;
    box-shadow: 0 0 10px #00adb5;
  }

  body.clicked .cursor-dot {
    transform: translate(-50%, -50%) scale(0.5);
  }
}
@media screen and (max-width:768px) {
  .cursor-dot {
    display: none;
  }
}

.banner {
  width: 100%;
  height: 100vh;
  text-align: center;
  overflow: hidden;
  position: relative;
  z-index: 1
}

.banner .slider {
  position: absolute;
  width: 200px;
  height: 250px;
  top: 10%;
  left: calc(50% - 100px);
  transform-style: preserve-3d;
  transform: perspective(1000px);
  animation: autoRun 35s linear infinite;
  z-index: 2
}

@keyframes autoRun {
  from {
    transform: perspective(1000px) rotateX(-16deg) rotateY(0)
  }

  to {
    transform: perspective(1000px) rotateX(-16deg) rotateY(360deg)
  }
}

.banner .slider .item {
  position: absolute;
  inset: 0;
  transform: rotateY(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg)) translateZ(550px)
}

.banner .slider .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease, box-shadow .4s ease;
  border-radius: 7px
}

.banner .slider .item:hover img {
  transform: scale(1.15);
  box-shadow: 0 9px 18px rgba(0, 0, 0, .2)
}

.banner .content {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1400px, 100vw);
  height: max-content;
  padding-bottom: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  z-index: 1
}

.banner .content h1 {
  font-family: 'ICA Rubrik';
  font-size: 16em;
  line-height: 1em;
  color: #1e1e2f;
  position: relative
}

.banner .content h1::after {
  position: absolute;
  inset: 0;
  content: attr(data-content);
  z-index: 2;
  -webkit-text-stroke: 2px #d2d2d2;
  color: transparent
}

.banner .content .model {
  background-image: url(images/back/models.webp);
  width: 100%;
  height: 75vh;
  position: absolute;
  bottom: 0;
  left: 0;
  background-size: auto 130%;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: 1
}

@media screen and (max-width:1023px) {
  .banner .slider {
    width: 160px;
    height: 200px;
    left: calc(50% - 80px)
  }

  .banner .slider .item {
    transform: rotateY(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg)) translateZ(300px)
  }

  .banner .content h1 {
    text-align: center;
    width: 100%;
    text-shadow: 0 8px 16px #000;
    font-size: 7em
  }
}

@media screen and (max-width:767px) {
  .banner .slider {
    width: 100px;
    height: 150px;
    left: calc(50% - 50px)
  }

  .banner .slider .item {
    transform: rotateY(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg)) translateZ(180px)
  }

  .banner .content h1 {
    font-size: 5em
  }
}

.hero-heading {
  font-family: Poppins, sans-serif
}

.hero-subheading {
  font-family: Poppins, sans-serif
}

.testimonial-section {
  font-family: Poppins, sans-serif
}

.testimonial-section h1,
.testimonial-section h5 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
  font-size: 30px
}

.text-primary {
  color: #1e1e2f !important
}

.herosection {
  text-align: center;
  padding: 5% 0 5% 0
}

.service-item {
  position: relative;
  text-align: center
}

.service-item .service-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1
}

.service-item .service-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  object-fit: cover;
  transform: scale(1.2);
  transition: .4s;
  z-index: -1
}

.service-item:hover .service-img img {
  transform: scale(1)
}

.service-item .service-text {
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, .08);
  transition: .4s
}

.service-item:hover .service-text {
  background: rgb(20, 20, 31, .8)
}

.service-item .service-text h4,
.service-item .service-text p {
  transition: .4s
}

.service-item .service-text h4 {
  font-size: 24px;
  font-weight: 700;
  color: #00adb5 !important
}

.service-item .service-text p {
  font-size: 18px;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important
}

.service-item:hover .service-text h4 {
  color: #fff !important
}

.service-item:hover .service-text p {
  color: #fff !important
}

li {
  color: #fff
}

.service-item .service-text .btn-square {
  width: 100px;
  height: 100px;
  background: 0 0;
  transition: .4s
}

.service-item:hover .service-text .btn-square {
  background: var(--light)
}

.service-item .service-text .btn {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  color: #1e1e2f;
  background: var(--light);
  white-space: nowrap;
  overflow: hidden;
  transition: .4s;
  background-color: #00adb5
}

.service-item:hover .service-text .btn {
  width: 112px
}

.btn {
  transition: .3s;
  font-weight: 500
}

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

.btn-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400
}

.allied-partner-section {
  background: linear-gradient(to right, #0f0f0fcc, #1c1c1ccc), url(images/dragon_5.webp) center/cover no-repeat;
  padding: 80px 22px;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-top: 50px
}

.allied-partner-section .subheading {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 2px solid #fff;
  display: inline-block;
  margin-bottom: 12px
}

.allied-partner-section .heading {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 22px;
  color: #00adb5 !important
}

.allied-partner-section p {
  font-size: 1.1rem;
  line-height: 1.6
}

.partner-logos {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap
}

.partner-logos .logo-img {
  max-width: 400px;
  transition: transform .4s ease, box-shadow .4s ease;
  border-radius: 8px
}

.partner-logos .logo-img:hover {
  transform: scale(1.1) rotate(1deg);
  box-shadow: 0 8px 16px rgba(0, 0, 0, .3)
}


.floating-social {
  position: fixed;
  bottom: 20px;       /* Stick to bottom */
  left: 20px;         /* Stick to left */
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.social-btn {
  width: 50px;
  height: 50px;
  background-color: #25D366; /* WhatsApp default */
  color: white;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-btn:hover {
  transform: scale(1.1);
}

.social-btn.instagram {
  background: radial-gradient(circle at 30% 107%,
      #fdf497 0%,
      #fdf497 5%,
      #fd5949 45%,
      #d6249f 60%,
      #285AEB 90%);
  color: white;
}

@media screen and (max-width: 992px) {
  .floating-social {
    bottom: 15px; /* Slightly higher on mobile */
    left: 15px;
    gap: 10px;
  }

  .social-btn {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
}


.info-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  margin-top: 30px;
  justify-content: center
}

.info-card {
  display: flex;
  align-items: center;
  padding: 20px;
  border-radius: 12px;
  max-width: 600px;
  flex: 1
}

.light-card {
  background-color: #f1f5f9
}

.dark-card {
  background-color: #00adb5;
  color: #fff;
  flex-direction: row-reverse
}

.info-img {
  height: 180px;
  width: auto;
  border-radius: 8px;
  object-fit: cover
}

.info-content {
  padding: 0 20px
}

.info-content h3 {
  margin: 0 0 10px
}

.info-content a {
  text-decoration: none;
  color: inherit;
  font-weight: 700
}

.info-content a i {
  margin-left: 5px
}
@media screen and (max-width:768px) {

.info-section {

  justify-content: center;
  margin-left: 7px;
}

  .info-card {
  max-width: 350px;       
  align-items: center;
  }
  .info-img {
  height: 120px;
  width: 120px;
  border-radius: 8px;
  object-fit: cover
}
}



.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;  
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 5px 10px rgb(0, 173, 181);
  transition: transform 0.3s ease;
}

.scroll-top-btn:hover {
  transform: scale(1.1);
}

.scroll-top-btn .arrow-up {
  position: absolute;
  z-index: 2;
  color: #00adb5!important;
  font-size: 20px;
}

.scroll-top-btn .ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(#00adb5 25%, transparent 25% 100%);
  animation: rotate 2s linear infinite;
  z-index: 1;
  mask: radial-gradient(circle 24px at center, transparent 99%, black 100%);
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.btn-tain{
    background: linear-gradient(90deg, #00adb5, #1e1e2f);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 173, 181, 0.3);
}
.text-center{
    text-align: center;
}
.btn-tain:hover {
    background: linear-gradient(90deg, #1e1e2f, #00adb5);
}