* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

.header {
  width: 100%;
  height: 100vh;
  position: relative;
  perspective: 100rem;
  overflow: hidden;
}

.img-wrapper {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: hidden;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  animation: scale 25s;
}

@keyframes scale {
  0% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

.banner {
  position: absolute;
  top: 30%;
  left: 15%;
}

.banner h1 {
  font-family: "Baloo Da 2", serif;
  font-size: 7rem;
  font-weight: 300;
  color: #fff;
  width: 50%;
  line-height: 9rem;
  letter-spacing: 0.2rem;
  text-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.4);
  opacity: 0;
  animation: moveBanner 1s 0.5s forwards;
}

.banner p {
  font-family: "Josefin Slab", serif;
  font-size: 3rem;
  color: #fff;
  width: 75%;
  letter-spacing: 0.1rem;
  margin-bottom: 3rem;
  text-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.4);
  opacity: 0;
  animation: moveBanner 1s 0.7s forwards;
}

.banner a {
  display: inline-block;
  text-decoration: none;
}

.banner button {
  width: 25rem;
  height: 4rem;
  background-color: rgba(168, 44, 35, 0.95);
  border: none;
  font-family: "Muli", serif;
  font-size: 2rem;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.4);
  cursor: pointer;
  opacity: 0;
  animation: moveBanner 1s 0.9s forwards;
  border-radius: 10px;
}

@keyframes moveBanner {
  0% {
      transform: translateY(40rem) rotateY(-20deg);
  }
  100% {
      transform: translateY(0) rotateY(0);
      opacity: 1;
  }
}

/* .sidebar {
  width: 40rem;
  height: 100vh;
  position: fixed;
  top: 0;
  right: -40rem;
  background-color: #fff;
  transition: right 0.5s;
  z-index: 100;
}

.change .sidebar {
  right: 0;
} */

/* Navigation Bar */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  background-color: rgba(255, 255, 255, 0.8); /* Transparent background */
  transition: top 0.3s; /* Smooth transition effect */
  z-index: 999; /* Ensure the navbar appears on top of other elements */
  display: flex;
  justify-content: space-between; /* Align logo and menu to the ends */
  align-items: center;
  padding: 5px; /* Add padding for spacing */
}

.navbar.scrolled {
  top: -100px; /* Hide the navbar initially */
}

/* Logo and Menu Styles */
.logo {
  display: flex;
  align-items: center;
  margin-left: 20px; /* Adjust the margin as needed */
}

