/* ================= ROOT COLORS ================= */
:root {
  --bg-dark: #000000;
  --cyan: #22f5e2;
  --white: #ffffff;
  --gray: #cccccc;
}

/* ================= GLOBAL ================= */
body {
  background: var(--bg-dark);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
}



/* ================= HEADER ================= */
.am-header{
  position: relative;
  z-index: 999;
}
/* =========================
   STICKY NAVBAR FIX
========================= */

/* Sticky Navbar */
.am-navbar {
  position: fixed;           /* REQUIRED */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;             /* Always on top */
  transition: all 0.3s ease;
}


/* =========================
   BLUE GLOW NAVBAR EFFECT
   SAME CLASSES
========================= */

/* Navbar background with blue effect */
.am-navbar {
  background: linear-gradient(
    180deg,
    rgba(0, 40, 80, 0.85),
    rgba(0, 0, 0, 0.85)
  );
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(34, 245, 226, 0.25);
  box-shadow:
    0 0 25px rgba(0, 170, 255, 0.35),
    inset 0 0 30px rgba(0, 170, 255, 0.15);
  transition: all 0.4s ease;
}



/* Nav links glow */
.am-navbar .nav-link {
  text-shadow: 0 0 8px rgba(0, 170, 255, 0.35);
}

/* Active underline brighter */
.am-navbar .nav-link::after {
  background: #22f5e2;
  box-shadow: 0 0 12px #22f5e2;
}

/* Call button blue glow */
.am-call-btn {
  box-shadow:
    0 0 20px rgba(0, 200, 255, 0.8),
    inset 0 0 10px rgba(255,255,255,0.3);
}

/* ================= NAVBAR ================= */
.am-navbar{
  background: var(--glass);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 14px 0;
  transition: 0.3s ease;
}

/* LOGO TEXT */
.brand-text{
  color: var(--white);
  font-weight: 600;
  letter-spacing: 1px;
}

/* NAV LINKS */
.am-navbar .nav-link{
  color: var(--white);
  margin: 0 14px;
  position: relative;
  font-weight: 500;
  padding: 5px 0;
}

/* UNDERLINE EFFECT */
.am-navbar .nav-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  transition: 0.4s ease;
}

/* HOVER + ACTIVE */
.navbar-expand-lg .navbar-nav .nav-link{
color: #ffffff !important;
}
.am-navbar .nav-link:hover::after,
.am-navbar .nav-link.active::after{
  width:100%;
  
}

.am-navbar .nav-link:hover{
  color: var(--cyan) !important;
}

/* CALL BUTTON */
.am-call-btn{
  background: var(--cyan);
  color:#000;
  border-radius:30px;
  padding:8px 22px;
  font-weight:600;
  transition:0.3s ease;
  box-shadow:0 0 15px rgba(34,245,226,0.6);
}

.am-call-btn:hover{
  background:#fff;
  color:#000;
}

/* =========================
   SUPER MOBILE NAV DESIGN
   (Same Classes Used)
========================= */

@media (max-width: 991px) {

  /* Navbar background expands */
  .am-navbar {
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(12px);
  }

  /* Mobile menu container */
  .navbar-collapse {
    margin-top: 15px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    animation: slideDown 0.4s ease;
  }

  /* Center nav items */
  .am-navbar .navbar-nav {
    width: 100%;
    text-align: center;
  }

  /* Big clickable links */
  .am-navbar .nav-link {
    font-size: 20px;
    padding: 12px 0;
    margin: 8px 0;
    display: inline-block;
  }

  /* Strong underline */
  .am-navbar .nav-link::after {
    bottom: -4px;
    height: 3px;
  }

  /* Call button mobile */
  .am-call-btn {
    display: block;
    width: 80%;
    margin: 18px auto 0 auto;
    font-size: 18px;
    padding: 12px 0;
    box-shadow: 0 0 20px rgba(34,245,226,0.8);
  }
}

/* Slide Animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




/* ================= HERO SLIDER ================= */

.am-hero-slider {
  margin-top: 80px; /* space for navbar */
}

