h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Philosopher', sans-serif;
    font-weight: 600;
    line-height: 1.1;
}
a {
    color: #000;
    text-decoration: none;
}

.btn a {
    color: #ffffff;
}

a:hover {
    color: #f82121;
}

/* Remove default padding/margin */
.custom-translate .goog-te-gadget {
  font-size: 0 !important;
  color: transparent !important;
}

/* Customize the dropdown */
.goog-te-combo {
  font-size: 14px !important;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid #ced4da;
  background-color: #fff;
  color: #333;
}

/* Hide floating top banner */
body > .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
body {
  top: 0px !important;
}

.navbar {
  color: #000;
  font-weight: 600;
}

.custom-navbar {
  background-color: rgba(255, 255, 255, 0.6); /* semi-transparent */
  transition: background-color 0.3s ease;
  z-index: 999;
}

.custom-navbar.sticky {
  background-color: #ffffff !important;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.img-fluid {
  max-height: 190px;
  object-fit: contain;
}

.img-fluid1 {
  max-height: fit-content;
  object-fit: contain;
}

@media (max-width: 768px) {
  .img-fluid1 {
    max-height: 300px;
    align-items: center;
  }
}

.banner-text-overlay {
  z-index: 2;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* optional: background behind text */
  border-radius: 8px;
}
  
.carousel-inner img {
  height: auto;
  object-fit: cover;
}
  
  @media (max-width: 768px) {
    .banner-text-overlay h3 {
      font-size: 1rem;
    }
  
    .banner-text-overlay p {
      font-size: 1rem;
    }
  }
/* Banner Text Overlay (Centered Over the Banner) */
.banner-text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 80%;
  max-width: 800px;
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
}

/* Banner Image Styling */
.banner-img {
  height: 100vh;
  object-fit: cover;
}

/* Responsive Text Adjustments */
@media (max-width: 768px) {
  .banner-text-overlay h3 {
    font-size: 1rem;
  }

  .banner-text-overlay p {
    font-size: 1rem;
  }

  .banner-img {
    height: 60vh;
  }
}
/* Lucky Gemstone Section */
.lucky-gemstone-section {
    position: relative;
    top: -65px; /* Move the section above the banner */
    z-index: 1;
    padding-top: 40px;
    padding-bottom: 40px;
    width: 100%;
}

.card {
    border: none;
    border-radius: 8px;
}

.card-body {
    padding: 30px;
}

.card-title {
    font-size: 1.8rem;
    font-weight: bold;
}

/* Form Elements */
.form-label {
    font-weight: 600;
}

.form-control {
    border-radius: 8px;
}

/* Form Grid Layout for Small Screens */
@media (max-width: 768px) {
  .row {
    flex-direction: column; /* Stack the form fields in a single column */
  }

  .col-12 {
    margin-bottom: 1rem; /* Add spacing between form fields */
  }

  .btn-primary {
    width: 100%; /* Ensure button takes full width on small screens */
  }
}

/* Button Style */
.btn-primary {
    background-color: #4775bf;
    border-color: #c3d2eb;
    border-radius: 8px;
    color: #ffffff !important;
}

/* Card Shadow */
.card.shadow-lg {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Featured Products Section */
.featured-products {
    padding-top: 10px;
    padding-bottom: 50px;
  }
  
  .card {
    border: none;
    border-radius: 8px;
  }

  .card img {
    width: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  
  .card-body {
    padding: 20px;
  }
  
  .card-title {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .card-text {
    font-size: 1rem;
  }
  
  /* Responsive Layout */
  @media (max-width: 768px) {
    .card-title {
      font-size: 1.2rem;
    }
  
    .card-text {
      font-size: 0.9rem;
    }
  }

  /* Image and Text Section */
.image-text-section {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Section Title */
.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Section Description */
.section-description {
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

/* Responsive Design */
@media (max-width: 768px) {
  .image-text-section .row {
    flex-direction: column; /* Stack image and text on small screens */
  }
  
  .image-text-section .col-md-6 {
    width: 100%; /* Make columns full-width on smaller screens */
  }

  .section-title {
    font-size: 1.5rem; /* Adjust title size for smaller screens */
  }

  .btn-primary {
    width: 100%; /* Button takes full width on small screens */
  }
}
/* Fixed Background Section */
.fixed-background-section {
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
    color: #fff;
    overflow: hidden; /* Ensure that content does not overflow */
}

/* Background Blur Effect */
.fixed-background-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/Gemstone.png'); /* Replace with your background image */
    background-position: center;
    background-attachment: fixed; /* Keeps the background fixed while scrolling */
    background-size: cover;
    filter: blur(2px); /* Adjust blur value here */
    z-index: -1; /* Ensures that the blur is behind the content */
}

/* Title Style */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Description Style */
.section-description {
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Title */
  .section-title {
    font-size: 2rem; /* Adjust title size for small screens */
  }

  /* Description */
  .section-description {
    padding-left: 15px;
    padding-right: 15px;
  }
}
/* Footer Styles */
.footer {
    background-color: #c5c5c5;
    color: #000000;
  }
  
  .footer-logo {
    width: 250px;
    height: auto;
  }
  
  .footer-content {
    margin-top: 20px;
    color: #000000;

  }
  
  .social-icon {
    font-size: 1.5rem;
    color: #000000;
    margin: 0 10px;
    transition: color 0.3s ease;
  }
  
  .social-icon:hover {
    color: #007bff; /* Change to any color you prefer on hover */
  }
  
  .footer .row {
    margin-bottom: 20px;
  }
  
  /* Four Sections Styling */
  .footer h5 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .footer p {
    color: #000000;
  }
  
  .footer-copyright {
    font-size: 0.875rem;
    color: #ccc;
    margin-top: 20px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .social-icon {
      font-size: 1.25rem;
    }
  
    .footer h5 {
      font-size: 1.1rem;
    }
  
    .footer p {
      font-size: 0.9rem;
    }
  }

  /* Common Icon Styles */
.fixed-icon {
  position: fixed;
  bottom: 20px;
  z-index: 1000;
  background-color: #25d366;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.fixed-icon img {
  width: 24px;
  height: 24px;
}

/* Positioning */
.left-icon {
  left: 20px;
  background-color: #25d366; /* Phone - Blue */
}

.right-icon {
  right: 20px;
  background-color: #25d366; /* WhatsApp - Green */
}

/* Hover Effect */
.fixed-icon:hover {
  transform: scale(1.1);
}