@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

/* home.css */
html{
  scroll-behavior: smooth;
  font-size: 62.5%;
}
body {
    padding: 0;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    
}
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.popup-content {
  background-color: orange;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  width: 90%;
  max-width: 25rem;
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.2);
  position: relative; /* Important for positioning the close button */
}

.popup-heading {
  margin-bottom: 2rem;
  color: #800020;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-top: 1rem;
  font-weight: bold;
  color: #800020;
}

input {
  margin-top: 0.5rem;
  padding: 1rem;
  font-size: 1.6rem;
  border: 0.1rem solid #ddd;
  border-radius: 0.5rem;
}

.form-buttons {
  display: flex;
  justify-content: center; /* Adjusted since the cancel button is removed */
  margin-top: 2rem;
}

#submitBtn {
  padding: 1rem 1.5rem;
  font-size: 1.6rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  background-color: #800020;
  color: #fff;
  transition: background-color 0.3s, transform 0.2s;
}

#submitBtn:hover {
  background-color: #f44336;
  transform: scale(1.05);
}

/* Styles for the close button (X mark) */
.close-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.7rem;
  background: none;
  border: none;
  font-size: 2.4rem;
  font-weight: bold;
  color: orange;
  cursor: pointer;
  z-index: 2; /* Ensure it's above other elements */
}

.close-btn:hover {
  color: #ff0000; /* Red color on hover */
}

/* ==================Start Of Header================= */
.header {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #ffff;
  height: 10.25rem;
  width: 286rem;
  gap: 2rem;
  position: fixed;
  top: 0;
  z-index: 1;
}
#fixed top{
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.logo_for_aksharigold img {
  height: 10rem;
  width: auto;
}

nav {
display: flex;
width: 100%;
align-items: center;
gap: 17.5rem;
flex-wrap: wrap;
}

nav ul {
display: flex;
flex-wrap: wrap;
list-style: none;
}

nav ul li {
margin: 0 1rem;
}

nav ul li a {
color: black;
text-decoration: none;
font-size: 1.8rem;
font-weight: 500;
padding: 0.8rem 1.5rem;
border-radius: 0.5rem;
letter-spacing: 0.1rem;
transition: all 0.3s ease;
}

nav ul li a.active,
nav ul li a:hover {
color: #FFD700;
}

nav .menu-btn i {
font-size: 2.2rem;
cursor: pointer;
display: none;
}

/* Dropdown Styles */
.dropdown {
position: relative;
}

.dropdown_menu {
position: absolute;
top: 100%;
left: 0;
background-color: white;
color: black;
list-style: none;
margin: 0;
padding: 0;
display: none;
width: 20rem;
box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.2);
}

.dropdown_menu li {
padding: 1rem;
text-align: left;
width: 20rem;
}

.dropdown_menu li a {
text-decoration: none;
color: black;
display: block;
padding: 0.5rem 1rem;
transition: background-color 0.3s ease;
}

.dropdown_menu li a:hover {
background-color: #DAA520; /* Golden */
color: white;
}

.dropdown:hover .dropdown_menu {
display: block;
}

.call-now {
background-color: #DAA520;
color: #800020;
padding: 0.5rem 1rem;
border-radius: 0.5rem;
text-transform: uppercase;
width: 35rem;
}

.call-now:hover {
background-color: gold;
color: #800020;
width: 15rem;
transform: scale(1.2);
}

input[type="checkbox"] {
display: none;
}

/* ==================Media Queries================= */

/* For Desktop (max-width: 1366px) */
@media screen and (max-width: 1366px) {
  .header {
      width: 100%;
      height: 10rem;
      padding: 1rem 1.5rem;
      gap: 1rem;
  }

  .logo_for_aksharigold img {
      height: 8rem;
  }

  nav {
      gap: 0;
  }

  .menu-btn i {
      display: block;
  }

  nav ul {
      gap: 1.5rem;
  }

  nav ul li a {
      font-size: 1.6rem;
      padding: 0.6rem 1.2rem;
  }

  .call-now {
      width: 30rem;
  }
}

