/* SLIDE BACKGROUND */
.hero-slide {
  position: relative;
  height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* 👈 MAIN FIX */
  z-index: 1;
}

/* TEXT BOX */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 700px;

  /* OPTIONAL GLASS EFFECT */
  background: rgba(0, 0, 0, 0.4);
  padding: 25px 30px;
  border-radius: 8px;
  backdrop-filter: blur(4px);
}

/* HEADING */
.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff !important;
}

/* DESCRIPTION */
.hero-content p {
  font-size: 16px;
  opacity: 0.95;
}

/* MOBILE */
@media(max-width:768px){
  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content {
    padding: 20px;
  }
}

.hero-heading {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-desc {
  font-size: 16px;
  opacity: 0.9;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-heading {
    font-size: 28px;
  }
}


/* Make the hero section fixed height */
.hero-header {
  height: 100vh; /* or 600px if you want fixed banner */
  display: flex;
  align-items: center;
}

.bg-primary {
    background-color: transparent !important;
}


/* Ensure row + col fill the height */
.hero-header .row {
  height: 100%;
}
.hero-header .col-lg-6 {
  height: 100%;
  display: flex;
}

/* Force carousel to take full height */
.header-carousel {
  height: 100%;
  width: 100%;
}
.header-carousel .item {
  height: 100%;
}

/* Make images stretch inside */
.header-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures it fills without distortion */
  display: block;
}


.navbar a img {
    width: 100% !important;
}



.hero-header {
    background: url(../img/istockphoto-182502755-612x612.jpg) top left no-repeat;
    background-size: cover;
}

.page-header {
    background: url(../img/istockphoto-182502755-612x612.jpg) top left no-repeat;
    background-size: cover;
}

.g-4, .gy-4 {
    --bs-gutter-y: 1rem !important;
}
.g-4, .gx-4 {
    --bs-gutter-x: 1rem !important;
}

#img-fluid {
    width: auto important;
}

/* Banner section */
.banner-section {
  background: #f9f9f9; /* light shade background */
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

/* Container to keep equal spacing */
.banner-container {
  width: 90%; /* control spacing */
  max-width: 1200px; /* center limit */
  margin: 0 auto;
}

/* Banner image */
.banner-image {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.mx-auto {
    margin-right: inherit!important;
}


@media (max-width: 768px) {

.navbar{
    display: inline-block;
}

.readmore {
    display: block;
}


.navbar-toggler {
	margin-left: 20%;
}

}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.4s;
}

/* HOVER ZOOM */
.gallery-item:hover img {
    transform: scale(1.1);
}

/* OVERLAY ICON */
.gallery-icon {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.gallery-item:hover .gallery-icon {
    opacity: 1;
}

.gallery-icon i {
    color: #fff;
    font-size: 22px;
    background: #000;
    padding: 12px;
    border-radius: 50%;
}

.testimonial-item {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 12px;
    transition: 0.4s ease;
    transform: scale(0.9);
    opacity: 0.6;
}

/* IMAGE */
.testimonial-item img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 15px auto;
    object-fit: cover;
}

/* TEXT */
.testimonial-item p {
    font-size: 14px;
    color: #555;
}

/* CENTER ACTIVE CARD */
.owl-carousel .owl-item.active.center .testimonial-item {
    background: linear-gradient(135deg, #d4af37, #f7e7a1);
    color: #000;
    transform: scale(1.05);
    opacity: 1;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* TEXT COLOR ON GOLD */
.owl-item.active.center .testimonial-item p,
.owl-item.active.center .testimonial-item span {
    color: #000;
}

/* NAME */
.testimonial-item h5 {
    font-weight: 600;
    margin-top: 10px;
}

/* SMALL TEXT */
.testimonial-item span {
    font-size: 12px;
    color: #888;
}


.why-card {
    background: #fff;
    padding: 30px 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: 0.3s ease;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ICON */
.icon-box {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #d4af37, #f7e7a1);
    color: #000;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* TEXT */
.why-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: #666;
}

.display-5 img {
    height: 40%;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}