html {
  scroll-behavior: smooth;
}
body{
  padding: 0;
  margin: 0;
  background-color: #C9E6F0;
}
/* Spinner Animation */
.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #d4af37;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
      transform: rotate(0deg);
  }
  to {
      transform: rotate(360deg);
  }
}
/* Loading Overlay */
#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease-in-out;
}

/* Hidden State for Fade-Out */
#loading-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
/* 
welcome Popup form
 */
.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: 1040;
  }
  
  .popup-content {
    background-color: #C9E6F0;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    width: 400px;
    height: auto;
    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: #F96E2A;
  }
  
  form {
    display: flex;
    flex-direction: column;
  }
  
  label {
    margin-top: 1rem;
    font-weight: bold;
  }
  
  input {
    margin-top: 0.5rem;
    padding: 1rem;
    font-size: 1rem;
    border: 0.1rem solid #ddd;
    border-radius: 0.5rem;
    position: relative;
    bottom: 3rem;
    height: 0.4rem;
    color: #C9E6F0;
  }
  
  .form-buttons {
    display: flex;
    justify-content: center; /* Adjusted since the cancel button is removed */
  }
  
  #submitBtn {
    position: relative;
    top: -2rem;
    width: 100%;
    height: 2.2rem;
    font-size: 1.3rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    background-color: #F96E2A;
    color: #fff;
    transition: background-color 0.3s, transform 0.2s;
  }
  
  #submitBtn:hover {
    background-color: #fff;
    color: #F96E2A;
    transform: scale(1.05);
  }
  
  /* Styles for the close button (X mark) */
  .close-btn {
    position: absolute;
    top: 0rem;
    right: 0.7rem;
    background: none;
    border: none;
    font-size: 2rem;
    font-weight: bold;
    color: #f3f3f3;
    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: #FBF8EF;
  height: 10.25rem;
  width: 286rem;
  gap: 2rem;
  position: fixed;
  top: 0;
  z-index: 3;
}
#fixed top{
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.logo_anvikagold img {
  height: 10rem;
  width: auto;
}

nav {
display: flex;
width: 100%;
align-items: center;
flex-wrap: wrap;
}

nav ul {
display: flex;
flex-wrap: wrap;
list-style: none;
}

nav ul li {
margin: 0 1rem;
}

nav ul li a {
color:#78B3CE;
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: #F96E2A;
}

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: #78B3CE;
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: 0.5rem;
text-align: left;
width: 15rem;
}

.dropdown_menu li a {
text-decoration: none;
font-size: 1rem;
color: #78B3CE;
display: block;
padding: 0.5rem 1rem;
transition: background-color 0.3s ease;
}

.dropdown_menu li a:hover {
background-color: #F96E2A; /* Golden */
color: white;
}

.dropdown:hover .dropdown_menu {
display: block;
}

.call-now {
background-color:  #F96E2A;
color: #C9E6F0;
padding: 0.5rem 1rem;
border-radius: 0.5rem;
text-transform: uppercase;
width: 35rem;
}

.call-now:hover {
background-color: gold;
color: #78B3CE;
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 {
    height: 6rem;
  }

  .logo_anvikagold img {
    height: 5rem;
    width: 7rem;
  }

  nav {
      gap: 0;
  }

  .menu-btn i {
      display: block;
  }

  nav ul {
    position: relative;
    top: 0.5rem;
  }

  nav ul li a {
    font-size: 1.3rem;
    padding: 0.6rem 0.2rem;
  }
}

/* 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_anvikagold img {
      height: 10rem;
      position: relative;
      left:0;
      margin-top: 0.3rem;
      margin-left: 0;
  }

  nav {
      width: 100%;
      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: #78B3CE;
      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 */
  }

  .dropdown_menu{
    width: 15rem;
  }
 
  .call-now {
      width: 80%;
      text-align: center;
      padding: 0.5rem;
      background-color: #DAA520;
      color: #78B3CE;
      margin-top: 1rem;
      display: block;
  }
}
/* 
main-Content
 */
/* Adjust image height and scaling */
.carousel-item img {
  height: 500px;              /* Desktop height */
  object-fit: cover;          /* Prevent distortion */
  width: 100%;
}

@media (max-width: 768px) {
  .carousel-item img {
    height: 300px;            /* Mobile height */
  }
}

/* Always show captions (remove d-none for smaller screens) */
.carousel-caption {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);  /* Slight overlay for readability */
  padding: 15px 20px;
  border-radius: 10px;
  width: 80%;
}

.carousel-caption h5 {
  font-size: 1.8rem;
  font-weight: bold;
}

.carousel-caption p {
  font-size: 1rem;
  margin-top: 10px;
}