.hero-slide {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* IMAGE */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* DARK + BLUE OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.85)
  );
  z-index: 1;
  opacity: .50;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  color: #fff;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 0 25px rgba(0, 170, 255, 0.6);
}

.hero-content p {
  font-size: 18px;
  color: #ddd;
  margin-bottom: 25px;
}

/* BUTTONS */
.hero-btn-primary {
  background: #22f5e2;
  color: #000;
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: 600;
  margin-right: 10px;
}

.hero-btn-outline {
  border: 2px solid #22f5e2;
  color: #22f5e2;
  border-radius: 30px;
  padding: 12px 30px;
}

/* CONTROLS */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: drop-shadow(0 0 10px #22f5e2);
}

/* DOTS */
.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #22f5e2;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-content {
    text-align: center;
    margin: auto;
  }

  .hero-content h1 {
    font-size: 34px;
  }
}


/* ================= ABOUT PREVIEW ================= */

.am-about-preview {
  background: radial-gradient(circle at top, #050b14, #000);
  padding: 90px 0;
  color: #fff;
}

/* Image */
.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  border: 3px solid rgba(34,245,226,0.3);
  box-shadow: 0 0 35px rgba(0,170,255,0.3);
}

/* Experience Badge */
.experience-badge {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: #22f5e2;
  color: #000;
  padding: 14px 18px;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 0 25px rgba(34,245,226,0.8);
}

.experience-badge span {
  font-size: 28px;
  display: block;
}

.experience-badge small {
  font-size: 12px;
}

/* Content */
.about-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-line {
  width: 90px;
  height: 4px;
  background: #22f5e2;
  margin-bottom: 20px;
  box-shadow: 0 0 15px #22f5e2;
}

.about-text {
  color: #cfcfcf;
  line-height: 1.8;
  font-size: 16px;
}

/* Button */
.about-btn {
  background: transparent;
  border: 2px solid #22f5e2;
  color: #22f5e2;
  border-radius: 30px;
  padding: 10px 28px;
  transition: 0.3s ease;
}

.about-btn:hover {
  background: #22f5e2;
  color: #000;
}

/* Mobile */
@media (max-width: 768px) {
  .about-title {
    font-size: 32px;
  }
  .experience-badge {
    left: 50%;
    transform: translateX(-50%);
  }

  /* Navbar background with blue effect */
.am-navbar {
  background: transparent
  ;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(34, 245, 226, 0.25);
  box-shadow:
    0 0 25px rgba(0, 170, 255, 0.35),
    inset 0 0 30px rgba(0, 170, 255, 0.15);
  transition: all 0.4s ease;
}

}



/* ================= SERVICES PREVIEW ================= */

.am-services-preview {
  background: #000;
  padding: 100px 0;
  color: #fff;
}

/* Heading */
.services-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
}

.services-line {
  width: 90px;
  height: 4px;
  background: #22f5e2;
  margin: 12px auto 18px;
  box-shadow: 0 0 15px #22f5e2;
}

.services-subtext {
  color: #bfbfbf;
  font-size: 16px;
}

