@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-image: url(image/goldenveins.jpg);
    
}

/* ==================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;
  }
}
/* =================================== */
.faq-section {
  padding: 20px;
  font-family: Arial, sans-serif;
}

.faq-section h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 5rem;
  color: #800020;
  position: relative;
  top: 14rem;
}

.faq-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  top: 20rem;
}

.faq-column {
  flex: 1;
  min-width: 300px; /* Ensures responsiveness */
  max-width: 45%; /* Limits width for large screens */
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  background: #f9f9f9;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-question {
  background: none;
  border: none;
  text-align: left;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
  width: 100%;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  display: none;
  margin-top: 10px;
  color: #555;
  font-size: 1.7rem;
}

.faq-question span {
  font-size: 1.5em;
  transform: rotate(0deg);
  transition: transform 0.2s ease-in-out;
}

.faq-question.active span {
  transform: rotate(45deg);
}

.faq-question.active + .faq-answer {
  display: block;
}

/* Media Query for Phones */
@media (max-width: 768px) {
  .faq-container {
      flex-direction: column;
  }

  .faq-column {
      max-width: 100%;
  }
}

/* Back to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: goldenrod;
    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;
}

/*================= Footer Container================ */
.footer-container {
    position: relative;
    top: 35rem;
    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: 35rem;
  }
  
  /* Back to Top Button */
  .back-to-top {
    position: fixed;
    display: none;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: goldenrod;
    color: #fff;
    border-radius: 50%;
    right: 1.5rem;
    bottom: 2rem;
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .back-to-top i {
    font-size: 2.4rem;
  }
  
  .back-to-top:hover {
    background: #fff;
    color: gold;
  }
  
  /* 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: 20rem;
      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: 20rem;
    }
  }
  
  @media (max-width: 992px) {
    .footer-container {
      top: 20rem;
      flex-direction: column;
      align-items: center;
      gap: 2rem;
      text-align: center;
    }
  
    .footer-bottom {
      font-size: 1.2rem;
      top: 20rem;
    }
  }
  
  @media (max-width: 768px) {
    .footer-container {
      gap: 1.5rem;
      top: 20rem;
    }
  
    .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: 20rem;
    }
  }
  
  @media (max-width: 625px) {
    .footer-container {
      padding: 1rem;
      top: 15rem;
    }
  
    .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: 15rem;
    }
  }
  
  @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;
    }
  }
  