* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Dm Sans", sans-serif;
}

body {
  overflow-x: hidden;
}

:root {
  --primary-color: #0d6efd;
  --secondary-color: #6c757d;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  --font-color: #212529;
  --primary: #0066ff;
  --accent: #f9b233;
  --text-dark: #222;
  --text-light: #555;
  --white: #fff;
  --radius: 18px;
  --transition: 0.3s ease-in-out;
}

.top-bar {
  background-color: #010916;
  color: var(--light-color);
  padding: 5px 0;
  font-size: 14px;
  border-radius: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin: 10px 0;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* allow wrapping */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 10px 0;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.top-bar-item i {
  color: #0d6efd;
}

.top-bar-item a {
  color: var(--light-color);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.top-bar-item a:hover {
  color: var(--primary-color);
}

.social-media a {
  color: #f8f9fa;
  font-size: 18px;
  transition: color 0.3s;
}

.social-media a:hover {
  color: #0d6efd;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .top-bar-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .top-bar-left,
  .top-bar-right {
    justify-content: center;
    padding: 5px 0;
  }

  .top-bar-item a {
    font-size: 14px;
  }
}
  
/* ===== Navbar ===== */
header {
  position: relative; 
  top: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease; /* smooth transition */
}

header.sticky {
  position: fixed;     /* becomes fixed only after scrolling */
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}


nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

/* Center menu */
.nav-links {
  display: flex;
  gap: 2rem;
  position: relative;
}
.nav-links a {
  color: #000;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: #f39c12;
  transition: width 0.3s;
}
.nav-links a:hover {
  color: #f39c12;
}
.nav-links a:hover::after {
  width: 100%;
}

/* Dropdown wrapper */
.dropdown {
  position: relative;
}

/* Mega menu container */
.mega-menu {
  position: absolute;
  top: 100%;
  left: -250%;
  background: #010916;
  width: 800px;
  padding: 1.5rem;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  z-index: 2000;
}

/* Columns */
.mega-column h3 {
  color: #f39c12;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.mega-column a {
  display: block;
  padding: 0.4rem 0;
  color: #fff;
  font-size: 0.95rem;
}

.mega-column a:hover {
  color: #f39c12;
}

/* Show on hover */
.dropdown:hover .mega-menu {
  display: grid;
}


/* Call button */
.call-btn {
  background: #f39c12;
  color: #111;
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.95rem;
  transition: background 0.3s;
}
.call-btn:hover {
  background: #d35400;
}

/* Menu toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #000;
  border-radius: 2px;
}

/* ===== Sidebar ===== */
.overlay-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  z-index: 1500;
}
.overlay-bg.show {
  opacity: 1;
  visibility: visible;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #000;
  color: #fff;
  padding: 2rem;
  transition: right 0.4s ease;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow-y: auto;
  z-index: 5000;
}
.sidebar.open {
  right: 0;
}
.sidebar h2 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.sidebar a {
  color: #f39c12;
  text-decoration: none;
  display: block;
  margin: 0.5rem 0;
}
.sidebar .close-btn {
  align-self: flex-end;
  cursor: pointer;
  font-size: 1.8rem;
}

.side-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  list-style: none;
  display: none;
}

.side-nav li {
  list-style: none;
}