.carousel-caption .call-now {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 20px;
  background-color: #F96E2A;   /* Gold tone */
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  transition: 0.3s;
}

.carousel-caption .call-now:hover {
  background-color: #e6b800;
}

/* Center align the prev/next buttons vertically */
.carousel-control-prev,
.carousel-control-next {
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  position: absolute;
  top: 40px;
}

/* Make sure caption is visible on all devices */
@media (max-width: 768px) {
  .carousel-caption {
    bottom: 10%;
    width: 90%;
    font-size: 0.9rem;
    padding: 10px 15px;
  }

  .carousel-caption h5 {
    font-size: 1.2rem;
  }

  .carousel-caption p {
    font-size: 0.85rem;
  }

  .carousel-caption .call-now {
    padding: 6px 16px;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .carousel-item img {
    height: 300px;
  }
}


/*Aboutus  Scrollable Container */
 
.about-anvikagoldbuyers{
  position: relative;
  top: 10rem;
  padding-left: 3rem;
  color: goldenrod;
}
/* Container Styles */
.container {
  position: relative;
  top: 12rem;
  background: url('images/herobg.jpg') no-repeat center center fixed;
  background-size: cover;
  overflow: hidden; /* Hide scrollbars on the body */
  width: 100%;
  /* height: 100vh; Full viewport height */
  /* overflow: hidden; Hide scrollbars on the container */
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.containerforbox {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 1rem;
  overflow-y: auto; /* Enable vertical scrolling */
  scroll-behavior: smooth; /* Smooth scrolling */
  width: 100%;
  max-width: 1200px;
  height: 100%; /* Full height for scrolling */
}

.containerforbox::-webkit-scrollbar {
  display: none; /* Hide scrollbar in WebKit browsers */
}

/* Box Styles */
.box {
  width: 48%; /* Set box width */
  background-color: rgba(255, 255, 255, 0.9); /* Slightly transparent white background */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  box-sizing: border-box;
  position: relative;
}

.box.left {
  align-self: flex-start; /* Align to the left */
}

.box.right {
  align-self: flex-end; /* Align to the right */
}

/* Typography */
.container_header, .container_span {
  margin: 0 0 1rem 0;
  padding: 0;
}

.container_span {
  font-family:"Lavishly Yours", serif; ;
  font-size: 3rem;
  color: #78B3CE;
  text-align: center;
}

.container_header{
  font-size: 2rem;
  color: goldenrod;
}

.container_para {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.points_span {
  font-weight: bold;
  color: #78B3CE;
}

/* Link Styles */
.contact-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #78B3CE;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 1rem;
}

.contact-btn:hover {
  background-color:  #78B3CE;
  color:gold;
  box-shadow: 0 4px 8px rgba(62, 6, 92, 0.5);
}

/* Responsive Design */

@media screen and (max-width: 426px) {
  .about-anvikagoldbuyers{
    position: relative;
    top: 10rem;
    width: 60%;
    text-align: justify;
  }

  .box {
      width: 100%; /* Full-width boxes for smaller screens */
  }

  .box.left, .box.right {
      align-self: center; /* Center-align boxes for smaller screens */
      left: -2rem;
      width: 26rem;
      text-align: justify;
    }

  .container {
    top: 10rem;
  }
 }

 @media screen and (min-width:426px)and (max-width: 992px){
  .about-anvikagoldbuyers{
    top: 18rem;
    padding-left: 3rem;
  }
  /* Container Styles */
  .container {
    top: 20rem;
  }
  
  .box.left {
    align-self: flex-start; /* Align to the left */
    position: relative;
    left: 5rem;
  }
  
  .box.right {
    align-self: flex-end; /* Align to the right */
    position: relative;
    right: 6rem;
  } 
 }
 
/* ////////////////////Testinominals */
.testimonials-header h2 {
  position: relative;
  top: 15rem;
  font-size: 4rem;
  color: goldenrod;
  text-align: center;
  margin-bottom: 10px;
}

.testimonials-header p {
  text-align: center;
  color: #666;
  margin-bottom: 3rem;
  font-size: 1.5rem;
}

.testimonials-slider {
  position: relative;
  top: 10rem;
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto 20px auto;
}

.testimonial-card {
  display: none;
  text-align: center;
  padding: 5rem;
  background: whitesmoke;
  border-radius: 2rem;
  box-shadow: inset 0px -1px 20px 4px rgba(0, 0, 0, 0.1);
  transition: opacity 1s ease-in-out;
}

.testimonial-card.active {
  display: block;
  opacity: 1;
}

.testimonial-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}

.testimonial-card 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 smaller than 426px */
@media (max-width: 426px) {
  .testimonials-header h2 {
    font-size: 3.5rem;
    top:15rem;
  }

  .testimonials-header p {
    font-size: 1.4rem;
    position: relative;
    top: 7rem;
  }

  .testimonials-slider {
    top: 10rem;
    display: flex;
    justify-content: center;
  }

  .testimonial-card {
    padding: 5rem;
    width: 50%;
  }

  .testimonial-card h3 {
    font-size: 1.4rem;
  }

  .testimonial-card p {
    font-size: 0.9rem;
  }
}
 
@media (min-width:426px) and (max-width: 993px) {
 
  .testimonials-header h2 {
    position: relative;
    top: 25rem;
  }

  .testimonials-header p {
    position: relative;
    top: 15rem;
  }

  .testimonials-slider {
    top: 20rem;
    right: 7rem;
    display: flex;
    justify-content: center;
  }

  .testimonial-card {
    padding: 5rem;
    width: 50%;
    position: relative;
    left: 6rem;
  }

  .testimonial-card h3 {
    font-size: 1.4rem;
  }

  .testimonial-card p {
    font-size: 0.9rem;
  }
}

 /* Contactus Section Styles */
.contact-us-section {
  position: relative;
  top: 17rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  border-radius: 10px;
  max-width: 600px;
  margin: 2rem auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Form Heading */
.contact-us-heading {
  font-size: 3rem;
  font-weight: bold;
  color: goldenrod;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  bottom: 6rem;
}

/* Form Container */
.contact-form-container {
  width: 100%;
}

/* Form Rows and Groups */
.form-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Input Fields */
.input-field {
  padding: 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-field:focus {
  border-color: goldenrod;
  box-shadow: 0 0 5px rgba(218, 165, 32, 0.5);
}

/* Button Styles */
.submit-button {
  position: relative;
  top: 1rem;
  display: inline-block;
  background-color: #78B3CE;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.submit-button:hover {
  color:#e6b800;
  background-color: #78B3CE; 
  box-shadow: 0 4px 8px rgba(62, 6, 92, 0.5);
}

/* Textarea */
textarea.input-field {
  resize: none;
}

/* Responsive Design */
@media screen and  (max-width: 768px) {
  .form-row {
      flex-direction: column;
  }

  .form-group {
      width: 100%;
  }
}
/* ======================Footer Styling================= */
.footer-container{
  font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 0.8rem;
  position: relative;
  top:  20rem;
  margin: 5rem;
}

footer{
  height: 25rem;
  display: flex;
  flex-flow: row wrap;
  padding: 2rem;
  color: #F4EBD0  ;
  background-color:#78B3CE;

}

.footer-left{
  width: 16rem;
  height: 21rem;
  padding-left: 2rem;
  border-radius: 1rem;
  box-shadow: 0px -1px 14px 8px rgba(0, 0, 0, 0.2);
}

.footer-left img{
  width: 50%;
}

.footer-left h2{
  margin-top: 1rem;
  font-weight: 600;
  font-size: 1rem;
}

.footer-left p{
  padding-right: 20%;
  color: #FBF8EF;
  text-align: justify;
}

.footer ul{
  position: relative;
  left: 8rem;
  list-style:none;
  padding-left: 0;
  /* display: inline; */
  width: 0;
}

.footer li{
  line-height: 2em;
  width:12rem;
  display: grid;
  text-align: justify;
  justify-content: center; 
 
}

.footer a{
  text-decoration: none;
}

.footer-right{
  padding-left: 1rem;
  position: relative;
  bottom: 19rem;
  height: 14rem;
}
.footer-right h2{
  position: relative;
  left: 8rem;
  padding-left: 2rem;
  font-size: 1.5rem;
  width: 14rem;
}

.footer-right > *{
  flex: 1 50%;
  margin-right: 1.25em;
}

.ulBox a{
  color:#FBF8EF;
  display: block;
}

.footer-bottom{
  text-align: center;
  color: #FBF8EF;
  position: relative;
  bottom: 15rem;
  left: 32rem;
}

.socials a{
  background:#F4EBD0 ;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-block;
  margin-right: 0.5rem;
}

.socials a i{
  color: #DAA520;
  padding:0.6rem;
  font-size: 1.5rem;
}

.socials a:hover { 
  background-color: #78B3CE;
}


.warning{
  position: relative;
  bottom: 17rem;
  left: 48rem;
  color: red;
  width: 0;
}

.warningP{
  position: relative;
  bottom: 17rem;
  left: 40rem;
  font-size: 1rem;
  text-align: justify;
  width: 40%;
}
 
/* =============MediaQuery=============== */
/* Small screens (mobile devices, less than 426px) */
@media (max-width:426px) {
  .footer-container {
    font-size: 0.7rem;
    top: 15rem;
    text-align: center;
  }

  footer {
    flex-direction: column;
    padding: 1rem;
    height: auto;
  }
  .footer li{
    position: relative;
    left: 2rem;
  }
  .footer-left {
    width: 100%;
    height: auto;
    box-shadow: none;
    padding-left: 1rem;
    margin-bottom: 1rem;
  }

  .footer-left img {
    width: 20%;
  }

  .footer-left p {
    text-align: center;
    padding-right: 0%;
  }

  .footer-right {
    bottom: 0;
    height: auto;
    width: 100%; /* Ensures the footer-right takes the full width */
    text-align: center; /* Centers content inside .footer-right */
    padding-left: 0;
  }

  .footer-right h2 {
    font-size: 1rem;
    text-align: center;  /* Centers the text */
    margin: 0 auto;  /* Ensures the element itself is centered */
    padding-left: 0;   /* Removes any padding that might offset it */
    width: 100%;       /* Takes up the full width of the container */
    display: block;    /* Makes it behave like a block-level element */
  }
   .footer ul{
    display: grid;
    justify-content:center ;
   }
   

  .ulBox a {
    position: relative;
    left: 0; /* Centers the links */
    font-size: 0.9rem;
  }

  .socials a {
    height: 2rem;
  }

  .socials a i {
    font-size: 1rem;
    padding: 0.4rem;
  }

  .footer-bottom {
    bottom: 0;
    left: 0;
    font-size: 0.7rem;
  }

  .warning {
    left: 0;
    bottom: 0;
    font-size: 1.5rem;
    display: block; /* Ensures it's displayed as a block */
    text-align: center; /* Centers the warning text */
  }

  .warningP {
    width: 90%;
    left: 0;
    bottom: 0;
    font-size: 0.8rem;
    text-align: center; /* Centers the warning paragraph */
  }
}


/* Medium screens (tablets, between 576px and 768px) */
 @media (min-width: 426px) and (max-width: 769px) {
  .footer-container {
    font-size: 0.8rem;
    top: 18rem;
  }

  footer {
    flex-direction: column;
    padding: 1.5rem;
    height: auto;
  }

  .footer-left {
    width: 100%;
    height: auto;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
  }

  .footer-left img {
    width: 15%;
  }

  .footer-right {
    padding-left: 2rem;
    height: 20rem;
    bottom: 0;
  }
  .footer ul{
    left: 0;
  }
  .footer-right h2 {
    left: 0;
    padding-left: 0;
    font-size: 1.2rem;
  }

  .ulBox a {
    font-size: 1rem;
  }

  .socials a {
    width: 2.2rem;
    height: 2.2rem;
  }

  .socials a i {
    font-size: 1.2rem;
    padding: 0.5rem;
  }

  .footer-bottom {
    bottom: 0;
    left: 0;
    font-size: 1rem;
  }

  .warning {
    left: 28rem;
    font-size: 2rem;
  }

  .warningP {
    width: 50%;
    left: 18rem;
    font-size: 1rem;
  }
} 

/* Large screens (desktops, between 768px and 992px) */
@media (min-width: 769px) and (max-width: 993px) {
 
}
@media (min-width: 993px) and (max-width: 1116px) {
  .warning{
    left: 40rem;
  }
  .warningP{
    left: 35rem;
    width: 35%;
  }
  .footer-bottom{
    left: 22rem;
    bottom: 14rem;
  }
}
  /* ===========addition icons */
  /* Back to Top Button */
  .back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 85px; /* You can adjust this value as per the desired position */
    right: 20px;
    background-color: #007bff;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;  /* Initially hidden */
    transition: opacity 0.3s ease-in-out;
  }
  
  .back-to-top.active {
    opacity: 1; /* Visible when active */
  }
  
  /* Call Now Button */
  .call-now-down {
    position: fixed;
    width: 46px;
    height: 46px;
    bottom: 30px;
    left: 15px;
    background-color: #78B3CE;
    color: #FFF;
    border-radius: 5px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* WhatsApp Button */
  .whatsapp {
    position: fixed;
    width: 46px;
    height: 46px;
    bottom: 30px;
    right: 15px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 5px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Hover Effect for Buttons */
  .call-now-down:hover, .whatsapp:hover, .back-to-top:hover {
    opacity: 0.8; /* Subtle hover effect */
  }
  /* =============Media Query */
@media (max-width: 768px) {
  .back-to-top{
    width: 30px;
    height: 30px;
  }
  .call-now-down{
  width: 30px;
  height: 30px;
  }
  .whatsapp {
  width: 30px;
  height: 30px;
  }
}
 /* =================MediaQuery================ */
@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;
  }
}