/* For Mobile (max-width: 991px) */
@media screen and (max-width: 991px) {
  .header {
      flex-direction: column;
      height: auto;
      padding: 1rem 1.2rem;
      gap: 1rem;
      position: fixed; /* Added to manage the position of elements */
      top: 0;
      width: 100%;
      
  }

  .logo_for_aksharigold img {
      height: 10rem;
      position: relative;
      left:28rem;
      margin-top: 0.3rem;
      margin-left: 0;
  }

  nav {
      width: 100rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  nav ul {
      display: none; /* Hide the menu by default */
      flex-direction: column;
      gap: 1rem;
      list-style: none;
      padding: 1rem;
      position: absolute;
      top: 10rem; /* Position below the header */
      left: 0;
      background-color: white;
      width: 30%;
      box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.2);
  }

  nav ul li {
      margin: 0;
      width: 100%;
  }

  nav ul li a {
      color: black;
      text-decoration: none;
      font-size: 1.4rem;
      padding: 0.5rem 1rem;
      display: block;
      transition: background-color 0.3s ease;
  }

  nav ul li a:hover {
      background-color: #DAA520;
      color: white;
  }

  /* Hamburger Icon */
  .menu-btn {
      display: block;
      cursor: pointer;
      z-index: 9999 !important;
      position: absolute; /* Make it absolute */
      right: 6rem; /* Align it to the right side */
      top: 4rem; /* Adjust top position */
  }

  .menu-btn i {
      font-size: 3rem !important;
      color: #800020 !important;
      display: block !important;
  }

  /* Checkbox and menu toggle functionality */
  input[type="checkbox"] {
      display: none; /* Hide the checkbox */
  }

  input[type="checkbox"]:checked + .menu-btn + ul {
      display: flex; /* Show the menu when checkbox is checked */
  }

  .call-now {
      width: 100%;
      text-align: center;
      padding: 0.5rem;
      background-color: #DAA520;
      color: #800020;
      margin-top: 1rem;
      display: block;
  }
}
/* ==================End Of Header================= */

/* ===========Start Of Slider Container============= */

.slider-container {
  position: relative;
  height: 60rem;
  width: 150rem;
  bottom: -12rem;
  left: 1rem;
  overflow: hidden; /* Ensures that only one image is visible at a time */
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 60rem;
    width: 150rem;
}

.slide {
    min-width: 100%; /* Each slide takes up 100% width */
    position: relative;
    flex: 1;
    object-fit: cover;
    height: 45rem;
}

.slide img {
    width: 100%;
    height: 60rem;
}

.content {
    position: absolute;
    bottom: -4rem;
    left: 20rem;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border-radius: 1rem;
    height: 35rem;
    width: 50rem;
}

.slide-heading {
    margin: 0;
    position: relative;
    top: 4.5rem;
    left: 3rem;
    font-size: 3rem;
    color: #D4AF37;
}

.pointsInSlide {
    position: relative;
    top: 7rem;
    left: 2rem;
    font-size: 2rem;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 4rem;
    padding: 1rem;
    cursor: pointer;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 1rem;
}

.next {
    right: 1rem;
}

.contactUs, .contactUs1, .contactUs2 {
    font-size: 1.6rem;
    border: none;
    border-radius: 1.5rem;
    cursor: pointer;
    background-color: #DAA520;
    color: #800020;
    padding: 1.5rem 2rem;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
}

.contactUs {
    top: 4.5rem;
    left: -2rem;
}

.contactUs1 {
    top: 5.5rem;
    left: -2rem;
}

.contactUs2 {
    top: 20rem;
    left: 5rem;
}

/* ==================Media Queries================= */

/* For Min-Width: 1200px */
@media screen and (min-width: 1200px) {
  .slider-container {
    height: 60rem;
    width: 100%;
  }
  .slider{
    width: 100%;
  }
  .slide img {
    height: 60rem;
    width: 100%;
  }
  .content {
    width: 50rem;
    height: 35rem;
  }
  .slide-heading {
    font-size: 3rem;
  }
  .pointsInSlide {
    font-size: 2rem;
  }
}

/* For Max-Width: 992px */
@media screen and (max-width: 992px) {
  .slider-container {
    height: 50rem;
    width: 100%;
    bottom: -2rem;
  }

  .slider {
    width: 100%;
  }

  .slide img {
    height: 100%;
  }

  .content {
    width: 45rem;
    height: 30rem;
    bottom: 3rem;
  }

  .slide-heading {
    font-size: 2.5rem;
  }

  .pointsInSlide {
    font-size: 1.8rem;
  }

  .prev, .next {
    font-size: 3rem;
  }

  
  .contactUs1{
    position: relative;
    top: 3rem;
  }
  .contactUs2{
    position: relative;
    top: 8rem;
    left: 1rem;
  }
}

