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;
}

/* ABOUT HERO SECTION */

.about-hero {
  background: linear-gradient(90deg, #009fd9, #00bfff);
  padding: 65px 20px 90px;
  color: white;
  text-align: center;
}

.about-hero h1 {
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-hero h1 span {
  color: #eaf9ff;
}

.about-hero p {
  font-size: 25px;
  max-width: 750px;
  margin: auto;
  color: #e6f8ff;
}

@media (max-width:768px) {

  .about-hero {
    padding: 100px 20px 70px;
  }

  .about-hero h1 {
    font-size: 38px;
  }

  .about-hero p {
    font-size: 18px;
  }

}

/* OUR STORY SECTION */

.our-story-section {
  padding: 100px 6%;
  background: #ffffff;
}

.story-title {
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #0b1f3a;
}

.story-title span {
  color: #19a7d8;
}

.story-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #4a5a6a;
  margin-bottom: 22px;
  max-width: 650px;
  text-align: justify;
}

.story-image {
  text-align: center;
}

.story-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* MOBILE */

@media (max-width:991px) {

  .story-title {
    font-size: 42px;
  }

  .story-text {
    margin-bottom: 40px;
  }

  .story-text p {
    font-size: 18px;
  }

}

/* MISSION VISION SECTION */

.mission-vision-section {
  padding: 80px 6%;
  background: #f8fbff;
}

/* CARD */

.mission-card {
  background: #ffffff;
  padding: 45px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  height: 100%;
}

/* HOVER EFFECT (CARD COMES OUT) */

.mission-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* ICON */

.icon-box {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1da9d8, #0d6efd);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.icon-box i {
  font-size: 30px;
  color: #ffffff;
}

/* TITLE */

.mission-card h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #0b1f3a;
}

/* TEXT */

.mission-card p {
  font-size: 18px;
  line-height: 1.7;
  color: #4a5a6a;
  text-align: justify;
}

/* RESPONSIVE */

@media (max-width:991px) {

  .mission-card {
    padding: 35px;
  }

  .mission-card h3 {
    font-size: 26px;
  }

  .mission-card p {
    font-size: 17px;
  }

}

/* indiamap-section */

.india-map-section {
    padding: 80px 0;
}
/* MAP LEFT SIDE CONTENT */

/* LEFT TEXT */
.presence-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
}

.presence-text h2 span {
    color: var(--primary-color);
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    margin: 15px 0 25px;
}

/* POINTS */
.presence-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    transition: 0.3s;
}

.point i {
    color: var(--primary-color);
    font-size: 18px;
    background: rgba(0,191,255,0.1);
    padding: 10px;
    border-radius: 10px;
}

.point:hover {
    transform: translateX(6px);
    color: var(--primary-color);
}

/* 🔥 STATS SECTION */
.presence-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-box {
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    min-width: 110px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.stat-box h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
}

.stat-box p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.stat-box:hover {
    transform: translateY(-5px);
}

/* MOBILE */
@media (max-width:768px) {
    .presence-text {
        text-align: center;
    }

    .presence-stats {
        justify-content: center;
    }
}


/* MAP */
.map-container {
    position: relative;
}

.india-map {
    width: 100%;
    max-width: 500px;   /* control size */
    height: auto;
    display: block;
    margin: auto;
}

/* STATES */
.state {
    fill: #cfe9ff;
    stroke: #ffffff;
    stroke-width: 1;
    cursor: pointer;

    transition: all 0.3s ease;

    transform-box: fill-box;     /* 🔥 REQUIRED */
    transform-origin: center;    /* 🔥 REQUIRED */
}

.map-container {
    width: 100%;
    overflow: hidden;
}

/* HOVER */
.state:hover {
    fill: #00bfff;
    transform: scale(1.08);
}

/* AUTO ACTIVE STATE */
.state.active {
    fill: #00bfff;
    transform: scale(1.08) translateY(-3px);
}

