:root {
  --teal: #00cfcf;
  --dark: #0b0b0b;
  --muted: #6c757d;
  --font-family: 'Inter', sans-serif;
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
}
body {
  font-family: var(--font-family);
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

/* Ensure all sections adapt to small screens */
body, html {
  max-width: 100%;
  overflow-x: hidden;
}

/* Navbar styling */
.navbar {
  background: transparent;
  padding: 0.8rem 0;
  transition: all 0.3s ease;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

@media (max-width: 992px) {
  .navbar-nav {
    text-align: center;
  }
  .navbar-nav .nav-link {
    margin: 0.3rem 0;
    display: block;
  }
  .navbar .btn-teal {
    width: 100%;
    margin-top: 0.5rem;
  }
}


/* Mega menu wrapper */
.mega-menu {
  min-width: 500px;
  border-radius: 12px;
  background: #111;
  animation: dropdownFade 0.35s ease;
}

/* Dropdown animation */
@keyframes dropdownFade {
  from {opacity: 0; transform: translateY(10px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Full-width mega menu */
.mega-menu-full {
  left: 0;
  right: 0;
  border-radius: 0;
  background: #111;
  animation: dropdownFade 0.35s ease;
  border-top: 2px solid var(--teal);
}

/* Dropdown animation */
@keyframes dropdownFade {
  from {opacity: 0; transform: translateY(15px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Mega Menu full width */
.mega-menu-full {
  left: 0;
  right: 0;
  border-radius: 0;
  background: #111;
  animation: dropdownFade 0.35s ease;
  border-top: 2px solid var(--teal);
}

/* Animation */
@keyframes dropdownFade {
  from {opacity: 0; transform: translateY(15px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Each item */
.mega-menu-full .dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #fff;
  white-space: normal; /* allow text to wrap inside */
}

/* Icon styling */
.mega-menu-full .dropdown-item i {
  font-size: 1.8rem;
  color: var(--teal);
  flex-shrink: 0; /* icon won't shrink */
  margin-top: 2px; /* aligns better with text */
}

/* Text block (heading + desc) */
.mega-menu-full .dropdown-item div {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.navbar .btn-teal {
  background: var(--teal);
  border: none;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.navbar .btn-teal:hover {
  background: #00e1e1;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 207, 207, 0.3);
}


/* Heading */
.mega-menu-full .dropdown-item h6 {
  margin: 0 0 4px 0;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
}

/* Description */
.mega-menu-full .dropdown-item small {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Hover */
.mega-menu-full .dropdown-item:hover {
  background: rgba(0, 207, 207, 0.1);
  transform: translateY(-2px);
  color: var(--teal);
}

/* When scrolled */
.navbar.scrolled {
  background: rgba(11, 11, 11, 0.9);
  backdrop-filter: blur(8px);
  padding: 0.6rem 0;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

/* Brand */
.brand-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.brand-logo:hover {
  transform: scale(1.08) rotate(-2deg);
}

.brand-text {
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  transition: color 0.3s ease;
}

.brand-text:hover {
  color: var(--teal);
}

.brand-text .muted {
  display: block;
  font-weight: 300;
  font-size: 0.72rem;
  color: var(--teal);
}

/* Nav links */
.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 300;
  margin: 0 0.6rem;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--teal) !important;
}

/* Underline animation */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 50%;
  background-color: var(--teal);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 60%;
}

/* Active link */
.navbar-nav .nav-link.active {
  color: var(--teal) !important;
}
/* Remove underline/border from dropdown link */
.navbar-nav .dropdown-toggle {
    border-bottom: none !important;
    box-shadow: none !important;
}

/* Optional: also remove focus outline on click */
.navbar-nav .dropdown-toggle:focus {
    box-shadow: none !important;
}


/* HERO */
/* HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;   /* ✅ ensures text stacks vertically over video */
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: none;         /* ✅ removes background image conflict */
}

/* VIDEO BACKGROUND */
.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.45;
}
/* OPTIONAL DARK OVERLAY (EXTRA SHIELD) */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 🌈 Teal-to-black gradient overlay */
  background: linear-gradient(
    180deg,
    rgba(96, 96, 96, 0.45) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}


/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 1rem; /* ✅ new — adds breathing space on smaller screens */
}

.hero h1 {
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  margin-bottom: 3rem;
}

.hero p {
  font-weight: 300;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
}

/* BUTTONS */
.btn-hero {
  background: var(--teal);
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.5rem;
  transition: transform .3s, box-shadow .3s, background .3s;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,207,207,0.5);
  background: #00eaea;
  color: #000;
}

/* FLOATING SHAPES (if needed) */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: float 6s infinite alternate ease-in-out;
}

@keyframes float {
  0% { transform: translateY(0px) translateX(0px); }
  100% { transform: translateY(-20px) translateX(20px); }
}

.floating-shape.shape1 {
  width: 120px;
  height: 120px;
  background: var(--teal);
  top: 10%;
  left: 15%;
  animation-delay: 0s;
}

/* TYPING EFFECT */
#hero-text {
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  position: relative;
  display: inline-block;
  border-right: 2px solid #fff;
  white-space: nowrap;
  overflow: hidden;
  margin-top: 70px;
}

#hero-text.typing {
  animation: typing 3s steps(30, end), blink-caret 0.75s step-end infinite;
}

#hero-text.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }
  .hero p {
    font-size: clamp(0.9rem, 3vw, 1.2rem);
    margin: 0 10px;
  }
}


/* === SERVICES SECTION === */
#services {
  background: #000000;
  position: relative;
}
#services h2 {
  color: #ffffff;
}

.section-title {
  font-size: 2.7rem;
  font-weight: 700;
  color: #ffffff;
  position: relative;
  display: inline-block;
}
.section-title span {
  color: #00cfcf;
}
.section-title::after {
  content: '';
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #00cfcf, #00ffa3);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}
@media (max-width: 768px) {
  .service-card .card-body {
    padding: 1rem;
  }
  .icon-box {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  .service-card h5 {
    font-size: 1.1rem;
  }
  .service-card p {
    font-size: 0.9rem;
  }
}


/* --- Service Cards --- */
.service-card {
  border: none;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.service-card .card-body {
  padding: 2rem;
}

.service-card h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.service-card p {
  flex-grow: 1;
  color: #555;
}

.service-card a {
  display: inline-block;
  margin-top: 1rem;
  text-decoration: none;
  font-weight: 600;
  color: #00cfcf;
  transition: color 0.3s;
}

.service-card a:hover {
  color: #00cfcf;
}

@media (max-width: 768px) {
  .service-card {
    min-height: 280px;
  }
}

@media (max-width: 576px) {
  .service-card {
    min-height: 260px;
  }
}

/* Overlay Gradient */
.service-card .overlay {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(0, 207, 207, 0.25), rgba(0, 255, 163, 0.25));
  transition: all 0.6s ease;
  z-index: -1;
}
.service-card:hover .overlay {
  left: 0;
}

/* Icon Design */
.icon-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0, 207, 207, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #00cfcf;
  transition: all 0.5s ease;
  box-shadow: 0 0 0 rgba(0, 207, 207, 0.3);
}
.service-card:hover .icon-box {
  background: linear-gradient(135deg, #00cfcf, #00ffa3);
  color: #fff;
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(0, 255, 163, 0.6);
}

/* Text */
.service-card h5 {
  color: #111;
  font-size: 1.25rem;
  margin-top: 10px;
}
.service-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  min-height: 80px;
}

/* Read More Button */
.btn-read {
  display: inline-block;
  color: #00cfcf;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
.btn-read i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}
.btn-read:hover {
  color: #00ffa3;
}
.btn-read:hover i {
  transform: translateX(4px);
}

/* Leadership Section */
.leadership-section {
  background: linear-gradient(135deg, #e8f3ff 0%, #f9fbff 100%);
  padding-left: 80px;
  padding-right: 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
}

.section-title .highlight {
  color: #00cfcf;
}

.leadership-container {
  position: relative;
  width: 100%;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.leadership-container.visible {
  opacity: 1;
  transform: translateY(0);
}

.message-card {
  display: none;
  transition: opacity 0.5s ease;
}

.message-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.message-card.active {
  display: block;
  opacity: 1;
}

.fade-in {
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.leadership-img {
  width: 100%;
  max-width: 500px;
  display: block;
  border-radius: 20px;
  border: 4px solid #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.leadership-img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 123, 255, 0.3);
}

.fade-overlay {
  position: relative;
  top: -30px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(249,250,252,0), rgba(249,250,252,1));
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.full-text {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.read-more {
  border-radius: 25px;
  border: #00cfcf 2px solid;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 20px;
  color: #00cfcf;
}

/* Align button with text */
.ceo-text .read-more {
  margin-right: 50px;
}

.read-more:hover {
  background-color: #00cfcf;
  color: white;
  border-color: #00cfcf;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.4s;
}

.dot.active, .dot:hover {
  background-color: #00cfcf;
}

/* Spacing between image and text */
.text-col {
  padding-left: 40px;  
  padding-right: 40px;
}

/* MD text left spacing */
.md-message .text-col {
  padding-left: 40px;
  padding-right: 0;
}

/* CEO text right spacing */
.ceo-message .text-col {
  padding-left: 0;
  padding-right: 40px;
}

@media (max-width: 768px) {
  .leadership-section {
    padding-left: 20px;
    padding-right: 20px;
    min-height: auto;
  }

  .leadership-img {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .message-card p {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .dot {
    height: 10px;
    width: 10px;
    margin: 0 4px;
  }

  .text-col {
    padding-left: 0;
    padding-right: 0;
    margin-top: 20px;
  }

  .md-text .read-more, .ceo-text .read-more {
    margin: 0 auto;
    display: block;
  }
}
@media (max-width: 768px) {
  .leadership-section {
    flex-direction: column;
    padding: 20px;
  }
}

/* Section setup */

.section-header h2 span {
  color: #00fefb; /* Accent color */
}
/* Section setup */
.why-us-section {
  background-color: #000;
  position: relative;
  padding: 100px 0;
  font-family: var(--font-family);
  overflow: hidden;
}

/* Particle canvas */
.particle-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

/* Container above canvas */
.why-us-section .container {
  position: relative;
  z-index: 2;
}

/* Section header */
.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #fbfbfb;
}

.section-header p {
  color: #ffffff;
  font-size: 1.2rem;
}

/* Cards grid */
.why-us-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 50px;
}

/* Cards */
.why-us-cards .card {
  background-color: #111;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.5s ease, border 0.5s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid #222;
}

/* Glowing border */
.why-us-cards .card::before {
  content: "";
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  border-radius: 22px;
  background: linear-gradient(45deg, #0097b2, #00fefb, #5de0e6, #004aad);
  z-index: -1;
  filter: blur(10px);
  opacity: 0.7;
  transition: opacity 0.3s ease;
  animation: glowBorder 4s linear infinite;
}

@keyframes glowBorder {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Hover effect */
.why-us-cards .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
  background: linear-gradient(135deg, #004aad, #00fefb);
}

.why-us-cards .card:hover::before {
  opacity: 1;
}

/* Icons */
.why-us-cards .card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.why-us-cards .card .icon img {
  max-width: 100%;
  max-height: 100%;
}

/* Icon glow */
.why-us-cards .card .icon::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: linear-gradient(45deg, #0097b2, #00fefb, #5de0e6, #004aad);
  filter: blur(8px);
  opacity: 0.6;
  transition: all 0.3s ease;
  animation: glowIcon 3s linear infinite;
  z-index: -1;
}

@keyframes glowIcon {
  0% { transform: scale(0.9); }
  50% { transform: scale(1.1); }
  100% { transform: scale(0.9); }
}

/* Headings and text */
.why-us-cards .card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #000000;
  font-weight: 700;
}

.why-us-cards .card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
  font-weight: 500;
}

/* Scroll fade-in animation */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}



/* Testimonials */
body { margin: 0; font-family: var(--font-family); }
  
  /* Lighter background for section */
  .testimonial-section {
    background:#c8ecef; /* soft light gray */
    padding: 60px 0;
    position: relative;
  }

  .testimonial-section h2 {
    color: #333;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .testimonial-section p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 40px;
  }

  /* Card style */
 .testimonial-card {
  background: #fff;
  border-radius: 15px;
  margin: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, opacity 0.5s;
  opacity: 0;
  transform: translateY(20px);
  height: 280px; /* fixed height for uniform size */
  display: flex;
  flex-direction: column;
  align-items: center;   /* ✅ centers image horizontally */
  justify-content: center; /* ✅ centers all content vertically */
  max-width: 280px;
  margin: 0 10px;
}
  .testimonial-card.show {
    opacity: 1;
    transform: translateY(0);
  }

  .testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  }

  .testimonial-card img {
    border-radius: 50%;
    width: 70px;
    height: 70px;
    object-fit: cover;
    margin-bottom: 10px;
  }

  .testimonial-text {
    font-style: italic;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.4;
    flex-grow: 1;
  }

  .star-rating {
    color: #ffc107;
    margin: 5px 0;
    font-size: 1rem;
  }

  /* Arrows outside cards */
/* Carousel controls outside cards */
#testimonialCarousel {
  position: relative;
  padding: 0 60px; /* add space for arrows */
}

.carousel-control-prev, 
.carousel-control-next {
  width: 45px;
  height: 45px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.carousel-control-prev {
  left: 0; /* outside left */
}

.carousel-control-next {
  right: 0; /* outside right */
}

.carousel-control-prev:hover, 
.carousel-control-next:hover {
  background: rgba(0,0,0,0.2);
}

  /* Dots */
  .carousel-indicators {
    bottom: -30px;
  }
  .carousel-indicators button {
    background-color: rgba(0,0,0,0.3);
  }
  .carousel-indicators .active {
    background-color: #000;
  }

  @media (max-width: 768px) {
  .testimonial-card {
    max-width: 90%;
    margin: 0 auto 20px auto;
    height: auto;
  }
  #testimonialCarousel {
    padding: 0 15px;
  }
}

/* CEO */
#ceo img {
  border: 4px solid var(--teal);
}

/* contact us section */
.contact-section {
  position: relative;
  background: #1d1c1c;
  color: #fff;
  padding: 100px 0;
  overflow: hidden;
}

.contact-section h2 {
  font-size: 2.8rem;
  color: #ffffff;
}

.contact-section p {
  color: #ffffff;
  font-size: 1.1rem;
}

.particle-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

/* Contact Form */
.contact-form {
  position: relative;
  z-index: 2;
}

.input-icon {
  position: relative;
}

.input-icon i {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: #00fefb;
  font-size: 1.1rem;
  transition: 0.3s;
  animation: glowIcon 3s linear infinite;
  pointer-events: none;
}

.contact-form .form-control {
  background: #111;
  border: 2px solid #aeaeae;
  border-radius: 12px;
  color: #fff;
  padding: 12px 15px 12px 42px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
.contact-form .form-control::placeholder {
  color: #ccc; /* lighter placeholder color */
}

.contact-form .form-control:focus {
  border: 2px solid #00fefb;
  box-shadow: 0 0 15px #00fefb66;
  background: #000;
  color: #fff;
  outline: none;
}

@keyframes glowIcon {
  0% { text-shadow: 0 0 5px #00fefb; }
  50% { text-shadow: 0 0 15px #00fefb, 0 0 10px #5de0e6; }
  100% { text-shadow: 0 0 5px #00fefb; }
}

/* Send button */
.btn-contact {
  background: linear-gradient(135deg, #0097b2, #00fefb);
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  padding: 12px;
  transition: 0.3s;
  border: none;
}

.btn-contact:hover {
  box-shadow: 0 0 25px #00fefb88;
  transform: translateY(-3px);
}

/* Office info panel */
.info-panel {
  position: relative;
  z-index: 2;
  background: #111;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.info-panel h5 {
  color: #00fefb;
  margin-bottom: 20px;
}

.info-item {
  font-size: 1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.info-item i {
  margin-right: 10px;
  color: #00fefb;
  animation: glowIcon 3s linear infinite;
}
/* Floating toast alert style */
#formAlert {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  min-width: 250px;
  max-width: 320px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: opacity 0.4s ease, transform 0.4s ease;
  opacity: 0;
  transform: translateY(-10px);
}

/* When alert becomes visible */
#formAlert.alert {
  opacity: 1;
  transform: translateY(0);
}

/* Success toast */
.alert-success {
  background-color: #d1f7d6;
  color: #146c2e;
  border: 1px solid #a9e5b0;
}

/* Error toast */
.alert-danger {
  background-color: #fdd8d8;
  color: #b30000;
  border: 1px solid #f5a1a1;
}


/* Footer */
footer {
  font-size: 0.9rem;
}

/* Chatbot Floating Button & Prompt */
.chat-box {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #000000; /* WhatsApp Green */
  border-radius: 50px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 9999;
  transition: all 0.3s ease;
}
.chat-box:hover {
  transform: scale(1.05);
}

.chat-content {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
}
.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.chat-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  margin-left: 10px;
  cursor: pointer;
}

/* Prompt Window */
.chat-prompt {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 10000;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #000000;
  color: #fff;
  padding: 12px;
}
.chat-header img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}
.chat-header h4 {
  margin: 0;
  font-size: 16px;
}
.prompt-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.chat-body {
  padding: 15px;
}
.chat-body p {
  font-size: 14px;
  margin-bottom: 10px;
}
.chat-body label {
  font-size: 13px;
  margin-left: 5px;
}

.chat-footer {
  background: #f1f1f1;
  text-align: center;
  font-size: 12px;
  padding: 8px;
  color: #555;
}

/* Optional: fade in/out */
.chat-prompt.show {
  display: flex;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Ensure particles or other canvas do not block clicks */
#whyUsCanvas, #contactCanvas {
  pointer-events: none;
}
/* Floating WhatsApp Icon */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #25d366;
  color: #fff;
  font-size: 28px;
  line-height: 55px;
  text-align: center;
  height: 55px;
  width: 55px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  color: #fff;
}
.whatsapp-float i {
  line-height: 55px;
}
/* About Us Section */
/* About Us Section */
.about-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa, #eef4ff);
  border-radius: 15px;
  padding: 60px 0;
}

/* Image Container */
.about-images {
  position: relative;
}

.image-stack {
  position: relative;
  display: inline-block;
}

/* Decorative Background Shape */
.bg-shape {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at 30% 30%, #007bff33, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: pulse 6s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

/* Images */
.image-stack .main-img {
  border-radius: 15px;
  transition: transform 0.5s ease;
  position: relative;
  z-index: 2;
}

.image-stack .overlay-img {
  position: absolute;
  top: 50%;
  left: 70%;
  width: 60%;
  border-radius: 15px;
  transform: translate(-50%, -50%);
  transition: transform 0.6s ease;
  z-index: 3;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Hover effect */
.image-stack:hover .main-img {
  transform: scale(1.05);
}
.image-stack:hover .overlay-img {
  transform: translate(-50%, -50%) scale(1.08);
}

.about-section {
  background: linear-gradient(to bottom right, #ffffff, #f6f9ff);
  overflow: hidden;
}

.about-section h2 {
  font-size: 2.6rem;
  color: #0b1c3d;
  margin-left: 50px;
}

.about-section h2 span {
  color: #00e1e1;
}

.about-section p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-left: 50px;
}
.about-section ul li {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-left: 50px;
}

.about-section .highlight {
  color: #00e1e1;
  font-weight: 600;
}

/* Image Styling */
.about-images {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-images .main-img {
  width: 85%;
  transition: transform 0.6s ease;
}

.about-images .overlay-img {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 60%;
  opacity: 0.9;
  transition: all 0.6s ease;
}

.about-images:hover .main-img {
  transform: scale(1.05);
}

.about-images:hover .overlay-img {
  transform: translate(-10px, -10px);
}

/* Experience Badge */
.experience-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #00e1e1;
  color: #fff;
  padding: 10px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Button */
.about-section .btn-primary {
  background-color: #00e1e1;
  border: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  margin-left: 50px;
}

.about-section .btn-primary:hover {
  background-color: #00e1e1;
  transform: scale(1.05);
  margin-left: 50px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-images .overlay-img {
    position: static;
    width: 100%;
    margin-top: 20px;
  }
  .experience-badge {
    display: none;
  }
}

@media (max-width: 768px) {
  .about-section h2,
  .about-section p,
  .about-section ul li {
    margin-left: 15px;
    margin-right: 15px;
  }
  .about-images {
    flex-direction: column;
  }
  .about-images .overlay-img {
    position: relative;
    bottom: 0;
    right: 0;
    width: 90%;
    margin-top: 20px;
  }
  .experience-badge {
    display: none;
  }
  .about-section .btn-primary {
    margin-left: 15px;
    width: 90%;
  }
}

/* CTA Section */
.cta-contact-section {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  border-radius: 25px;
  max-width: 900px;
  margin: 40px auto;
  background: linear-gradient(135deg, #00fefb 0%, #0097b2 100%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.cta-contact-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Particle Canvas */
#ctaParticles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Container Content */
.cta-contact-section .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* CTA Text with subtle underline effect */
.cta-text h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000000;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.cta-text h2::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.7);
  transition: width 0.6s ease;
  margin-top: 5px;
  border-radius: 2px;
}

.cta-contact-section.visible .cta-text h2::after {
  width: 100%;
}

.cta-text h2:hover::after {
  width: 60%;
  background: rgba(255, 255, 255, 0.9);
}

/* Paragraph text */
.cta-text p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  color: #000000;
}

/* CTA Button */
.btn-cta {
  background: #000000;
  color: #00fefb;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: #00fefb;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(0, 254, 251, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-contact-section {
    padding: 40px 15px;
  }
  .cta-text h2 {
    font-size: 1.6rem;
  }
  .btn-cta {
    width: 100%;
    text-align: center;
  }
}


/* FAQ's Section */
.faq-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000000;
}
.faq-section h2 span{
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #26f0f0;
}
.faq-card {
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.faq-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.faq-button {
  background: #000000;
  color: #fff;
  font-weight: 500;
  font-size: 1.1rem;
  border-radius: 12px;
  padding: 15px 20px;
  position: relative;           /* for absolute icon */
  width: 100%;
  border: none;
  cursor: pointer;
  text-align: left;             /* text stays left */
  transition: all 0.3s;
}

.faq-button.collapsed {
  background: #000000;
  color: #ffffff;
}

.faq-button:focus {
  box-shadow: none;
}

/* FAQ icon on the right side */
.faq-icon {
  position: absolute;
  right: 20px;                  /* fixed to right */
  font-weight: bold;
  transition: transform 0.3s;
}

/* Rotate + to × when expanded without moving left */
.faq-button:not(.collapsed) .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  background: #26f0f0;
  color: #000000;
  font-size: 1rem;
  line-height: 1.6;
  padding: 15px 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .faq-icon {
    right: 15px;
  }
}
@media (max-width: 576px) {
  .faq-button {
    font-size: 0.9rem;
    padding: 12px 15px;
  }
  .faq-answer {
    font-size: 0.9rem;
    padding: 12px 15px;
  }
}

.faq-answer {
  font-size: 0.95rem;
  padding: 12px 15px;
}

/* -------------------- NAVBAR MOBILE -------------------- */
.navbar .navbar-toggler {
  display: none;
  background: var(--teal);
  border: none;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.navbar .navbar-toggler span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
  transition: all 0.3s ease;
}

@media (max-width: 992px) {
  .navbar .navbar-nav {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    border-top: 2px solid var(--teal);
    z-index: 999;
  }

  .navbar .navbar-nav.show {
    display: flex;
  }

  .navbar .nav-link {
    padding: 15px 20px;
    margin: 0;
  }

  .navbar .navbar-toggler {
    display: flex;
  }

  .mega-menu-full {
    position: static;
    min-width: 100%;
    border-radius: 0;
    margin: 0;
  }

  .mega-menu-full .dropdown-item {
    flex-direction: column;
    gap: 8px;
    padding: 12px 15px;
  }
}
@media (max-width: 576px) {
  .navbar .nav-link {
    padding: 12px 15px;
    font-size: 0.9rem;
  }
}

/*-------------footer------------------*/
/* Footer Base */
.site-footer {
  background: #0b0b0b;
  color: #fff;
  font-family: var(--font-family);
  position: relative;
  z-index: 2;
}

.site-footer a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.site-footer a:hover {
  color: #00cfcf;
}

/* Footer Top */
.footer-top {
  padding: 60px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-col {
  flex: 1 1 180px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #00cfcf;
}

.footer-col p, .footer-col li {
  font-size: 0.85rem;
  color: #ccc;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

/* Social Icons */
.footer .social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px; /* horizontal and vertical spacing */
  margin-top: 10px;
}

.footer .social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  color: #007bff;
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer .social-icons a:hover {
  background-color: #007bff;
  color: #fff;
  transform: scale(1.1);
}
.footer-social a {
  color: #fff;
  margin-right: 12px;
  font-size: 1.3rem;
  transition: 0.3s;
}
.footer-social a:hover {
  color: #00fefb;
  transform: translateY(-3px);
}
/* Footer Bottom */
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #777;
}

.footer-bottom p {
  margin: 5px 0;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-row {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    gap: 25px;
  }

  .footer-logo {
    margin-bottom: 10px;
  }
}
/* Hero section for other pages */
/* Alternative Hero Section */
.hero-section-alt {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 60px 20px;
  background: url('/Assets/pic/hero-bg.png') center/cover no-repeat;
  overflow: hidden;
  font-family: var(--font-family);
}

/* Hero Text */
.hero-section-alt h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 70px;
}

.hero-section-alt p {
  font-size: 1.25rem;
  color: #ffffff;
}

/* Floating Circles */
.hero-section-alt .circle {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

/* Individual circle styles and animations */
.hero-section-alt .circle1 {
  width: 100px; height: 100px;
  top: 10%; left: 5%;
  animation: float1 12s infinite;
}

.hero-section-alt .circle2 {
  width: 150px; height: 150px;
  top: 40%; left: 70%;
  animation: float2 15s infinite;
}

.hero-section-alt .circle3 {
  width: 80px; height: 80px;
  top: 60%; left: 30%;
  animation: float3 10s infinite;
}

.hero-section-alt .circle4 {
  width: 120px; height: 120px;
  top: 80%; left: 80%;
  animation: float4 18s infinite;
}

/* Keyframes for dynamic float with different directions and opacity */
@keyframes float1 {
  0%   { transform: translate(0,0) scale(1); opacity: 0.3; }
  50%  { transform: translate(20px,-30px) scale(1.1); opacity: 0.6; }
  100% { transform: translate(0,0) scale(1); opacity: 0.3; }
}

@keyframes float2 {
  0%   { transform: translate(0,0) scale(1); opacity: 0.2; }
  50%  { transform: translate(-30px,20px) scale(1.2); opacity: 0.5; }
  100% { transform: translate(0,0) scale(1); opacity: 0.2; }
}

@keyframes float3 {
  0%   { transform: translate(0,0) scale(1); opacity: 0.4; }
  50%  { transform: translate(25px,-15px) scale(1.1); opacity: 0.7; }
  100% { transform: translate(0,0) scale(1); opacity: 0.4; }
}

@keyframes float4 {
  0%   { transform: translate(0,0) scale(1); opacity: 0.25; }
  50%  { transform: translate(-20px,-25px) scale(1.15); opacity: 0.55; }
  100% { transform: translate(0,0) scale(1); opacity: 0.25; }
}
/* Responsive */
@media (max-width: 768px) {
  .hero-section-alt h1 {
    font-size: 2.2rem;
  }
  .hero-section-alt p {
    font-size: 1rem;
  }
  .hero-section-alt .circle {
    display: none; /* Hide circles on small screens for clarity */
  }
}

/* ===== UNIVERSAL RESPONSIVE ENHANCEMENTS ===== */

/* Large Tablets and Small Laptops (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero {
    min-height: 80vh;
  }
  .navbar .btn-teal {
    padding: 0.5rem 1rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .service-card .card-body {
    padding: 1.5rem;
  }
}

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
  .navbar-nav {
    background: rgba(0, 0, 0, 0.9);
    border-radius: 10px;
    padding: 10px 0;
  }
  .mega-menu-full {
    min-width: auto;
    width: 100%;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .why-us-section {
    padding: 80px 20px;
  }
  .leadership-section {
    flex-direction: column;
  }
}

/* Tablets & Large Phones (max-width: 768px) */
@media (max-width: 768px) {
  .hero {
    padding: 60px 15px;
    text-align: center;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .btn-hero {
    width: 100%;
    margin-top: 10px;
  }

  /* Service section */
  .service-card {
    min-height: auto;
    margin-bottom: 20px;
  }
  .icon-box {
    width: 55px;
    height: 55px;
    font-size: 1.6rem;
  }

  /* Why Us section */
  .why-us-cards {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .testimonial-section h2 {
    font-size: 1.6rem;
  }

  /* Contact Section */
  .contact-section {
    padding: 60px 15px;
  }
  .contact-section h2 {
    font-size: 1.8rem;
  }
}

/* Small Phones (max-width: 576px) */
@media (max-width: 576px) {
  .navbar-brand img {
    height: 45px;
  }
  .navbar-nav .nav-link {
    margin: 0.5rem 0;
  }
  .hero {
    min-height: 75vh;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero p {
    font-size: 0.9rem;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .service-card p {
    font-size: 0.9rem;
  }
  .leadership-section {
    padding: 40px 10px;
  }
  .why-us-section {
    padding: 60px 10px;
  }
  .testimonial-card {
    padding: 15px;
  }
  .contact-section input,
  .contact-section textarea {
    font-size: 0.9rem;
  }
}

/* Very Small Devices (max-width: 400px) */
@media (max-width: 400px) {
  .hero h1 {
    font-size: 1.3rem;
  }
  .hero p {
    font-size: 0.85rem;
  }
  .btn-hero {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }
  .section-title {
    font-size: 1.4rem;
  }
  .service-card h5 {
    font-size: 1rem;
  }
  .testimonial-section h2 {
    font-size: 1.3rem;
  }
}