.side-nav a {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.side-nav a:hover {
  color: #f39c12;
}

@media (max-width: 400px) {
  .side-nav {
    display: block;
  }
}

/* ===== Carousel ===== */
.carousel {
  position: relative;
  height: 100vh;
  width: 100%;
  z-index: 1000;
  overflow: hidden;
}
.slides {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide1 {
  background-image: url("../Images/slider-1.jpg");
}
.slide2 {
  background-image: url("../Images/slider-2.jpg");
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

/* Captions left aligned */
.caption {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  text-align: left;
  color: #fff;
  max-width: 700px;
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}
.slide.active .caption {
  opacity: 1;
}
.caption h3 {
  font-size: 1rem;
  font-family: "Comfortaa", cursive;
  margin-bottom: 0.5rem;
  color: #000;
  font-weight: 600;
  max-width: 400px;
  background-color: #f39c12;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  text-transform: uppercase;
}
.caption h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.caption p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.caption button {
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
/* Shared button styles */
.btn-group a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  font-family: "Comfortaa", cursive;
}

/* Primary button (blue + yellow split) */
.btn-primary {
  background: linear-gradient(to right, #1e6efc 70%, #f39c12 100%);
  color: #fff;
  border: none;
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Secondary button (outline style) */
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-secondary:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

/* Right arrow icon */
.btn-group a .icon {
  display: inline-block;
  font-size: 1.1em;
  transition: transform 0.3s ease;
}
.btn-group a:hover .icon {
  transform: translateX(4px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(-40%);
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

/* Controls */
.carousel button.prev,
.carousel button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
}
.prev {
  left: 10px;
}
.next {
  right: 10px;
}

/* Indicators */
.indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.indicators span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s;
}
.indicators .active {
  background: #f39c12;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .caption h1 {
    font-size: 2rem;
  }
}

/* Why Section */
.why-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.why-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  /* Hidden initially for scroll reveal */
  opacity: 0;
  transform: translateY(40px);
}

.why-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.why-card img {
  width: 64px;
  height: 64px;
  border-radius: 0.75rem;
  background: #f5f7ff;
  padding: 0.5rem;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-family: "Dm Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: #000;
}

.why-card p {
  font-family: "Dm Sans", sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
  margin-bottom: 1rem;
}

.why-card .why-arrow {
  font-size: 2rem;
  color: #111;
  transition: transform 0.3s ease;
}

.why-card:hover .why-arrow {
  transform: translateX(6px);
}

@media (max-width: 768px) {
  .why-section {
    padding: 2rem 1rem;
    gap: 1.5rem;
  }
}

/* ===== About Section ===== */
.about {
  padding: 80px 20px;
  background: #fff;
}

.about-container {
  font-family: "Inter", sans-serif;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}
.about-image img {
  max-width: 100%;
  width: 100%;
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s ease;
}

.about-content {
  flex: 1 1 500px;
  padding: 0 10px;
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s ease;
}
.about-content h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}
.about-content h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #0077b6;
}
.about-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
}
.about-content p strong {
  color: #000;
}
.about-content a {
  color: #0077b6;
  text-decoration: underline;
}

/* Icons */
.about-icon {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 25px 0;
}
.icon-box {
  display: flex;
  align-items: center;
  flex: 1 1 250px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}
.icon-box-icon img {
  width: 55px;
  margin-right: 12px;
}
.icon-box-content h2 {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
}

/* List */
.about-list ul {
  padding: 0;
  list-style: none;
}
.about-list li {
  font-size: 15px;
  color: #222;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.about-list i {
  font-size: 16px;
  color: #0077b6;
  margin-right: 8px;
}

/* Button */
.about-content button {
  margin-top: 20px;
  padding: 14px 28px;
  font-size: 16px;
  background: #0077b6;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.about-content button:hover {
  background: #005f8f;
  transform: translateY(-3px);
}

/* Scroll reveal active states */
.reveal {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* Responsive */
@media (max-width: 992px) {
  .about-content h1 {
    font-size: 28px;
  }
  .about-content h2 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-image img {
    width: 100%;
  }
  .icon-box {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .about-content h1 {
    font-size: 22px;
  }
  .about-content p {
    font-size: 14px;
  }
  .about-content button {
    width: 100%;
  }
}

/* Services Section */
.services {
  padding: 80px 20px;
  background: #f9f9f9;
  font-family: "Inter", sans-serif;
  text-align: center;
}

.services-header {
  max-width: 850px;
  margin: 0 auto 60px;
}

.services-header .tag {
  background: transparent;
  border: 1.5px solid #0077b6;
  color: #0077b6;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.services-header .tag:hover {
  background: #0077b6;
  color: #fff;
}

.services-header h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
  color: #222;
}
.services-header h1 span {
  color: #0077b6;
}
.services-header p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Services Grid */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Service Card */
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

/* Icon Styling */
.service-card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #eaf6ff;
  color: #0077b6;
  font-size: 28px;
  transition: all 0.3s ease;
}
.service-card:hover .icon {
  background: #0077b6;
  color: #fff;
  transform: rotate(10deg) scale(1.1);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #222;
}