/* Card */
.service-card {
  background: linear-gradient(180deg, #0a0f1f, #000);
  padding: 40px 30px;
  border-radius: 18px;
  text-align: center;
  border: 1px solid rgba(34,245,226,0.2);
  transition: 0.35s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 0 30px rgba(0,170,255,0.6);
  border-color: #22f5e2;
}

/* Icon */
.service-card i {
  font-size: 38px;
  color: #22f5e2;
  margin-bottom: 15px;
  display: inline-block;
  text-shadow: 0 0 15px #22f5e2;
}

/* Text */
.service-card h4 {
  font-size: 22px;
  margin-bottom: 10px;
}

.service-card p {
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.7;
}

/* Mobile */
@media (max-width: 768px) {
  .services-title {
    font-size: 32px;
  }
}


/* ================= WHY CHOOSE US ================= */

.am-why-choose {
  background: radial-gradient(circle at top, #050b14, #000);
  padding: 100px 0;
  color: #fff;
}

/* Heading */
.why-title {
  font-size: 42px;
  font-weight: 700;
}

.why-line {
  width: 90px;
  height: 4px;
  background: #22f5e2;
  margin: 12px auto 18px;
  box-shadow: 0 0 15px #22f5e2;
}

.why-subtext {
  color: #bfbfbf;
  font-size: 16px;
}

/* Card */
.why-card {
  background: linear-gradient(180deg, #0a0f1f, #000);
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  border: 1px solid rgba(34,245,226,0.25);
  transition: 0.35s ease;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(0,170,255,0.6);
  border-color: #22f5e2;
}

/* Icon */
.why-card i {
  font-size: 36px;
  color: #22f5e2;
  margin-bottom: 15px;
  display: inline-block;
  text-shadow: 0 0 15px #22f5e2;
}

/* Text */
.why-card h5 {
  font-size: 20px;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 15px;
  color: #cfcfcf;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
  .why-title {
    font-size: 32px;
  }
}


/* ================= PARALLAX SECTION ================= */

.am-parallax-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: url("../img/bg1.webp") center/cover no-repeat fixed;
  overflow: hidden;
}

/* Dark + Blue overlay */
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.9)
  );
  z-index: 1;
}

/* Content */
.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 700px;
  margin: auto;
}

.parallax-content h2 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 0 25px rgba(0, 170, 255, 0.6);
}

.parallax-content p {
  font-size: 18px;
  color: #dcdcdc;
  margin-bottom: 25px;
  line-height: 1.7;
}

/* Button */
.parallax-btn {
  background: #22f5e2;
  color: #000;
  border-radius: 30px;
  padding: 12px 32px;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(34,245,226,0.8);
  transition: 0.3s ease;
}

.parallax-btn:hover {
  background: #fff;
  color: #000;
}

/* MOBILE FIX (disable fixed for smoothness) */
@media (max-width: 768px) {
  .am-parallax-section {
   
    min-height: 60vh;
  }

  .parallax-content h2 {
    font-size: 30px;
  }
}


/* ================= GALLERY SECTION ================= */

.am-gallery-section {
  background: #000;
  padding: 100px 0;
  color: #fff;
}

/* Heading */
.gallery-title {
  font-size: 42px;
  font-weight: 700;
}

.gallery-line {
  width: 90px;
  height: 4px;
  background: #22f5e2;
  margin: 12px auto 18px;
  box-shadow: 0 0 15px #22f5e2;
}

.gallery-subtext {
  color: #bfbfbf;
  font-size: 16px;
}

/* Gallery Item */
.gallery-item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(34,245,226,0.2);
  transition: 0.4s ease;
}

.gallery-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: 0.4s ease;
}

/* Hover Effects */
.gallery-item::after {
  content: "+";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  color: #22f5e2;
  font-size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.12);
}

.gallery-item:hover {
  box-shadow: 0 0 30px rgba(0,170,255,0.6);
  border-color: #22f5e2;
}

/* Mobile */
@media (max-width: 768px) {
  .gallery-title {
    font-size: 32px;
  }
  .gallery-item img {
    height: 160px;
  }
}


/* ================= TESTIMONIALS ================= */

