body {
  font-family: Arial, sans-serif;
}

h1,
h2 {
  font-weight: 600;
}

footer {
  font-size: 0.9rem;
}

/* BUTTON */
.btn-green {
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

.btn-green:hover {
  background: linear-gradient(135deg, #1ebe5d, #0f7a6b);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.45);
}

.btn-blue {
  background: linear-gradient(135deg, #0d6efd, #0b5ed7);
  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.35);
}

.btn-blue:hover {
  background: linear-gradient(135deg, #0b5ed7, #0a58ca);
  box-shadow: 0 15px 30px rgba(13, 110, 253, 0.45);
}

.btn-cta {
  color: #ffffff;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-cta:hover {
  transform: translateY(-2px);
  color: #ffffff;
}

/* HERO SECTION WITH BACKGROUND IMAGE */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../assets/images/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark overlay for readability */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* Keep text above overlay */
.hero-content {
  position: relative;
  z-index: 2;
}



/* Simple themed header for inner pages */
.page-hero {
  background: linear-gradient(135deg, rgba(39, 145, 244, 0.85), rgb(0, 106, 255))
}

/* Service cards feel more premium */
.service-card {
  border: 0;
  border-radius: 16px;
}

.service-card .card-title {
  font-weight: 700;
}


/* background: linear-gradient(135deg, rgba(13, 110, 253, 0.85), rgba(0, 0, 0, 0.85)); */



/* images inside services section tag */
.service-img {
  min-height: 100%;
  background-size: cover;
  background-position: center;
}


.service-card {
  border-radius: 16px;
  border: none;
}

/* 
.top{
    background-color: #002F6C;
} */

.top {
  background-color: #032c52;
}

.carousel-img {
  height: 60vh;
  object-fit: cover;
  width:100%;
    object-position: center center; /* important */

}


/* ADD IN IF NEEDED FOR IMAGES */
/* 
.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(53, 84, 177, 0.55),
      rgba(0, 0, 0, 0.65));
  z-index: 1;
} */

/* Ensure caption is always visible on top */
.carousel-caption {
  z-index: 5;
  left: 8%;
  right: 8%;
  bottom: 18%;
  text-align: left;
  padding: 0;
  /* avoid extra padding that can push content */
}

.logo {
  height: 40px;
  width: auto;
}

/* Blue info boxes */
.box-blue {
  background-color: rgb(0, 106, 255);
  color: #ffffff;
  border-radius: 12px;
  padding: 24px;
}

.box-blue:hover {
  background-color: rgb(1, 49, 116);
  transition: background-color 0.3s ease;
}


/* Force uniform carousel image size */
#aboutCarousel img {
  width: 100%;
  height: 360px;
  /* adjust if you want taller/shorter */
  object-fit: cover;
  /* fills area, crops edges nicely */
}

/* index second para */
.custom-bg {
  background: linear-gradient(135deg, rgb(0, 83, 228), rgb(226, 238, 255));
}


.footer {
  background: linear-gradient(135deg, #002f6c, #0060e6);
  color: #ffffff;
}

.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  /* visible by default */
  text-decoration: none;
  transition: all 0.3s ease;
}


.footer-icons {
  display: flex;
  /* 🔑 key fix */
  justify-content: center;
  /* center horizontally */
  align-items: center;
  /* align vertically */
  gap: 14px;
  /* spacing between icons */
}

.footer-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.footer-icon.instagram img {
  width: 39px;
  height: 39px;
  object-fit: contain;
}

.footer-icon.whatsapp {
  background-color: #25D366;

}

.footer-icon.instagram {
  background: radial-gradient(circle at 30% 107%,
      #fdf497, #fdf497, #fd5949, #d6249f, #285AEB);
}

/* Individual brand colours on hover */
.footer-icon.whatsapp:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.footer-icon.instagram:hover {
  background-color: rgba(255, 255, 255, 0.15);

}


/* mobile responsiveness */

/* 1) Prevent weird horizontal scrolling on mobile */
html,
body {
  overflow-x: hidden;
}


/* Responsive text */
.carousel-caption h1 {
  font-size: clamp(22px, 4vw, 48px);
  line-height: 1.15;
  margin-bottom: 10px;
}

.carousel-caption p {
  font-size: clamp(14px, 2vw, 18px);
  margin-bottom: 14px;
}


/* Mobile fixes */
@media (max-width: 576px) {
  .carousel-item img {
    height: 60vh;
  }
    .carousel-caption .btn {
    padding: 10px 14px !important;
    margin-bottom: 15px;
    font-size: 14px !important;
    line-height: 1.2;
  }
}
  .carousel-caption {
    bottom: 10%;
    left: 6%;
    right: 6%;
  }


  /* show the paragraph on mobile if you want */
  .carousel-caption p {
    display: block !important;
  }

/* Keep hamburger on the right */
.navbar-toggler {
  margin-left: auto;
}

/* Make the collapse take full width so it drops below */
.navbar-collapse {
  width: 100%;
}

/* Optional: make the dropdown menu visible with spacing */
@media (max-width: 576px) {
  .navbar-collapse {
    background: #032c52;     /* same as your top color */
    padding: 10px 12px;
    border-radius: 12px;
    margin-top: 10px;
  }
}
  



/* CAROUSEL CONTROL COLOR */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 2rem;
  height: 2rem;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  background-size: 60% 60%;
}


.idx-bg{
  background-color: rgba(255,255,255,0.7); 
  display: inline-block; 
  padding: 4px 8px; 
  border-radius: 6px; 
  color: #000;
}