.service-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Hover Effect Glow */
.service-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(0, 119, 182, 0.08),
    transparent
  );
  transform: rotate(45deg);
  transition: 0.6s;
}
.service-card:hover::before {
  left: 100%;
  top: 100%;
}

/* Responsive */
@media (max-width: 992px) {
  .services-header h1 {
    font-size: 30px;
  }
  .service-card {
    padding: 35px 20px;
  }
}

@media (max-width: 768px) {
  .services-header h1 {
    font-size: 26px;
  }
  .services-header p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .services-header h1 {
    font-size: 22px;
  }
  .services-header p {
    font-size: 14px;
  }
  .service-card h3 {
    font-size: 18px;
  }
  .service-card p {
    font-size: 14px;
  }
}

/* ===== Stats Section ===== */
.stats-section {
  position: relative;
  background: url("../Images/imgi_91_hero_bg_1_1.jpg") center/cover no-repeat;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  color: #fff;
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.stat-box {
  position: relative;
  z-index: 2;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;

  /* fade-in initial state */
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.stat-box.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-content {
  transform: rotate(-15deg);
}

.stat-number {
  font-size: 48px;
  font-weight: bold;
  display: inline-block;
  line-height: 1;
}

.stat-unit {
  color: #f9a825;
}

.stat-label {
  font-size: 14px;
  margin-top: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-section {
    gap: 20px;
  }
  .stat-box {
    width: 150px;
    height: 150px;
  }
  .stat-number {
    font-size: 32px;
  }
}

/* ===== Why Choose Us Section ===== */
section.why-choose {
  padding: 4rem 10%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.why-text h5 {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 0.4rem 1rem;
  border: 1px solid #aaa;
  border-radius: 50px;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.why-text h2 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 2rem;
}

.why-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: inline-block;
}

.feature-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.skill-bar {
  background: var(--bg-light);
  border-radius: 50px;
  overflow: hidden;
  height: 6px;
}

.skill-fill {
  height: 100%;
  width: 0;
  background: var(--primary-color);
  transition: width 1.5s ease;
}

.skill-text {
  font-size: 0.85rem;
  margin-top: 0.3rem;
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 1024px) {
  section.why-choose {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .features {
    grid-template-columns: 1fr;
  }
}

/* Gallery Section */
/* Gallery Section Styles */
.gallery-container {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: black;
  margin: 0;
}

#mz-gallery-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

#mz-gallery {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: calc(100% - 70px);
  height: calc(100% - 50px);
  max-height: 670px;
  max-width: 1900px;
  margin: 35px 0px;
  background-color: black;
  background-image: radial-gradient(rgba(0, 162, 255, 0.4) 1px, black 1px);
  background-size: 40px 40px;
  border: 1px dotted #0077b6;
  outline: 1px dotted #0077b6;
  outline-offset: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 0 0 55px;
  scroll-behavior: smooth;
  /* firefox scrollbar */
  scrollbar-color: #0077b6 #222;
  scrollbar-width: auto;
  animation: background 300s linear infinite;
}

@keyframes background {
  0% {
    background-position: -300% 100%;
  }

  100% {
    background-position: 100% -300%;
  }
}

#mz-gallery::-webkit-scrollbar {
  height: 25px;
}

#mz-gallery::-webkit-scrollbar-track {
  background: transparent;
}

#mz-gallery::-webkit-scrollbar-thumb {
  background: #666;
}

#mz-gallery::-webkit-scrollbar-thumb:hover {
  background: #555;
}

#mz-gallery::-webkit-scrollbar-thumb:active {
  background: #444;
}

