* {
  margin: 0;
  padding: 0;
  max-width: 100vw;
  box-sizing: border-box;
}

/* General Navbar Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  
}
/* General Navbar Styling */
nav {
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 1rem; /* Reduced padding */
  transition: all 0.4s ease;
  z-index: 100;
  background: #fefae0;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.1);
  position: sticky;
  overflow-x: initial;
}

nav .nav-content {
  height: 100%;
  width: 100%;
  max-width: 75rem;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fefae0;
  margin: auto;
}
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: rgb(0, 0, 0);
  cursor: pointer;
}
/* Logo */
.logo img {
  height: auto;
  width: 12rem; /* Responsive width */
  max-width: 8rem;
}

/* Navbar Links */
.nav-content .nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap; /* Prevents wrapping */
  gap: 1rem; /* Adds spacing between links */
  width: auto;
}

.nav-links li {
  list-style: none;
  margin: 0;
  flex-shrink: 1; /* Allows items to shrink if needed */
}

.nav-links li a {
  text-decoration: none;
  color: #0E2431;
  font-size: 1.2rem; /* Default size */
  font-weight: 500;
  padding: 0.5rem 0.8rem;
  font-family: "Montserrat", sans-serif;
}

/* Hover Effects */
.nav-links li a:hover {
  color: #434242;
  font-weight: 700;
}

nav.sticky .nav-links li a {
  color: #000000;
  transition: all 0.4s ease;
}

nav.sticky .nav-links li a:hover {
  color: #0E2431;
}

/* Responsive Styling */

/* Tablets (max-width: 48rem or 768px) */
@media screen and (max-width: 48rem) {
  .logo img {
    width: 10rem; /* Adjusted for tablets */
    max-width: 7rem;
  }
  
  .nav-content .nav-links {
    gap: 0.8rem; /* Reduce spacing */
  }

  .nav-links li a {
    font-size: 0.8rem;
    padding: 0.1rem 0.1rem;
  }
}

/* Mobile Devices (max-width: 30rem or 480px) */
/* Mobile Devices (max-width: 30rem or 480px) */
@media screen and (max-width: 30rem) {
  .menu-toggle {
    display: block;
    font-size: 2rem;
    background: none;
    border: none;
    color: #000;
    cursor: pointer;
    z-index: 1001;
  }

  .nav-content {
    position: relative;
    justify-content: space-between;
  }

  .nav-content .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #fefae0;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.4s ease;
    z-index: 1000;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
  }

  .nav-content .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 1rem 0;
  }

  .nav-links li a {
    font-size: 1.2rem;
    color: #222;
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-weight: 600;
  }

  .logo img {
    width: 7rem;
  }

  nav {
    padding: 1rem;
  }
}

/* Base Styles */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #fefae0;
  color: #0E2431;
  line-height: 1.6;
}

.process-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.process-section h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #333;
  text-align: center;
  margin-bottom: 60px;
}

/* Step Container */
.process-step {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.process-step.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Optional stagger delays when animating */
.process-step.animate:nth-child(odd) {
  transition-delay: 0.2s;
}

.process-step.animate:nth-child(even) {
  transition-delay: 0.4s;
}

/* Reverse order for even steps */
.process-step.reverse {
  flex-direction: row-reverse;
}

/* Text styling */
.text {
  flex: 1;
}

.text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.text p {
  font-size: 1.1rem;
  color: #555;
  text-align: justify;
}

/* Image styling */
.image {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
  background: #222222; /* Dark background behind image for subtle border */
}

.image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
  border-radius: 12px;
}

.image img:hover {
  transform: scale(1.05);
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .process-section {
    padding: 40px 16px;
  }

  .process-step,
  .process-step.reverse {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .image,
  .text {
    width: 100%;
  }

  .image {
    margin-bottom: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .text h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }

  .text p {
    font-size: 1rem;
    padding: 0 10px;
    text-align: justify;
  }

  .process-section h1 {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .process-section {
    padding: 30px 12px;
  }

  .process-section h1 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .process-step,
  .process-step.reverse {
    gap: 24px;
  }

  .text h2 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .text p {
    font-size: 0.95rem;
    padding: 0 6px;
    text-align: justify;
  }

  .image {
    margin-bottom: 14px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
  }
}


/* Footer Section */
footer {
  background-color: #222;
  color: white;
  padding: 6rem;
  font-family: "Montserrat", sans-serif;
}

.footer-heading {
  background-color: #222;
  text-align: center;
  font-size: 3rem;
  font-family: 'Playfair Display', serif;
  color: wheat;
  margin-bottom: 3rem;
}

.footer-container {
  background-color: #222;
  max-width: 1200px;
  margin: auto;
}

.footer-content {
  background-color: #222;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-left {
  background-color: #222;
  flex: 1;
  padding:2rem;
}

.footer-left p {
  background-color: #222;
  font-size: 1.5rem;
  font-weight: 300;
  margin: 8px 0;
  opacity: 0.9;
  color: white;
  text-align: left;
  
}

.footer-left p a {
  background-color: #222;
  font-size: 1.5rem;
  font-weight: 300;
  margin: 8px 0;
  opacity: 0.9;
  color: white;
  text-align: left;
  text-decoration: none;
}

.footer-right {
  background: transparent;
  flex: 1;
  max-width: fit-content;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.footer-right iframe {

  max-width: 500px;
  height: 300px;
  border: none;
  border-radius: 4px;
}

/* Tablet */
@media (max-width: 1024px) {
  .footer-content {
    flex-direction: row;
    gap: 2rem;
  }

  .footer-heading {
    font-size: 2.5rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left p {
    text-align: center;
  }

  .footer-heading {
    font-size: 2rem;
  }

  .footer-right iframe {
    height: 250px;
  }

  footer {
    padding: 4rem 2rem;
  }
}
@media (max-width: 480px) {
  footer {
    padding: 3rem 1.5rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
  }

  .footer-left {
    width: 100%;
    padding: 1rem;
  }

  .footer-left p {
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
  }

  .footer-left p a {
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
  }

  .footer-heading {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .footer-right {
    width: 100%;
    justify-content: center;
    overflow: hidden;
  }

  .footer-right iframe {
    width: 100%;
    max-width: 100%;
    height: 200px;
    border-radius: 6px;
  }
}
