body{
  background-color: #00e5ff;
}
.nav-links .active {
color: #f39c12;
font-weight: bold;
border-bottom: 2px solid #f39c12;
}


/* NAVBAR SECTION */
/* NAVBAR SECTION */
.navbar {
border: 4px solid black;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 20px;
margin-bottom: 5px;
background-color: #ffffff;
position: sticky;
top: 0;
z-index: 1000;
height: 70px;
transition: all 0.3s ease;
flex-wrap: wrap;
}

.navbar.scrolled {
height: 90px;
padding-top: 10px;
background-color: #ffffff;
}

.logo-navbar {
height: 70px;
display: flex;
align-items: center;
justify-content: center;
}

.logo {
height: 100%;
width: auto;
object-fit: contain;
padding-right: 20px;
}

/* Hamburger icon */
.menu-toggle {
display: none;
font-size: 30px;
cursor: pointer;
color: #000;
margin-left: auto;
padding: 10px;
z-index: 1001;
}

/* Nav links */
.nav-links {
display: flex;
align-items: center;
gap: 20px;
margin-left: auto;
}

/* Nav link styling */
.nav-links a {
text-decoration: underline;
color: black;
font-weight: bolder;
font-size: 24px;
transition: all ease;
}

.nav-links a:hover {
color: #0000FF;
text-decoration-color: #0000FF;
}

/* Active nav link highlight */
.nav-links .active {
color: #f39c12;
font-weight: bold;
border-bottom: 2px solid #f39c12;
}


/* NAVBAR SECTION END */



/* hero section */
/* Styling for the hero section */
.hero {
  position: relative;
  height: 100vh; /* Full height of the viewport */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000; /* Fallback background color */
  overflow: hidden;
}

.hero .bg-pic-tree {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the whole section without distorting */
  opacity: 0.5; /* Slightly dim the image for better text readability */
}

.hero-content {
  position: relative; /* To keep the text content on top of the background */
  z-index: 1; /* Ensures the text stays above the image */
  text-align: center;
  color: white;
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

.cta-button {
  background-color: #ff7f50; /* Vibrant color for the button */
  color: white;
  padding: 15px 30px;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #e76c3b; /* Darker shade for hover effect */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .hero h1 {
      font-size: 2rem;
  }

  .hero p {
      font-size: 1rem;
  }

  .cta-button {
      font-size: 1rem;
      padding: 12px 25px;
  }
}




/* payment section */
/* Styling for the Hero Section */
.payment-page {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two equal columns */
  gap: 20px;
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left Section Styling */
.left-section {
  padding: 20px;
}

.left-section h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #333;
}

.left-section p {
  font-size: 1.2rem;
  color: #555;
}

/* Right Section Styling - Grid for 4 Boxes */
.right-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Two columns for smaller screens */
  gap: 20px;
}

/* Styling for the Payment Boxes */
.box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
}

.box h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.box p {
  font-size: 1rem;
  color: #666;
}

.box:hover {
  transform: translateY(-10px); /* Hover effect */
}

/* Styling for the Copy Text Button */
.copy-btn {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 1rem;
  border-radius: 5px;
  margin-top: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.copy-btn:hover {
  background-color: #0056b3;
}

/* Styling for QR Code Image */
.qr-img {
  width: 100%; /* Ensures the image takes the full width of the container */
  height: 100%; /* Ensures the image takes the full height of the container */
  object-fit: cover; /* Fills the container, cropping the image if necessary */
  margin-bottom: 10px;
}



/* Mobile responsiveness */
@media (max-width: 768px) {
  .payment-page {
      grid-template-columns: 1fr; /* Stacked sections on mobile */
  }

  .right-section {
      grid-template-columns: 1fr; /* Stacked boxes on mobile */
  }
}
















/* footer section */

.footer {
background-color: #000000;
color: white;
padding: 2rem 1rem;
font-size: 0.95rem;
font-family: sans-serif;
border-radius: 7px;
position: relative;
}

.footer-container {
display: flex;
justify-content: center;
text-align: center;
}

.footer-details {
display: flex;
flex-direction: column;
gap: 0.75rem;
margin-bottom: 10px;
}

.icon-row {
display: flex;
justify-content: center;
gap: 1.5rem;
flex-wrap: wrap;

}

.icon-row a {
color: rgb(185, 168, 255);
text-decoration: none;
display: flex;
align-items: center;
gap: 0.4rem;
font-size: 0.95rem;
}

.footer a:hover {
color: #ffffff;
}

.utkarsh {
position: absolute;
bottom: 10px;
right: 15px;
font-size: 0.85rem;
color: rgb(185, 168, 255);
}

.footer-details p {
margin: 0.5rem 0 0 0;
}











/* responsiveness */
@media (max-width: 768px) {
.menu-toggle {
  display: block;
}

.nav-links {
  display: none;
  flex-direction: column;
  background-color: white;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  position: absolute;
  top: 70px;
  left: 0;
  z-index: 999;
}

.nav-links.active {
  display: flex;
}

.navbar {
  align-items: flex-start;
}

.logo-navbar {
  height: 50px;
  margin-bottom: 10px;
}

.nav-links a {
  font-size: 16px;
  padding: 10px 0;
}

html.translated-ltr .menu-toggle {
  margin-top: 35px !important;
}

html.translated-ltr .logo-navbar {
  margin-top: 32px !important;
}
}