/* For Max-Width: 768px */
@media screen and (max-width: 768px) {
  .slider-container, .slider {
    height: 40rem;
    width: 100%;
  }

  .slide img {
    height: 40rem;
    width: 100%;
  }

  .content {
    width: 40rem;
    height: 28rem;
    bottom: 9rem;
    left: -1.5rem;
  }

  .slide-heading {
    font-size: 2rem;
  }

  .pointsInSlide {
    font-size: 1.6rem;
    width: 29rem;
  }

  .prev, .next {
    font-size: 2.5rem;
  }

  .contactUs{
    top: 2rem;
    left:-4rem
  }
  .contactUs1{
    top: 1.5rem;
    left: 3rem;
  }
  .contactUs2{
    top: 7.5rem;
    left: 2rem;
  }

}

/* For Min-Width: 1024px */
@media screen and (min-width: 1024px) {
  .slider-container {
    height: 60rem;
    width: 150rem;
    bottom: -4rem;
    top: 13rem;
  }

  .slider {
    width: 100%;
    height: 90rem;
  }

  .slide img {
    height: 90rem;
  }

  .content {
    width: 100%;
    height: 87rem;
    bottom: -44rem;
    left:0;
  }

  .slide-heading {
    font-size: 4rem;
    top: 14rem;
    left:7rem;
  }

  .pointsInSlide {
    font-size: 2rem;
    top: 17rem;
    left: 8rem;
  }

  .prev, .next {
    font-size: 3.5rem;
  }

  .contactUs, .contactUs1, .contactUs2 {
    font-size: 1.5rem;
    padding: 1.2rem 1.8rem;
  }
}

/* For Max-Height: 500px */
@media screen and (max-height: 500px) {
  .slider-container {
    height: 40rem;
  }

  .slide img {
    height: 40rem;
  }

  .content {
    height: 20rem;
    bottom: -2rem;
  }

  .slide-heading {
    font-size: 2rem;
  }

  .pointsInSlide {
    font-size: 1.4rem;
  }

  .prev, .next {
    font-size: 2rem;
  }

  .contactUs, .contactUs1, .contactUs2 {
    font-size: 1rem;
    padding: 1rem;
  }
}

/* ==================End of Slider================= */

/* ===============Stylings for main=============== */
main{
  height: 80rem;
  width: 100%;
  display: grid;
  position: relative;
  top: 12rem;
  right: 5rem;
}

.aboutusinhome {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem;
  background-color: #f9f9f9;
  gap: 2rem;
  height: 21.8rem;
}

.about-us-dark {
  height: 3rem;
  font-size: 4rem;
  font-weight: bold;
  color: #800020;
  margin: 1rem 0;
  position: relative;
  top: 2rem;
  left: -0.7rem;
  right: 7.8rem;
}

.about-us-content {
  flex: 1;
  max-width: 50%;
  position: relative;
  top: 8.5rem;
  left: -20rem;
}

.about-us-description {
  font-size: 1.7rem;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 2rem;
  color: #333;
}

.about-us-list {
  list-style-type: disc;
  padding-left: 2rem;
  color: orange;
  font-size: 1.7rem;
}

.about-us-side {
  flex: 1;
  max-width: 50%;
  justify-content: flex-start;
  position: relative;
  left: -13.7rem;
  top: 8.5rem;
}

.about-us-side p {
  font-size: 1.7rem;
  line-height: 1.6;
  text-align: left;
  color: #333;
  margin-bottom: 2rem;
}

.read-more {
  background-color: gold;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.7rem;
  cursor: pointer;
  border-radius: 5rem;
  align-self: flex-start;
}

.read-more:hover {
  color:whitesmoke;
  background-color: goldenrod;
  transform: scale(1.05);
}
/* ==========Meadia query starts here============= */
/* Styles for max-width: 426px */
@media (max-width: 426px) {
  .aboutusinhome {
    flex-direction: column;
    height: auto;
    gap: 1rem;
    padding: 1rem;
  }

  .about-us-dark {
    font-size: 3rem;
    top: 1rem;
    left: 0;
    right: 0;
    text-align: center;
  }

  .about-us-content,
  .about-us-side {
    max-width: 68%;
    position: relative;
    top: 2rem;
    left: 5rem;
    text-align: left;
  }

  .read-more {
    font-size: 1.5rem;
    padding: 0.8rem 1.5rem;
  }
}