.am-testimonials {
  background: radial-gradient(circle at top, #050b14, #000);
  padding: 100px 0;
  color: #fff;
}

/* Heading */
.testi-title {
  font-size: 42px;
  font-weight: 700;
}

.testi-line {
  width: 90px;
  height: 4px;
  background: #22f5e2;
  margin: 12px auto 18px;
  box-shadow: 0 0 15px #22f5e2;
}

.testi-subtext {
  color: #bfbfbf;
  font-size: 16px;
}

/* Card */
.testi-card {
  background: linear-gradient(180deg, #0a0f1f, #000);
  border-radius: 20px;
  padding: 45px 35px;
  text-align: center;
  border: 1px solid rgba(34,245,226,0.3);
  box-shadow: 0 0 30px rgba(0,170,255,0.3);
  position: relative;
}

/* Quote Icon */
.testi-card i {
  font-size: 40px;
  color: #22f5e2;
  margin-bottom: 15px;
  display: inline-block;
  text-shadow: 0 0 15px #22f5e2;
}

/* Text */
.testi-card p {
  color: #e0e0e0;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testi-card h5 {
  font-size: 20px;
  margin-bottom: 4px;
}

.testi-card span {
  color: #22f5e2;
  font-size: 14px;
}

/* Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: drop-shadow(0 0 10px #22f5e2);
}

/* Indicators */
.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #22f5e2;
}

/* Mobile */
@media (max-width: 768px) {
  .testi-title {
    font-size: 32px;
  }

  .testi-card {
    padding: 35px 25px;
  }
}


/* ================= FOOTER ================= */

.am-footer {
  background: radial-gradient(circle at top, #050b14, #000);
  color: #cfcfcf;
  padding: 80px 0 0;
}

/* Logo */
.footer-logo {
  height: 80px;
}

/* About */
.footer-about {
  font-size: 15px;
  line-height: 1.8;
  color: #bfbfbf;
}

/* Titles */
.footer-title {
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #22f5e2;
  position: absolute;
  left: 0;
  bottom: -8px;
  box-shadow: 0 0 10px #22f5e2;
}

/* Links */
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
  font-size: 15px;
}

.footer-links a,
.footer-contact a {
  color: #cfcfcf;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #22f5e2;
}

/* Contact Icons */
.footer-contact i {
  color: #22f5e2;
  margin-right: 8px;
}

/* Social */
.footer-social a {
  width: 42px;
  height: 42px;
  background: #0a0f1f;
  color: #22f5e2;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 18px;
  transition: 0.3s ease;
  box-shadow: 0 0 15px rgba(34,245,226,0.4);
}

.footer-social a:hover {
  background: #22f5e2;
  color: #000;
}

/* Bottom Bar */
.footer-bottom {
  margin-top: 60px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #bfbfbf;
}

.footer-bottom a {
  color: #22f5e2;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-logo {
    height: 60px;
  }
}



/* ================= ABOUT PAGE PARALLAX ================= */

.am-about-parallax {
  position: relative;
  height: 60vh;
  background: url("../img/bg3.jpg") center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Overlay */
.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.9)
  );
  z-index: 1;
}

/* Content */
.about-parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.about-parallax-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 0 25px rgba(0,170,255,0.6);
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  justify-content: center;
}

.breadcrumb-item a {
  color: #22f5e2;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #ccc;
}

/* Mobile fix */
@media (max-width: 768px) {
  .am-about-parallax {
    
    height: 50vh;
  }

  .about-parallax-content h1 {
    font-size: 32px;
  }
}


/* ================= ABOUT CONTENT ================= */

.am-about-content {
  background: #000;
  padding: 100px 0;
  color: #fff;
}

/* Image Box */
.about-img-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 35px rgba(0,170,255,0.3);
}

.about-img-box img {
  width: 100%;
}

/* Experience Badge */
.about-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #22f5e2;
  color: #000;
  padding: 14px 18px;
  border-radius: 14px;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 0 25px rgba(34,245,226,0.9);
}

.about-badge span {
  font-size: 28px;
  display: block;
}

.about-badge small {
  font-size: 12px;
}

/* Content */
.about-content-title {
  font-size: 42px;
  font-weight: 700;
}

.about-content-line {
  width: 90px;
  height: 4px;
  background: #22f5e2;
  margin: 12px 0 20px;
  box-shadow: 0 0 15px #22f5e2;
}

.about-content-text {
  color: #cfcfcf;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Button */
.about-content-btn {
  border: 2px solid #22f5e2;
  color: #22f5e2;
  border-radius: 30px;
  padding: 10px 30px;
  transition: 0.3s ease;
}

.about-content-btn:hover {
  background: #22f5e2;
  color: #000;
}

/* Mobile */
@media (max-width: 768px) {
  .about-content-title {
    font-size: 32px;
  }

  .about-badge {
    left: 50%;
    transform: translateX(-50%);
  }
}


/* ================= MISSION & VISION ================= */

.am-mission-vision {
  background: radial-gradient(circle at top, #050b14, #000);
  padding: 100px 0;
  color: #fff;
}

/* Heading */
.mv-title {
  font-size: 42px;
  font-weight: 700;
}

.mv-line {
  width: 90px;
  height: 4px;
  background: #22f5e2;
  margin: 12px auto 18px;
  box-shadow: 0 0 15px #22f5e2;
}

.mv-subtext {
  color: #bfbfbf;
  font-size: 16px;
}

/* Card */
.mv-card {
  background: linear-gradient(180deg, #0a0f1f, #000);
  padding: 45px 35px;
  border-radius: 20px;
  border: 1px solid rgba(34,245,226,0.3);
  text-align: center;
  transition: 0.35s ease;
  height: 100%;
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 35px rgba(0,170,255,0.6);
  border-color: #22f5e2;
}

/* Icon */
.mv-icon {
  width: 75px;
  height: 75px;
  background: #22f5e2;
  color: #000;
  border-radius: 50%;
  font-size: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 20px rgba(34,245,226,0.8);
}

/* Text */
.mv-card h4 {
  font-size: 22px;
  margin-bottom: 12px;
}

.mv-card p {
  color: #dcdcdc;
  font-size: 16px;
  line-height: 1.7;
}

/* Mobile */
@media (max-width: 768px) {
  .mv-title {
    font-size: 32px;
  }

  .mv-card {
    padding: 35px 25px;
  }
}



/* ================= ALL SERVICES ================= */

.am-services-cards {
  background: radial-gradient(circle at top, #050b14, #000);
  padding: 100px 0;
  color: #fff;
}

/* Heading */
.services-cards-title {
  font-size: 42px;
  font-weight: 700;
}

.services-cards-line {
  width: 90px;
  height: 4px;
  background: #22f5e2;
  margin: 12px auto 18px;
  box-shadow: 0 0 15px #22f5e2;
}

.services-cards-subtext {
  color: #bfbfbf;
  font-size: 16px;
}

/* Card */
.service-card-box {
  background: linear-gradient(180deg, #0a0f1f, #000);
  border-radius: 18px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(34,245,226,0.25);
  transition: 0.35s ease;
  height: 100%;
}

.service-card-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 0 35px rgba(0,170,255,0.6);
  border-color: #22f5e2;
}

/* Icon */
.service-card-box i {
  font-size: 38px;
  color: #22f5e2;
  margin-bottom: 15px;
  display: inline-block;
  text-shadow: 0 0 15px #22f5e2;
}

/* Text */
.service-card-box h4 {
  font-size: 22px;
  margin-bottom: 10px;
}

.service-card-box p {
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.7;
}

/* Mobile */
@media (max-width: 768px) {
  .services-cards-title {
    font-size: 32px;
  }
}


/* ================= SUPER GALLERY ================= */

.am-super-gallery {
  background: radial-gradient(circle at top, #050b14, #000);
  padding: 120px 0;
  color: #fff;
}

/* Heading */
.super-gallery-title {
  font-size: 44px;
  font-weight: 700;
}

.super-gallery-line {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #22f5e2, #00aaff);
  margin: 12px auto 18px;
  box-shadow: 0 0 25px #22f5e2;
}

.super-gallery-subtext {
  color: #bfbfbf;
  font-size: 16px;
}

/* Card */
.super-gallery-card {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border: 2px solid transparent;
  transition: all 0.45s ease;
}

/* Gradient Border */
.super-gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #22f5e2, #00aaff);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* Image */
.super-gallery-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.6s ease;
}

/* Overlay */
.super-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.2),
    rgba(0,0,0,0.85)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.5s ease;
}

.super-overlay i {
  font-size: 40px;
  color: #22f5e2;
  text-shadow: 0 0 20px #22f5e2;
}

/* Hover Effects */
.super-gallery-card:hover img {
  transform: scale(1.18) rotate(1deg);
}

.super-gallery-card:hover .super-overlay {
  opacity: 1;
}

.super-gallery-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 0 45px rgba(0,170,255,0.8);
}

/* Mobile */
@media (max-width: 768px) {
  .super-gallery-title {
    font-size: 32px;
  }

  .super-gallery-card img {
    height: 160px;
  }
}



/* ================= CONTACT SECTION ================= */

.am-contact-section {
  background: radial-gradient(circle at top, #050b14, #000);
  padding: 100px 0;
  color: #fff;
}

/* Box */
.contact-box {
  background: linear-gradient(180deg, #0a0f1f, #000);
  border-radius: 20px;
  padding: 35px 25px;
  height: 100%;
  border: 1px solid rgba(34,245,226,0.3);
  box-shadow: 0 0 30px rgba(0,170,255,0.3);
}

.contact-box h4 {
  margin-bottom: 20px;
  font-size: 22px;
}

/* Info */
.contact-info {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 15px;
  color: #cfcfcf;
  font-size: 15px;
}

.contact-info i {
  color: #22f5e2;
  margin-right: 10px;
}

.contact-info a {
  color: #cfcfcf;
  text-decoration: none;
}

.contact-info a:hover {
  color: #22f5e2;
}

/* Social */
.contact-social a {
  width: 42px;
  height: 42px;
  background: #0a0f1f;
  color: #22f5e2;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 18px;
  transition: 0.3s;
}

.contact-social a:hover {
  background: #22f5e2;
  color: #000;
}

/* Form */
.form-control {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
}

.form-control::placeholder {
  color: #aaa;
}

.form-control:focus {
  background: transparent;
  color: #fff;
  border-color: #22f5e2;
  box-shadow: none;
}

/* Button */
.contact-btn {
  background: #22f5e2;
  color: #000;
  border-radius: 30px;
  padding: 10px;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(34,245,226,0.7);
}

.contact-btn:hover {
  background: #fff;
}

/* Map */
.map-box {
  padding: 0;
  overflow: hidden;
}

.map-box iframe {
  border-radius: 20px;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-box {
    margin-bottom: 20px;
  }
}



/* ================= WHATSAPP FLOAT ================= */

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  z-index: 9999;
  box-shadow:
    0 0 20px rgba(37, 211, 102, 0.6),
    0 0 40px rgba(37, 211, 102, 0.4);
  animation: wa-float 3s ease-in-out infinite;
  text-decoration: none;
}

/* Pulse ring */
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.6);
  animation: wa-pulse 2s infinite;
}

