* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, header, section, nav, div, h1, h2, h3, p {
  margin: 0;
  padding: 0;
}


body {
  font-family: Arial, sans-serif;
}

/* Top Bar */
.top-bar {
  display: flex;
  flex-wrap: wrap; /* Allow items to wrap for smaller screens */
  justify-content: space-between;
  align-items: center;
  background-color: #228B22;
  padding: 10px 5%;
  color: #fff;
  font-size: 14px;
  margin: 0;
}

/* Make top bar items stack on small screens */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    text-align: center;
  }
}

/* Currency and Unit Toggle */
.currency-toggle select,
.unit-toggle input {
  margin: 5px;
  padding: 5px;
  background: #fff;
  border: none;
  border-radius: 5px;
  font-size: 14px;
}

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-icons a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}

/* Main Header */
/* Ensure Header Stays Visible */
/* Main Header */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f9f9f9;
  padding: 15px 5%;
  position: relative;
  z-index: 1000;
  width: 100%;
}

/* Default Navigation for Larger Screens */
.nav-links {
  display: flex;  /* Always visible on large screens */
  gap: 20px;
}

/* Ensure Header is Always Visible on Scroll */
@media (max-width: 768px) {
  .main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(249, 249, 249, 0.95);
    padding: 10px 5%;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  }

  /* Adjust body content to prevent overlap */
  body {
    padding-top: 70px;
  }
}

/* Mobile Navigation - Hidden Initially */
@media (max-width: 1024px) {
  .nav-links {
    display: none;  /* Initially hidden */
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 5%;
    background: #fff;
    padding: 10px;
    border: 1px solid #ddd;
    width: 200px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
  }

  /* Show when menu is toggled */
  .nav-links.show {
    display: flex;
  }

  /* Show menu toggle icon */
  .menu-toggle {
    display: block;
    font-size: 24px;
    cursor: pointer;
  }
}

/* Logo */
.logo img {
  height: 50px;
}

/* Navigation Links */
.nav-links a {
  color: #2AAA8A;
  text-decoration: none;
  font-size: 16px;
  position: relative;
}

.nav-links a:hover {
  text-decoration: underline;
  color: #228B22;
}


/* Full-width Container */
/* Full-width Container */
/* Main Container */
.containerr {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

/* Slider Wrapper */
.sliderr-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden; /* Prevents overflow */
}

/* Slider */
.sliderr {
  display: flex;
  width: 500%; /* 5 slides * 100% */
  transition: transform 1s ease-in-out;
}

/* Each Slide */
.sliderr img {
  flex: 0 0 100vw; /* Each image takes full screen width */
  width: 100vw;
  height: 85vh; /* Adjusted height */
  object-fit: cover;
  border-radius: 10px;
}

