@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;
  }
}
/* ==================End Of Header================= */
.releasePledgedGold{
    height: 107rem;
    margin: 3rem;
}
.releasePledgedGold h1{
    font-size: 7rem;
    color: #800020;
    position: relative;
    top: 13rem;
    text-align: center;
}
.releasePledgedGold img{
    position: relative;
    left: 41rem;
    width: 70rem;
    top: 10rem;
}
.releasePledgedGold p{
    position: relative;
    left: 25rem;
    font-size: 2rem;
    width: 100rem;
    top: 15rem;
    text-align: justify;
}

/* ================Media Query=============== */

@media screen and (max-width : 650px) {
  .releasePledgedGold h1{
    font-size: 3rem;
}
.releasePledgedGold img{
  left: 0;
  width: 100%;
  top: 12rem;
}
.releasePledgedGold p{
  left: 0;
  font-size: 1.5rem;
  width: 100%;
}
}

@media screen and (min-width : 650px) and (max-width : 1440px) {
  .releasePledgedGold h1{
    font-size: 4rem;
}
.releasePledgedGold img{
  left: 0;
  width: 100%;
  top: 12rem;
}
.releasePledgedGold p{
  left: 0;
  font-size: 2rem;
  width: 100%;
}
}

 

/* =================procedure to release Heading============= */
.procedureToRelease{
    height: auto;
    margin: 3rem;
}
.procedureToRelease h2::after{
    content: "____________"; /* Add any text or icon */
    /* display: inline-block; */
    margin-left: 10px; /* Space between the text and the after content */
    font-size: 1.2em; /* Adjust size */
    color: #DAA520; /* Gold color for the icon or text */
}
.procedureToRelease h2{
    color: #909090;
    width: 25rem;
    position: relative;
    top: 6rem;
    left: 4rem;
}
.procedureToRelease p{
    width: 50rem;
    position: relative;
    top: 3rem;
    left: 4rem;
    font-size: 3rem;
    color: #800020;
}

/* ========================Media Query======================= */
@media screen and (max-width : 650px) {
.procedureToRelease h2{
   left: 0rem;
   top: -14rem;
}
.procedureToRelease p{
    width: 35rem;
    left: 0;
    font-size: 2.5rem;
    top: -15rem;
}
}

@media screen and (min-width : 650px) and (max-width : 1024px) {
  .procedureToRelease h2{
    left: 0rem;
    top: 17rem;
 }
 .procedureToRelease p{
    left: 0;
    font-size: 3rem;
    top: 15rem
 }
 }

 @media screen and (min-width : 1024px) and (max-width : 1440px) {
  .procedureToRelease h2{
    left: 0rem;
    top: 38rem;
 }
 .procedureToRelease p{
    left: 0;
    font-size: 3rem;
    top: 35rem
 }
 }
/* ========================Steps to Release=============== */
.stepsToRelease{
    height: 63rem;
    margin: 3rem;
    position: relative;
}
.stepsToRelease p{
    position: relative;
    top: -44rem;
    font-size: 1.8rem;
    left: 1rem;
    width: 78rem;
    text-align: justify;
}
.stepsToRelease ul {
    list-style: none; /* Removes default list styling */
    padding: 0; /* Removes extra padding around the list */
    margin: 0; /* Ensures no margin around the list */
    width: 65rem;
    position: relative;
    left: 4rem;
    bottom: 43rem;
}

.stepsToRelease li {
    background-color: #ffffff; /* Sets the background to white */
    margin-bottom: 1.5rem; /* Adds space between list items */
    padding: 1.5rem; /* Adds inner spacing for each item */
    border-radius: 1rem; /* Optional: Rounds the corners for a smoother look */
    font-size: 1.7rem;
}

.stepsToRelease li strong {
    display: block; /* Ensures the headings are on a separate line */
    margin-bottom: 0.8rem; /* Adds spacing below the headings */
    font-size: 1.1em; /* Slightly increases the heading size */
    color: #800020; /* Sets a dark color for contrast */
}

.stepsToRelease img{
    width: 65rem;
    position: relative;
    top: 15rem;
    left: 80rem;
}

/* ======================Media Query============== */
@media screen and (max-width : 650px) {
.stepsToRelease p{
  top: -16rem;
  font-size: 1.5rem;
  left: 0;
  width: 100%;
}
.stepsToRelease ul {
  left: 0;
  bottom: 15rem;
  width: 100%;
}

.stepsToRelease li {
  margin-bottom: 1rem;
  padding: 1rem;
  font-size: 1.5rem;
}

.stepsToRelease img{
  width: 100%;
  top: -18rem;
  left: 0;
}
}

