@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;
  }
}
/* =================================== */
/* ======================addressCardStyling====================== */
.contactUS-container{
    position: relative;
    top: 30rem;
}
.address-card{
    background-color: #FFFFF4;
    width: 56rem;
    height: 15rem;
    position: relative;
    left: 17rem;
    border-radius: 1rem;
    font-size: 2rem;
    justify-content: center;
    display: flex;
    color: #800020;
}
.address-card  i{
    text-align: center;
    position: relative;
    left: 25rem;
    font-size: 3.5rem;
    top: 1rem;
}
.address-card p{
  text-align: center;
  /* font-size: 2rem; */
  position: relative;
  top: 3rem;
  right: 1rem;
}
.mobileNumber-Container{
    background-color: #FFFFF4;
    width: 35rem;
    height: 15rem;
    position: relative;
    top: 1rem;
    left: 10rem;
    border-radius: 1rem;
    font-size: 2rem;
    justify-content: center;
    display: flex;
    color: #800020;
}
.mobileNumber-Container i{
  text-align: center;
  position: relative;
  left: 12rem;
  font-size: 3.5rem;
  top: 1rem;
}
.mobileNumber-Container p{
  text-align: center;
  /* font-size: 2rem; */
  position: relative;
  top: 5rem;
  right: 1rem;
  height: 2rem;
}
.emailaddress-container{
    background-color: #FFFFF4;
    width: 35rem;
    height: 15rem;
    position: relative;
    bottom: 14rem;
    left: 46rem;
    border-radius: 1rem;
    font-size: 2rem;
    justify-content: center;
    display: flex;
    color: #800020;
    cursor: pointer;

}
.emailaddress-container i{
  text-align: center;
  position: relative;
  left: 16rem;
  font-size: 3.5rem;
  top: 1rem;
  cursor: pointer;

}
.emailaddress-container p{
  text-align: center;
  /* font-size: 2rem; */
  position: relative;
  top: 4rem;
  right: 1rem;
  cursor: pointer;
}
/* ================mediaQuery=============== */
@media screen and (max-width : 625px) {
.address-card{
  width: 100%;
  height: 11rem;
  left: 0;
  font-size: 1.5rem;
  bottom: 6rem;
}
.address-card  i{
  left: 17rem;
  font-size: 2rem;
  top: 0;
}
.address-card p{
 top: 1rem;
}
}


@media screen and (max-width : 625px) {
.mobileNumber-Container{
  width: 100%;
  height: 11rem;
  top: -5rem;
  left: 0;
}
.mobileNumber-Container i{
top: 3rem;
font-size: 2rem;
}
.mobileNumber-Container p{
top: 4rem;
}
}
@media screen and (max-width : 625px) {
.emailaddress-container{
  bottom: 4rem;
  left: 0;
  width: 100%;
  height: 11rem;
}
.emailaddress-container i{
text-align: center;
position: relative;
left: 16rem;
font-size: 3.5rem;
top: 1rem;
cursor: pointer;

}
.emailaddress-container p{
text-align: center;
/* font-size: 2rem; */
position: relative;
top: 4rem;
right: 1rem;
cursor: pointer;
}
}
/* ===================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: 46rem;
      padding: 2rem;
      top: -26rem;
    }
  
    .footerAboveContactusForm {
      font-size: 5rem;
      left: 0;
      top: -34rem;
      display: flex;
      justify-content: center;
    }
  }
  
  /* For screens between 992px and 1200px */
  @media (max-width: 1200px) and (min-width: 992px) {
    .php-email-form {
      width: 60rem;
      left: -19rem;
      padding: 2rem;
      top: 15rem;
    }
  
    .footerAboveContactusForm {
      font-size: 5rem;
      left: 0;
      top: -34rem;
    }
  }
  
  /* 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: 100%;
      left: 3rem;
      padding: 1.5rem;
      top: 13rem;
      height: 50rem;
    }
  
    .footerAboveContactusForm {
      font-size: 5rem;
      margin-bottom: 1rem;
      top: -31rem;
      left: 16rem;
    }
  
    .php-email-form .form-group input,
    .php-email-form .form-group textarea {
      font-size: 2rem;

    }
  
    .php-email-form button#sendButton {
      font-size: 2rem;
    }
  }
  
  /* For screens smaller than 768px */
  @media (min-width:625px) and (max-width: 767px) {
    .col-lg-6{
      width: 100%;
    }
  
    .php-email-form {
      width: 100%;
      left: -36rem;
      top: 11rem;
      padding: 1rem;
    }
  
    .footerAboveContactusForm {
      font-size: 4rem;
      left: 9rem;
      text-align: center;
      top: -68rem;
    }
  
    .php-email-form .form-group input,
    .php-email-form .form-group textarea {
      font-size: 2rem;
    }
  
    .php-email-form button#sendButton {
      width: 100%;
      padding: 1rem;
      font-size: 1.5rem;
    }
  }
  
  /* For screens smaller than 426px */
  @media (max-width:625px) {
    .php-email-form {
      width: 154%;
      padding: 0.8rem;
      top: 19rem;
      left: -38rem;
    }
  
    .footerAboveContactusForm {
      font-size: 4rem;
      top: -23rem;
      left: -33rem;
      display: flex;
      justify-content: center;
    }
  
    .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: 1rem;
      padding: 0.8rem;
    }
  }
/*================= Footer Container================ */
.footer-container {
    position: relative;
    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;
  }
  /* ===========Scroll 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: 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;
    }
  }
  