/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #333;
  line-height: 1.6;
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: inherit;
}
.services-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('Our service images/services_Bg image.webp');
  background-size: cover;
  background-position: center;
  height: 25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}
.banner {
    
    width: 100%;
    padding: 25px 20px;
    text-align: center;
}
.banner h2 {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 600;
}
.banner p {
  color: #e0e0e0;
  font-size: 1.2rem;
 
  margin: 10px ;
}
.content-section {
  padding: 60px 20px;
  text-align: center;
}
.content-section .container {
  max-width: 800px;
  margin: 0 auto;
  text-align: justify;
}
.product-grid-section {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #ffffff 50%, #E29A25 50%);
}
.product-grid-section-2 {
  padding: 60px 20px;
}
.container1, .container2 {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 30px;
}
.container1 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.container2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.service-card1 {
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  border: 3px solid transparent;
  height: 20rem;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.service-card1:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.service-card1.active {
  border: 3px solid #E29A25;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
.service-icon-wrapper {
  background-color: #fff0d4;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
}
.service-icon-wrapper img {
  width: 60px;
  height: 60px;
}
.product-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #eee;
  position: relative; /* Needed for absolute positioning inside */
}

.product-image {
  width: 100%;
  height: 20rem;
  object-fit: cover; /* Ensures full coverage while keeping aspect ratio */
  object-position: center; /* Centers the focal point */
  display: block; /* Removes extra space under the image */
}
.product-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.card-title {
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 10px;
  color: #000;
}
.card-description1 {
  font-size: 0.9rem;
  color: #555;
  flex-grow: 1;
  margin-bottom: 15px;
  text-align: center;
}

.card-description {
  font-size: 0.9rem;
  color: #555;
  flex-grow: 1;
  margin-bottom: 15px;
  text-align: justify;
}
.enquire-btn {
  display: inline-block;
  background-color: #e9c46a;
  color: #333;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  margin-top: auto;
  transition: background-color 0.3s ease;
}
.enquire-btn:hover {
  background-color: #f4a261;
}




/*
=====================================================
 SCROLL TO TOP BUTTON
=====================================================
*/
#scrollTopBtn {
    position: fixed;
    bottom: 88px;
    right: 25px;
    z-index: 100; /* Ensure it's on top */
    border: none;
    outline: none;
    background-color: #e9c46a;
    cursor: pointer;
    padding: 12px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: opacity 0.4s, transform 0.4s, background-color 0.3s;
    
    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
}

#scrollTopBtn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scrollTopBtn:hover {
    background-color: #f4a261;
}

#scrollTopBtn svg {
    width: 24px;
    height: 24px;
    fill: #333;
}


/*-----------------------------*/
