body, html {
  margin: 0;
  padding: 0;
   overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', 'Lato', sans-serif;
  font-size: 16px;
  color: #333;
  /* background: linear-gradient(to bottom, #0f2027, #203a43, #2c5364);
  background-attachment: fixed;
  color: #ffffff; */
}

h1, h2, h3, h4 {
  font-weight: 700;
  color: #160a3b;
  letter-spacing: 1px;
}

p {
  line-height: 1.6;
}
section {
  scroll-margin-top: 60px; 
}
header {
  overflow: visible;
  position: relative;
  z-index: 1;
}

/* #upcoming-projects h2 {
  padding-top: 20px;
} */
#upcoming-projects::before {
  content: "";
  display: block;
  height: 100px;  /* Height of your navbar or slightly more */
  margin-top: -50px;
  visibility: hidden;
}

#about::before {
  content: "";
  display: block;
  height: 100px; 
  margin-top: -100px;
  visibility: hidden;
}


#our-products{
  padding-top: 10px;
  margin-top: -55px;
}
#promoters{
  padding-top: 10px;
  margin-top: 5px;
} 
/* ========== Initial Navbar (transparent + white text) ========== */
.main-navbar {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  transition: background-color 0.4s ease, box-shadow 0.3s ease, color 0.3s ease;
  padding: 1rem 2rem;
  z-index: 1000;
  overflow: visible;
}

/* Initial text color */
.main-navbar .nav-link,
.main-navbar .navbar-brand,
.main-navbar  {
  color: #ffffff !important;
}
/* .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.main-navbar.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.8)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
} */
 .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.main-navbar.scrolled {
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;  /* Ensures navbar stays above other elements */
}

/* On scroll, also make the hamburger dark for visibility on white navbar */
.main-navbar.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0,0,0,1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.main-navbar .nav-link {
  color: white !important;
  font-weight: 600;                  /* Bold */
  font-family: 'Segoe UI', sans-serif; /* Clean modern font */
  font-size: 1.1rem;
  margin: 0 18px;                    /* More space between links */
  letter-spacing: 1px;
  text-transform: uppercase;         /* Optional: makes links look modern */
  transition: color 0.3s ease;
}
.main-navbar .nav-link:hover {
  color: #00d4ff !important;
}
.main-navbar.scrolled .nav-link {
  color: #001f3f !important;
  font-weight: 600;
  font-family: 'Segoe UI', sans-serif;
}
.main-navbar .nav-link::after {
  content: '';
  display: block;
  height: 2px;
  background-color: #00d4ff;
  width: 0;
  transition: width 0.3s ease;
}

.main-navbar .nav-link:hover::after {
  width: 100%;
}

/* ========== Scrolled Navbar (solid + blue/navy text) ========== */
.main-navbar.scrolled {
  background-color: #ffffff; /* solid white or navy */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Scrolled text color */
.main-navbar.scrolled .nav-link,
.main-navbar.scrolled .navbar-brand {
  color: #001f3f !important;  /* Dark blue or any readable color */
}

/* Optional: Hover color when scrolled */
.main-navbar.scrolled .nav-link:hover {
  color: #00bcd4 !important;  /* Light teal on hover */
}

/* Navbar brand logo parts (if needed) */
.navbar-brand .logo-part1 {
  color: #2ea0a7;
  font-size: 1.6rem;
}

.navbar-brand .logo-part2 {
  color: #fff;
  font-size: 1.6rem;
}

.main-navbar.scrolled .logo-part2 {
  color: #001f3f;  /* Change logo part2 color on scroll */
}
.navbar-logo {
  max-height: 60px;
  height: auto;
  width: auto;
}

/* Adjust padding/margin on mobile */
/* @media (max-width: 992px) {
  .navbar-brand {
    margin-left: 120px;
  }
} */
 /* ---------- */
 @media (max-width: 992px) {
  .navbar-brand {
    margin-left: 0px; /* No extra margin on small screens */
  }
}

.navbar-logo:hover {
  transform: scale(1.05); /* Slight hover animation */
}

/* Carousel */
.carousel-item {
  height: 100vh;   /*full screen ht*/
  position: relative;
  /* height: calc(100vh - 70px); Adjust 70px to match navbar height if you want to show full under navbar */
}

.carousel-item img {
  height: 100vh;
  object-fit: cover;
  width: 100%;
}
.carousel-caption {
  top: 57.5%;  
  transform: translateY(-50%);
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
}

/* Fine-tune for smaller screens */
@media (max-width: 768px) {
  .carousel-caption {
    top: 58.5%;  /* was 20%, now lowered for better alignment */
  }
}

.carousel-caption h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.carousel-caption p {
  font-size: 1rem;
  color: #ddd;
}

/* Optional: Fix anchor scroll jump under navbar */
[id]::before {
  content: "";
  display: block;
  height: 80px;
  margin-top: -80px;
  visibility: hidden;
}
#carouselExampleInterval {
   margin-top: 0; /* adjust based on navbar height */
}

.dropdown-item img {
  filter: brightness(0) invert(0.5);
  transition: filter 0.3s ease;
}

.dropdown-item:hover img {
  filter: brightness(0) invert(1);
}
.dropdown-menu {
  z-index: 1050; /* higher than navbar */
}

.col-md-6 img {
  width: 100%;
  height: 300px; /* or any fixed height you prefer */
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.col-md-6 img:hover {
  opacity: 0.5;
}
 #our-reach {
  background: linear-gradient(135deg, #e0f7fa, #ffffff);
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 5rem;
  z-index: 1;
}

/* Decorative background shapes */
#our-reach::before,
#our-reach::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.1);
  z-index: 0;
}

#our-reach::before {
  top: -50px;
  left: -80px;
}

#our-reach::after {
  bottom: -50px;
  right: -80px;
}

/* REACH HEADING */
.reach-heading {
  font-size: 2.8rem;
  font-weight: 700;
  color: #004d61;
  position: relative;
  display: inline-block;
  animation: fadeInDown 1s ease-in-out;
   margin-top: 100px;  /* ⬅️ Add this to push the heading down */
}

/* Animated underline */
.heading-underline {
  width: 60px;
  height: 4px;
  background-color: #00151f;
  margin: 10px auto 0 auto;
  animation: growLine 1s ease forwards;
}

/* MAP STYLING */
.map-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 2;
  border: 3px solid black;
}

.map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  border-radius: 12px;
}

/* TEXT IN CONTENT SECTION */
#our-reach p,
#our-reach h4 {
  z-index: 2;
  position: relative;
}

/* ANIMATIONS */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes growLine {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}

/* Apply 3D + opacity on hover */

/* .footer a:hover {
  color: #66b1f1;
  text-decoration: underline;
} */
.footer {
  font-family: 'Segoe UI', sans-serif;
  animation: fadeInUp 1s ease-in-out;
  color: black;
}

.footer-logo {
  max-width: 120px;
  animation: zoomIn 1s ease-in-out;
}

.footer-heading {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #00d4ff;
}

.footer a {
  color:black;
  text-decoration: none;
  display: block;
  margin-bottom: 0.4rem;
  transition: 0.3s ease;
}

.footer a:hover {
  color: #00d4ff;
  transform: translateX(5px);
}

/* .footer .social-icons a {
  color: white;
  margin-right: 15px;
  font-size: 1.2rem;
  transition: transform 0.3s;
  display: flex;
  align-items: center;
} */
.footer .social-icons {
  display: flex;               /* Makes children (icons) align horizontally */
  gap: 15px;                   /* Optional: space between icons */
  align-items: center;         /* Vertical centering */
  margin-top: 0.5rem;
}


.social-icons a:hover {
  color: #00d4ff;
  transform: scale(1.2);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.2);
  width: 100%;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.about-heading {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin: 50px 0 30px;
  color: #2ea0a7;
  position: relative;
  animation: fadeSlideIn 1.5s ease-in-out forwards;
  opacity: 0;
}
.about-heading::after {
  content: '';
  display: block;
  margin: 10px auto 0;
  width: 80px;
  height: 4px;
  background-color: #00151f;
  border-radius: 2px;
  animation: expandLine 1s ease-in-out forwards;
}

@keyframes expandLine {
  0% {
    width: 0;
  }
  100% {
    width: 80px;
  }
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* Set equal height for all product cards */
.product-card {
  height: 100%; /* Ensures it fills the column height */
  min-height: 520px; /* Adjust as per your preference */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, z-index 0.3s;
  position: relative;
  z-index: 1;
}

/* Make images consistent in height */
.product-card img {
  height: 180px;
  object-fit: contain;
  transition: transform 0.3s ease;
  margin-bottom: 15px; /* Optional spacing below the image */
}

/* Optional: Ensure card-body fills the space properly */
.product-card .card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Hover Effect */
.product-card:hover img {
  opacity: 0.3;
}

.product-card:hover {
  transform: scale(1.1);
  z-index: 10;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.pre-footer {
  background: linear-gradient(to right, #021c1e, #054545);
  color: #e0f7f4;
}

.pre-footer h4 {
  color: #6ee6cb;
  margin-bottom: 10px;
}

.pre-footer p {
  font-size: 0.95rem;
  line-height: 1.6;
}
/* .animated-divider {
  width: 80%;
  height: 2px;
  margin: 60px auto;
  background: linear-gradient(to right, rgba(255,255,255,0), #66b1f1, rgba(255,255,255,0));
  animation: fadeLine 3s ease-in-out infinite;
  opacity: 0.7;
  border-radius: 10px;
}

@keyframes fadeLine {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
} */
.animated-divider {
  width: 60%;
  height: 2px;
  background: linear-gradient(to right, #00c6ff, #0072ff);
  margin: 40px auto;
  animation: fadeInOut 3s ease-in-out infinite;
  border-radius: 1px;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@keyframes fadeInOut {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}
.promoters-section {
  background: #f9f9f9;
  position: relative;
}

.promoter-wrapper {
  display: inline-flex;
  max-width: 100%;
}

.promoter-card {
  background: #fff;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border-radius: 0;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}

/* Hover effect: zoom + shadow */
.promoter-card:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Left image -> left corners rounded */
.promoter-card.left-img:hover {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* Right image -> right corners rounded */
.promoter-card.right-img:hover {
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* Profile Image */
.promoter-img img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #5e9693;
  transition: transform 0.4s ease-in-out;
}

.promoter-img img:hover {
  transform: rotateY(20deg) scale(1.1);
}

/* Text Content */
.promoter-content {
  max-width: 500px;
}

.promoter-content h4 {
  font-weight: bold;
  color: #160a3b;
  margin-bottom: 10px;
}

.promoter-content p {
  color: #555;
  margin: 0;
}



.project-card {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  cursor: pointer;
}

.project-card:hover {
  transform: scale(1.05) rotateX(2deg) rotateY(2deg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.project-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  transition: all 0.5s ease;
}

.project-card:hover .project-img {
  filter: brightness(0.85);
}
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.simple-divider {
  width: 45%;
  height: 1px;
  background: linear-gradient(to right, #00c6ff, #000306);
  margin: 40px auto;
  animation: fadeInOut 3s ease-in-out infinite;
  border-radius: 1px;
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
/* ------------------------ */
#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  font-size: 18px;
  background-color: #6678db;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

#scrollTopBtn:hover {
  background-color: #083e77;
  transform: scale(1.1);
}

#stats-section {
  background: linear-gradient(180deg, #ffffff, #f0f9ff);
  font-family: 'Segoe UI', sans-serif;
}

#stats-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #000;
}

#stats-section p {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  text-transform: uppercase;
}

/* .counter {
  transition: all 0.3s ease-in-out;
}

.counter:hover {
  color: #007bff;
  transform: scale(1.1);
}
#counting-section {
  background-color: #f8f9fa;
}

.count {
  font-size: 2.5rem;
  font-weight: bold;
  color: #003366;
  transition: all 0.3s ease-in-out;
}

.count:hover {
  color: #00bcd4;
  transform: scale(1.1);
} */
 #counting-section {
  background-color: #f8f9fa;
  padding: 50px 0;
}

#counting-section .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

#counting-section .col {
  flex: 1 1 150px;
  max-width: 200px;
  text-align: center;
}

.count {
  font-size: 2.5rem;
  font-weight: bold;
  color: #003366;
  transition: all 0.3s ease-in-out;
}

.count:hover {
  color: #00bcd4;
  transform: scale(1.1);
}

.counter-text {
  margin-top: 10px;
  font-size: 1rem;
}

/* -------------lt */
.mb-3{
  font-size: 40px;
}
.abt-p{
  font-size: 30px;
}
.mb-4{
  font-size: 21px;
}
.r-p{
  font-size: 20px;
}
.heading-with-underline {
  position: relative;
  display: inline-block;
  margin-top: 30px;
}

.heading-with-underline::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #00151f; /* Choose any accent color */
  border-radius: 2px;
}
#addf p{
  color:black;
}
#conf{
  color: black;
}
.product-card .card-body ul {
  padding-left: 1.2rem;
  margin-bottom: 0;
}

.product-card button {
  font-size: 0.85rem;
}
/* ---------------------- */
/* .navbar-logo {
  height: 50px;      /* Adjust for your desired navbar height 
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
} */


/* Additional section */
#innovation-section .info-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 15px;
  transition: all 0.3s ease;
}

#innovation-section .info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

@media (max-width: 991.98px) {
  .navbar-nav .dropdown {
    position: relative;
  }

  .navbar-nav .dropdown-menu {
    display: none;
    opacity: 1 !important;
    visibility: visible !important;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: white;
    width: 100vw;
    z-index: 1051;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .navbar-nav .dropdown.show .dropdown-menu {
    display: block !important;
  }
}

@media (min-width: 992px) {
  .navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
  }
}



