@import url('https://fonts.cdnfonts.com/css/ica-rubrik-black');
@import url('https://fonts.cdnfonts.com/css/poppins');

/* :root {
  --primary: #0f4229;
  --secondary: #1c1c1c;
  --light: #ffffff;
  --dark: #000000;
}
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #D2D2D2;
  margin-top: 110px;

}

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;
}

/* For headings */
h1,
h2,
h3,
.section-title,
.hero-heading {
  font-family: 'Bebas Neue', sans-serif;
}

/* For general text */
body,
p,
a,
li,
.hero-paragraph,
.hero-subheading {
  font-family: 'Poppins', sans-serif;
}


@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);
  }
}


.topbar,
.navbar,
.container {
  overflow-x: hidden;
}

.topbar a i {
  color: #ffffff;
  margin-left: 10px;
  font-size: 16px;
  transition: color 0.3s;
}

/* .topbar a i:hover {
  color: #25D366; 
} */
@media (max-width: 768px) {
  .topbar .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-left,
  .topbar-right {
    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 */
.topbar {
  top: auto;
  width: 100%;
  height: auto;
  background-color: #1e1e2f;
  z-index: 1000;
  font-size: 14px;
  position: static;
  transition: top 0.2s;
  border-bottom: 2px solid #1aa3a3;
}

.topbar .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.topbar {
  background-color: #1e1e2f;
  padding: 10px 0;
  font-size: 14px;
}

.container-topbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}

.topbar-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 auto; /* Center horizontally */
  text-align: center;
}

.topbar-left span {
  margin-right: 25px;
  display: inline-flex;
  align-items: center;
  color: #ddd;
}

.topbar-left i {
  margin-right: 6px;
  color: #1aa3a3 !important;
}

.topbar-left a {
  color: #fff;
  text-decoration: none;
}

.topbar-left a:hover {
  color: #1aa3a3 !important;
}

/* RIGHT SIDE - stick to the right edge */
.topbar-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 15px;
  position: absolute;
  right: 0;
}

.topbar-right a {
  color: #ccc;
  font-size: 16px;
  transition: color 0.3s ease;
}

.topbar-right a i:hover {
  color: #00adb5 !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .topbar {
    display: none;
  }

  .topbar .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 15px;
  }

  .topbar-left,
  .topbar-right {
    width: 100%;
    margin-bottom: 8px;
  }

  .topbar-left span {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
  }

  .topbar-right {
    justify-content: flex-start;
    gap: 10px;
  }

  .topbar-right a {
    font-size: 18px;
  }
}

/* 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;
 
}

.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: 299px;
  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;

}

.search-box {
  display: flex;
  margin-bottom: 20px;
}

.search-box input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ddd;
  margin-bottom: 29px;
}

.search-box button {
  background: #008080;
  color: white;
  padding: 8px 12px;
  border: none;
  cursor: pointer;
  margin-bottom: 29px;
  margin-right: 1px;
}

.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 !important;
    /* Show on mobile only */
  }

  .nav-links {
    display: none;
  }

  .mobile-sidebar {
    display: block;
  }
}

@media (min-width: 992px) {
  .nav-toggle {
    display: none !important;
    /* Ensure it's hidden on desktop */
  }

  .mobile-sidebar,
  .close-btn {
    display: none !important;
  }
}

.herosection {
  padding: 80px 20px;
  /* background: #f8f9fa; */
  text-align: center;
}

.hero-heading {
  font-size: 90px;
  padding-bottom: 10px;
  font-weight: bold;
  animation: popUp 3s ease-in-out;
}

.hero-subheading {
  font-size: 24px;
  margin-bottom: 20px;
}

@keyframes popUp {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }

}


.contact-header {
  background: url('images/group-friends-looking-laptop.webp') no-repeat center center/cover;
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-header .overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact-header h1 {
  font-size: 55px;
  margin-bottom: 10px;
  font-weight: bold;
}

.contact-header p {
  font-size: 16px;
}

.contact-section {
  padding: 60px 20px;
  background: #fff;
}

.testing-training {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: #1aa3a3;
  margin-bottom: 40px;
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* Force 3 columns only */
  gap: 100px;
  max-width: 1000px;
  margin: 0 auto;
}


.training-card {
  padding: 50px 35px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.training-card:hover {
  transform: translateY(-10px);
  transition: transform 0.4s ease;
  box-shadow: 0 2px 31px rgb(26, 163, 163);
}

.training-card img {
  width: 150px;
  margin-bottom: 20px;
}

.training-card h2 {
  font-size: 22px;
  color: #1aa3a3;
}

.training-card p {
  font-size: 16px;
}

@media (max-width: 530px) {
  .training-grid {
    grid-template-columns: 1fr;
    /* Stack cards in 1 column */
    gap: 30px;
    /* Reduce gap for small screens */
    padding: 0 15px;
    /* Optional: side padding */
  }

  .training-card {
    padding: 30px 20px;
    /* Less padding on mobile */
    text-align: center;
  }

  .training-card img {
    width: 100px;
    /* Smaller icon */
    margin: 0 auto 15px;
  }

  .training-card h2 {
    font-size: 20px;
  }

  .training-card p {
    font-size: 15px;
  }
}



.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;
  }
}

/* .scroll-container {
  position: relative; 
} */


.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);
  }
}
.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
  transition: transform .3s ease
}

.contact-card:hover {
  transform: translateY(-5px)
}

.icon {
  font-size: 24px;
  color: #00adb5
}