/* Styles for max-width: 768px */
@media (min-width:426px) and (max-width: 767px) {
  .aboutusinhome {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .about-us-dark {
    font-size: 3.5rem;
    left: 8rem;
    text-align: center;
  }

  .about-us-content {
    position: relative;
    left: -9rem;
    width: 30rem;
    text-align: justify;
  }
  .about-us-side {
    max-width: 68%;
    position: relative;
    left: -40rem;
    top: 40rem;
    text-align: justify;
    width: 35rem;
  }

  .about-us-description,
  .about-us-side p {
    font-size: 1.5rem;
  }
  
  .read-more {
    font-size: 1.6rem;
    padding: 1rem 2rem;
  }
}

/* Styles for max-width: 992px and min-width: 768px */
@media (min-width: 767px) and (max-width: 992px) {
  .aboutusinhome {
    flex-direction: row;
    gap: 2rem;
    padding: 2rem;
    height: 40rem;
    position: relative;
    left: 8rem;
  }

  .about-us-dark {
    font-size: 3.8rem;
    left: -0.5rem;
  }

  .about-us-content,
  .about-us-side {
    max-width: 45%;
    position: relative;
  }

  .about-us-description,
  .about-us-side p {
    font-size: 1.6rem;
  }

  .read-more {
    font-size: 1.7rem;
  }
}

/* Styles for max-width: 1200px and min-width: 992px */
@media (min-width: 992px) and (max-width: 1200px) {
  .aboutusinhome {
    flex-direction: row;
    gap: 2rem;
    padding: 3rem;
    height: 40rem;
    position: relative;
    left: 10rem;
    top: 2rem;
  }

  .about-us-dark {
    font-size: 4rem;
    left: -1rem;
  }

  .about-us-content,
  .about-us-side {
    max-width: 48%;
  }

  .about-us-description,
  .about-us-side p {
    font-size: 1.7rem;
  }

  .read-more {
    font-size: 1.7rem;
  }
}

/* Styles for min-width: 1200px */
@media (min-width: 1200px) {
  .aboutusinhome {
    flex-direction: row;
    gap: 3rem;
    padding: 4rem;
    height: 35rem;
    position: relative;
    left: 5rem;
  }

  .about-us-dark {
    font-size: 4.5rem;
    left: -1.5rem;
  }

  .about-us-content,
  .about-us-side {
    max-width: 50%;
  }

  .about-us-description,
  .about-us-side p {
    font-size: 1.8rem;
  }

  .read-more {
    font-size: 1.8rem;
  }
}


/* ===============End of About section============== */

 /* ====================our Service=================== */
.highlights-section {
  position: relative;
  top:10rem;
  text-align: center;
  padding: 2rem;
  width: 100%;
}

/* Cursive Title */
.cursive-title {
  /* font-family: 'Brush Script MT', cursive; */
  font-size: 3em;
  margin-bottom: 1rem;
  color: #800020;
}

/* Subheading */
.subheading {
  font-size: 3em;
  margin-bottom: 2rem;
  color: #333;
}

/* Cards Container */
.cards-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem;
}

/* Individual Card */
.card {
  background-color: #fff;
  border: 0.1rem solid #ddd;
  border-radius: 1rem;
  box-shadow: 0 0.4rem 0.6rem rgba(0, 0, 0, 0.1);
  width: 30rem;
  padding: 2rem;
  position: relative;
  left:3rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-0.31rem);
  box-shadow: 0 0.6rem 1.2rem rgba(0, 0, 0, 0.2);
}

/* Card Icon */
.card-icon {
  font-size: 2.5em;
  color: orange;
  margin-bottom: 1.5rem;
}

/* Card Content */
.card h3 {
  font-size: 2em;
  margin-bottom: 1rem;
  color: #800020;
}

.card p {
  font-size: 1.3em;
  line-height: 1.5;
  color: #555;
}