.logo img {
  width: 50px;
  height: auto;
  margin-right: 10px;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

.logo h2 {
font-family: 'Roboto', sans-serif; /* Use Roboto font */
font-size: 23px;
font-weight: 600;
color: #333; /* Logo text color */
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.menu li {
  margin-right: 20px;
}

.menu li:last-child {
  margin-right: 0;
}

.menu a {
  text-decoration: none;
  color: #333; /* Menu item color */
  font-size: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #a82c23f2; /* Hover color */
}

/* Hide/show the navbar when scrolling */
.navbar.scrolled {
  top: 0;
}

/* Header Styles */
.header {
  height: 100vh; /* Adjust the height of the header */
  background-image: url('images/bg1.jpeg');
  background-size: cover;
  background-position: center;
  position: relative;
}



.social-media {
  position: absolute;
  bottom: 3rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

.social-media i {
  font-size: 2.2rem;
  margin: 3rem;
  width: 4.5rem;
  height: 4.5rem;
  background-color: #777;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.social-media i:hover {
  background-color: #a82c23f2;
}

.about-us {
  width: 100%;
  background-color: #f5f5f5;
  padding-bottom: 15rem;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 7rem 0 10rem 0;
}

.section-heading {
  font-family: "Muli", serif;
  font-size: 5rem;
  font-weight: 300;
  color: #4b4b4b;
  margin-bottom: 6rem;
}

.underline {
  width: 12rem;
  height: 0.3rem;
  background-color: #a82c23f2;
}

.services {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(16, 1fr);
  grid-template-rows: repeat(6, auto); /* Change row size to auto for dynamic content */
  grid-row-gap: 4rem;
}

.service {
  width: 100%;
  margin-bottom: 2rem;
}

.service:nth-child(1) {
  grid-column: 4 / 8; /* Adjusted column position */
  grid-row: 1 / 3;
}

.service:nth-child(2) {
  grid-column: 3 / 7; /* Adjusted column position */
  grid-row: 3 / 5;
}

.service:nth-child(3) {
  grid-column: 4 / 8; /* Adjusted column position */
  grid-row: 5 / -1;
}

.service:nth-child(4) {
  grid-column: 11 / 15; /* Adjusted column position */
  grid-row: 1 / 3;
}

.service:nth-child(5) {
  grid-column: 12 / 16; /* Adjusted column position */
  grid-row: 3 / 5;
}

.service:nth-child(6) {
  grid-column: 11 / 15; /* Adjusted column position */
  grid-row: 5 / -1;
}

.service-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.service-header i {
  font-size: 4rem;
  color: #4b4b4b;
  margin-right: 2rem;
}

.service-header h3 {
  font-family: "Baloo Da 2", serif;
  font-size: 2.6rem;
  line-height: 2.6rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.service-text {
  font-family: "Josefin Slab", serif;
  font-size: 1.6rem;
  text-align: justify;
}
br{
  display: none;
}


.about-us-img-wrapper {
  grid-column: 7 / 11;
  grid-row: 2 / 6;
  width: 100%;
  display: flex;
  justify-content: center; /* Align image horizontally */
  align-items: center; /* Align image vertically */
}

.about-us-img-wrapper img {
  max-width: 100%; /* Ensure the image doesn't exceed the container width */
  max-height: 100%; /* Ensure the image doesn't exceed the container height */
  object-fit: cover;
  opacity: 0.8;
}


.about-us-container {
  margin: -70px auto 0; /* Center the container and shift it up */
  max-width: 800px; /* Adjust the maximum width as needed */
  padding: 40px 20px -10px; /* Add more padding at the top, reduce padding at the bottom */
  background-color: #ffffff; /* Background color of the container */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); /* Highlighted box shadow */
  transition: box-shadow 0.3s ease; /* Add transition for smooth effect */
}

.about-us-container:hover {
  box-shadow: 0 0 30px #a82c23b2; /* Highlighted box shadow on hover */
}


.about-us-paragraph {
  font-family: "Josefin Slab", serif;
  font-size: 20px;
  line-height: 1.6;
  color: #000000; /* Adjust color as needed */
  text-align: center; /* Align text to the center */
  margin-bottom: 50px; /* Reduce bottom margin */
  margin-top: -30px; /* Adjust top margin to move text closer to the section header */
}

.team {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 5rem 20rem 5rem;
}

.cards-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
  margin-top: 8rem;
  width: 100%;
}

.card {
  width: 100%;
  height: 45rem;
  box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.4);
  border-radius: 0.5rem;
  position: relative;
}

.card-img-wrapper {
  width: 100%;
  height: 70%;
  background-color: #262626;
  border-radius: 0.5rem;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  border-radius: 0.5rem;
}

.card-info {
  position: absolute;
  bottom: 0;
  padding: 2rem;
  text-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.4);
  opacity: 1; /* Make the text info always visible */
}

.card-info h2 {
  font-family: "Baloo Da 2", serif;
  font-size: 2.5rem;
  line-height: 2.5rem;
  font-weight: 300;
  color: #000000;
}
.card-info p {
  font-family: "Baloo da 2", serif;
  font-size: 1.4rem;
  line-height: 1.6rem;
  font-weight: 300;
  color: #000000;
  width: 80%;
  margin-bottom: 2rem;
}
.card:hover {
  background-color: #a82c2333;; /* Add highlighting effect on hover */
  transform: scale(1.05); /* Zoom in effect */
  transition: transform 0.3s ease; /* Smooth transition */
}
.contact {
  width: 100%;
  height: 80%;
  background-color: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-wrapper {
  width: 60%;
  height: auto; /* Adjusted to auto to accommodate new fields */
  display: flex;
  box-shadow: 0 3rem 5rem rgba(0, 0, 0, 0.163);
}

/* .contact-left {
  width: 70%;
  background: linear-gradient(rgba(15, 15, 15, 0.6), rgba(22, 22, 22, 0.9)),
   url(images/contact-bg.jpg) center no-repeat; 
  background-size: cover;
} */

.contact-right {
  width: 500%;
  background-color: #eee;
  padding: 3rem 5rem; /* Adjusted for better padding */
}

.contact-heading {
  font-family: "Baloo Da 2", serif;
  font-size: 4rem; /* Adjusted font size */
  font-weight: 300;
  color: #272727;
  margin-bottom: 2rem; /* Adjusted margin */
  text-align: center;
}
.contact .underline {
  width: 16rem;
  height: 0.3rem;
  background-color: #a82c23f2;
  margin-left: 250px;
  margin-bottom: 40px;
}

.contact-right form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.input-group {
  position: relative;
  width: 100%; /* Ensure input group takes full width */
  margin-bottom: 2rem; /* Consistent spacing */
}

.field {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 0.2rem dashed #636363;
  padding: 1rem 0;
  font-family: "Muli", serif;
  font-size: 1.6rem;
  color: #4b4b4b;
}

.field:focus {
  border-bottom-style: solid;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%; /* Ensure fields take full width */
}

.input-group textarea {
  max-height: 10rem; /* Increased for better usability */
}

.input-group label {
  position: absolute;
  left: 0;
  font-family: "Baloo Da 2", serif;
  font-size: 1.4rem; /* Adjusted font size */
  color: #4b4b4b;
  text-transform: uppercase;
  pointer-events: none;
  transition: all 0.3s;
  bottom: 1rem; /* Adjusted for consistent positioning */
}


.field:focus ~ label,
.field:not(:placeholder-shown) ~ label {
  transform: translateY(-2rem);
  font-size: 1.2rem;
}

.input-label.message {
  bottom: 6rem; /* Adjusted for textarea */
}

.submit-btn {
  width: 100%;
  height: 5rem;
  background-color: #a82c23f2;
  color: #fff;
  border: none;
  margin-top: 2rem;
  font-family: "Muli", serif;
  font-size: 2rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  cursor: pointer;
  text-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.5);
  box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #8e241e;
}

.footer {
  width: 100%;
  background-color: #17181b;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}

.footer-content {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info,
.social-list {
font-family: "Baloo Da 2", serif;
  display: flex;
  align-items: center;
}

.contact-info > div {
  margin-right: 2rem;
}

.contact-info i,
.social-list i {
  font-size: 1.8rem;
  color: #a7a7a7;
}

.contact-info p {
  font-size: 1.4rem;
  color: #a7a7a7;
  margin: 0;
}

.social-list a {
  margin: 0 1rem;
}

.social-list i {
  font-size: 1.8rem;
  color: #a7a7a7;
}

.copyright {
  font-family: "Baloo Da 2", serif;
  font-size: 1.4rem;
  color: #a7a7a7;
  margin-top: 1rem;
}

.scroll-btn {
position: fixed;
right: 5rem;
bottom: 5rem;
width: 4.5rem;
height: 4.5rem;
background-color: #a82c23f2;
display: flex;
justify-content: center;
align-items: center;
font-size: 2rem;
color: #fff;
box-shadow: 0 0.1rem 0.6rem rgba(0, 0, 0, 0.2);
border-radius: 0.3rem;
}



.location {
width: 100%;
background-color: #f5f5f5;
padding-bottom: 10rem; /* Decreased padding */
}

.location-heading {
font-family: "Muli", serif;
font-size: 5rem;
font-weight: 300;
color: #4b4b4b;
margin-bottom: 3rem; /* Decreased margin */
}

.location-wrapper {
display: flex;
flex-direction: column;
align-items: center;
padding: 3rem 0 5rem 0; /* Decreased padding */
box-shadow: 0 3rem 7rem rgba(0, 0, 0, 0.5);
}

.location iframe {
width: 70%;
height: 400px; /* Adjust height as needed */
border: none;
margin-top: 3rem; /* Adjusted margin */
box-shadow: 0 1rem 7rem #a82c239e;

}

.footer {
margin-top: -10rem; /* Adjusted margin */
}

.custom-link:hover {
color: #0056b3; /* Change color on hover */
}

.custom-link:hover::after {
transform: scaleX(1);
}
/* Add this CSS to your stylesheet */
.call-now {
background-color:#a82c23f2; /* Red background color */
color: white; /* White text color */
padding: 10px 15px; /* Padding around the text */
border-radius: 5px; /* Rounded corners */
text-decoration: none; /* Remove underline from link */
display: flex; /* Flexbox for icon alignment */
align-items: center; /* Center items vertically */
}

.call-now i {
margin-right: 8px; /* Space between icon and text */
}

.call-now:hover {
background-color: #a82c23dc; /* Darker red when hovered */
}
.circular-logo {
width: 100px; /* Adjust the size as needed */
height: 100px; /* Adjust the size as needed */
border-radius: 50%;
object-fit: cover;
}
.hamburger{
  display: none;
}
@media only screen and (min-width: 350px) and (max-width: 800px) {
  * {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
  }
  
  html {
    font-size: 62.5%;
    scroll-behavior: smooth;
  }
  
  .header {
    width: 100%;
    height: 100vh;
    position: relative;
    perspective: 100rem;
    overflow: hidden;
  }
  
  .img-wrapper {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: hidden;
  }
  
  .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    animation: scale 25s;
  }
  
  @keyframes scale {
    0% {
      transform: scale(1.3);
    }
    100% {
      transform: scale(1);
    }
  }
  
  .banner {
    position: absolute;
    top: 20%;
    left: 15%;
}

.banner h1 {
    font-family: "Baloo Da 2", serif;
    font-size: 4rem;
    font-weight: 300;
    color: #fff;
    width: 50%;
    line-height: 5rem;
    letter-spacing: 0.2rem;
    text-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.4);
    opacity: 0;
    animation: moveBanner 1s 0.5s forwards;
}

.banner p {
    font-family: "Josefin Slab", serif;
    font-size: 2rem;
    color: #fff;
    width: 75%;
    letter-spacing: 0.1rem;
    margin-bottom: 3rem;
    text-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.4);
    opacity: 0;
    animation: moveBanner 1s 0.7s forwards;
}

.banner a {
    display: inline-block;
    text-decoration: none;
}

.banner button {
    width: 13rem;
    height: 3rem;
    background-color: rgba(168, 44, 35, 0.95);
    border: none;
    font-family: "Muli", serif;
    font-size: 1rem;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.2);
    box-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.4);
    cursor: pointer;
    opacity: 0;
    animation: moveBanner 1s 0.9s forwards;
}