#mz-gallery::-webkit-scrollbar-button:single-button:horizontal:decrement {
  height: 25px;
  width: 80px;
  background-color: #0077b6;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-box-arrow-left' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M6 12.5a.5.5 0 0 0 .5.5h8a.5.5 0 0 0 .5-.5v-9a.5.5 0 0 0-.5-.5h-8a.5.5 0 0 0-.5.5v2a.5.5 0 0 1-1 0v-2A1.5 1.5 0 0 1 6.5 2h8A1.5 1.5 0 0 1 16 3.5v9a1.5 1.5 0 0 1-1.5 1.5h-8A1.5 1.5 0 0 1 5 12.5v-2a.5.5 0 0 1 1 0v2z'/%3E%3Cpath fill-rule='evenodd' d='M.146 8.354a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L1.707 7.5H10.5a.5.5 0 0 1 0 1H1.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3z'/%3E%3C/svg%3E");
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
}

#mz-gallery::-webkit-scrollbar-button:single-button:horizontal:increment {
  height: 25px;
  width: 80px;
  background-color: #0077b6;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-box-arrow-right' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M10 12.5a.5.5 0 0 1-.5.5h-8a.5.5 0 0 1-.5-.5v-9a.5.5 0 0 1 .5-.5h8a.5.5 0 0 1 .5.5v2a.5.5 0 0 0 1 0v-2A1.5 1.5 0 0 0 9.5 2h-8A1.5 1.5 0 0 0 0 3.5v9A1.5 1.5 0 0 0 1.5 14h8a1.5 1.5 0 0 0 1.5-1.5v-2a.5.5 0 0 0-1 0v2z'/%3E%3Cpath fill-rule='evenodd' d='M15.854 8.354a.5.5 0 0 0 0-.708l-3-3a.5.5 0 0 0-.708.708L14.293 7.5H5.5a.5.5 0 0 0 0 1h8.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3z'/%3E%3C/svg%3E");
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
}

#mz-gallery::-webkit-scrollbar-button:single-button:horizontal:decrement:hover,
#mz-gallery::-webkit-scrollbar-button:single-button:horizontal:increment:hover {
  background-color: #0077b6;
}

#mz-gallery::-webkit-scrollbar-button:single-button:horizontal:decrement:active,
#mz-gallery::-webkit-scrollbar-button:single-button:horizontal:increment:active {
  background-color: #0077b6;
}

#mz-gallery figure {
  position: relative;
  margin: unset;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80%;
  width: auto;
  min-height: 100px;
  margin-right: 60px;
  scroll-snap-align: start;
  transition: all 0.3s ease-in-out;
}

#mz-gallery figure:nth-child(1) {
  margin-left: 60px;
}

#mz-gallery figure div {
  position: absolute;
  width: 1%;
  height: 1%;
  background: transparent;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

#mz-gallery figure div:nth-child(3) {
  top: 0;
  left: 0;
  border-left: 1px dotted #0077b6;
  border-top: 1px solid #0077b6;
  border-radius: 15px 0px 0px 0px;
}

#mz-gallery figure div:nth-child(4) {
  top: 0;
  right: 0;
  border-top: 1px solid white;
  border-right: 1px solid white;
  border-radius: 0px 15px 0px 0px;
}

#mz-gallery figure div:nth-child(5) {
  bottom: 0;
  right: 0;
  border-right: 1px dotted #0077b6;
  border-bottom: 1px solid #0077b6;
  border-radius: 0px 0px 15px 0px;
}

#mz-gallery figure div:nth-child(6) {
  bottom: 0;
  left: 0;
  border-bottom: 1px solid white;
  border-left: 1px solid white;
  border-radius: 0px 0px 0px 15px;
}

#mz-gallery figure img {
  height: 100%;
  width: auto;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px,
    rgba(0, 0, 0, 0.22) 0px 10px 10px;
  border-radius: 5px;
  opacity: 0.9;
  filter: brightness(1);
  outline: 1px solid transparent;
  outline-offset: -40px;
  transition: all 0.3s ease-in-out;
}

#mz-gallery figure figcaption {
  position: absolute;
  color: transparent;
  font-size: 18pt;
  line-height: 24pt;
  font-weight: 500;
  padding: 0px 20px;
  text-align: center;
  width: 80%;
  height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    rgba(124, 252, 0, 0.7) 1px,
    rgba(0, 0, 0, 0.9) 1px
  );
  outline: 2px dotted transparent;
  outline-offset: 0px;
  background-size: 40px 40px;
  opacity: 0;
  border-radius: 100%;
  pointer-events: none;
  animation: background 100s linear infinite;
  transition: all 0.3s ease-in-out;
}