/* Responsive Design */
@media (max-width: 426px) {
  .subheading,  .cursive-title{
    display: flex;
  }
  .subheading{
    position: relative;
    left: 5rem;
  }
  .cursive-title{
    position: relative;
    left:12rem;
  }
  .cards-container {
    flex-direction: column;
    align-items: center;
}

.card {
    width:50%;
    left: -5rem;
}
}

@media (min-width:426px) and (max-width:767px) {
  .highlights-section{
    position: relative;
    top: 40rem;
    left: -11rem;
  }

  .cards-container {
      flex-direction: column;
      align-items: center;
  }

  .card {
      width:50%;
      left: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .highlights-section{
  position: relative;
  top: 5rem;
  left: 0rem;
}

.cards-container {
    flex-direction: column;
    align-items: center;
}

.card {
    width:50%;
    left: 0;
}
}

@media (min-width: 1024px) {
  .highlights-section{
  position: relative;
  top: 0;
}
}

/* ==============End Of Our Service Section============ */

/* =================TestinominalSection====================== */
.reviews-section {
  background-color: #f9f9f9;
  /* padding: 40px 20px; */
}

.section-title h2 {
  font-size: 4rem;
  color: #800020;
  text-align: center;
  margin-bottom: 10px;
}

.section-title p {
  text-align: center;
  color: #666;
  margin-bottom: 3rem;
  font-size: 1.5rem;
}

.reviews-slider {
  position: relative;
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto 20px auto;
}

.review-item {
  display: none;
  text-align: center;
  padding: 10rem;
  background: whitesmoke;
  border-radius: 2rem;
  box-shadow: inset 0px -1px 20px 4px rgba(0, 0, 0, 0.1);
  transition: opacity 1s ease-in-out;
}

.review-item.active {
  display: block;
  opacity: 1;
}

.review-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}

.review-item p {
  font-size: 1rem;
  color: #555;
  font-style: italic;
  margin: 0;
}

.quote-icon-left,
.quote-icon-right {
  color: #ffc107;
  font-size: 1.5rem;
}

/* Media Queries for Testimonials Section */

/* For screens wider than 1200px */
@media (min-width: 1200px) {
  .reviews-section {
    position: relative;
    width: 65%;
    height: 40rem;
    left: 30rem;
    bottom: 5rem;
    top: 5rem;
  }
  .container{
    position: relative;
    height: 44rem;
    bottom: 8rem;
  }

  .section-title h2 {
    font-size: 5rem;
    position: relative;
    top: 6rem;
  }

  .section-title p {
    font-size: 2rem;
    position: relative;
    top: 4rem;
  }

  .reviews-slider {
    max-width: 800px;
    top: 5rem;
  }

  .review-item {
    padding: 8rem;
  }

  .review-item h3 {
    font-size: 2rem;
  }

  .review-item p {
    font-size: 1.2rem;
  }
}

/* For screens between 992px and 1200px */
@media (max-width: 1200px) and (min-width: 992px) {
  .reviews-section {
    width: 70%;
    padding: 50px 30px;
    left: 15rem;
    position: relative;
    bottom: 2rem;
  }

  .section-title h2 {
    font-size: 4.5rem;
    position: relative;
    top: 0;
    left: 0;
  }

  .section-title p {
    font-size: 1.8rem;
    position: relative;
    top: 0;
  }

  .reviews-slider {
    max-width: 100%;
    top: 0;
    left: 1rem;
  }

  .review-item {
    padding: 7rem;
    position: relative;
    top: 1rem;
  }

  .review-item h3 {
    font-size: 1.8rem;
  }

  .review-item p {
    font-size: 1.1rem;
  }
}

/* For screens smaller than 768px */
@media (min-width:426px) and (max-width: 767px) {
  .reviews-section {
    padding: 30px 15px;
    position: relative;
    left: -4rem;
    width: 70rem;
    top: 40rem;
  }

  .section-title h2 {
    font-size: 3.5rem;
    left: 7rem;
    width: 68%;
    position: relative;
    top: 0;
  }

  .section-title p {
    font-size: 1.4rem;
    position: relative;
    left: 7rem;
    width: 68%;
    top: 0;
  }

  .reviews-slider {
    max-width: 100%;
    top: 0;
    left:2rem;
  }

  .review-item {
    padding: 5rem;
    width: 50%;
    position: relative;
    left: 6rem;
  }

  .review-item h3 {
    font-size: 1.4rem;
  }

  .review-item p {
    font-size: 0.9rem;
  }
}