@keyframes moveBanner {
    0% {
        transform: translateY(40rem) rotateY(-20deg);
    }
    100% {
        transform: translateY(0) rotateY(0);
        opacity: 1;
    }
}
  
  /* .sidebar {
    width: 40rem;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -40rem;
    background-color: #fff;
    transition: right 0.5s;
    z-index: 100;
  }
  
  .change .sidebar {
    right: 0;
  } */
  
  /* Navigation Bar */
  .menu {
    display: none; /* Hide the menu by default */
    flex-direction: column; /* Stack items vertically */
    position: fixed;
    top: 60px; /* Adjust according to your navbar height */
    right: 0;
    background-color: rgba(255, 255, 255, 0.9);
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
  }
  
  .menu.open {
    display: flex; /* Show the menu when open */
  }

  .menu li {
    margin: 1rem 0; /* Adjust margins for vertical layout */
  }

  .hamburger {
    display: block;
    cursor: pointer;
    font-size: 2rem;
    color: #333;
    margin-right: 28px;
  }

  .navbar {
    padding: 10px 10px; /* Adjust padding for smaller screens */
  }

  .logo img {
    width: 40px; /* Adjusted size for smaller screens */
    height: 40px; /* Adjusted size for smaller screens */
    margin-right: 5px; /* Add margin for spacing */
  }

  .logo h2 {
    font-size: 18px; /* Adjusted size for smaller screens */
  }
