/* Global link styles - remove underline from all links */
a {
  text-decoration: none !important;
}
a:hover {
  text-decoration: none !important;
}

/* Main navbar background and brand styles */
.navbar {
  background-color: #007181 !important;
}
.navbar .nav-link {
  color: #fff !important;
  font-weight: 500;
  text-transform: uppercase;
  margin-left: 15px;
}
.navbar .nav-link:hover {
  color: #19B6C4 !important;
}
.navbar-brand,
.navbar-brand:hover {
  color: #ffffff !important;
  font-weight: bold;
  font-size: 20px;
}

/* Toggler button styling */
.navbar-toggler {
  border: none !important;
  background: transparent !important;
  padding: 0.25rem 0.5rem;
  outline: none !important;
  box-shadow: none !important;
}
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus-visible {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
/* Hamburger icon white */
.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%28255,255,255,1%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Animated rainbow text */
.rainbow-text {
  font-weight: bold;
  font-size: 2rem;
  display: inline-block;
  background-image: linear-gradient(270deg, #ed7d05, #784ba0, #2b86c5, #3cf9ff);
  background-size: 600% 600%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: rainbowMove 6s ease infinite;
  text-align: center;
}

@keyframes rainbowMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Mission and Vision box styles */
.info-box {
  padding: 20px;
  border-radius: 8px;
  background-color: #007181;
  text-align: center;
  color: #fff;
}
.info-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* Card customization */
div.card.custom-card {
  background-color: #007181 !important;
  border: 0 !important;
  box-shadow: none !important;
}
div.card.custom-card .card-body {
  background-color: #007181 !important;
}
div.card.custom-card .card-title {
  font-size: 18px;
  color: #fff !important;
  font-weight: 600;
}
div.card.custom-card .card-text {
  font-size: 14px;
  color: #fff !important;
}

/* Override for <h4> used in rainbow text */
h4 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
  /* Remove color override so gradient text works */
  color: inherit;
}

/* Paragraph spacing */
p {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Footer icons */
.footer-icons a {
  text-decoration: none !important;
}
.footer-icons a i {
  font-size: 22px;
}
.footer-text {
  font-size: 13px; /* or any size like 12px, 16px, etc. */
}

/* Card general style */
.card {
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease-in-out;
}
.card:hover {
  transform: translateY(-5px);
}
.card-img-top {
  height: 180px;
  object-fit: cover;
}
.card-title {
  font-size: 18px;
  font-weight: 600;
}
.card-text {
  font-size: 14px;
  color: #007181;
  text-decoration: none !important;
}

/* Service Image */
.service-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  display: block;
}
@media (max-width: 576px) {
  .service-img {
    height: auto;
  }
}

/* Map Responsive */
.map-responsive {
  position: relative;
  overflow: hidden;
  height: 400px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact Info */
.contact-info p {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
}
.contact-info strong {
  color: #007181;
  font-size: 16px;
  font-weight: 600;
}

/* Section Heading */
.section-heading {
  font-size: 28px;
  font-weight: bold;
  color: #007181;
  padding-bottom: 8px;
  display: inline-block;
}

@media (max-width: 767.98px) {
  .contact-info {
    margin-bottom: 30px;
  }
}
.col-md-6 p {
  margin-bottom: 1rem;
  line-height: 1;
}
.col-md-6 strong {
  color: #007181;
  font-size: 1.1rem;
  font-weight: 700;
}

/* Contact Form */
form label.form-label {
  color: #007181;
  font-weight: 600;
  font-size: 16px;
}
form input.form-control,
form textarea.form-control {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 15px;
  background-color: #f9f9f9;
  transition: border-color 0.3s, box-shadow 0.3s;
}
form input.form-control:focus,
form textarea.form-control:focus {
  border-color: #007181;
  box-shadow: 0 0 5px rgba(0, 113, 129, 0.3);
  background-color: #fff;
}

/* Submit Button */
form button.btn-primary {
  background-color: #007181;
  border-color: #007181;
  font-weight: 600;
  padding: 10px 40px;
  font-size: 18px;
  border-radius: 6px;
  transition: background-color 0.3s, transform 0.2s;
}
form button.btn-primary:hover {
  background-color: #005f6a;
  border-color: #005f6a;
  transform: scale(1.03);
}

/* Custom Blue Cards */
.custom-blue-card {
  background-color: #007181 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 12px !important;
  box-shadow: none !important;
  padding: 20px !important;
  height: 100% !important;
  overflow: hidden !important;
  transition: none !important;
}
.custom-blue-card .feature-title {
  font-size: 16px !important;
  font-weight: 700 !important;
  margin-bottom: 10px !important;
  color: #ffffff !important;
}
.custom-blue-card .feature-text {
  font-size: 14px !important;
  line-height: 1.5 !important;
  color: #d0f0ff !important;
}
.custom-blue-card i.fa {
  color: #a3d5e3 !important;
  margin-bottom: 15px !important;
  margin-top: 15px !important;
  transition: none !important;
}
.custom-blue-card:hover {
  background-color: #005f62 !important;
  box-shadow: none !important;
  cursor: default !important;
}
.custom-blue-card:hover i.fa {
  color: #d0f0ff !important;
}

/* Animated heading */
.rainbow-heading {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  background: linear-gradient(270deg, #ff3cac, #784ba0, #2b86c5, #ff3cac);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 6s ease infinite;
}
@keyframes gradientShift {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.swiper-container {
  width: 100%;
  padding: 0px;
  position: relative;
  overflow: hidden;
}

.swiper-slide {
  background: #007181;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  overflow: hidden;
  height: 100%;
}

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-content {
  padding: 15px;
  margin-bottom: 20px;
}

.card-content h5 {
  font-size: 1.2rem;
  color: #fff;
}

.swiper-button-prev,
.swiper-button-next {
  width: 24px;
  height: 24px;
  background-color: transparent;  /* No background */
  border: none;                   /* No border */
  box-shadow: none;               /* No shadow */
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
  user-select: none;
  padding: 0;
  margin: 0;
}

/* Remove default arrow */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: none !important;
}

/* Arrow SVG */
.swiper-button-prev {
  left: 8px;
  background-image: url('data:image/svg+xml;utf8,<svg fill="none" stroke="%23007181" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><polyline points="15 18 9 12 15 6"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.swiper-button-next {
  right: 8px;
  background-image: url('data:image/svg+xml;utf8,<svg fill="none" stroke="%23007181" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><polyline points="9 18 15 12 9 6"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

/* Optional: hover color change */
.swiper-button-prev:hover,
.swiper-button-next:hover {
  filter: brightness(1.3);
}

.custom-service-btn {
  background-color: #007181;
  color: #fff;
  padding: 10px 32px;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  transition: background-color 0.3s ease;
}

.custom-service-btn:hover {
  background-color: #005e6e;
  color: #fff;
}

/* Force remove bottom spacing in mobile view under banner */


  .carousel,
  .carousel-inner,
  .carousel-item,
  .carousel-item img {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    display: block;
    border-radius: 6px;
  }

  .about-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}


#myCarousel .carousel-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
}

/* Desktop-only fixed height */
@media (min-width: 992px) {
  #myCarousel {
    height: 600px;
    border-radius: 6px;
  }

  #myCarousel .carousel-item {
    height: 600px;
    border-radius: 6px;
  }

  #myCarousel .carousel-item img {
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
  }
}

.contact-card {
  background-color: #dde4eb; /* Light gray background */
  border: none !important;   /* Removes card border */
}
 
.custom-email {
  color: #007181 !important;
  text-decoration: none !important;
  -webkit-text-fill-color: #007181 !important; /* for iOS Safari */
}

.custom-email:visited {
  color: #007181 !important;
}

.custom-email:hover {
  color: #111 !important;
  text-decoration: none;
}

/* In your CSS */
.card-text-contact a {
  color: #007181 !important;
  text-decoration: none !important;
  -webkit-text-fill-color: #007181 !important;
}
.card-text-contact {
  color: #007181;  /* Replace with your desired color */
}



