/* 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: 30% !important;
}



.hero-header {
    background: url(../img/istockphoto-182502755-612x612.jpg) top left no-repeat;
    background-size: cover;
}

.page-header {
    background: url(../img/banner/banner11.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%;
}

.navbar a img {
    width: 25% !important;
}
}

/* Common styling for all captions */
.carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: 500px;
    background: rgba(255, 255, 255, 0.6); /* semi-transparent background */
    padding: 20px;
    border-radius: 8px;
}

/* Banner 1 → Right aligned */
.caption-right {
    right: 5%;
    left: auto;
    text-align: right;
}

/* Banner 2 → Center aligned */
.caption-center {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

/* Banner 3 → Left aligned */
.caption-left {
    left: 5%;
    right: auto;
    text-align: left;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-caption {
        max-width: 90%;
        padding: 15px;
        font-size: 14px;
    }
}


.display-1 {
        font-size: 2.5rem;
    }


.display-2 {
        font-size: 2.3rem;
    }  


.btn-primary {
    color: #fff !important;
    background-color: #033013 !important;
    border-color: #033013 !important;
}  

.text-primary {
    color: #033013 !important;
}


.navbar .navbar-nav .nav-link:hover, .navbar .navbar-nav .nav-link.active {
    color: #033013 !important;
    border-bottom: 1px solid #033013;
}

.navbar .navbar-nav .nav-link {
    color: #000!important;
}


.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
    background: #033013 !important;
    color: #fff !important;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 250px; /* set same height for all images */
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* crop to fit */
  border-radius: 8px;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}


.gallery-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-icon {
  opacity: 1;
}


.testimonial-carousel .owl-item.center .bg-light {
    background: #033013 !important;
}

.testimonial-carousel .owl-item.center .bg-light * {
    color: #fff !important;
}

.border-bottom {
    border-bottom: none!important;
}

