/* 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: 35% !important;
}*/

.navbar a img {
    width: 12% !important;
}


.footer img {
  width: 12%;
}

.shree{
    color: #bf9456;
    display: contents;
    font-size: 25px;
}

.logo-icon {
    color: #bf9456 !important;
    font-size: 36px;
}


.banner-text {
    color: #fff !important;
}

.hero-header {
    background: url(../img/istockphoto-182502755-612x612.jpg) top left no-repeat;
    background-size: cover;
}

.page-header {
    background: url(../img/top-banner.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;
}
}

/* Base caption styling */
.header-carousel .carousel-caption {
  position: absolute;
  top: 40%;
  transform: translateY(-40%);
  padding: 30px 40px;
  border-radius: 12px;
  max-width: 60%;
}

/* Banner-specific backgrounds */
.header-carousel .item.banner-gold .carousel-caption {
  
  color: #111;
  left: 5%;               /* align left */
  text-align: left;
  transform: translateY(-40%); /* override center */
}

.header-carousel .item.banner-diamond .carousel-caption {
  
  left: 50%;              /* centered */
  transform: translate(-50%, -40%);
  text-align: center;
}

.header-carousel .item.banner-stone .carousel-caption {
  
  color: #111;
  right: 5%;              /* align right */
  text-align: right;
  transform: translateY(-40%);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .header-carousel .carousel-caption {
    top: 35%;
    max-width: 80%;
    padding: 20px 25px;
  }
  .header-carousel .carousel-caption h1 { font-size: 1.8rem; }
  .header-carousel .carousel-caption h2 { font-size: 1.4rem; }
}

@media (max-width: 576px) {
  .header-carousel .carousel-caption {
    top: 30%;
    left: 50% !important;
    right: auto !important;
    text-align: center !important;
    transform: translate(-50%, -30%);
    max-width: 90%;
    padding: 15px 20px;
  }
  .header-carousel .carousel-caption h1 { font-size: 1.4rem; }
  .header-carousel .carousel-caption h2 { font-size: 1.1rem; }
}


.about ul {
  list-style-type: disc;
  padding-left: 20px;
  text-align: left;
  display: inline-block;
  margin: 0 auto 20px;
  color: #444;
}

.about h3 {
  font-size: 1.3rem;
  margin: 20px 0 10px;
  color: #222;
}


.about h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #333;
}

.about p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}