#mz-gallery figure:hover img {
  height: calc(100% - 40px);
  filter: brightness(1.5);
  border-radius: 10px;
  outline: 1px solid rgba(255, 255, 255, 0.8);
  outline-offset: 5px;
  transition: all 0.3s ease-in-out;
}

#mz-gallery figure:hover {
  padding: 0px 20px;
}

#mz-gallery figure:hover figcaption {
  opacity: 0.8;
  color: white;
  outline: 1px solid #0077b6;
  outline-offset: -20px;
  text-shadow: 1px 1px 3px black, 0px 0px 5px black;
  transition: all 0.3s ease-in-out;
}

#mz-gallery figure:hover div {
  width: 25%;
  height: 25%;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 1145px) {
  #mz-gallery figure {
    scroll-snap-align: center;
  }

  #mz-gallery {
    scroll-padding: 0px 0px 0px 0px !important;
  }
}

@media (max-width: 610px) {
  #mz-gallery {
    max-height: 320px;
  }

  #mz-gallery figure {
    margin-right: 20px;
  }

  #mz-gallery figure:nth-child(1) {
    margin-left: 20px;
  }
}

@media (max-height: 425px) {
  #mz-gallery figure figcaption {
    font-size: 14pt;
    line-height: 20pt;
  }
}

@media (max-height: 340px) {
  #mz-gallery {
    background-size: 30px 30px;
    scroll-padding: 0 0 0 28px;
  }

  #mz-gallery figure {
    margin-right: 30px;
  }

  #mz-gallery figure:nth-child(1) {
    margin-left: 30px;
  }

  #mz-gallery figure figcaption {
    font-size: 12pt;
    line-height: 18pt;
    font-weight: 400;
    background-size: 30px 30px;
  }
}

@media (max-height: 280px) {
  #mz-gallery::-webkit-scrollbar {
    height: 20px;
  }

  #mz-gallery::-webkit-scrollbar-button:single-button:horizontal:decrement,
  #mz-gallery::-webkit-scrollbar-button:single-button:horizontal:increment {
    width: 80px;
    height: 20px;
    background-size: 15px;
  }
}

@media (max-height: 230px) {
  #mz-gallery figure figcaption {
    font-size: 10pt;
    line-height: 12pt;
  }

  #mz-gallery figure:hover figcaption {
    outline-offset: -10px;
  }

  #mz-gallery figure:hover img {
    outline-offset: 10px;
  }
}

@media (max-height: 165px) {
  #mz-gallery {
    scroll-padding: 0 0 0 18px;
    margin: 0px;
  }

  #mz-gallery figure {
    margin-right: 20px;
  }

  #mz-gallery figure:nth-child(1) {
    margin-left: 20px;
  }
}

/* touch screen devices */

@media (pointer: coarse) {
  #mz-gallery * {
    pointer-events: none;
  }

  #mz-gallery::-webkit-scrollbar {
    height: 35px;
  }

  #mz-gallery {
    scroll-snap-type: unset;
    scroll-padding: unset;
    scroll-behavior: unset;
  }

  #mz-gallery figure {
    scroll-snap-align: unset;
  }

  #mz-gallery figure figcaption {
    width: 100%;
    height: 30%;
    bottom: 0;
    opacity: 1;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    animation: unset;
    border-radius: 0;
    padding: 0px 15px;
    border-top: 1px solid #0077b6;
  }
}

/* Contact Section */
section.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--primary);
  color: var(--white);
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}

.contact-form-wrapper {
  padding: 4rem 3rem;
  background: var(--primary);
  position: relative;
}

.contact-form-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://www.transparenttextures.com/patterns/cubes.png");
  opacity: 0.2;
  pointer-events: none;
}