/* TOOLTIP */
#mapTooltip {
    position: absolute;
    background: #0d6efd;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    pointer-events: none;
    opacity: 0;
    transition: 0.2s;
    z-index: 10;
}

/* MAP SECTION LAYOUT */
.map-wrapper {
    width: 100%;
    max-width: 550px;   /* control final size */
    margin-left: auto;  /* push to right side */
}

/* SVG FIX */
.map-wrapper svg {
    width: 100%;
    height: auto;
    display: block;
}

/* FIX CROPPING ISSUE */
.map-wrapper svg {
    viewBox:0 0 900 1000; /* 🔥 adjust if needed */
}

.presence-section .row {
    align-items: center;
}

/* Left text spacing */
.presence-text {
    padding-right: 40px;
}

/* Right map fix */
.map-wrapper {
    display: flex;
    justify-content: center;
}

@media (max-width:768px) {
    .map-wrapper {
        max-width: 100%;
        margin-top: 30px;
    }
}

/* leader section */

/* SECTION */
.leadership-section {
  padding: 100px 0;
  background: #f4f7fb;
  /* light background */
}

/* HEADING */
.leadership-title {
  font-size: 48px;
  font-weight: 800;
  color: #111;
}

.leadership-title span {
  color: #00bfff;
}

/* CARD */
.leadership-card {
  background: #ffffff;
  border-radius: 25px;
  padding: 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

/* HOVER EFFECT (same style as USP) */
.leadership-card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 25px 60px rgba(0, 191, 255, 0.25);
}

/* IMAGE */
.leader-img {
  width: 100%;
  max-width: 220px;
  /* controls size */
  height: 220px;
  /* fixed height for clean look */
  object-fit: cover;
  /* crop nicely */
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  transition: 0.4s ease;
}

/* Center image nicely */
.leader-img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.leadership-card:hover .leader-img {
  transform: scale(1.05);
}

/* NAME */
.leader-name {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 5px;
}

/* ROLE */
.leader-role {
  font-size: 20px;
  color: #00bfff;
  font-weight: 600;
  margin-bottom: 20px;
}

/* TEXT */
.leadership-card p {
  font-size: 18px;
  color: #444;
  line-height: 1.7;
}

/* MOBILE */
@media (max-width: 768px) {
  .leadership-title {
    font-size: 32px;
  }

  .leader-name {
    font-size: 26px;
  }

  .leadership-card {
    padding: 30px 20px;
  }
}

/* our core value */

/* SECTION */
.values-section {
  padding: 100px 0;
  background: #f4f7fb;
}

/* HEADING */
.values-title {
  font-size: 48px;
  font-weight: 800;
  color: #111;
}

.values-title span {
  color: #00bfff;
}

.values-subtitle {
  font-size: 20px;
  color: #666;
  margin-top: 10px;
}

/* CARD */
.value-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}

/* HOVER (same USP style) */
.value-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 191, 255, 0.25);
}

/* ICON BOX */
.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, #00bfff, #009acd);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ICON */
.value-icon i {
  font-size: 28px;
  color: #fff;
}

/* TITLE */
.value-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* TEXT */
.value-card p {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 768px) {
  .values-title {
    font-size: 32px;
  }
}

/* why started */

/* SECTION */
.why-started-section {
  padding: 100px 0;
  background: #ffffff;
}

/* IMAGE */
.why-started-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

/* IMAGE HOVER */
.why-started-img img:hover {
  transform: scale(1.03);
  box-shadow: 0 30px 60px rgba(0, 191, 255, 0.25);
}

/* CONTENT */
.why-started-content h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 25px;
  color: #111;
}

.why-started-content h2 span {
  color: #00bfff;
}

/* TEXT */
.why-started-content p {
  font-size: 18px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .why-started-content h2 {
    font-size: 32px;
  }

  .why-started-section {
    padding: 60px 0;
  }
}


/* Floating call */

/* 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;
}