@media (max-width: 426px) {
  .reviews-section {
    padding: 30px 15px;
    position: relative;
    left: 1rem;
    width: 40rem;
    top: 7rem;
  }

  .section-title h2 {
    font-size: 3.5rem;
    left: 7rem;
    width: 68%;
    position: relative;
  }

  .section-title p {
    font-size: 1.4rem;
    position: relative;
    left: 7rem;
    width: 68%;
  }

  .reviews-slider {
    max-width: 100%;
  }

  .review-item {
    padding: 5rem;
    width: 50%;
    position: relative;
    left: 6rem;
  }

  .review-item h3 {
    font-size: 1.4rem;
  }

  .review-item p {
    font-size: 0.9rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .reviews-section {
    padding: 30px 15px;
    position: relative;
    left: 22rem;
    width: 45rem;
    top: 7rem;
  }
}

/* =================End Of Testinominala=============== */

/* ===================contactus form=================== */
/* Row Styling */
.row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.col-md-6 {
  flex: 1;
  min-width: 45%;
}

.col-lg-6 {
  width: 55%;
  padding: 2rem;
  position: relative;
  left: 38rem;
  height: 40rem;
  top:3rem;
}
#whatsappForm{
display: flex;
flex-direction: column;
position: relative;
width: 100%;
height: 40rem;
}

.php-email-form {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0.6rem;
  font-family: Arial, sans-serif;
  position: relative;
  top: 1rem;
  left: 44rem;
  width: 59rem;
}

.footerAboveContactusForm{
  height: 3rem;
  font-size: 4rem;
  font-weight: bold;
  color: #800020;
  margin: 1rem 0;
  position: relative;
  left: 65rem;
  top: -3rem;
}

/* Input and Textarea Styles */
.php-email-form .form-group input,
.php-email-form .form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.php-email-form .form-group input:focus,
.php-email-form .form-group textarea:focus {
  /* border-color: #007bff; */
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Button Styling */
.php-email-form button#sendButton {
  background: gold;
  color: #fff;
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.php-email-form button#sendButton:hover {
  background:goldenrod;
  transform: scale(1.05);
}

/* Custom Error Styles */
.text-danger {
  color: red;
  font-size: 0.9rem;
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

/* Responsive Design for Contact Us Form */

/* For screens wider than 1200px */
@media (min-width: 1200px) {
  .php-email-form {
    width: 60rem;
    left: 10rem;
    padding: 2rem;
    top: 10rem;
  }

  .footerAboveContactusForm {
    font-size: 4rem;
    left: 30rem;
    top: 7rem;
  }
}

/* For screens between 992px and 1200px */
@media (max-width: 1200px) and (min-width: 992px) {
  .php-email-form {
    width: 60rem;
    left: -19rem;
    padding: 2rem;
    top: 5rem;
  }

  .footerAboveContactusForm {
    font-size: 5rem;
    left: 0;
    top: 0;
  }
}

/* For screens between 768px and 992px */
@media (max-width: 992px) and (min-width: 767px) {
  .col-lg-6{
    width: 55%;
    padding: 2rem;
    position: relative;
    left: 14rem;
    height: 40rem;
    top: 2rem;
  }

  .php-email-form {
    width: 40rem;
    left: 11rem;
    padding: 1.5rem;
    top: 13rem;
  }

  .footerAboveContactusForm {
    font-size: 3rem;
    margin-bottom: 1rem;
    top: 10rem;
    left: 23rem;
  }

  .php-email-form .form-group input,
  .php-email-form .form-group textarea {
    font-size: 1.2rem;
  }

  .php-email-form button#sendButton {
    font-size: 1.2rem;
  }
}

/* For screens smaller than 768px */
@media (min-width:426px) and (max-width: 767px) {
  .col-lg-6{
    width: 55%;
    padding: 2rem;
    position: relative;
    left: 19rem;
    height: 40rem;
    top: 40rem;
  }

  .php-email-form {
    width: 45rem;
    left: -16rem;
    top: 3rem;
    padding: 1rem;
  }

  .footerAboveContactusForm {
    font-size: 4rem;
    left: -7rem;
    text-align: center;
    top: 0;
  }

  .php-email-form .form-group input,
  .php-email-form .form-group textarea {
    font-size: 1rem;
  }

  .php-email-form button#sendButton {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
  }
}