/* Call Now Button */
.call-now {
  background-color: #a82c23f2; /* Red background color */
  color: white; /* White text color */
  padding: 7px 10px; /* Padding around the text */
  border-radius: 15px; /* Rounded corners */
  text-decoration: none; /* Remove underline from link */
  display: flex; /* Flexbox for icon alignment */
  align-items: center; /* Center items vertically */
  margin-top: 10px; /* Add margin for spacing */
}

.call-now i {
  margin-right: 5px; /* Space between icon and text */
}

.call-now:hover {
  background-color: #a82c23dc; /* Darker red when hovered */
}

/* Circular Logo */
.circular-logo {
  width: 60px; /* Adjust the size for smaller screens */
  height: 60px; /* Adjust the size for smaller screens */
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px; /* Add margin for spacing */
}
  
  /* Header Styles */
  .header {
    height: 100vh; /* Adjust the height of the header */
    background-image: url('images/bg1.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
  }

  .social-media {
    position: absolute;
    bottom: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .social-media i {
    font-size: 2.2rem;
    margin: 3rem;
    width: 4.5rem;
    height: 4.5rem;
    background-color: #777;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: background-color 0.3s;
  }
  
  .social-media i:hover {
    background-color: #a82c23f2;
  }
  
  .about-us {
    width: 100%;
    height: auto;
    background-color: #f5f5f5;
    padding-bottom: 1rem;
  }
  
  .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 7rem 0 10rem 0;
  }
  
  .section-heading {
    font-family: "Muli", serif;
    font-size: 5rem;
    font-weight: 300;
    color: #4b4b4b;
    margin-bottom: 6rem;
  }
  
  .underline {
    width: 12rem;
    height: 0.3rem;
    background-color: #a82c23f2;
  }
  
  .services {
    width: 100%;
    height: 70%; /* Adjusted to auto to accommodate dynamic content */
    display: grid;
    grid-template-columns: repeat(14, 1fr);
    grid-template-rows: auto; /* Changed to auto to accommodate dynamic content */
    grid-row-gap: 3rem;
  }
  
  .service {
    width: 100%;
    margin-bottom: 2rem;
  }
  
  .service:nth-child(1) {
    grid-column: 1 / 4;
    grid-row: 1; /* Set first service to start at first row */
  }
  
  .service:nth-child(2) {
    grid-column: 1 / 4; /* Set second service to span the same columns as first */
    grid-row: 2; /* Set second service to start at second row */
  }
  
  .service:nth-child(3) {
    grid-column: 1 / 4; /* Set third service to span the same columns as first */
    grid-row: 3; /* Set third service to start at third row */
  }
  
  .service:nth-child(4) {
    grid-column: 1 / 4; /* Set fourth service to span the same columns as first */
    grid-row: 4; /* Set fourth service to start at fourth row */
  }
  
  .service:nth-child(5) {
    grid-column: 1 / 4; /* Set fifth service to span the same columns as first */
    grid-row: 5; /* Set fifth service to start at fifth row */
  }
  
  .service:nth-child(6) {
    grid-column: 1 / 4; /* Set sixth service to span the same columns as first */
    grid-row: 6; /* Set sixth service to start at sixth row */
  }
  
  .service-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .service-header i {
    font-size: 2.5rem;
    color: #4b4b4b;
    margin-right: 2rem;
    margin-left: 5px;
  }
  
  .service-header h3 {
    font-family: "Baloo Da 2", serif;
    font-size: 1.8rem;
    line-height: 2.6rem;
    font-weight: 400;
    margin-bottom: 2rem;
    white-space: nowrap; /* Prevent line breaks */
  }
  
  .service-text {
    font-family: "Josefin Slab", serif;
    font-size: 1.5rem;
    text-align: justify;
    white-space: nowrap;
  }
  br{
    display: block;
  }
  
  .about-us-img-wrapper {
    grid-column: 7 / 11;
    grid-row: 7 /11;
    width: 100%;
  }
  
  .about-us-img-wrapper img {
    width: 100%;
    object-fit: cover;
    opacity: 0.8;
    display: none;
  }
  
  .about-us-container {
    margin: -70px auto 0; /* Center the container and shift it up */
    max-width: 800px; /* Adjust the maximum width as needed */
    padding: 40px 20px -10px; /* Add more padding at the top, reduce padding at the bottom */
    background-color: #ffffff; /* Background color of the container */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); /* Highlighted box shadow */
    transition: box-shadow 0.3s ease; /* Add transition for smooth effect */
  }
  
  .about-us-container:hover {
    box-shadow: 0 0 10px #a82c23b2; /* Highlighted box shadow on hover */
  }
  
  
  .about-us-paragraph {
    font-family: "Josefin Slab", serif;
    font-size: 14px;
    line-height: 1.6;
    color: #000000; /* Adjust color as needed */
    text-align: center; /* Align text to the center */
    margin-bottom: 50px; /* Reduce bottom margin */
    margin-top: -30px; /* Adjust top margin to move text closer to the section header */
  }
  
  .team {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 5rem 2rem 5rem; /* Reduced padding-bottom */
  }
  
  .cards-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 2rem;
    margin-top: 4rem; /* Reduced margin-top */
    width: 100%;
    margin-bottom: 5rem;
  }
  
  
  .card {
    width: 100%;
    height: 45rem;
    box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.4);
    border-radius: 0.5rem;
    position: relative;
  }
  
  .card-img-wrapper {
    width: 100%;
    height: 70%;
    background-color: #262626;
    border-radius: 0.5rem;
  }
  
  .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    border-radius: 0.5rem;
  }
  
  .card-info {
    position: absolute;
    bottom: 0;
    padding: 2rem;
    text-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.4);
    opacity: 1; /* Make the text info always visible */
  }
  
  .card-info h2 {
    font-family: "Baloo Da 2", serif;
    font-size: 2.2rem;
    line-height: 2.5rem;
    font-weight: 300;
    color: #000000;
  }
  .card-info p {
    font-family: "Baloo da 2", serif;
    font-size: 1.3rem;
    line-height: 1.6rem;
    font-weight: 300;
    color: #000000;
    width: 80%;
    margin-bottom: 0.6rem;
  }
  .card:hover {
    background-color: #a82c2333;; /* Add highlighting effect on hover */
    transform: scale(1.05); /* Zoom in effect */
    transition: transform 0.3s ease; /* Smooth transition */
  }
  .contact {
    width: 80%;
    height: 80%;
    background-color: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .contact-wrapper {
    width: 100%;
    height: auto; /* Adjusted to auto to accommodate new fields */
    display: flex;
    box-shadow: 0 3rem 5rem rgba(0, 0, 0, 0.163);
  }
  
   .contact-left {
    width: 800%;
    background: linear-gradient(rgba(15, 15, 15, 0.6), rgba(22, 22, 22, 0.9)),
     url(images/contact-bg.jpg) center no-repeat; 
    background-size: cover;
  } 
  
  .contact-right {
    width: 125%;
    background-color: #eee;
    padding: 3rem 5rem; /* Adjusted for better padding */
  }
  
  .contact-heading {
    font-family: "Baloo Da 2", serif;
    font-size: 4rem; /* Adjusted font size */
    font-weight: 300;
    color: #272727;
    margin-bottom: 2rem; /* Adjusted margin */
    text-align: center;
  }
  .contact .underline {
    width: 10rem;
    height: 0.3rem;
    background-color: #eee;
    margin-bottom: 40px;
    align-items: center;
  }
  
  .contact-right form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .input-group {
    position: relative;
    width: 100%; /* Ensure input group takes full width */
    margin-bottom: 2rem; /* Consistent spacing */
  }
  
  .field {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 0.2rem dashed #636363;
    padding: 1rem 0;
    font-family: "Muli", serif;
    font-size: 1.6rem;
    color: #4b4b4b;
  }
  
  .field:focus {
    border-bottom-style: solid;
  }

  
  .input-group input,
  .input-group select,
  .input-group textarea {
    width: 100%; /* Ensure fields take full width */
  }
  
  .input-group textarea {
    max-height: 10rem; /* Keep this for better usability */
    padding-top: 1.5rem; /* Ensure there's space for the label */
    resize: none; /* Prevent the textarea from being resized */
  }
  
  .input-group label {
    position: absolute;
    left: 0;
    font-family: "Baloo Da 2", serif;
    font-size: 1.4rem; /* Adjusted font size */
    color: #4b4b4b;
    text-transform: uppercase;
    pointer-events: none;
    transition: all 0.3s;
    bottom: 1rem; /* Adjusted for consistent positioning */
  }
  
  
  .input-label.message {
    bottom: 1.5rem; /* Adjust the position to avoid overlap */
  }
  
  .field:focus ~ label,
  .field:not(:placeholder-shown) ~ label {
    transform: translateY(-3rem); /* Adjust label movement */
    font-size: 1.2rem;
  }
  
  .submit-btn {
    width: 100%;
    height: 5rem;
    background-color: #a82c23f2;
    color: #fff;
    border: none;
    margin-top: 2rem;
    font-family: "Muli", serif;
    font-size: 2rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    cursor: pointer;
    text-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.5);
    box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
  }
  
  .submit-btn:hover {
    background-color: #8e241e;
  }
  .footer-content {
    width: 100%; /* Adjusted to take full width */
    flex-direction: column; /* Stack items vertically */
    align-items: flex-start; /* Align items to the start */
    padding: 20px; /* Added padding for spacing */
  }

  .contact-info {
    margin-bottom: 20px; /* Added bottom margin for spacing */
    flex-direction: column;
    align-items: flex-start;
    
  }

  .contact-info > div {
    display: flex; /* Align items in a row */
    align-items: center; /* Center items vertically */
    margin-right: 10px; /* Adjusted right margin for spacing */
    margin-bottom: 10px; /* Added bottom margin for spacing */
  }
  
  .contact-info i {
    margin-right: 5px; /* Adjusted margin between icon and text */
  }

  .social-list {
    display: flex; /* Align items horizontally */
    justify-content: center; /* Center items horizontally */
  }
  
  .social-list a {
    margin-right: 10px; /* Adjusted right margin for spacing */
  }

.scroll-btn {
  position: fixed;
  right: 5rem;
  bottom: 5rem;
  width: 4.5rem;
  height: 4.5rem;
  background-color: #a82c23f2;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 0.1rem 0.6rem rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  
}



.location {
  width: 100%;
  background-color: #f5f5f5;
  padding-bottom: 10rem; /* Decreased padding */
}

.location-heading {
  font-family: "Muli", serif;
  font-size: 5rem;
  font-weight: 300;
  color: #4b4b4b;
  margin-bottom: 3rem; /* Decreased margin */
  margin-top: 25px;
}

.location-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 0 5rem 0; /* Decreased padding */
  box-shadow: 0 3rem 7rem rgba(0, 0, 0, 0.5);
}

.location iframe {
  width: 70%;
  height: 150px; /* Adjust height as needed */
  border: none;
  margin-top: 3rem; /* Adjusted margin */
  box-shadow: 0 1rem 7rem #a82c239e;

}

.footer {
  margin-top: -10rem; /* Adjusted margin */
}

.custom-link:hover {
  color: #0056b3; /* Change color on hover */
}

.custom-link:hover::after {
  transform: scaleX(1);
}
}