/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  color: #242526;
}

/* General Navbar Styles */
.navbar {
  background-color: white;
  color: #242526;
  padding: 1rem;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.logo img {
  height: 50px;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 1.5rem;
  position: relative;
}

.nav-menu a {
  color: #242526;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
  display: block;
  padding: 0.5rem 1rem;
}

.nav-menu a:hover {
  color: #ff5722;
}

/* Dropdown Styles */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 20;
  border-radius: 4px;
  overflow: hidden;
  top: 100%;
  left: 0;
}

.dropdown-content a {
  color: #242526;
  padding: 0.75rem 1rem;
  display: block;
  text-decoration: none;
  transition: background-color 0.3s;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
  color: #ff5722;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown > a::after {
  font-size: 0.7rem;
  margin-left: 5px;
  display: inline-block;
  vertical-align: middle;
}

/* Mobile Menu Styles */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1.8rem;
  z-index: 1001;
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background-color: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.5rem 1.5rem;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    margin: 0.8rem 0;
    width: 100%;
  }

  .dropdown-content {
    position: static;
    background-color: #ffffff;
    box-shadow: none;
    display: none;
    width: 100%;
    padding-left: 1rem;
    border-radius: 0;
    margin-top: 0.5rem;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }

  .dropdown > a::after {
    float: right;
    margin-right: 10px;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
  }

  .overlay.active {
    display: block;
  }
}

/* Content Area */
.content {
  padding: 2rem;
}

.section {
  margin-bottom: 2rem;
  padding: 2rem;
  background-color: #f5f5f5;
  border-radius: 8px;
}

/* Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.popup-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.lang-btn {
  background: #e63946;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin: 10px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.lang-btn:hover {
  background: #0056b3;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #242526;
}

::-webkit-scrollbar-thumb {
  background: #3A3B3C;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh; /* Use full viewport height */
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.slide.active {
  opacity: 1;
}

.slide-content {
  max-width: 800px;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5); /* Slightly darken the background */
}

h1 {
  font-size: 3rem; /* Responsive font size */
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

p {
  font-size: 1.25rem; /* Responsive font size */
  margin-bottom: 2rem;
  line-height: 1.6;
}

.btn-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #ff5722;
  color: white;
  border: none;
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn:hover {
  transform: translateY(-3px);
}

.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
}

.nav-btn {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  transition: background-color 0.3s ease;
}

.nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Hero Slider Text Adjustment for Mobile */
@media (max-width: 768px) {
  .slide-content h1 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.875rem;
  }

  .nav-btn {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

/* Causes Section */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 36px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-title span {
  color: #ff5722;
}

.divider {
  display: flex;
  justify-content: center;
}

.divider span {
  display: inline-block;
  height: 3px;
  width: 30px;
  margin: 0 5px;
  background-color: #ff5722;
  margin-bottom: 20px;
}

.section-description {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: #777;
  font-size: 16px;
  line-height: 1.7;
}

.causes-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.cause-box {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.cause-box:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.cause-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.cause-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cause-box:hover .cause-image img {
  transform: scale(1.05);
}

.cause-content {
  padding: 20px;
}

.cause-icon {
  color: #ff5722;
  font-size: 30px;
  margin-right: 15px;
  display: inline-block;
  width: 50px;
  height: 50px;
}

.cause-title-container {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.cause-title-content {
  flex: 1;
}

.cause-title {
  font-size: 20px;
  color: #333;
  margin-bottom: 5px;
  font-weight: 600;
}

.cause-subtitle {
  font-size: 14px;
  color: #ff5722;
}

.cause-description {
  color: #777;
  font-size: 14px;
  line-height: 1.7;
  margin-top: 15px;
}

/* Causes Section with Progress Bar */
.progress-container {
  position: relative;
  margin-top: 50px;
}

.progress-bar {
  height: 10px;
  background-color: #f0f0f0;
  border-radius: 5px;
  margin-bottom: 15px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background-color: #ff5722;
  border-radius: 5px;
}

.progress-percentage {
  position: absolute;
  top: -40px;
  width: 50px;
  height: 50px;
  background-color: white;
  border: 2px solid #ff5722;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff5722;
  font-weight: bold;
  font-size: 14px;
}

.funding-details {
  display: flex;
  justify-content: space-between;
  color: #777;
  font-size: 14px;
}

.goal {
  color: #ff5722;
  font-weight: 600;
}

.raised {
  text-align: right;
}

/* Volunteer Section */
.volunteers-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.volunteer-card {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  text-align: center;
  margin-bottom: 30px;
}

.volunteer-image {
  width: 100%;
  background-color: white;
  margin-bottom: 15px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.volunteer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.volunteer-name {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #242526;
}

.volunteer-location {
  font-size: 16px;
  color: #ff5722;
}

@media (max-width: 768px) {
  .volunteers-container {
    justify-content: center;
  }

  .volunteer-card {
    min-width: 200px;
  }
}

/* Banner Section */
.banner-section {
  position: relative;
  width: 100%;
  min-height: 450px;
  background-image: url('/api/placeholder/1400/450');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.info-panel {
  background-color: white;
  padding: 40px;
  max-width: 500px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-subtitle {
  color: #ff5722;
  font-size: 18px;
  margin-bottom: 15px;
}

.info-title {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.2;
}

.info-description {
  color: #777;
  line-height: 1.6;
  margin-bottom: 25px;
}

.join-button {
  display: inline-block;
  background-color: #ff5722;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s;
  text-align: center;
}

.join-button:hover {
  background-color: #e64a19;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  max-width: 500px;
}

.stat-box {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 25px 20px;
  border-radius: 4px;
  text-align: center;
}

.stat-icon {
  color: #ff5722;
  font-size: 24px;
  margin-bottom: 10px;
}

.stat-number {
  font-size: 36px;
  font-weight: bold;
  color: white;
  margin-bottom: 5px;
}

.stat-label {
  color: white;
  font-size: 16px;
}

@media (max-width: 1024px) {
  .banner-content {
    flex-direction: column;
  }

  .info-panel {
    margin-bottom: 30px;
    width: 100%;
    max-width: 600px;
  }

  .stats-grid {
    width: 100%;
    max-width: 600px;
  }
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .banner-section {
    min-height: auto;
    padding: 60px 0;
  }
}

/* Testimonial Section */
.testimonial-section {
  text-align: center;
  max-width: 1200px;
  padding: 40px 20px;
  margin: auto;
  position: relative;
}

.title {
  font-size: 2.5rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 20px;
}

.title span {
  color: #ff5722;
}

.title-underline {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 15px auto;
}

.title-underline .line {
  height: 3px;
  width: 50px;
  background-color: #ff5722;
}

.subtitle {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 30px;
  font-weight: 600;
}

.description {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.testimonial-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  padding: 20px 0;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial {
  min-width: 100%;
  padding: 20px;
  text-align: center;
}

.testimonial-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}

.testimonial-location {
  font-size: 1.1rem;
  color: #ff5722;
  margin-bottom: 30px;
}

.avatar-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.avatar.active {
  opacity: 1;
  border-color: #ff5722;
  transform: scale(1.1);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.navigation-buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  z-index: 2;
}

.nav-btn {
  background-color: #fff;
  border: 1px solid #ddd;
  color: #333;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background-color: #ff5722;
  color: white;
}

/* Footer */
.footer {
  background-color: #2a2a2a;
  color: #a7a7a7;
  padding: 60px 0 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px;
  padding: 0 20px;
}

.footer-section h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 600;
}

.about-us p {
  line-height: 1.6;
  margin-bottom: 25px;
}

.read-more {
  color: #ff5722;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #ff7a51;
}

.read-more span {
  margin-left: 5px;
}

.useful-links ul {
  list-style: none;
}

.useful-links li {
  margin-bottom: 18px;
}

.useful-links a {
  color: #a7a7a7;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.useful-links a:hover {
  color: #ff5722;
}

.useful-links a::before {
  content: "▸";
  margin-right: 10px;
  color: #a7a7a7;
}

.recent-post .post {
  margin-bottom: 25px;
}

.recent-post .post a {
  color: #a7a7a7;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 5px;
}

.recent-post .post a:hover {
  color: #ff5722;
}

.recent-post .post span {
  font-size: 14px;
  color: #777;
}

.contact-info div {
  display: flex;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-info i {
  color: #ff5722;
  margin-right: 15px;
  font-size: 18px;
  min-width: 20px;
  text-align: center;
  margin-top: 3px;
}

.contact-info a {
  color: #a7a7a7;
  text-decoration: none;
}

.contact-info a:hover {
  color: #ff5722;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #3a3a3a;
  margin-top: 30px;
  padding-top: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.footer-bottom p {
  font-size: 14px;
}

.footer-bottom a {
  color: #ff5722;
  text-decoration: none;
}

.join-us {
  background-color: #ff5722;
  color: white;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 4px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.join-us:hover {
  background-color: #ff7a51;
}

/* Responsive Footer */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

/* Button Touch Target Enhancement for Mobile */
@media (max-width: 768px) {
  .btn {
    padding: 14px 35px;
  }
}

/* About Section */
.about-container {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  background: #f8f9fa;
  text-align: center;
}

.about-header {
  margin-bottom: 40px;
}

.about-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.about-title span {
  color: #e63946;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
  width: 140px;
}

.line {
  width: 50px;
  height: 2px;
  background: #e63946;
  transition: width 0.3s ease;
}

.divider:hover .line {
  width: 70px;
}

.dot {
  width: 8px;
  height: 8px;
  background: #e63946;
  border-radius: 50%;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: stretch;
}

.about-left, .about-right {
  flex: 1;
  min-width: 300px;
  max-width: 550px;
  display: flex;
  flex-direction: column;
}

.about-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  margin-bottom: 25px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.image-box {
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 15px;
}

.image-box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-card:hover .image-box img {
  transform: scale(1.05);
}

.card-title {
  font-size: 1.6rem;
  color: #333;
  margin: 15px 0 12px;
  position: relative;
  padding-bottom: 10px;
}

.card-title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: #e63946;
}

.card-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
}

.about-description-desktop, .about-description-mobile {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 25px;
  text-align: left;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.about-description-mobile {
  display: none;
}

.about-experience {
  background: linear-gradient(135deg, #e63946, #d62828);
  color: white;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 25px;
  text-align: left;
  box-shadow: 0 6px 12px rgba(230, 57, 70, 0.2);
}

.experience-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.experience-title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: white;
}

.about-list-container {
  background: white;
  padding: 20px 25px;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.about-list li {
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 12px;
  padding-left: 5px;
}

.about-list li:last-child {
  margin-bottom: 0;
}

.check-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: #e63946;
  font-weight: bold;
  margin-right: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 0.8rem;
}

.cta-button {
  display: inline-block;
  padding: 12px 28px;
  background: #e63946;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(230, 57, 70, 0.3);
  align-self: flex-start;
}

.cta-button:hover {
  background: #d62828;
  box-shadow: 0 6px 12px rgba(230, 57, 70, 0.4);
  transform: translateY(-2px);
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
    align-items: center;
  }

  .about-left, .about-right {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .about-description-desktop {
    display: none;
  }

  .about-description-mobile {
    display: block;
  }

  .about-title {
    font-size: 1.8rem;
  }

  .card-title, .experience-title {
    font-size: 1.4rem;
  }

  .image-box img {
    height: 200px;
  }

  .cta-button {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .about-container {
    padding: 30px 15px;
  }

  #dis{
  display: none;
  }
  .about-card, .about-experience, .about-list-container {
    padding: 15px;
  }

  .card-text, .about-description-mobile p, .about-list li {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }

  .about-left, .about-right {
    min-width: 100%;
  }

  .about-card {
    margin-bottom: 20px;
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .about-container {
    padding: 3rem 1rem;
  }

  .about-card {
    padding: 1rem;
  }

  .image-box img {
    height: 200px;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Book Appointment Button */
.book-appointment-btn {
  position: fixed;
  right: 1%;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right center;
  background-color: #3B82F6;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 9999px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 50;
}

.book-appointment-btn:hover {
  background-color: #2563EB;
  transform: translateY(-50%) rotate(-90deg) scale(1.05);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.book-appointment-btn:focus {
  outline: none;
}

/* Modal container */
.modal {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

/* Modal content */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border-radius: 8px;
  width: 80%;
  max-width: 300px;
  text-align: center;
}

/* Buttons inside modal */
.modal-content button {
  border: none;
  background: #e64a19;
  color: #fff;
  padding: 10px 15px;
  margin: 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

#google_translate_element{
  display: none;
}



#scrollToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background-color: #ff5722;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease;
  z-index: 1000;
}

#scrollToTopBtn:hover {
  background-color: #e64a19;
}

#scrollToTopBtn svg {
  pointer-events: none;
}