/* For screens smaller than 426px */
@media (max-width: 426px) {
  .php-email-form {
    width: 30rem;
    padding: 0.8rem;
    top: 6rem;
    left: -34rem;
  }

  .footerAboveContactusForm {
    font-size: 4rem;
    margin: 0 0 1rem 0;
    top: 4rem;
    left: -30rem;
  }

  .php-email-form, .form-group input,
  .php-email-form, .form-group textarea {
    font-size: 0.9rem;
    /* left: -6rem; */
  }

  .php-email-form button#sendButton {
    font-size: 0.9rem;
    padding: 0.8rem;
  }
}

/*================= Footer Container================ */
.footer-container {
  position: relative;
  top: 136rem;
  display: flex;
  flex-wrap: wrap;
  background: #222;
  color: #fff;
  padding: 2rem 1rem;
  gap: 1.5rem;
  justify-content: space-between;
  font-family: Arial, sans-serif;
}

.footer-card {
  background: #333;
  padding: 2rem;
  border-radius: 0.8rem;
  flex: 1;
  min-width: 15rem;
  color: #fff;
  font-size: 1.3rem;
}

.footer-card h3, .footer-card h4 {
  color: goldenrod;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}

.footer-card ul {
  list-style: none;
  padding: 0;
}

.footer-card ul li {
  margin-bottom: 1rem;
}

.footer-card ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-card ul li a:hover {
  color: gold;
}

.footer-card.warning p {
  text-align: justify;
  font-size: 1.4rem;
  color: #ddd;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: goldenrod;
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 2rem;
  text-decoration: none;
}

.social-links a:hover {
  background: #fff;
  color: gold;
  transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  font-size: 1.4rem;
  position: relative;
  top: 136rem;
}
/* =======================Back to top============ */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: gold;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  cursor: pointer;
  display: none; /* Hidden by default */
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, opacity 0.3s ease;
}

.scroll-to-top:hover {
  background-color: gold;
  color: #333;
}

/* Show button when scrolled down */
.show-scroll {
  display: flex !important;
}

/* WhatsApp Icon */
.whatsapp-icon {
  position: fixed;
  bottom: 8rem;
  left: 1.5rem;
  width: 5rem;
  height: 5rem;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
}

/* Phone Icon */
.phone-icon {
  position: fixed;
  bottom: 8rem;
  right: 1.5rem;
  width: 5rem;
  height: 5rem;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.phone-icon:hover {
  transform: scale(1.1);
}

@media (max-width: 1200px) {
  .footer-container {
    top: 150rem;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
  }

  .footer-card {
    min-width: 100%;
    padding: 1.5rem;
  }

  .social-links {
    justify-content: center;
    gap: 1rem;
  }

  .social-links a {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.8rem;
  }

  .footer-bottom {
    font-size: 1.2rem;
    top: 150rem;
  }
}

@media (max-width: 992px) {
  .footer-container {
    top: 188rem;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
  }

  .footer-bottom {
    font-size: 1.2rem;
    top: 188rem;
  }
}

@media (max-width: 768px) {
  .footer-container {
    gap: 1.5rem;
    top: 200rem;
  }

  .footer-card {
    padding: 1rem;
  }

  .footer-card h3, .footer-card h4 {
    font-size: 1.2rem;
  }

  .social-links {
    margin-top: 1rem;
  }

  .footer-bottom {
    font-size: 1rem;
    top: 200rem;
  }
}

@media (max-width: 426px) {
  .footer-container {
    padding: 1rem;
    top: 215rem;
  }

  .footer-card {
    text-align: center;
    padding: 0.8rem;
  }

  .footer-card h3, .footer-card h4 {
    font-size: 1rem;
  }

  .social-links {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .back-to-top, .whatsapp-icon, .phone-icon {
    width: 3rem;
    height: 3rem;
    font-size: 1.8rem;
  }

  .footer-bottom {
    font-size: 0.9rem;
    top: 215rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 45%;
    scroll-behavior: smooth;
  }
}

@media (max-width: 998px) {
  html {
    font-size: 55%;
    scroll-behavior: smooth;
  }
}

@media (max-width: 1440px) {
  html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
  }
}
