* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #1e1e1e;
  background-color: #ffffff;
  transition: opacity 0.2s ease;
  overflow-x: hidden;

}

/* Container Max Width */
.container {
  max-width: 1320px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 29px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-text {
  font-family: "Century Gothic", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 39.2px;
  letter-spacing: 0.96px;
  color: #ffffff;
  background: #c9a44c;
  padding: 2px 8px;
  border-radius: 5px;
}

.logo-text-accent {
  font-family: "Century Gothic", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 39.2px;
  letter-spacing: 0.96px;
  color: #1e1e1e;
}

.nav {
  display: flex;
  align-items: center;
  gap: 51px;
}

.nav-link {
  font-weight: 300;
  font-size: 16px;
  line-height: 23.98px;
  color: #1e1e1e;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #c9a44c;
}

.btn-primary {
  background: #c9a44c;
  color: #0a1f33;
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #b08d57;
  transform: translateY(-2px);
}

/* Navbar overrides */
.navbar {
  padding: 0;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Mobile menu styling */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #ffffff;
    padding: 20px;
    margin-top: 15px;
    border-radius: 10px;
  }

  .nav {
    gap: 20px;
  }

  .nav-link {
    font-size: 18px;
    padding: 10px 0;
  }

  .logo-text,
  .logo-text-accent {
    font-size: 24px;
  }

  .btn-primary {
    text-align: center;
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 691px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 120px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
}

.hero-badge {
  background: #c9a44c;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 40px;
}

.badge-text {
  font-family: "Century Gothic", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #0a1f33;
}

.hero-title {
  font-weight: 600;
  font-size: 65px;
  line-height: 75px;
  letter-spacing: 1.95px;
  color: #ffffff;
  margin-bottom: 20px;
  margin-top: 0;
}

.hero-subtitle {
  font-weight: 400;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0.64px;
  color: #ffffff;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 26px;
}

.btn-secondary {
  background: #c9a44c;
  color: #0a1f33;
  border: none;
  padding: 15px 40px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #b08d57;
  transform: translateY(-2px);
}

/* Hero Section */
/* .hero {
  position: relative;
  min-height: 100vh;
  margin-top: 120px;
  overflow: hidden;
} */

.hero-content {
  max-width: 800px;
}

.hero-title {
  font-size: 65px;
  line-height: 75px;
}

.hero-subtitle {
  font-size: 32px;
  line-height: 40px;
}

.hero-buttons {
  gap: 26px;
}

/* Tablet */
@media (max-width: 991px) {
  .hero-title {
    font-size: 48px;
    line-height: 58px;
  }

  .hero-subtitle {
    font-size: 22px;
    line-height: 30px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .hero {
    margin-top: 80px;
    min-height: unset;
  }

  .hero-title {
    font-size: 34px;
    line-height: 44px;
  }

  .hero-subtitle {
    font-size: 18px;
    line-height: 26px;
  }

  .hero-badge {
    margin-bottom: 25px;
  }

  .btn-secondary {
    width: 100%;
    padding: 14px;
  }
}

/* About Section */
.about {
  padding: 100px 0;
}

.about-content {
  background: #0b2c4d;
}

.about-img {
  width: 100%;
  object-fit: cover;
}

.about-text {
  color: #ffffff;
}

.about-title {
  font-size: 45px;
  line-height: 65px;
  margin-bottom: 30px;
}

.about-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Tablet */
@media (max-width: 991px) {
  .about {
    padding: 70px 0;
    overflow-x: hidden;
  }

  .about-img {
    /*height: 500px;*/
  }

  .about-title {
    font-size: 36px;
    line-height: 52px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .about {
    padding: 50px 0;
  }

  .about-img {
    /*height: 350px;*/
  }

  .about-title {
    font-size: 28px;
    line-height: 40px;
  }

  .about-description {
    font-size: 16px;
  }

  .about-text {
    text-align: left;
  }
}

/* Podcast Section */
.podcast {
  padding-top: 100px 0;
  background: #ffffff;
}

.section-title {
  font-size: 45px;
  line-height: 65px;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 20px;
  line-height: 30px;
  color: #555555;
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.podcast-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.podcast-image {
  padding-top: 24px;
  padding-left: 35px;
}
.podcast-host-image {
  width: 418px;
  height: 520px;
  object-fit: fill;
  display: block;
  border-radius: 12px; /* optional – remove if not needed */
}

.podcast-card {
  /* background: #0b2c4d; */
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 520px;
}
.podcast-content {
  padding-left: 24px;
  padding-bottom: 35px;
}
/* .podcast-host-image {
  width: 55% !important;
} */

.podcast-host-img {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  object-fit: cover;
}

.podcast-label {
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: #c9a44c;
}

.podcast-with {
  font-size: 24px;
  color: #ffffff;
}

.podcast-host {
  font-family: "MonteCarlo", cursive;
  font-weight: 400;
  font-size: 28px;
  color: #ffffff;
}

.podcast-episodes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.episode-card {
  background: #ffffff;
  padding: 15px;
  text-align: left;
}

.episode-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: 0.48px;
  color: #1e1e1e;
  margin-bottom: 15px;
}

.episode-description {
  font-weight: 400;
  font-size: 18px;
  line-height: 24.3px;
  color: #000000;
  margin-bottom: 15px;
}

.episode-duration {
  font-size: 16px;
  color: #808386;
  margin-bottom: 20px;
  display: block;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.owl-dot span {
  width: 16px !important;
  height: 16px !important;
  border-radius: 50% !important;
  background: #e0e0e0 !important;
  cursor: pointer;
  transition: background 0.3s ease;
}

.owl-dot.active span {
  background: #c9a44c !important;
}

/* Video Section */
.video-section {
  background: #0a1f33;
  padding: 100px 0;
}

/* Typography */
.section-title-white {
  font-size: 45px;
  line-height: 65px;
  color: #ffffff;
}

.section-subtitle-white {
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
  max-width: 600px;
}

/* Video Embed */
.youtube-embed {
  position: relative;
  margin-top: 60px;
  height: 616px;
  overflow: hidden;
  border: 1px solid #ffffff;
}

.youtube-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.youtube-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.play-icon {
  width: 64px;
  height: 64px;
  cursor: pointer;
}

.youtube-channel {
  position: absolute;
  top: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.channel-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid #ffffff;
}

.channel-name {
  font-size: 24px;
  color: #ffffff;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .section-title-white {
    font-size: 36px;
    line-height: 48px;
  }

  .section-subtitle-white {
    font-size: 18px;
    line-height: 28px;
  }

  .youtube-embed {
    height: 420px;
  }

  .channel-avatar {
    width: 56px;
    height: 56px;
  }

  .channel-name {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .video-section {
    padding: 60px 0;
  }

  .section-title-white {
    font-size: 28px;
    line-height: 38px;
  }

  .section-subtitle-white {
    font-size: 16px;
    line-height: 24px;
  }

  .youtube-embed {
    height: 260px;
    margin-top: 40px;
  }

  .play-icon {
    width: 48px;
    height: 48px;
  }

  .youtube-channel {
    bottom: 15px;
    left: 15px;
  }

  .channel-avatar {
    width: 44px;
    height: 44px;
  }

  .channel-name {
    font-size: 14px;
  }
}

.photo-gallery {
  background: #c9a44c;
  padding: 80px 0;
}

/* Typography */
.section-title-dark {
  font-size: 42px;
  line-height: 56px;
  color: #0a1f33;
}

.section-subtitle-dark {
  font-size: 18px;
  line-height: 28px;
  color: #0a1f33;
  max-width: 600px;
}

/* Button */
.btn-secondary-dark {
  background: #0a1f33;
  color: #fff;
  border: 2px solid #0a1f33;
  padding: 14px 36px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-secondary-dark:hover {
  background: transparent;
  color: #0a1f33;
}

/* Images */
.gallery-img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.image_height {
  height: 385px;
}

.gallery-img:hover {
  transform: scale(1.04);
}

.gallery-large {
  min-height: 460px;
}

.gallery-wide {
  min-height: 220px;
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .photo-gallery {
    padding: 50px 0;
  }

  .section-title-dark {
    font-size: 30px;
    line-height: 40px;
  }

  .section-subtitle-dark {
    font-size: 16px;
  }

  .btn-secondary-dark {
    margin-top: 15px;
    width: 100%;
  }
}

/* Blog Section */
.blog {
  padding: 100px 0;
  background: #ffffff;
}

/* Card */
.blog-card {
  background: #ffffff;
  border: 1px solid #808386;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

/* Image */
.blog-image {
  width: 100%;
  height: 333px;
  object-fit: cover;
}

/* Content */
.blog-content {
  padding: 30px;
}

.blog-title {
  font-size: 18px;
  line-height: 25px;
  color: #1e1e1e;
  margin-bottom: 20px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.calendar-icon {
  width: 20px;
  height: 20px;
}

.blog-date {
  font-size: 14px;
  line-height: 25px;
  color: #555555;
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .blog {
    padding: 60px 0;
  }

  .blog-image {
    height: auto;
  }

  .blog-content {
    padding: 20px;
  }
}

/* Footer */
.footer {
  position: relative;
  background: #0a1f33;
  padding: 100px 0 50px;
  color: #ffffff;
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.footer-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.footer-contact h3 {
  font-size: 24px;
  line-height: 65px;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-email,
.footer-phone {
  font-size: 45px;
  line-height: 65px;
  color: #ffffff;
  margin-bottom: 15px;
}

.btn-footer {
  background: #b08d57;
  color: #0a1f33;
  border: none;
  padding: 15px 40px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 30px;
}

.btn-footer:hover {
  background: #c9a44c;
}

.footer-logo-text {
  font-family: "Century Gothic", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 39.2px;
  letter-spacing: 0.96px;
  color: #1e1e1e;
  background: #c9a44c;
  padding: 5px;
  border-radius: 5px;
}

.footer-logo-text-accent {
  font-family: "Century Gothic", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 39.2px;
  letter-spacing: 0.96px;
  color: #ffffff;
}

.footer-divider {
  height: 1px;
  background: #d9d9d9;
  margin: 60px 0 40px;
  position: relative;
  z-index: 1;
}
.footer-title {
  color: #c9a44c;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.footer-copyright {
  font-weight: 300;
  font-size: 18px;
  line-height: 45px;
  letter-spacing: 0.9px;
  color: #ffffff;
}

.social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-link {
  position: relative;
  display: block;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: scale(1.1);
}

.social-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .footer {
    padding: 70px 0 40px;
  }

  .footer-email,
  .footer-phone {
    font-size: 22px;
    line-height: 32px;
  }

  .footer-title {
    font-size: 22px;
  }

  .btn-footer {
    width: 100%;
    margin-top: 20px;
  }

  .footer-logo-text,
  .footer-logo-text-accent {
    font-size: 26px;
  }

  .social-links {
    gap: 15px;
  }
}

/* Hero Section */
.about-hero {
  position: relative;
  min-height: 504px;
  background-image: url("../image/banner_css.png");
  background-size: cover;
  background-position: center;
  margin-top: 119px;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../image/topbanner.png");
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding-top: 0;
  padding-bottom: 2rem;
}

/* Large background title */
.hero-title-bg {
  font-weight: 700;
  font-size: 200px;
  text-transform: uppercase;
  opacity: 0.1;
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

/* Main title */
.hero-title {
  font-weight: 600;
  font-size: 60px;
  line-height: 1.2;
}

/* Breadcrumb */
.hero-breadcrumb {
  font-weight: 300;
  font-size: 20px;
}

/* -------- Responsive Adjustments -------- */

/* Tablets */
@media (max-width: 991.98px) {
  .about-hero {
    min-height: 420px;
    margin-top: 90px;
  }

  .hero-title {
    font-size: 56px;
  }

  .hero-breadcrumb {
    font-size: 18px;
  }
}

/* Mobile */
@media (max-width: 575.98px) {
  .about-hero {
    min-height: 320px;
    margin-top: 70px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-breadcrumb {
    font-size: 16px;
  }
}

/* Mission Section */
.mission-section {
  padding: 80px 0;
}

.mission-text,
.about-me-text {
  margin-bottom: 60px;
}

.about-section-title {
  font-size: 45px;
  line-height: 1.4;
  font-weight: 500;
  color: #1e1e1e;
  margin-bottom: 20px;
}

.section-description {
  font-size: 18px;
  line-height: 1.6;
  color: #1e1e1e;
}

.profile-image {
  max-width: 550px;
  margin: 0 auto;
}

.profile-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 991px) {
  .mission-section {
    padding: 60px 0;
  }

  .about-section-title {
    font-size: 32px;
    text-align: center;
  }

  .section-description {
    font-size: 16px;
    text-align: center;
  }

  .mission-text,
  .about-me-text {
    margin-bottom: 40px;
  }

  .profile-image {
    max-width: 320px;
  }
}

/* Small Devices */
@media (max-width: 575px) {
  .about-section-title {
    font-size: 28px;
  }

  .section-description {
    font-size: 15px;
  }

  .profile-image {
    max-width: 260px;
  }
}

/* Vision Section */
.vision-section {
  padding: 80px 0;
}

.vision-section .container {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.vision-content {
  flex: 1;
}

.stats-image {
  max-width: 635px;
  max-height: 400px;
  flex-shrink: 0;
}

.stats-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Journey Section */
.journey-section {
  background-color: #0b2c4d;
}

.journey-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Optional spacing refinement for large screens */
@media (min-width: 992px) {
  .journey-content {
    padding-left: 40px;
  }
}

/* Work Section */
.work-section {
  padding: 80px 0;
  background-color: #ffffff;
}

/* Image */
.work-image {
  max-width: 100%;
}

.work-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
}

/* Content */
.work-content {
  max-width: 600px;
}

/* Typography */
.work-description {
  font-size: 20px;
  color: #1e1e1e;
  margin-bottom: 24px;
}

.work-focus {
  font-size: 18px;
  color: #1e1e1e;
  margin-bottom: 10px;
}

.work-list {
  list-style: none;
  margin-bottom: 24px;
  padding: 0;
}

.work-list li {
  font-size: 18px;
  line-height: 32px;
  color: #1e1e1e;
  padding-left: 20px;
  position: relative;
}

.work-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c9a44c;
}

.work-tagline {
  font-size: 18px;
  line-height: 30px;
  color: #1e1e1e;
  font-style: italic;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  .work-section {
    padding: 48px 0;
  }

  .work-content {
    max-width: 100%;
  }

  .work-description {
    font-size: 16px;
  }

  .work-focus,
  .work-list li,
  .work-tagline {
    font-size: 15px;
  }
}

/* Services Section */
.services-section {
  background-color: #c9a44c;
  padding: 80px 0;
}

.services-header {
  margin-bottom: 60px;
}

.services-subtitle {
  font-size: 20px;
  color: #1e1e1e;
  margin-bottom: 20px;
}

.services-description {
  font-size: 20px;
  color: #1e1e1e;
  margin-bottom: 40px;
}

.services-list {
  margin-bottom: 60px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #555555;
}

.service-item:last-child {
  border-bottom: none;
}

.service-number {
  font-size: 24px;
  color: #0a1f33;
  font-weight: 500;
  min-width: 40px;
}

.service-title {
  font-size: 36px;
  line-height: 50px;
  color: #0a1f33;
  font-weight: 500;
}

.services-conclusion {
  font-size: 20px;
  line-height: 35px;
  color: #0a1f33;
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto;
}

/* Connect Section */
.connect-section {
  padding: 80px 0;
}

.connect-description {
  font-size: 20px;
  color: #1e1e1e;
  margin-bottom: 40px;
  max-width: 800px;
}

.connect-btn {
  background-color: #c9a44c;
  color: #0a1f33;
  font-size: 20px;
  padding: 15px 40px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.connect-btn:hover {
  background-color: #b08d57;
}

.detail-heading {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: clamp(24px, 5vw, 32px);
  line-height: 1.2;
  color: #0a1f33;
}

.detail-paragraph {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 4vw, 24px);
  line-height: 1.5;
  color: #000000;
}

.detail-h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 4vw, 24px);
  line-height: 1.3;
  color: #000000;
}

.detail-p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 3vw, 20px);
  line-height: 1.5;
  color: #000000;
}

/* Additional responsive adjustments */
@media (max-width: 768px) {
  .detail-heading {
    line-height: 1.3;
  }

  .detail-paragraph {
    line-height: 1.6;
  }

  .blog-meta .blog-date {
    font-size: 0.875rem;
  }
}

@media (max-width: 576px) {
  .detail-heading {
    font-size: 22px;
  }

  .detail-paragraph {
    font-size: 16px;
    line-height: 1.7;
  }

  .detail-h3 {
    font-size: 18px;
  }

  .detail-p {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* Custom CSS to complement Bootstrap */
.giving-back {
  padding: 3rem 0;
}

.section-title {
  font-size: 2.5rem;
  line-height: 1.2;
  color: #0a1f33;
  margin-bottom: 1.5rem;
}

.section-text {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #0a1f33;
  margin-bottom: 1rem;
}

.content-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Desktop-specific styles */
@media (min-width: 992px) {
  .giving-back {
    padding: 5rem 0;
  }

  .section-title {
    font-size: 2.8rem;
    line-height: 1.1;
  }

  .section-text {
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .content-image {
    height: 516px;
  }

  .text-content {
    padding-right: 2rem;
  }
}

/* Medium devices (tablets) */
@media (min-width: 768px) and (max-width: 991px) {
  .section-title {
    font-size: 2.2rem;
  }

  .section-text {
    font-size: 1.1rem;
  }
}

/* Small devices (mobile) */
@media (max-width: 767px) {
  .giving-back {
    padding: 2rem 0;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .section-text {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .image-content {
    margin-top: 2rem;
  }
}

/* Charity Categories */
.charity-categories {
  position: relative;
  padding: 80px 0;
}

.categories-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Changed from 792px to 100% */
  background: #c9a44c;
  z-index: 1; /* Added z-index */
}

.categories-grid {
  position: relative;
  z-index: 10;
  margin-top: 120px;
}

.category-item {
  text-align: center;
  margin-bottom: 30px;
}

.category-title {
  font-size: 32px;
  line-height: 40px;
  color: #0a1f33;
  margin-bottom: 20px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-image {
  width: 100%;
  height: 445px;
  object-fit: cover;
  border: 3px solid #0a1f33;
  border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
  .category-title {
    font-size: 28px;
    line-height: 34px;
    min-height: 70px;
  }
}

@media (max-width: 1200px) {
  .category-title {
    font-size: 24px;
    line-height: 30px;
    min-height: 60px;
  }

  .category-image {
    height: 400px;
  }
}

@media (max-width: 992px) {
  .charity-categories {
    padding: 60px 0;
  }

  .categories-grid {
    margin-top: 80px;
  }

  .category-title {
    font-size: 20px;
    line-height: 26px;
    min-height: 52px;
  }

  .category-image {
    height: 350px;
  }

  .categories-background {
    height: 100%; /* Ensure it covers full height on mobile */
  }
}

@media (max-width: 768px) {
  .category-title {
    font-size: 18px;
    line-height: 24px;
    min-height: 48px;
  }

  .category-image {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .charity-categories {
    padding: 40px 0;
  }

  .categories-grid {
    margin-top: 60px;
  }

  .category-title {
    font-size: 16px;
    line-height: 22px;
    min-height: 44px;
  }

  .category-image {
    height: 250px;
  }

  /* Additional mobile-specific fix */
  .categories-background {
    min-height: 100%; /* Ensure minimum height */
  }
}

/* Extra fix for very tall mobile layouts */
@media (max-width: 576px) and (min-height: 800px) {
  .charity-categories {
    padding: 60px 0; /* Increase padding for tall screens */
  }

  .categories-background {
    height: auto; /* Allow dynamic height */
    bottom: 0; /* Stretch to bottom */
  }
}

/* Community Commitment */
.community-commitment {
  padding: 60px 0;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .community-commitment {
    padding: 80px 0;
  }
}

.commitment-subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #555555;
}

.commitment-list span {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #555555;
}

/* Responsive font sizes */
@media (min-width: 768px) {
  .commitment-subtitle {
    font-size: 20px;
    line-height: 30px;
  }

  .commitment-list span {
    font-size: 20px;
    line-height: 32px;
  }
}

/* Custom color for bullet points */
.text-primary {
  color: #c9a44c !important;
}

/* Image styling adjustments */
.commitment-image-small,
.commitment-image-large {
  max-height: 400px;
}

@media (min-width: 992px) {
  .commitment-image-small,
  .commitment-image-large {
    max-height: 445px;
  }
}

/* Why Charity */
.why-charity {
  padding: 40px 0;
}

/* Donation Section */
.donation-section {
  padding: 40px 0;
  position: relative;
}

@media (min-width: 768px) {
  .donation-section {
    padding: 60px 0;
  }
}

@media (min-width: 992px) {
  .donation-section {
    padding: 80px 0;
  }
}

.donation-image {
  width: 100%;
  height: 300px;
}

@media (min-width: 768px) {
  .donation-image {
    height: 400px;
  }
}

@media (min-width: 992px) {
  .donation-image {
    width: 100%;
    height: 496px;
  }
}

.donation-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.donation-bg {
  background: #e6e9ed;
  overflow: hidden;
}

.donation-form {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .donation-form {
    margin-top: 30px;
  }
}

@media (min-width: 992px) {
  .donation-form {
    margin-top: 40px;
  }
}

.donation-type {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  width: fit-content;
  background: white;
  border-radius: 100px;
}

@media (max-width: 767px) {
  .donation-type {
    flex-direction: row !important; /* Override the flex-column on mobile */
    max-width: fit-content;
  }
}

@media (min-width: 768px) {
  .donation-type {
    gap: 20px;
    margin-bottom: 30px;
    border-radius: 100px;
  }
}

.type-btn {
  padding: 12px 20px;
  border: none;
  border-radius: 100px;
  font-weight: 400;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 50px;
}

@media (min-width: 768px) {
  .type-btn {
    font-size: 18px;
    padding: 10px 20px;
    min-height: auto;
  }
}

.type-btn.active {
  background: #c9a44c;
  color: #0a1f33;
}

.type-btn:not(.active) {
  background: #ffffff;
  color: #808386;
}

.amount-selection {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}

@media (min-width: 768px) {
  .amount-selection {
    gap: 15px;
    margin-bottom: 30px;
  }
}

.amount-btn {
  min-height: 55px;
  background: #ffffff;
  border: 1px solid #808386;
  font-weight: 400;
  font-size: 18px;
  color: #808386;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1 1 calc(50% - 12px);
  min-width: 120px;
}

@media (min-width: 576px) {
  .amount-btn {
    flex: 0 1 auto;
    width: 141px;
    font-size: 20px;
  }
}

.amount-btn.custom {
  flex: 1 1 100%;
}

@media (min-width: 576px) {
  .amount-btn.custom {
    flex: 0 1 auto;
    width: 206px;
    background: #fbf8f3;
  }
}

.amount-btn:hover,
.amount-btn.selected {
  background: #c9a44c;
  color: #0a1f33;
  border-color: #c9a44c;
}

.donate-btn {
  background: #c9a44c;
  color: #0a1f33;
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  min-height: 55px;
}

@media (min-width: 768px) {
  .donate-btn {
    font-size: 20px;
    padding: 15px 40px;
    width: auto;
  }
}

.donate-btn:hover {
  background: #b08d57;
}

.closing-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #555555;
}

@media (min-width: 768px) {
  .closing-text {
    font-size: 18px;
    line-height: 28px;
  }
}

@media (min-width: 992px) {
  .closing-text {
    font-size: 20px;
    line-height: 30px;
  }
}

/* Ensure proper spacing on mobile */
@media (max-width: 991px) {
  .order-1 {
    margin-top: 20px;
  }
}

/* Custom styles */
.main-content {
  background-image: url("../image/join_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  padding: 140px 0;
  position: relative;
  z-index: 1;
}

/* Overlay for better text readability on background image */
.main-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.content-wrapper {
  background-color: #c9a44c;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Logo Styles */
.join-logo {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 30px;
}

.join-logo-text {
  font-family: "Century Gothic", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 39.2px;
  letter-spacing: 0.96px;
  color: #fff;
  background: #0a1f33;
  padding: 5px 10px;
  border-radius: 5px;
  display: inline-block;
}

.join-logo-text-accent {
  font-family: "Century Gothic", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 39.2px;
  letter-spacing: 0.96px;
  color: #1e1e1e;
  padding: 5px 10px;
  display: inline-block;
}

/* Form Styles */
.form-title {
  font-weight: 700;
  font-size: 35px;
  line-height: 1.3;
  color: #0a1f33;
  margin-bottom: 20px;
}

.form-description,
.form-subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #0a1f33;
  margin-bottom: 20px;
}

.input-group {
  margin-bottom: 20px;
}

.input-group input {
  width: 100%;
  height: 60px;
  background-color: #ffffff;
  border: 1px solid #808386;
  padding: 15px 20px;
  font-size: 18px;
  line-height: 1.5;
  color: #0a1f33;
}

.input-group input::placeholder {
  color: #808386;
  font-weight: 400;
}

.input-group input:focus {
  outline: none;
  border-color: #c9a44c;
  box-shadow: 0 0 0 3px rgba(201, 164, 76, 0.2);
}

.subscribe-btn {
  width: 100%;
  height: 60px;
  background-color: #0a1f33;
  color: #c9a44c;
  border: none;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.5;
  cursor: pointer;
  margin-bottom: 30px;
  transition: background-color 0.3s ease;
  border-radius: 5px;
}

.subscribe-btn:hover {
  background-color: #1a2f44;
}

.disclaimer {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.5px;
  color: #0a1f33;
  margin-bottom: 0;
}

.link-text {
  color: #0a1f33;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 500;
}

.link-text:hover {
  color: #0a1f33;
  opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .main-content {
    padding: 30px 15px;
  }

  .content-wrapper {
    padding: 30px 20px;
  }

  .join-logo-text,
  .join-logo-text-accent {
    font-size: 26px;
    line-height: 1.2;
  }

  .form-title {
    font-size: 28px;
  }

  .form-description,
  .form-subtitle {
    font-size: 16px;
  }

  .input-group input {
    height: 55px;
    font-size: 16px;
  }

  .subscribe-btn {
    height: 55px;
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .join-logo-text,
  .join-logo-text-accent {
    font-size: 22px;
  }

  .form-title {
    font-size: 24px;
  }

  .form-description,
  .form-subtitle {
    font-size: 15px;
  }

  .disclaimer {
    font-size: 14px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .content-wrapper {
    padding: 25px 15px;
  }

  .join-logo {
    flex-direction: column;
    align-items: center;
  }
}

/* Custom styles to maintain your design */
.contact-section {
  padding: 80px 0;
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
}

.contact-title {
  font-weight: 500;
  font-size: 45px;
  line-height: 65px;
  color: #0a1f33;
  margin-bottom: 30px;
}

.contact-description {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #1e1e1e;
  margin-bottom: 60px;
}

/* Form input styles */
.form-control-custom,
.form-select-custom {
  width: 100%;
  height: 80px;
  padding: 20px;
  border: 1px solid #808386;
  background-color: #ffffff;
  font-weight: 400;
  font-size: 16px;
  line-height: 40px;
  color: #808386;
  border-radius: 0;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-control-custom:focus,
.form-select-custom:focus {
  border-color: #c9a44c;
  color: #1e1e1e;
  box-shadow: none;
}

textarea.form-control-custom {
  height: 144px;
  resize: vertical;
}

.form-select-custom {
  appearance: none;
  background-image: url("../image/down.png");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 24px 24px;
  cursor: pointer;
}

.submit-btn {
  background-color: #c9a44c;
  color: #0a1f33;
  border: none;
  padding: 15px 40px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  cursor: pointer;
  margin-top: 40px;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #b08d57;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-title {
    font-size: 32px;
    line-height: 45px;
  }

  .contact-description {
    font-size: 16px;
    line-height: 26px;
  }

  .form-control-custom,
  .form-select-custom {
    height: 60px;
    padding: 15px;
    font-size: 14px;
    line-height: 30px;
  }

  textarea.form-control-custom {
    height: 120px;
  }

  .submit-btn {
    padding: 12px 30px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .contact-title {
    font-size: 28px;
    line-height: 38px;
  }

  .contact-description {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 40px;
  }

  .form-control-custom,
  .form-select-custom {
    height: 55px;
    padding: 12px;
  }
}







.book-img{
  max-height: 624px;
}

.book-image {
  width: 100%;
  height: 100%;
  min-height: 620px;
  display: block;
  margin-bottom: 34px;
}

.buy-btn {

  bottom: -35px;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: #C9A44C;
  color: #0A1F33;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.buy-btn:hover {
  background-color: #B08D57;
}

/* Hide Google Translate Elements */
.goog-te-banner-frame {
  display: none !important;
}

body {
  top: 0 !important;
}

.skiptranslate {
  display: none !important;
}

#google_translate_element {
  display: none !important;
}

/* Hide Google Translate Loading Logo and All UI Elements */
.goog-te-banner-frame,
.goog-te-banner-frame *,
.goog-te-balloon-frame,
.goog-te-balloon-frame *,
.goog-te-spinner-pos,
.goog-te-spinner-pos *,
.goog-te-gadget,
.goog-te-gadget *,
.goog-te-combo,
.goog-te-menu-frame,
.goog-te-menu-frame *,
iframe[src*="translate.google.com"],
iframe[src*="translate.googleapis.com"],
div[id*="google_translate"],
div[class*="goog-te"],
span[id*="google_translate"],
span[class*="goog-te"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  left: -9999px !important;
}

/* Hide Google Translate loading spinner/logo */
.goog-te-spinner,
.goog-te-spinner-pos,
.goog-te-spinner-pos > div,
img[src*="translate.google.com"],
img[src*="translate.googleapis.com"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
}

/* Prevent Google Translate from moving body */
body.top {
  top: 0 !important;
}

/* Hide any Google Translate overlay or loading indicator */
div[style*="translate"],
div[style*="google"],
iframe[title*="translate"],
iframe[title*="Google"] {
  display: none !important;
  visibility: hidden !important;
}

/* Language Dropdown Styles */
.language-bar {
  margin-right: 15px;
}

.language-dropdown {
  background-color: transparent;
  border: 1px solid #C9A44C;
  color: #0A1F33;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 140px;
  font-family: "Poppins", sans-serif;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230A1F33' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 35px;
}

.language-dropdown:disabled {
  opacity: 0.6;
  cursor: wait;
}

.language-dropdown:hover {
  background-color: #C9A44C;
  color: #ffffff;
  border-color: #C9A44C;
}

.language-dropdown:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 164, 76, 0.25);
  background-color: #C9A44C;
  color: #ffffff;
}

.language-dropdown option {
  background-color: #ffffff;
  color: #0A1F33;
  padding: 10px;
}

/* Mobile responsive for language dropdown */
@media (max-width: 991px) {
  .language-bar {
    margin-right: 0;
    margin-top: 15px;
    width: 100%;
  }
  
  .language-dropdown {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .language-dropdown {
    padding: 6px 12px;
    font-size: 13px;
    min-width: 120px;
  }
}