@media screen and (min-width : 650px) and (max-width : 1025px) {
  .stepsToRelease p{
    bottom: 15rem;
    font-size: 2rem;
    top: 15rem;
    left: 0;
    width: 100%;
  }
  .stepsToRelease ul {
    top: 15rem;
    left: 0;
    bottom: 15rem;
    width: 100%;
  }
  
  .stepsToRelease li {
    margin-bottom: 1rem;
    padding: 1rem;
    font-size: 2rem;
  }
  
  .stepsToRelease img{
    width: 80%;
    top: 15rem;
    left: 70px;
  }
}

@media screen and (min-width : 1024px) and (max-width : 1440px) {
  .stepsToRelease{
   top: 12rem;
  }
  .stepsToRelease img{
    width: 50%;
    top: 50rem;
    left: 68rem;
  }
  .stepsToRelease p{
    font-size: 2rem;
    top: -11rem;
    left: 0;
    width: 80%;
  }
  .stepsToRelease ul {
    top: -10rem;
    left: 0;
    bottom: 15rem;
    width: 45%;
  }
  
  .stepsToRelease li {
    margin-bottom: 1rem;
    padding: 1rem;
    font-size: 2rem;
  }
}
/* ====================Doc Required================= */
/* .mainDocRequired{
  height: 50rem;
} */

.docRequired {
  position: relative;
  background-image: url(image/image4.jpg);
  color: white;
  padding: 2rem 1.5rem;  /* Space around the content */
  margin: 2rem 0;  /* Add space above and below */
}

.docRequired h2 {
  font-family: 'Poppins', sans-serif;  /* Use Poppins for a clean, modern font */
  font-size: 2rem;  /* Slightly larger text */
  margin-bottom: 1rem;  /* Space below the heading */
  display: flex;  /* Align icon and text horizontally */
  align-items: center;  /* Vertically align the icon */
}

.docRequired h2 i {
  color: gold;   
  margin-right: 10px;  /* Space between icon and text */
  font-size: 3rem;  /* Adjust icon size */
}

.docRequired ul {
  list-style-type: none;  /* Remove default list bullets */
  padding-left: 0;  /* Remove default padding */
}

.docRequired ul li {
  font-size: 2rem;  /* Slightly larger text for the list items */
  margin: 0.5rem 0;  /* Space between items */
  color: #fff;   
  padding-left: 1.2rem;  /* Indentation for list items */
  position: relative;  /* To position bullet image */
}

.docRequired ul li:before {
  content: '\2022';  /* Unicode for bullet */
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;   
  font-size: 1.8rem;  /* Bullet size */
}
/* =================Media Query============ */
@media screen and (max-width : 650px) {
  .docRequired {
    top: 22rem;
  }
  .docRequired h2 i {
    font-size: 2rem;  /* Adjust icon size */
  }
  
  .docRequired ul {
    list-style-type: none;  /* Remove default list bullets */
    padding-left: 0;  /* Remove default padding */
  }
  
  .docRequired ul li {
    font-size: 1.5rem;  /* Slightly larger text for the list items */
  }
}

@media screen and (min-width : 650px) and (max-width : 1440px) {
  .docRequired {
    top: 65rem;
  }

  .docRequired ul {
    list-style-type: none;  /* Remove default list bullets */
    padding-left: 0;  /* Remove default padding */
  }
  
  .docRequired ul li {
    font-size: 2rem;  /* Slightly larger text for the list items */
  }
}
/*================= 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;
  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;
}

.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;
  text-decoration: none;
  color: #fff;
  border-radius: 50%;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.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;
}
/* Back to Top Button */
.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);
}

/* Responsive Design */
@media (max-width: 1440px) {
  .footer-container {
    top: 80rem;
  }
  
  .footer-bottom {
   top: 80rem;
  }
}
@media (max-width: 1200px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
    top: 75rem;
  }

  .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: 75rem;
  }
}

@media (max-width: 768px) {
  .footer-container {
    gap: 1.5rem;
    top: 75rem;
  }

  .footer-card {
    padding: 1rem;
  }

  .footer-card h3, .footer-card h4 {
    font-size: 1.2rem;
  }

  .footer-card ul li a {
    font-size: 1rem;
  }

  .social-links {
    margin-top: 1rem;
  }

  .footer-bottom {
    font-size: 1rem;
    top: 75rem;
  }
}

@media (max-width: 426px) {
  .footer-container {
    padding: 1rem;
    top: 30rem;
  }

  .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, .fixed-icon {
    width: 3rem;
    height: 3rem;
    font-size: 1.8rem;
  }

  .footer-bottom {
    font-size: 0.9rem;
    top: 30rem;
  }
}
  
  @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; /* Hides content that overflows horizontally */
    width: 100%;
    scroll-behavior: smooth;
  }
  }