html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
}

:root {
  --primary-color: #00BFFF;
}

/* Common hover effect */
.hover-card {
  transition: all 0.3s ease;
}

.hover-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Common button style */
.btn-primary-custom {
  background-color: var(--primary-color);
  border: none;
  color: white;
}

.btn-primary-custom:hover {
  background-color: #009acd;
}

/* NAVBAR */
.navbar {
  padding: 12px 0;
}

.logo-circle {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  transition: 0.3s;
}

.logo-circle:hover {
  transform: rotate(10deg) scale(1.05);
}

/* Menu links */
.nav-link {
  color: #333 !important;
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  transition: 0.3s;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

/* Underline hover effect */
.nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: var(--primary-color);
  left: 0;
  bottom: -4px;
  transition: 0.3s;
}

.nav-link:hover::after,
.active-link::after {
  width: 100%;
}

/* Order button */
.order-btn {
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.order-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 191, 255, 0.3);
}

/* Space for fixed navbar */
body {
  padding-top: 80px;
}

/* Logo Image */
.logo-img {
  height: 45px;
  width: auto;
  transition: 0.3s ease;
}

/* Logo hover animation */
.logo-img:hover {
  transform: scale(1.1) rotate(-2deg);
}

/* Navbar brand text */
.navbar-brand strong {
  font-size: 18px;
  color: #000;
}

.navbar-brand small {
  font-size: 12px;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;

  display: flex;
  align-items: center;
  /* vertical center */
  justify-content: center;
  /* horizontal center */
}

/* IMAGE LAYER */
.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* DARK BLUE OVERLAY */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 18, 36, 0.75);
  /* dark blue */
  z-index: 2;
}

/* TEXT + BUTTONS */
.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  max-width: 900px;
}

/* HEADING */
.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 700;
}

.hero-content h1 span {
  color: var(--primary-color);
}

/* PARAGRAPH */
.hero-content p {
  color: #ddd;
  margin: 20px 0 30px;
  font-size: 1.5rem;
}

/* BUTTON EFFECT */
.hero-buttons .btn {
  padding: 12px 28px;
  border-radius: 30px;
  transition: 0.3s ease;
}

.hero-buttons .btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 191, 255, 0.3);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
}

/* ABOUT INTRO SECTION */
.about-intro-section {
  padding: 80px 0;
  background-color: #fff;
}

/* Heading */
.about-intro-section h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-intro-section h2 span {
  color: var(--primary-color);
}

/* Paragraph */
.about-intro-section p {
  font-size: 1.3rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Link */
.about-link {
  font-size: 1.3rem;
  display: inline-block;
  margin-top: 10px;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.about-link:hover {
  transform: translateX(5px);
  text-decoration: underline;
}

/* Image */
.about-img {
  max-width: 100%;
  border-radius: 20px;
  transition: 0.3s ease;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Hover effect on image */
.about-img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 191, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .about-intro-section h2 {
    font-size: 2rem;
    text-align: center;
  }

  .about-intro-section p,
  .about-link {
    text-align: center;
  }

  .about-img {
    margin-top: 30px;
  }
}

/* MY USP */
/* USP SECTION */
.usp-section {
  padding: 80px 0;
  background: #f8fbff;
}

/* Heading */
.usp-title {
  font-size: 2.8rem;
  font-weight: 700;
}

.usp-title span {
  color: var(--primary-color);
}

.usp-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-top: 10px;
}

/* Card */
.usp-card {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  text-align: center;
  height: 100%;
  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

/* Image */
.usp-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
  transition: 0.35s ease;
}

/* CLEAN HOVER (NO DARK OVERLAY) */
.usp-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(81, 201, 241, 0.25);
}

/* Smooth image zoom (premium feel) */
.usp-card:hover .usp-img {
  transform: scale(1.05);
}

/* Text */
.usp-card h4 {
  font-weight: 700;
  margin-top: 10px;
}

.usp-card p {
  color: #6c757d;
  font-size: 15px;
}