.contact-form-wrapper h5 {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.contact-form-wrapper h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-control {
  position: relative;
}

.form-control input,
.form-control select,
.form-control textarea {
  width: 100%;
  padding: 0.9rem 1rem 0.9rem 3rem;
  border-radius: 50px;
  border: none;
  outline: none;
  background: var(--white);
  font-size: 0.95rem;
  color: var(--text-dark);
}

.form-control textarea {
  border-radius: var(--radius);
  min-height: 120px;
  resize: none;
}

.form-control i {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  color: var(--text-light);
}

.privacy {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--white);
}

.privacy input {
  accent-color: var(--accent);
  transform: scale(1.2);
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--accent);
  color: var(--text-dark);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 1rem;
}

.btn-submit:hover {
  background: #e29b15;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
  section.contact {
    grid-template-columns: 1fr;
  }
  .contact-image img {
    border-radius: 0;
  }
  .contact-form-wrapper {
    padding: 3rem 1.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Testimonial Section */
.testimonials {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.testimonials p {
  color: #666;
  margin-bottom: 2rem;
}

.slider {
  position: relative;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial {
  min-width: 100%;
  box-sizing: border-box;
  padding: 2rem;
}

.card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  max-width: 700px;
  margin: auto;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.card h3 {
  margin: 0.5rem 0 0;
}

.card span {
  font-size: 0.9rem;
  color: #777;
}

.card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 1rem;
  color: #444;
}

/* Controls */
.controls {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  gap: 1rem;
}

.arrow {
  cursor: pointer;
  font-size: 1.5rem;
  background: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: background 0.3s;
}

.arrow:hover {
  background: #eee;
}

.dots {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #333;
}

@media (max-width: 768px) {
  .card {
    padding: 1.5rem;
  }
}

/* Footer Section */
/* CTA Section */
.cta {
  background: #0a0f1c;
  color: white;
  text-align: center;
  padding: 3rem 1rem;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;  
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fbbf24;
  color: #000;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #f59e0b;
  transform: translateY(-3px);
}

/* Footer */
footer {
  background: #010916;
  color: #ccc;
  padding: 3rem 2rem 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-logo h3 {
  font-size: 1.5rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo p {
  margin: 1rem 0;
  line-height: 1.6;
  font-size: 0.95rem;
  color: #bbb;
}

.social-icons {
  display: flex;
  gap: 0.8rem;
}

.social-icons a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #555;
  border-radius: 50%;
  color: #ccc;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #fbbf24;
  color: #000;
  border-color: #fbbf24;
}

h4 {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 1rem;
}

.footer-links ul,
.footer-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-services li {
  margin: 0.5rem 0;
}

.footer-links a,
.footer-services a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover,
.footer-services a:hover {
  color: #fbbf24;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.instagram-grid img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.instagram-grid img:hover {
  transform: scale(1.05);
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 2rem;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #aaa;
}

.footer-bottom a {
  color: #aaa;
  margin-left: 1rem;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: #fbbf24;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
}

.banner {
      position: relative;
      height: 250px;
      background: url("../Images/banner.png") center/cover no-repeat;
      border-radius: 12px;
      overflow: hidden;
      display: flex;
      align-items: center;
      padding-left: 60px;
      color: #fff;
    }

    .banner::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(13, 17, 23, 0.8); /* dark overlay */
      z-index: 1;
    }

    .banner-content {
      position: relative;
      z-index: 2;
    }

    .banner-content h1 {
      font-size: 36px;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .breadcrumb {
      font-size: 16px;
    }

    .breadcrumb a {
      color: #fff;
      text-decoration: none;
      font-weight: 600;
    }

    .breadcrumb span {
      margin: 0 6px;
      color: #bbb;
    }

    .breadcrumb .active {
      color: #ffb400;
      font-weight: bold;
    }

    @media (max-width: 768px) {
      .banner {
        justify-content: center;
        text-align: center;
        padding: 0 20px;
      }

      .banner-content h1 {
        font-size: 28px;
      }
    }

    body {
      background: #fffaf3;
      color: #222;
      line-height: 1.6;
    }


/* About Section */
    .about-section {
      max-width: 1200px;
      margin: auto;
      padding: 4rem 2rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      align-items: center;
    }

    .about-text h2 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .about-text h2 span {
      color: #f4b400;
        background: linear-gradient(to right, #1e6efc 70%, #f39c12 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .about-text p {
      margin-bottom: 1.5rem;
      color: #555;
    }

    .about-features {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem 2rem;
      margin-bottom: 2rem;
    }

    .about-features div {
      display: flex;
      align-items: center;
      font-size: 0.95rem;
      color: #444;
    }

    .about-features div::before {
      content: "✔";
      color: #f4b400;
      margin-right: 0.5rem;
      font-weight: bold;
    }

    .about-cta-buttons {
      display: flex;
      gap: 1rem;
    }

    .about-btn {
      padding: 0.9rem 1.5rem;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      text-decoration: none;
    }

    .about-btn-outline {
      border: 2px solid #222;
      background: transparent;
      color: #222;
    }

    .about-btn-outline:hover {
      background: #222;
      color: #fff;
    }

    .about-images {
      position: relative;
      display: grid;
      gap: 1rem;
    }

    .about-images img {
      width: 100%;
      border-radius: 12px;
      object-fit: cover;
    }

    .rating {
      position: absolute;
      top: 0.5rem;
      right: -2rem;
      background: white;
      padding: 0.7rem 1rem;
      border-radius: 12px;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .rating span {
      font-size: 0.85rem;
      color: #444;
    }

    .experience {
      position: absolute;
      bottom: -2rem;
      left: -2rem;
      background: white;
      padding: 1rem 1.5rem;
      border-radius: 12px;
      font-weight: 600;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .experience h3 {
      font-size: 2rem;
      color: #ff6a00;
      margin-bottom: 0.2rem;
    }

    @media(max-width: 900px) {
      .about-section {
        grid-template-columns: 1fr;
        text-align: center;
      }
      .features {
        justify-content: center;
      }
      .cta-buttons {
        justify-content: center;
      }
      .about-images {
        justify-items: center;
      }
      .rating, .experience {
        position: static;
        margin-top: 1rem;
      }
    }

    /* Content Section */
    .content-section {
      max-width: 1100px;
      margin: 0 auto;
      padding: 40px 20px;
      display: flex;
      flex-direction: column;
      position: relative;
    }

    .content-container {
      width: 100%;
      z-index: 1;
    }

    .content-container p {
      margin-bottom: 20px;
    }

    .highlight {
      font-weight: bold;
      color: #222;
    }

    .content-image {
      position: absolute;
      bottom: 0;
      right: 0;
      max-width: 300px;
    }

    .content-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    @media (max-width: 768px) {
      .content-image {
        position: relative;
        margin-top: 20px;
        max-width: 100%;
      }
    }

    /* Where We Cover Section */
    .where-we-cover {
      padding: 3rem 1rem;
      max-width: 1200px;
      margin: auto;
    }

    .where-we-cover h2 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 2rem;
      color: #333;
    }

    .where-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 1.5rem;
    }

    .where-card {
      background: white;
      border-radius: 1rem;
      padding: 2rem 1.5rem;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      opacity: 0;
      transform: translateY(20px);
    }

    .where-card.visible {
      opacity: 1;
      transform: translateY(0);
      transition: all 0.6s ease;
    }

    .where-card:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }

    .where-card h3 {
      margin: 0;
      font-size: 1.2rem;
      color: #444;
    }

    /* FAQ Section */
     .faq-section {
      max-width: 900px;
      margin: 50px auto;
      padding: 20px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .faq-section h1 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 30px;
      color: #004080;
    }

    .faq-item {
      border-bottom: 1px solid #ddd;
      padding: 15px 0;
    }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-weight: 600;
      font-size: 1.1rem;
      color: #222;
      transition: color 0.3s ease;
    }

    .faq-question:hover {
      color: #004080;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 0.95rem;
      color: #555;
      margin-top: 10px;
    }

    .faq-answer.active {
      max-height: 500px;
      opacity: 1;
    }

    .icon {
      font-size: 1.3rem;
      transition: transform 0.3s ease;
    }

    .icon.rotate {
      transform: rotate(45deg);
      color: #004080;
    }

    .map-container {
    width: 100%;
    height: 500px; /* You can change the height */
    overflow: hidden;
  }

  .map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }