*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transform: all 1s ease;
    font-family: 'Poppins', sans-serif;
}
:root{
    --title : #d84050;
}
.top-arrow {
  cursor: pointer;
  border-radius: 50%;
  padding: 8px;
  background: rgba(28, 77, 65, 0.9); /* Steel green tint */
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  display: none; /* hidden initially, shows on scroll */
}

.top-arrow:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}
.carddiv{
  overflow: hidden;
}
/* offcanvas */

.custom-offcanvas {
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

.custom-offcanvas .offcanvas-header {
  padding: 1rem 1.25rem;
}

.custom-offcanvas .nav-link {
  /* color: #212529;x */
  font-size: 1rem;
  padding: 0.75rem 1rem;
  transition: all 0.2s ease-in-out;
}

.custom-offcanvas .nav-link:hover {
  background-color: #f8f9fa;
  color: #ffffff; /* Bootstrap primary */
  transform: translateX(3px);
}

.custom-offcanvas .nav-item + .nav-item {
  border-top: 1px solid #eee;
}

.custom-offcanvas ul.navbar-nav {
  padding: 0;
  margin-top: 1rem;
}


.main-content{
  margin-top: 50px !important;
}

  /* Navbar Container */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.05);
  padding: 7px !important;
}

/* Brand Name Styling */
.navbar-brand span {
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.2px;
  color: #1c4d41; /* Deep green */
}

/* Navbar Links Base */
.nav-link {
  color: #212529;
  font-weight: 900;
  font-size: 20px !important;
  position: relative;
  padding: 5px 10px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

/* Underline Animation */
.nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0%;
  height: 5px;
  background-color: #a7d7b5; /* Light green underline */
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

/* Hover and Focus State */
.nav-link:hover,
.nav-link:focus {
  /* background-color: #c9e7dc;  Soft green background */
  color: #000000 !important;
  transform: translateY(-0.5px);
  border-radius: 20px !important;
  /* box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1); */
}

/* Expand underline on hover/focus */
.nav-link:hover::after,
.nav-link:focus::after {
  width: 80%;
}

/* Space Between Nav Items */
.navbar-nav .nav-item {
  margin: 0 10px;
}

/* Rounded Center Nav Background (optional) */
.navbar-navBig {
  background-color: #e4f5e4 !important;
  border-radius: 50px;
}

/* Brand Logo Spacing */
.navbar-brand img {
  margin-right: 8px;
}

/* Contact Button */
.navbar .btn-dark {
  background: rgb(190, 30, 30);
  border: none;
  padding: 10px 20px;
  color: #fff;
  /* padding: 0.45rem 1.2rem; */
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar .btn-dark:hover {
  background: var(--title);
}

/* Toggler Icon: No Border */
.navbar-toggler {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 6px;
  background: transparent;
}

.navbar-toggler:focus {
  outline: none !important;
  box-shadow: none !important;
}

button{
    padding: 15px;
    
}
.learnmorebtn {
  color: #fff;
  transition: all 0.3s ease;
  width: 200px;
}

.learnmorebtn:hover {
  background: #155685;
  width: 200px;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Gallery Button */
.Gallerybtn {
  background: rgb(190, 30, 30);
  border: none;
  padding: 10px 20px;
  color: #fff;
  /* padding: 0.45rem 1.2rem; */
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.Gallerybtn:hover {
  background: var(--title);
}

.aboutpara{
    line-height: 35px;
    text-align: justify;
    font-size: 20px;
    color: rgb(73, 81, 88);
}
.title{
    color: var(--title);
    font-size: 40px;
}

@keyframes shake {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}


.shake-animation {
  animation: shake 0.8s infinite ease-in-out;
}
.contact-card {
  background: linear-gradient(135deg, #000000, #000000);
  border-radius: 20px;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.05),       /* soft base shadow */
    0 10px 25px rgba(0, 0, 0, 0.1),      /* main elevation */
    0 20px 40px rgba(0, 0, 0, 0.05);     /* smooth fade out */
}


.social-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-card:hover{
  transition: all 0.3s ease;
  transform: scale(1.1);
}
.shine-button {
  position: relative;
  background-color: #1c4d41;
  color: white;
  border: none;
  overflow: hidden;
  transition: background-color 0.4s ease;
}

.shine-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0.3) 100%);
  transform: skewX(-20deg);
  transition: left 0.5s;
}

.shine-button:hover::before {
  left: 130%;
}

.shine-button:hover {
  color: #14583e;
  background: white;
  border: 2px solid #14583e;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  border-radius: 12px;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aboutCard {
  background-color: #f8f9fa; /* Light background */
  border-radius: 20px;
  padding: 30px;
  border-left: 10px solid #d84050 !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.aboutCard:hover {
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.25);
  transform: translateY(-5px);
}

/* Optional: Style the card body */
.aboutCard .card-body {
  padding: 0;
}

/* Text Styling for the List Text */
.list-text {
  color: #333;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.3px;
  line-height: 1.7;
}

/* List Item Styling */
.custom-list .list-group-item {
  background-color: transparent;
  border: none;
  padding-left: 0;
  padding-right: 0;
  text-align: left;
}

/* Image Styling */
.custom-list .list-group-item img {
  vertical-align: middle;
}


.list-group-item {
  background-color: transparent;
  border: none;
  padding-left: 0;
  padding-right: 0;
  font-weight: 500;
  text-align: left; /* Ensure left alignment */
  color: #333; /* Professional dark gray */
  line-height: 1.6; /* Better readability */
}
/* Bootstrap Card Customization */
.company-card {
  background: linear-gradient(135deg, #e0f7fa, #f0fcfc);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  overflow: hidden;
}

.company-card:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  transform: translateY(-5px);
}

/* Logo Circle */
.smsr {
  display: inline-block;
  background-color: #fff;
  border: 2px solid #d84050;
  color: #08304c;
  padding: 6px 15px;
  font-weight: 700;
  border-radius: 50px;
  font-size: 1rem;
  letter-spacing: 1px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Company Name */
.company-name {
  font-size: 2.5rem;
  font-weight: 700;
  color: #08304c;
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.2);
}

/* Tagline */
.tagline {
  font-size: 1.3rem;
  color: #08304c;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Address Box */
.address {
  background-color: #0b5b65;
  color: #ffffff;
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.8;
  box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.05), 0 8px 20px rgba(0, 0, 0, 0.15);
}
.info-box {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden !important;
}

.info-box:hover {
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.info-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0b5b65;
  margin-bottom: 10px;
}

.info-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  margin: 0;
}
/* Section Title Styling */
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #08304c;
  margin-bottom: 10px;
  line-height: 1.3;
}

.section-title .highlight {
  color: #d84050;
}

.section-title .subtitle {
  color: #0b5b65;
  font-weight: 600;
  font-size: 2rem;
  display: block;
  margin-top: 8px;
}

/* Description Styling */
.section-description {
  max-width: 700px;
  margin: 0 auto 30px auto;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  padding: 0 10px;
}

.services-section {
  color: var(--title); 
  padding: 60px 15px;
  /* border-radius: 20px;
  box-shadow: 0 12px 10px rgba(0, 0, 0, 0.05); */
}

.services-title {
  font-size: 2.8rem;
  color: #d84050;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.services-subtitle {
  font-size: 1.15rem;
  /* padding: 10px; */
  /* max-width: 700px; */
  margin: 0 auto;
  color: #ffffff;
  background-color: var(--title);
  width: 100%;  
  line-height: 1.7;
  padding: 10px 15px;
  font-family: 'Poppins', sans-serif;
}

/* Optional fade-up on scroll */
.services-section[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-in-out;
}

.services-section[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
.scroll-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 40px 0;
  background-color: #fff;
}

.scroll-track {
  display: flex;
  width: max-content;
  animation: scroll-left 40s linear infinite;
  gap: 20px;
}

.video-box {
  flex: 0 0 auto;
  width: 350px;
  height: 230px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
  border-radius: 15px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.glass-bg {
  background: linear-gradient(to bottom, #1f2937, #111827); /* dark gradient */
  padding: 80px 20px;
}
.video-container::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255,255,255,0.05), transparent);
  filter: blur(50px);
  z-index: 1;
}
.video-container {
  background: rgba(18, 25, 40, 0.5); /* dark tinted translucent background */
  border-radius: 20px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  width: 100%;
  color: #e0e0e0; /* light gray for text/icons inside */
  transition: all 0.4s ease;
}
/* General Footer Font Style */
.footer {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Logo & Brand */
.footer h5,
.footer h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #ffffff;
}

/* Link Styling */
.footer a {
  color: #cfd8dc;
  transition: all 0.3s ease-in-out;
}

.footer a:hover {
  color: #ffc107 !important;
  text-decoration: underline;
}

/* Footer Bottom Text */
.footer .small {
  font-size: 1.2rem;
  color: #90a4ae;
}



/* Location iframe map responsiveness */
.footer iframe {
  border-radius: 12px;
  min-height: 300px;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .footer {
    text-align: center;
  }

  .footer .row > div {
    margin-bottom: 30px;
  }
}
.map-wrapper {
  width: 100%;
  min-height: 300px;       /* Mobile minimum height */
  max-height: 450px;
  transition: all 0.3s ease;
}

/* Optional: adjust size for large screens */
@media (min-width: 768px) {
  .map-wrapper {
    min-height: 300px;
    max-height: 500px;
  }
}

@media (min-width: 1200px) {
  .map-wrapper {
    min-height: 450px;
    max-height: 550px;
  }
}

.section-heading {
  font-size: 2rem;
  color: #ffffff;
  letter-spacing: 1px;
}

@media (min-width: 768px) {
  .section-heading {
    font-size: 2.4rem;
  }
}

.text-highlight {
  color: #b2eee0;
}
#about{
  background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
}

.who-we-are {
  border-right: 10px solid rgb(255, 254, 254) !important;
  background: var(--title);
  padding: 56px   10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.who-we-are:hover {
  transform: translateY(-5px);
}

.feature-list {
  padding-left: 0;
  margin-bottom: 0;
}

.icon-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.feature-text {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .feature-text {
    font-size: 1.15rem;
  }

}
/* Trusted-Partners */
.partner-card {
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
  will-change: transform;
  background-color: white; /* ensure consistency */
  border-radius: 1rem;      /* optional soft corner */
}

.partner-card:hover {
  transform: scale(1.05);
  cursor: pointer;
}
.img-shadow{
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.nav-logo {
  animation: navSpin 2s linear infinite;
}

@keyframes navSpin {
  from {
    transform: rotateX(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
.glass-bg {
  background: rgba(255, 255, 255, 0.1); /* translucent white */
  backdrop-filter: blur(10px);          /* frosted glass effect */
  -webkit-backdrop-filter: blur(8px);  /* for Safari support */
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}