/* Premium border glow (subtle, not heavy) */
.usp-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 2px solid transparent;
  /* background: linear-gradient(120deg, transparent,white, transparent) border-box; */
  opacity: 0;
  transition: 0.35s ease;
}

.usp-card:hover::before {
  opacity: 0.6;
  /* reduced for subtle effect */
}

/* REMOVE OVERLAY COMPLETELY */
.usp-card::after {
  display: none;
}

/* Responsive */
@media (max-width:768px) {
  .usp-title {
    font-size: 2rem;
  }
}

/* Strip Bar */

.stats-section {
  background: #00BFFF;
  padding: 80px 0;
}

.stats-section h2 {
  font-size: 56px;
  font-weight: 800;
  color: white;
}

.stats-section h2 span {
  color: #ffffff !important;
}

.stats-section p {
  font-size: 20px;
  color: white;
  margin-top: 6px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .stats-section h2 {
    font-size: 40px;
  }

  .stats-section p {
    font-size: 16px;
  }
}

/* why choose us */
.why-choose {
  padding: 100px 0;
  background: #ffffff;
}

/* IMAGE */
.why-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.why-image img:hover {
  transform: scale(1.03);
}

/* CONTENT */
.why-content h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 25px;
  color: #111;
}

.why-content h2 span {
  color: #00aaff;
}

/* LIST */
.why-list {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.why-list li {
  font-size: 18px;
  margin-bottom: 16px;
  padding-left: 35px;
  position: relative;
  color: #333;
  line-height: 1.6;
}

/* TICK MARK */
.why-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #00aaff;
  font-weight: bold;
  font-size: 18px;
}

/* BUTTON */
.why-btn {
  display: inline-block;
  background: linear-gradient(90deg, #008cff, #00c3ff);
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.why-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 136, 255, 0.4);
}

/* Footer */

/* CTA SECTION */
.cta-section {
  background: #0f2a3d;
  color: #fff;
  padding: 90px 15px;
}

.cta-section h1 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 22px;
  max-width: 800px;
  margin: auto;
  margin-bottom: 35px;
  color: #dbefff;
}

.cta-buttons .btn {
  font-size: 18px;
  padding: 14px 32px;
  border-radius: 10px;
  margin: 5px;
}

.cta-buttons .btn-primary {
  background: #00bfff;
  border: none;
}

.cta-buttons .btn-primary:hover {
  background: #009acd;
}

.cta-buttons .btn-light {
  color: #0f2a3d;
  font-weight: 600;
}

/* Floating call */
/* WHATSAPP FLOATING BUTTON */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 65px;
  height: 65px;
  background: #25D366;
  /* WhatsApp Green */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Hover Effect */
.floating-whatsapp:hover {
  transform: translateY(-5px) scale(1.05);
  background: #1ebe5d;
}

/* Notification Badge */
.wa-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 14px;
  height: 14px;
  background: red;
  border-radius: 50%;
  border: 2px solid white;
  animation: ping 1.5s infinite;
}

/* Ping Animation */
@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  70% {
    transform: scale(1.6);
    opacity: 0.4;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}


/* FOOTER */
.footer-section {
  background: #122f43;
  color: #ffffff;
  padding: 70px 0 30px;
  margin-bottom: 0 !important;
  padding-bottom: 30px;
  /* keep nice spacing */

}

.footer-section h3 {
  font-size: 28px;
  font-weight: 700;
}

.footer-section h4 {
  font-size: 22px;
  margin-bottom: 15px;
}

.footer-section p {
  font-size: 17px;
  color: #cfe9ff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  font-size: 17px;
  margin-bottom: 8px;
  color: #cfe9ff;
}

.footer-section ul li a {
  color: #cfe9ff;
  text-decoration: none;
}

.footer-section ul li a:hover {
  color: #00bfff;
}

.footer-bottom {
  font-size: 16px;
  color: #cfe9ff;
  margin-bottom: 0 !important;
  padding-bottom: 0;
}

.footer-section hr {
  margin-bottom: 10px;
}