/* Navigation Dots */
.sliderr-nav {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.sliderr-nav a {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: white;
  border-radius: 50%;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.sliderr-nav a.active {
  opacity: 1;
}

.sliderr-nav a:hover {
  opacity: 1;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .sliderr img {
    height: 70vh; /* Adjusted for tablets */
  }
}

@media (max-width: 480px) {
  .sliderr img {
    height: 60vh; /* Adjusted for mobile */
  }
}




/* Slider */
.slider {
  width: 100%;
  height: 50vh; /* 50% of viewport height */
  overflow: hidden;
  position: relative;
}

/* Make slider smaller on mobile */
@media (max-width: 768px) {
  .slider {
    height: 35vh;
  }
}

/* Slides */
.slides {
  display: flex;
  width: 500%;
  transition: transform 1s ease-in-out;
}

/* Individual Slide */
.slide {
  flex: 0 0 20%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Navigation Dots */
.dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 15px;
  height: 15px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #007BFF;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .top-bar {
    padding: 10px;
  }

  .main-header {
    padding: 10px;
    flex-direction: column;
    text-align: center;
  }

  .breadcrumbs {
    font-size: 12px;
    padding: 10px;
  }

  .nav-links {
    width: 100%;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
}



/* About Section */
.about-section {
  display: flex;
  flex-wrap: wrap; /* Ensures wrapping on smaller screens */
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
}

.image-container {
  flex: 1;
  max-width: 50%; /* Image takes half width */
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.content-container {
  flex: 2;
  max-width: 50%;
}

/* Responsive About Section */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
  }

  .image-container,
  .content-container {
    max-width: 100%;
  }
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

/* Join Us Section */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto; /* Center the container */
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.header {
  text-align: center;
  margin-bottom: 30px;
}

.header h1 {
  font-size: 2.5rem;
  color: #2c3e50;
}

.header p {
  font-size: 1rem;
  color: #000;
}

/* Main Content */
.main-content {
  display: flex;
  flex-wrap: wrap; /* Allows elements to wrap */
  gap: 20px;
  background-color: #f9f9f9;
  padding: 20px;
}

/* Image Section */
.image-section {
  flex: 1;
  max-width: 40%; /* Takes 40% of space */
}

.image-section img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Process Section */
.process-section {
  flex: 1;
  max-width: 55%; /* Takes 55% of space */
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.process-section h2 {
  color: #007BFF;
  margin-bottom: 15px;
}

.process-section ol {
  padding-left: 20px;
  color: #555;
}

.process-section ol li {
  margin-bottom: 10px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .main-content {
    flex-direction: column; /* Stack sections */
  }

  .image-section,
  .process-section {
    max-width: 100%; /* Full width */
  }
}

@media (max-width: 768px) {
  .header h1 {
    font-size: 2rem;
  }

  .header p {
    font-size: 0.9rem;
  }

  .lightbox img {
    max-width: 80%;
  }

  .process-section {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .header h1 {
    font-size: 1.8rem;
  }

  .header p {
    font-size: 0.8rem;
  }

  .image-container img {
    border-radius: 3px;
  }

  .process-section {
    padding: 10px;
  }
}



/* About Section */
.about-section {
  display: flex;
  flex-wrap: wrap; /* Allows content to wrap on smaller screens */
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
}

.image-container {
  flex: 1;
  max-width: 50%;
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.content-container {
  flex: 2;
  max-width: 50%;
}

/* Responsive About Section */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column; /* Stack elements vertically */
  }

  .image-container,
  .content-container {
    max-width: 100%; /* Full width on smaller screens */
  }
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

/* Join Us Section */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto; /* Center the container */
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.header {
  text-align: center;
  margin-bottom: 30px;
}

.header h1 {
  font-size: 2.5rem;
  color: #2c3e50;
}

.header p {
  font-size: 1rem;
  color: #000;
}

/* Main Content */
.main-content {
  display: flex;
  flex-wrap: wrap; /* Allows sections to wrap */
  gap: 20px;
  background-color: #f9f9f9;
  padding: 20px;
}

/* Image Section */
.image-section {
  flex: 1;
  max-width: 40%;
}

.image-section img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Process Section */
.process-section {
  flex: 1;
  max-width: 55%;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.process-section h2 {
  color: #007BFF;
  margin-bottom: 15px;
}

.process-section ol {
  padding-left: 20px;
  color: #555;
}

.process-section ol li {
  margin-bottom: 10px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .main-content {
    flex-direction: column; /* Stack sections */
  }

  .image-section,
  .process-section {
    max-width: 100%; /* Full width */
  }
}

@media (max-width: 768px) {
  .header h1 {
    font-size: 2rem;
  }

  .header p {
    font-size: 0.9rem;
  }

  .lightbox img {
    max-width: 80%;
  }

  .process-section {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .header h1 {
    font-size: 1.8rem;
  }

  .header p {
    font-size: 0.8rem;
  }

  .image-container img {
    border-radius: 3px;
  }

  .process-section {
    padding: 10px;
  }
}

/* Bottom Section */
.bottom-section {
  display: flex;
  flex-wrap: wrap; /* Allows stacking on smaller screens */
  justify-content: space-between;
  gap: 20px;
}

.payment-section,
.download-section {
  flex: 1;
  min-width: 300px; /* Prevents sections from becoming too small */
}

.payment-section h3,
.download-section h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #2c3e50;
}

.payment-section ul,
.download-section ul {
  list-style-type: none;
  padding: 0;
  color: #555;
}

.payment-section ul li,
.download-section ul li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.download-section ul li a {
  text-decoration: none;
  color: #2980b9;
  transition: color 0.3s ease;
}

.download-section ul li a:hover {
  color: #3498db;
}

/* Responsive Design */
@media (max-width: 768px) {
  .bottom-section {
      flex-direction: column;
  }
}

/* Vision & Mission */
.vision-mission {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.vision, .mission {
  flex: 1;
  min-width: 280px;
  text-align: center;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #f9f9f9;
}

.icon {
  font-size: 30px;
  margin-bottom: 10px;
}

h3 {
  color: #2a2a2a;
  margin-bottom: 10px;
}

.vision p, .mission p {
  color: #777;
}

/* Responsive Vision & Mission */
@media (max-width: 768px) {
  .vision-mission {
      flex-direction: column;
      align-items: center;
  }
}

/* Join Us Section */
.join-us-section {
  background-color: #fff;
  padding: 20px;
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

/* Text Content */
.text-content {
  flex: 1;
  min-width: 300px;
}

.text-content h1 {
  font-size: 2rem;
  color: #333;
}

.buttons {
  margin: 20px 0;
}

.buttons .btn {
  padding: 10px 20px;
  margin-right: 10px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.btn-individual {
  background-color: #d32f2f;
  color: white;
}

.btn-individual:hover {
  background-color: #b71c1c;
}

.btn-group {
  background-color: #1976d2;
  color: white;
}

.btn-group:hover {
  background-color: #0d47a1;
}

.details {
  margin: 20px 0;
}

.details h2 {
  color: #333;
}

.details ul {
  list-style: none;
  padding: 0;
}

.details ul li {
  margin: 10px 0;
}

/* Download Button */
.btn-download {
  background-color: #ff9800;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.btn-download:hover {
  background-color: #e65100;
}

/* Image Content */
.image-content {
  flex: 1;
  text-align: center;
  min-width: 300px;
}

.image-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Responsive Join Us Section */
@media (max-width: 768px) {
  .join-us-section {
      flex-direction: column;
      text-align: center;
  }

  .image-content {
      text-align: center;
  }
}

/* Centering Inner Content */
.inner h2, .inner p {
  text-align: center;
}

         /* Footer Styling */
.footer {
  margin: 0;
  background-color: #1c1c1c;
  color: #fff;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  box-sizing: content-box;
}

/* Footer Container */
.footer-container {
  max-width: 100%;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
}

/* Footer Sections */
.footer-section {
  flex: 1;
  min-width: 250px;
  margin: 20px;
}

.footer-section h2 {
  font-size: 18px;
  color: #fdd835;
  margin-bottom: 10px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

/* Logo */
.footer-section .footer-logo {
  width: 120px;
  margin-bottom: 15px;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-icons a {
  color: #fdd835;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #fff;
}

/* Contact Form */
.get-in-touch form {
  display: flex;
  flex-direction: column;
}

.get-in-touch form input,
.get-in-touch form textarea {
  margin-bottom: 10px;
  padding: 10px;
  border: none;
  width: 100%;
  box-sizing: border-box;
  font-size: 14px;
  border-radius: 5px;
}

.get-in-touch form button {
  padding: 10px;
  background-color: #fdd835;
  color: #1c1c1c;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.get-in-touch form button:hover {
  background-color: #ffc107;
}

/* Payment Instructions */
.how-to-pay ol {
  margin: 10px 0;
  padding-left: 20px;
}

.how-to-pay ol li {
  margin-bottom: 10px;
  font-size: 14px;
}

.how-to-pay strong {
  color: #fdd835;
}

/* Footer Bottom Section */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: #fff;
  border-top: 1px solid #333;
  padding-top: 15px;
}

/* Back to Top Button */
.back-to-top {
  text-align: center;
  margin-top: 20px;
}

.back-to-top a {
  color: #fdd835;
  font-size: 24px;
  text-decoration: none;
  transition: 0.3s;
}

.back-to-top a:hover {
  color: #fff;
}

/* ✅ Responsive Design */
@media (max-width: 1024px) {
  .footer-container {
      flex-wrap: wrap;
      justify-content: center;
  }

  .footer-section {
      flex: 1 1 45%;
      min-width: 300px;
      text-align: center;
  }

  .social-icons {
      justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      align-items: center;
  }

  .footer-section {
      text-align: center;
      margin: 10px 0;
  }

  .social-icons {
      justify-content: center;
  }

  .get-in-touch form {
      width: 100%;
  }

  .footer-bottom {
      padding-top: 10px;
  }
}

@media (max-width: 480px) {
  .footer-section {
      width: 100%;
  }

  .social-icons {
      gap: 5px;
  }

  .footer-bottom {
      font-size: 0.8rem;
  }
}


/* About Us Section */
.about-us {
  background-color: #f9f9f9;
  width: 100vw; /* Ensure full viewport width */
  padding: 0; /* Remove extra padding */
  margin: 0; /* Remove extra margin */
  border: none; /* Remove any unwanted borders */
}

.container {
  width: 100vw; /* Full width */
  max-width: 100%; /* Remove width restrictions */
  margin: 0; /* Remove margins */
  padding: 20px; /* Remove padding */
  box-sizing: border-box;
}

/* Content Layout */
.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%; /* Full width */
}

.image {
  flex: 1;
  max-width: 50%;
}

.image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.text {
  flex: 1;
  max-width: 50%;
  color: #555;
  padding-left: 20px;
}

.text h2 {
  color: #007BFF;
  margin-bottom: 15px;
}

.text p {
  margin: 0;
  line-height: 1.6;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .content {
    flex-direction: column;
    text-align: center;
  }

  .image,
  .text {
    max-width: 100%;
  }

  .text {
    padding-left: 0;
    margin-top: 20px;
  }
}


/* Core Values, Vision & Mission */
.section-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  background-color: #fff;
}

.core-values,
.vision,
.mission {
  text-align: center;
  flex: 1;
  min-width: 300px;
  margin: 10px;
}

.core-values {
  background-color: #d3e7f8;
  padding: 20px;
  border-radius: 8px;
  height: auto;
}

.core-values ul {
  list-style: none;
  padding: 0;
}

.core-values ul li {
  margin: 10px 0;
}

.icon {
  font-size: 60px;
  color: #ffc107;
  margin-bottom: 10px;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

p {
  font-size: 1rem;
}

/* Benefits Section */
.benefits-section {
  background-color: #f3f1fa;
  padding: 20px;
  text-align: center;
}

.benefits-section h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #3a3a3a;
}

.benefits-section ul {
  list-style-position: inside;
  padding: 0;
  font-size: 1rem;
}

/* Social Share */
.social-share {
  margin-top: 20px;
  padding: 15px 15px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  text-align: right;
  background-color: #fff;
}

.social-share span {
  font-size: 1rem;
  margin-right: 10px;
}

.social-share a {
  margin: 0 10px;
  text-decoration: none;
  font-size: 1.2rem;
  color: #4a4a4a;
}

.social-share a:hover {
  color: #0073e6;
}

/* Responsive for Small Screens */
@media (max-width: 768px) {
  .section-container {
      flex-direction: column;
      align-items: center;
  }

  .core-values,
  .vision,
  .mission {
      width: 100%;
      margin-bottom: 20px;
  }

  .social-share {
      text-align: center;
  }
}

/* Projects Section */
.projects-section {
  padding: 40px;
  background-color: #f8f8f8;
}

.projects-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #333;
}

/* Project Cards Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.project-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Badge */
.project-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #4c2c91;
  color: #fff;
  padding: 5px 10px;
  font-size: 0.8rem;
  border-radius: 5px;
  font-weight: bold;
}

.project-content {
  padding: 15px;
}

.project-content h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #333;
}

.project-content p {
  margin: 5px 0 10px;
  color: #666;
}

.project-price {
  font-size: 1.5rem;
  color: #4c2c91;
  font-weight: bold;
}

/* Responsive Project Cards */
@media (max-width: 768px) {
  .projects-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 480px) {
  .projects-section {
      padding: 20px;
  }

  .projects-grid {
      grid-template-columns: 1fr;
  }

  .project-card img {
      height: 150px;
  }

  .project-content h3 {
      font-size: 1rem;
  }

  .project-price {
      font-size: 1.2rem;
  }
}


  /* General Styling */
h1 {
  text-align: center;
  color: #004080;
  margin-top: 20px;
  font-size: 2.5rem;
}

/* Gallery Section */
.gallery-section {
  padding: 40px;
  max-width: 1200px;
  margin: auto;
}

/* Center the Gallery Title */
.gallery-section h2 {
  text-align: center;
  margin-bottom: 30px;
  padding: 20%;
  font-size: 2rem;
  color: #333;
  display: block; /* Ensures it takes full width */
  width: 100%;
}

/* Responsive Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Exactly 3 items per row */
  gap: 20px;
}

/* Ensure images are larger and fill their containers */
.gallery-item img {
  width: 100%;
  height: 250px; /* Set a fixed height for uniformity */
  object-fit: cover; /* Ensures images fit without distortion */
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(1, 1fr); /* 1 per row on small screens */
  }
}


.gallery-item h3 {
  padding: 15px;
  font-size: 1.1rem;
  color: #333;
}

.faq-container {
  display: flex;
  flex-wrap: wrap;
  width: 100vw; /* Ensure it spans full width */
  max-width: 100%; /* Remove any width restrictions */
  margin: 0;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 20px; /* Optional: Adjust padding if needed */
}
.faq-question {
  font-size: 1.5rem; /* Increase from 1.2rem to 1.5rem */
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 10px;
  color: #007bff;
  transition: color 0.3s ease;
}


/* Adjust the FAQ text section to take more space */
.faq-section {
  flex: 3; /* Increase space for text */
  min-width: 70%; /* Make text section wider */
  padding: 20px;
}

/* Keep the image section smaller but still floating right */
.image-section {
  flex: 1;
  min-width: 30%;
  max-width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e9ecef;
}


      /* General Styling */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  background-color: #f4f4f4;
  color: #333;
}



/* Map Container */
.map-container {
  width: 100%; /* Full width */
  margin: 0; /* Remove extra margins */
  padding: 0; /* Remove extra padding */
  background-color: #fff;
  box-shadow: none; /* Remove box shadow */
}

.map-container iframe {
  width: 100vw; /* Full viewport width */
  height: 450px; /* Adjust height */
  display: block; /* Remove extra space */
  border: none;
}


/* Contact Section */
.contact-section {
  max-width: 100%;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-section h1 {
  text-align: center;
  color: #2c3e50;
}

/* Contact Container */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

/* Office Info & Contact Form */
.office-info,
.contact-form {
  flex: 1;
  min-width: 300px;
}

.office-info table {
  width: 100%;
  border-spacing: 0;
}

.office-info td {
  padding: 8px 5px;
  vertical-align: top;
}

/* Contact Form */
.contact-form h2 {
  color: #2c3e50;
}

.contact-form form {
  margin-top: 10px;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form button {
  padding: 10px 20px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #45a049;
}

/* Social Media */
.social-media h3 {
  margin-top: 20px;
}

.social-media a {
  margin-right: 10px;
  display: inline-block;
}

.social-media img {
  width: 24px;
  height: 24px;
}

/* Map Adjustments for Different Screens */
#map {
  height: 500px;
  width: 100%;
  border: 1px solid #ccc;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .contact-container {
      flex-direction: column;
      align-items: center;
  }

  .office-info,
  .contact-form {
      width: 90%;
  }

  .map-container iframe {
      height: 350px;
  }
}

@media (max-width: 768px) {
  .map-container iframe {
      height: 300px;
  }

  .map-container h2 {
      font-size: 1.5rem;
  }

  .contact-container {
      flex-direction: column;
      padding: 10px;
  }

  .office-info,
  .contact-form {
      width: 100%;
  }
}

@media (max-width: 480px) {
  .map-container iframe {
      height: 250px;
  }

  .contact-form input,
  .contact-form textarea {
      padding: 8px;
  }

  .contact-form button {
      width: 100%;
  }

  .social-media img {
      width: 20px;
      height: 20px;
  }
}