/* Icon */
.whatsapp-float i {
  z-index: 2;
}

/* Hover */
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow:
    0 0 30px rgba(37, 211, 102, 0.9),
    0 0 60px rgba(37, 211, 102, 0.6);
}

/* Tooltip */
.wa-tooltip {
  position: absolute;
  right: 75px;
  background: #111;
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
}

/* Floating Animation */
@keyframes wa-float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* Pulse Animation */
@keyframes wa-pulse {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* Mobile Adjust */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    font-size: 28px;
    bottom: 20px;
    right: 20px;
  }

  .wa-tooltip {
    display: none;
  }
}


/* ================= ALT SCROLL TO TOP ================= */

#scrollTopBtn {
  position: fixed;
  bottom: 90px;
  right: 28px;
  width: 52px;
  height: 52px;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;

  color: #22f5e2;
  font-size: 24px;

  display: none;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  z-index: 9999;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.6),
    inset 0 0 0 rgba(34,245,226,0);

  transition: 
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

/* Icon */
#scrollTopBtn i {
  transition: transform 0.35s ease;
}

/* Hover Effect */
#scrollTopBtn:hover {
  background: rgba(34,245,226,0.15);
  box-shadow:
    0 15px 40px rgba(34,245,226,0.35);
  transform: translateY(-4px);
}

#scrollTopBtn:hover i {
  transform: translateY(-2px);
}

/* Show animation */
#scrollTopBtn.show {
  display: flex;
  animation: slideInUp 0.4s ease forwards;
}

/* Slide animation */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  #scrollTopBtn {
    width: 46px;
    height: 46px;
    right: 20px;
    bottom: 85px;
    font-size: 22px;
  }
}
