/* ===== GLOBAL RESET ===== */

:root {
  --primary-teal: #0C625D;
  --dark-teal: #084340;
  --accent-gold: #FFC107;
  --blood-red: #D32F2F;
  --bg-light: #f4f7f6;
  
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #3b82f6;
  --accent: #f59e0b;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --bg-light: #f9fafb;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
  --radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    font-weight: bold;
    background-color: #F9F5EC;
    overflow-x: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader-logo {
    width: 120px;
    animation: fadeInOut 1.5s infinite alternate ease-in-out;
}

@keyframes fadeInOut {
    0% { 
        opacity: 0.3; 
        transform: scale(0.9); 
    }
    100% { 
        opacity: 1; 
        transform: scale(1.1); 
    }
}

/* ===== CONTAINER ===== */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===== DESKTOP HEADER ===== */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 10px 50px;
    color: black;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.mobile-header {
    display: none;
}

.header-left img {
    height: 60px;
    object-fit: contain;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.header-info {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: black;
    flex-wrap: wrap;
    align-items: center;
}

.header-info div {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-info i {
    color: #44200e;
    font-size: 16px;
}

.header-info a {
    color: black;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.header-info a:hover {
    color: #FFC107;
}

.header-info .address {
    font-size: 12px;
    color: #ff0000;
    font-weight: bold;
}

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background: #0b2501; */
    background: linear-gradient(135deg, #0a221c 0%, #12372a 100%);
    padding: 12px 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 999;
    transition: all 0.3s ease;
}

/* Sticky Navbar - Added when scrolling */
.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Add padding to body when navbar becomes sticky */
body.navbar-sticky-active {
    padding-top: 60px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline-block;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #FFC107;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #FFC107;
    transform: translateY(-2px);
}

/* Nav Right Section */
.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hamburger {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.1);
}

.hamburger i {
    transition: transform 0.3s ease;
}

/* Google Translate Styling */
#google_translate_element {
    display: inline-block;
}

#google_translate_element select {
    background: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

/* Dropdown Styling */
.dropdown-toggle {
    white-space: nowrap;
}

/* ===== MOBILE RESPONSIVE ===== */
@media screen and (max-width: 768px) {
    /* Hide desktop header */
    .desktop-header {
        display: none;
    }

    /* Mobile Header */
    .mobile-header {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1001;
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        min-height: 80px;
    }

    .mobile-header .header-left img {
        height: 55px;
    }

    .mobile-header .header-right {
        flex: 1;
        margin-left: 10px;
    }

    .mobile-header .header-info {
        justify-content: flex-end;
        gap: 6px;
        font-size: 10px;
        flex-direction: column;
        align-items: flex-end;
    }

    .mobile-header .contact-line {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .mobile-header .contact-line span {
        display: flex;
        align-items: center;
        gap: 4px;
        white-space: nowrap;
    }

    .mobile-header .header-info i {
        font-size: 10px;
    }

    .mobile-header .header-info a {
        font-size: 10px;
    }

    .mobile-header .address {
        font-size: 9px;
        text-align: right;
        margin-top: 2px;
    }

    /* Mobile Navbar */
    .navbar {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 10px 15px;
        flex-wrap: wrap;
    }

    /* Mobile sticky navbar */
    .navbar.sticky {
        top: 80px;
        animation: none;
    }

    .hamburger {
        display: block;
        order: -1;
    }

    .nav-right {
        order: 1;
        flex: 1;
        justify-content: flex-end;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(11, 37, 1, 0.98);
        flex-direction: column;
        align-items: center;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .nav-links.active {
        max-height: 500px;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: none;
    }

    /* Add spacing for fixed headers */
    body {
        padding-top: 140px;
    }

    body.navbar-sticky-active {
        padding-top: 140px;
    }

    /* Adjust Google Translate for mobile */
    #google_translate_element select {
        font-size: 12px;
        padding: 4px 8px;
    }

    .dropdown-menu {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .navbar {
        padding: 10px;
    }

    .mobile-header {
        padding: 8px 10px;
    }

    .mobile-header .header-info {
        font-size: 9px;
    }

    .nav-right {
        gap: 8px;
    }
}

/* ===== SCROLL TO TOP BUTTON ===== */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #0b2501;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
}

#scrollTopBtn:hover {
    background: #FFC107;
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 768px) {
    #scrollTopBtn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

.hero-container {
  text-align: center;
  padding: 80px 20px;
  height: 100%;
  width:100%;
  background: url('../images/poor-7302954_1280.jpg') no-repeat center center/cover;
  background-attachment: fixed;
  color: white;
  position: relative;
  animation: fadeIn 1.5s ease-in-out;
  overflow: hidden;
}
.hero-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.hero-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: url('../images/banner-one-shape.png') no-repeat bottom center/cover;
}
.hero-contents {
  position: relative;
  z-index: 1;
}
/* Brush Stroke Effect */
.hero-brush {
  position: absolute;
  bottom: -39px;
  left: 0;
  width: 100%;
  height: 70px;
  background: url(../images/shape-two.png) no-repeat bottom center / cover;
  background-size: cover;
  z-index: 4;
}
.hero-contents h2 {
  font-size: 2.5rem;
  font-weight: bold;
}
.hero-contents p {
  font-size: 1.2rem;
  font-weight: bold;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.register-btn {
  background: yellow;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
  transition: transform 0.3s ease;
}
.register-btn:hover {
  transform: scale(1.1);
}

.sahyog-btn {
  background: #0b2501;
  border: 2px solid #FFC107;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  color: #FFC107;
  text-decoration: none;
  border-radius: 22px;
  font-weight: bold;
}

.sahyog-btn:hover {
  transform: scale(1.1);
  background: #FFC107;
  color: #0b2501;
}
/* Hero Section */

.background {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Torn Edge Effect */
.torn-edge-top, .torn-edge-bottom {
    position: absolute;
    width: 100%;
    height: 100px;
    background: url('/mnt/data/image.png') no-repeat center center/cover;
    background-blend-mode: multiply;
}

.torn-edge-top {
    top: 0;
    clip-path: polygon(
        0% 0%, 5% 50%, 10% 30%, 15% 60%, 20% 40%, 25% 55%,
        30% 35%, 35% 65%, 40% 30%, 45% 50%, 50% 45%, 55% 55%,
        60% 40%, 65% 65%, 70% 35%, 75% 50%, 80% 30%, 85% 60%,
        90% 40%, 95% 65%, 100% 0%
    );
}

.torn-edge-bottom {
    bottom: 0;
    clip-path: polygon(
        0% 100%, 5% 50%, 10% 70%, 15% 40%, 20% 60%, 25% 45%,
        30% 75%, 35% 35%, 40% 70%, 45% 50%, 50% 65%, 55% 45%,
        60% 75%, 65% 40%, 70% 60%, 75% 50%, 80% 70%, 85% 45%,
        90% 60%, 95% 35%, 100% 100%
    );
}

/* Image Slider */
.slider {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.slider img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 4s ease-in-out;
}

/* Zoom Effect */
.slider img.active {
    opacity: 1;
    transform: scale(1.2);
}

/* Dark Fade Left Side */
.dark-fade {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100vh;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
    z-index: 1;
}

/* Left-side Content */
.left-content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
    max-width: 35%;
}

.left-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.left-content p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.left-content .cta-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background-color: #FFD700;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-size: 1.2rem;
}

.left-content .cta-btn:hover {
    background-color: #FFC107;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .left-content {
        max-width: 45%;
        left: 5%;
    }
    .left-content h1 {
        font-size: 2rem;
    }
    .left-content p {
        font-size: 1.1rem;
    }
    .dark-fade {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .left-content {
        max-width: 60%;
        left: 5%;
    }
    .left-content h1 {
        font-size: 1.8rem;
    }
    .left-content p {
        font-size: 1rem;
    }
    .dark-fade {
        width: 60%;
    }
}

@media (max-width: 480px) {
    .left-content {
        max-width: 80%;
        left: 5%;
        text-align: center;
    }
    .left-content h1 {
        font-size: 1.5rem;
    }
    .left-content p {
        font-size: 0.9rem;
    }
    .dark-fade {
        width: 100%;
        background: rgba(0, 0, 0, 0.7);
    }
    .torn-edge-top, .torn-edge-bottom {
        height: 50px;
    }
}


  /* MAIN SECTION */

.about-section {
  padding: 80px 0;
}

/* Left Side - Images */
.about-images {
  position: relative;
  text-align: center;
}

/* Fix for the Green Donation Bar */
.donation-bar {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  background: #0C6E4F;
  color: white;
  font-size: 14px;
  padding: 16px 12px;
  border-radius: 20px;
  writing-mode: vertical-rl;
  text-align: center;
  font-weight: bold;
  white-space: nowrap;
  height: auto;
  display: flex
;
  align-items: center;
  justify-content: center;
}

/* Responsive Fixes */
@media (max-width: 992px) {
  .donation-bar {
      left: -35px; /* Adjust position for tablets */
      font-size: 12px;
      padding: 12px;
  }
}

@media (max-width: 768px) {
  .donation-bar {
      position: relative;
      left: 0;
      top: auto;
      transform: none;
      writing-mode: horizontal-tb;
      text-align: center;
      margin-bottom: 10px;
      font-size: 14px;
      padding: 8px;
  }
}

.donation-bar span {
  color: #FFC107;
  font-weight: bold;
}

/* Image Wrapper */
.image-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.image-main {
  width: 95%;
  border-radius: 10px;
}
p.donation-text {
  color: #0a7303;
  font-weight: 700;
}
.image-small {
  width: 40%;
  border-radius: 10px;
  position: absolute;
  bottom: -10%;
  right: -5%;
  border: 4px solid white;
}

/* Play Button */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #FFC107;
  color: black;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
}

/* Right Side - Content */
.about-content {
  padding-left: 40px;
}

.about-content h2 {
  font-size: 34px;
  font-weight: bold;
}

.about-content p {
  font-size: 16px;
  line-height: 1.6;
}

/* Bullet Points */
.help-section {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.help-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.help-box i {
  font-size: 24px;
  color: #FFC107;
}

/* Call to Action */
.ctan-section {
  display: flex;
  align-items: center;
  margin-top: 30px;
  gap: 20px;
}

.more-about {
  background: #FFC107;
  color: black;
  font-size: 16px;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.more-about:hover {
  background: #E5A500;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-content {
      padding-left: 0;
      text-align: center;
  }

  .help-section {
      flex-direction: column;
      align-items: center;
  }

  .cta-section {
      flex-direction: column;
      align-items: center;
  }

  .image-small {
      width: 60%;
      right: auto;
      bottom: -5%;
  }
}
/* General Mobile Fixes */
@media (max-width: 768px) {
  .about-section {
      padding: 40px 15px; /* Reduce padding for a clean look */
  }

  .about-content {
      text-align: center;
      padding: 15px 10px;
  }

  .about-content h2 {
      font-size: 22px;
      margin-top: 10px;
  }

  .about-content p {
      font-size: 14px;
      line-height: 1.5;
      padding: 0 10px; /* Add padding for better readability */
  }

  /* Image Wrapper */
  .image-wrapper {
      flex-direction: column;
      align-items: center;
  }

  .image-main {
      width: 100%;
      max-width: 330px; /* Limit for better balance */
      border-radius: 10px;
  }

  .image-small {
      width: 70%;
      max-width: 180px;
      position: relative;
      top: -30px; /* Adjust spacing between images */
      border: 3px solid white;
      border-radius: 10px;
  }

  /* Play Button Fix */
  .play-button {
      width: 45px;
      height: 45px;
      font-size: 16px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
  }



  /* Fix for CTA Section */
  .cta-section {
      flex-direction: column;
      align-items: center;
      gap: 15px;
      margin-top: 20px;
  }

  .contact-info {
      font-size: 14px;
  }
}

 /* Hero Container */
 .hero {
  position: relative;
  width: 100%;
  height: 90vh; /* Adjust as needed */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* text on the left */
  margin-top: 60px; /* Add margin to account for navbar height */
}

/* Slideshow Background Container */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Each Slide */
.hero-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Start invisible and not zoomed */
  opacity: 0;
  transform: scale(1);
  /* Fade and zoom transitions */
  transition: opacity 1s ease-in-out, transform 6s linear;
}

/* Visible/Active Slide */
.hero-bg img.active {
  opacity: 1;
  transform: scale(1.2); /* Zoom in slightly */
}

/* Dark-to-Transparent Overlay */
.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to right, rgb(0 0 0 / 80%) 40%, /* Darker on the left */ rgba(0, 0, 0, 0) 100% /* Transparent on the right */);
    z-index: 1;
}
* 

/* Text Content on the Left */
.hero-content {
  position: relative; /* above the overlay */
  z-index: 2;
  width: 50%;
  color: #fff;
  padding: 40px;
}
.footer-contact i {
  /* color: #ffc107; */
  margin-right: 0px;
}
.donation-text {
  font-size: 18px;
  font-weight: bold;
  color: #FFC107;
  display: flex;
  align-items: start;
  justify-content: start;
  margin-bottom: 10px;
}

.highlight {
  font-family: "Lucida Handwriting", cursive;
  color :#FFC107;
}


.donation-text i {
  margin-right: 8px;
}
/* Optional Logo */
.hero-content .logo {
  margin-bottom: 20px;
}
.hero-content .logo img {
  height: 40px;
}

/* Heading, paragraph, and button */
.hero-content h1 {
  color: #fffcf9; /* Orange heading */
  font-size: 4rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-family: fangsong;
}
.hero-content p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  max-width: 90%;
}
.hero-content a.btn {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background-color: #FF5722;
  padding: 10px 20px;
  border-radius: 22px;
  transition: background-color 0.3s;
}
.hero-content a.btn:hover {
  background-color: #E64A19;
}
/* Hero Buttons - Make them inline */
.hero-buttons {
  display: flex;
  justify-content: center; /* Centers the buttons */
  gap: 10px; /* Adds spacing between buttons */
  flex-wrap: wrap; /* Ensures buttons don't break on smaller screens */
}

/* Ensure buttons have proper width */
.hero-buttons .btn {
  flex: 1;
  max-width: 150px; /* Adjust width as needed */
  padding: 12px;
  text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    justify-content: center;
    height: 70vh; /* Reduce height on mobile */
    margin-top: 0; /* Remove margin on mobile since navbar is below header */
  }
  
  .hero-bg img {
    object-fit: cover;
    object-position: center; /* Center the image */
  }
  
  .hero-bg img.active {
    transform: scale(1.1); /* Reduce zoom on mobile */
  }
  
  .hero-content {
    width: 100%;
    padding: 20px;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-overlay {
    background: linear-gradient(to right, rgb(0 0 0 / 70%) 30%, rgba(0, 0, 0, 0.3) 100%);
  }
}

@media (max-width: 480px) {
  .hero {
    height: 60vh; /* Further reduce height on small mobile */
    margin-top: 0; /* Remove margin on mobile since navbar is below header */
  }
  
  .hero-bg img {
    object-fit: cover;
    object-position: center;
  }
  
  .hero-bg img.active {
    transform: scale(1.05); /* Minimal zoom on small mobile */
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .hero-content {
    padding: 15px;
  }
}
  /* MAIN SECTION */
  .section-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 50px auto;
    padding: 60px 5%;
    background: #ffffff; /* White content background */
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  /* LEFT SIDE (IMAGE WITH BADGE) */
  .left {
    position: relative;
    flex: 1;
    max-width: 40%;
  }

  .image-box {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #fff;
    border-radius: 40px;
  }

  .image-box img {
    width: 100%;
    height: 518px; /* Increased height for longer content */
    object-fit: cover;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
  }

  /* OVERLAY TEXT ("Help For Helpless") */
  .overlay-text {
    position: absolute;
    top: 0;
    width: 100%;
    background: #462c1a; /* Dark brown background */
    color: #fff;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: bold;
    text-align: left;
    border-top-left-radius: 50px;
  }

  /* CIRCULAR BADGE OVER IMAGE */
  .badge {
    position: absolute;
    bottom: -25px;
    right: -20px;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  /* RIGHT SIDE CONTENT */
  .right {
    flex: 1;
    padding-left: 50px;
  }

  .right h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
  }

  .right p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
    color: #555;
  }

  /* READ MORE BUTTON */
  .btn-read-more {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #ffc107;
    color: #333;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
  }

  .btn-read-more:hover {
    background-color: #e0a800;
  }

  /* RESPONSIVE DESIGN */
  @media (max-width: 1024px) {
    .section-container {
      flex-direction: column;
      text-align: center;
      padding: 40px;
    }
    .left {
      max-width: 80%;
      margin-bottom: 20px;
    }
    .image-box img {
      height: 600px; /* Adjusted for medium screens */
    }
    .right {
      padding-left: 0;
    }
  }

  @media (max-width: 768px) {
    .left {
      max-width: 90%;
    }
    .image-box img {
      height: 500px; /* Adjusted for tablets */
      border-top-left-radius: 40px;
      border-bottom-right-radius: 40px;
    }
    .right h2 {
      font-size: 1.5rem;
    }
    .right p {
      font-size: 0.9rem;
    }
    .badge {
      width: 70px;
      height: 70px;
    }
  }

  @media (max-width: 480px) {
    .left {
      max-width: 100%;
    }
    .image-box img {
      height: 450px; /* Adjusted for mobile */
    }
    .overlay-text {
      font-size: 0.9rem;
      padding: 6px 12px;
    }
    .badge {
      width: 60px;
      height: 60px;
    }
    .btn-read-more {
      font-size: 0.9rem;
      padding: 10px 20px;
    }
  }
  
      .banner {
        text-align: center;
        padding: 50px 20px;
        background: #4E342E;
        color: white;
        animation: fadeIn 1.5s ease-in-out;
    }
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    .register-btn {
        background: yellow;
        border: none;
        padding: 10px 20px;
        font-size: 16px;
        cursor: pointer;
        margin-top: 10px;
        transition: transform 0.3s ease;
    }
    .register-btn:hover {
        transform: scale(1.1);
    }
    .Login-btn {
      background: #ffed26;
      border: none;
      padding: 14px 25px;
      font-size: 16px;
      cursor: pointer;
      margin-top: 10px;
      transition: transform 0.3sease;
      border-radius: 26px;
      margin-left: 15px;
      text-decoration: none;
      color: #000;
  }
  .donate-btn {
      background: #0C6E4F;
      border: none;
      padding: 14px 25px;
      font-size: 19px;
      cursor: pointer;
      margin-top: 10px;
      transition: transform 0.3sease;
      border-radius: 26px;
      margin-left: 15px;
      text-decoration: none;
      color: #ffffff;
  }
  .Login-btn:hover {
      transform: scale(1.1);
  }

/* ========================================
   MEMBERSHIP SECTION STYLES
   ======================================== */

/* Base Section Styling */
.membership-section {
  padding: 60px 0;
  background: #fefdff;
}

/* Donation Text */
.donation-text {
  width: 100%;
  text-align: center;
  font-size: 18px;
  color: #0C6E4F;
  margin-bottom: 20px;
  font-weight: 600;
}

.donation-text i {
  margin-right: 8px;
  color: #FFC107;
}

/* Left Content Area */
.membership-content {
  padding: 40px;
  text-align: left;
}

.membership-content h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

.membership-content p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #555;
  line-height: 1.6;
}

/* Membership List */
.membership-list {
  list-style: none;
  padding: 20px 0;
  margin: 0;
  max-width: 600px;
}

.membership-list li {
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  color: #444;
  line-height: 1.5;
}

/* Telegram Button */
.telegram-btn {
  background: #FFC107;
  color: #000;
  font-size: 18px;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.telegram-btn:hover {
  background: #E5A500;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
  color: #000;
  text-decoration: none;
}

/* Right Image Section */
.faq-image-section {
  position: relative;
  background: #0C6E4F;
  padding: 50px 40px;
  text-align: center;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.faq-image {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
  display: block;
}

.faq-image.large {
  position: relative;
  z-index: 2;
}

.faq-image.small {
  width: 50%;
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  border: 5px solid white;
}

/* Yellow Decorative Line */
.yellow-line {
  position: absolute;
  width: 8px;
  height: 100px;
  background: #FFC107;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  border-radius: 4px;
}

/* Decorative Shape */
.faq-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 100%;
  background: url('../images/shape.png') no-repeat center;
  background-size: cover;
}


/* ========================================
   INFO SECTION STYLES
   ======================================== */

.registration_marg {
  font-size: 50px;
  color: var(--oxpins-white, #fff);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.24;
  margin-top: 9px;
  margin-bottom: 36px;
}

.info-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 61vh;
  background: url('../images/pexels-pixabay-265702.jpg') no-repeat center center/cover;
  overflow: hidden;
}

.info-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 27, 2, 0.8);
  z-index: 1;
}

.info-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 20px;
  max-width: 800px;
}

.info-content h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 15px;
}

.info-content p {
  font-size: 16px;
  margin-top: 10px;
  line-height: 1.6;
}

.btn-action {
  background: #FFC107;
  color: #000;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.btn-action:hover {
  background: #E5A500;
  transform: translateY(-2px);
  color: #000;
  text-decoration: none;
}

.bottom-decoration {
  position: absolute;
  bottom: -37px;
  left: 0;
  width: 100%;
  background: url('../images/shape-two.png') no-repeat center center/cover;
  height: 80px;
  z-index: 2;
}


/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet Devices */
@media (max-width: 992px) {
  .membership-content,
  .faq-image-section {
    text-align: center;
    padding: 30px 20px;
  }

  .membership-list {
    margin: 0 auto;
    text-align: left;
    padding-left: 20px;
  }

  .faq-shape {
    display: none;
  }

  .faq-image.small {
    width: 60%;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  .donation-text {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .membership-content {
    padding: 20px;
  }

  .membership-content h2 {
    font-size: 24px;
  }

  .membership-content p {
    font-size: 14px;
  }

  .membership-list {
    font-size: 16px;
    padding-left: 15px;
  }

  .membership-list li {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .telegram-btn {
    font-size: 16px;
    padding: 10px 20px;
  }

  .faq-image-section {
    padding: 40px 20px;
    min-height: 350px;
  }

  .faq-image.small {
    width: 65%;
    top: 45%;
  }

  .yellow-line {
    height: 80px;
  }

  /* Info Section */
  .info-content h2 {
    font-size: 24px;
  }

  .info-content p {
    font-size: 14px;
  }

  .btn-action {
    font-size: 16px;
    padding: 10px 16px;
  }

  .registration_marg {
    font-size: 32px;
    line-height: 1.3;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .membership-content h2 {
    font-size: 22px;
  }

  .membership-content p {
    font-size: 13px;
  }

  .membership-list {
    font-size: 14px;
  }

  .membership-list li {
    font-size: 14px;
  }

  .faq-image.small {
    width: 70%;
    top: 40%;
  }

  .yellow-line {
    height: 60px;
  }

  .telegram-btn {
    font-size: 15px;
    padding: 10px 18px;
  }

  .registration_marg {
    font-size: 28px;
  }
}

/* Background Image Section */
.margdata-section {
  width: 100%;
  height: auto;
  background-image: url('../images/gray-bg1-3.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 5%;
  position: relative;
}

/* Fade Overlay */
.margdata-section::before {
  content: "";
  position: absolute;
  inset: 0;
}

/* Content Wrapper */
.margdata-content {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left Side: Bank Details + QR Code */
.margdata-left {
  flex: 1;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.margdata-left h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.margdata-left p {
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.5;
}
.qr-code {
  display: block;
  margin: 15px auto;
  width: 120px;
}
.btn-register {
  display: inline-block;
  padding: 12px 24px;
  background-color: #ffc107;
  color: #333;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}
.btn-register:hover {
  background-color: #e0a800;
}

/* Right Side: Registration Steps */
.margdata-right {
  flex: 1.5;
  padding: 20px;
  /* background: rgba(255, 255, 255, 0.9); */
  border-radius: 10px;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
}
.margdata-right h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}
.instructions {
  list-style: none;
  padding: 0;
}
.instructions li {
  background: #fff;
  padding: 12px;
  margin: 8px 0;
  border-radius: 50px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  display: flex;
  align-items: center;
  border-left: 5px solid #ffc107;
}
.instructions li a {
  text-decoration: none;
  color: #007bff;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .margdata-content {
      flex-direction: column;
      text-align: center;
  }
  .margdata-left, .margdata-right {
      width: 100%;
      padding: 20px;
  }
  .instructions li {
      text-align: left;
  }
}

@media (max-width: 768px) {
  .margdata-section {
      padding: 40px 5%;
  }
  .margdata-left h2, .margdata-right h2 {
      font-size: 1.5rem;
  }
  .instructions li {
      font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .margdata-left h2, .margdata-right h2 {
      font-size: 1.3rem;
  }
  .qr-code {
      width: 100px;
  }
  .btn-register {
      font-size: 0.85rem;
      padding: 8px 18px;
  }
  .instructions li {
      font-size: 0.85rem;
      padding: 10px;
  }
}
.register-btn {
  background: #FFD54F;
  border: none;
  padding: 12px 24px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.register-btn:hover {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .info-section {
      flex-direction: column;
      text-align: center;
  }
  .info-text {
      max-width: 100%;
      margin-bottom: 20px;
  }
}


/* member register section  */
.member-register {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0px;
  text-align: center;
  background: rgb(10 27 2); /* Dark faded effect */
  color: white;
}
/* Background Overlay for Faded Effect */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark faded effect */
}
.register-info {
  flex: 1;
  text-align: center;
  padding: 20px;
}
.register-info h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}
.register-count {
  font-size: 28px;
  font-weight: bold;
  background: #A55C20;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 15px;
}
.register-btn {
  background: #FFC107;
  color: black;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.register-btn:hover {
  background: #E5A500;
}
.video-section {
  flex: 1;
  text-align: center;
}
.video-section img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
}
/* Upper & Lower Brush Stroke */
.top-brush {
  position: absolute;
  top: -20px;
  width: 100%;
  height: 60px;
  background: url('../images/shape-two.png') no-repeat center center / cover;
}
.bottom-brush {
  position: absolute;
  bottom: -36px;
  width: 100%;
  height: 60px;
  background: url('../images/shape-two.png') no-repeat center center / cover;
}

/* Video Container Responsive Styling */
.video-container {
  flex: 1;
  padding: 20px;
  max-width: 100%;
}

.video-header {
  text-align: center;
  margin-bottom: 20px;
}

.video-header h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: white;
}

.video-header p {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 0;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-wrapper iframe {
  width: 100%;
  height: 315px;
  border: none;
  border-radius: 15px;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.video-wrapper:hover .video-overlay {
  opacity: 1;
}

.play-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 193, 7, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: black;
  transition: transform 0.3s ease;
}

.video-wrapper:hover .play-icon {
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .member-register {
    padding: 40px 20px;
  }
  
  .video-header h3 {
    font-size: 22px;
  }
  
  .video-wrapper iframe {
    height: 280px;
  }
}

@media (max-width: 992px) {
  .member-register {
      flex-direction: column;
      text-align: center;
      padding: 40px 20px;
      gap: 30px;
  }
  
  .video-container {
    order: 1;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .register-info {
    order: 2;
    width: 100%;
  }
  
  .register-info h2 {
      font-size: 28px;
  }
  .register-count {
      font-size: 24px;
  }
  .register-btn {
      font-size: 16px;
      padding: 10px 18px;
  }
  
  .video-header h3 {
    font-size: 20px;
  }
  
  .video-wrapper iframe {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .member-register {
    padding: 30px 15px;
    gap: 25px;
  }
  
  .video-container {
    padding: 15px;
  }
  
  .video-header h3 {
    font-size: 18px;
  }
  
  .video-header p {
    font-size: 14px;
  }
  
  .video-wrapper iframe {
    height: 220px;
  }
  
  .register-info h2 {
    font-size: 24px;
  }
  
  .register-count {
    font-size: 20px;
    padding: 10px 16px;
  }
  
  .register-btn {
    font-size: 14px;
    padding: 8px 16px;
  }
  
  .play-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .member-register {
    padding: 25px 10px;
    gap: 20px;
  }
  
  .video-container {
    padding: 10px;
  }
  
  .video-header h3 {
    font-size: 16px;
  }
  
  .video-header p {
    font-size: 13px;
  }
  
  .video-wrapper iframe {
    height: 200px;
  }
  
  .register-info h2 {
    font-size: 20px;
  }
  
  .register-count {
    font-size: 18px;
    padding: 8px 14px;
  }
  
  .register-btn {
    font-size: 13px;
    padding: 6px 14px;
  }
  
  .play-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

/* scrool to top */

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #f5d247;
  color: #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.scroll-to-top:hover {
  transform: scale(1.1);
}

@media(max-width: 768px){
  
  .scroll-to-top {
      right: 10px;
      bottom: 10px;
  }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}



/* Footer Section */
.footer {
  background: linear-gradient(135deg, #0a221c 0%, #12372a 100%);
  color: white;
  padding: 60px 5% 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffc107, #4caf50, #ffc107);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-column h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffc107;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #ffc107;
}

.footer-logo img {
  max-width: 150px;
  margin-bottom: 15px;
  filter: brightness(1.1);
}

.footer-logo p {
  font-size: 14px;
  line-height: 1.6;
  color: #d0d0d0;
  margin-top: 10px;
}

.footer-logo-box {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 14px;

}

.footer-logo img {
  max-width: 150px;
  filter: brightness(1.3);
}
.footer-brand {
  margin-top: 10px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #facc15; /* gold */
}

.footer-links, .footer-services {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li, .footer-services li {
  margin-bottom: 12px;
}

.footer-links a, .footer-services a {
  text-decoration: none;
  color: #e0e0e0;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 20px;
}

.footer-links a::before, .footer-services a::before {
  content: '→';
  position: absolute;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-links a:hover::before, .footer-services a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-links a:hover, .footer-services a:hover {
  color: #ffc107;
  padding-left: 25px;
  transform: translateX(5px);
}

.footer-contact {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.footer-contact h5::after {
  left: 0;
}

.footer-contact p {
  margin-bottom: 15px;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
  color: #e0e0e0;
}

.footer-contact i {
  color: #ffc107;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-icons a {
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.footer-icons a i {
  color: white;
  font-size: 16px;
}

.footer-icons a:hover {
  background: #ffc107;
  border-color: #ffc107;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.footer-icons a:hover i {
  color: #0a221c;
}

/* footer bottom  */
.footer-bottom {
  background-color: #dedbd2;           /* light grey-beige */
  border-top: 3px solid #facc15;       /* golden line */
  padding: 12px 10px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #1f2937;
  line-height: 1.6;
}

.footer-bottom strong {
  color: #0f3d2e;                      /* dark green */
}

.footer-bottom a {
  color: #f59e0b;                      /* gold */
  font-weight: 600;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-logo {
    grid-column: 1 / -1;
    text-align: center;
  }
  
  .footer-logo img {
    margin: 0 auto 15px;
  }
  
  .footer-column h5::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 5% 0;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-column h5::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links a::before, .footer-services a::before {
    display: none;
  }
  
  .footer-links a:hover, .footer-services a:hover {
    padding-left: 20px;
    transform: none;
  }
  
  .footer-contact {
    text-align: left;
  }
  
  .footer-icons {
    justify-content: center;
  }
}
/* Footer Heading */


/* Login Section */

.about-section-new {
  padding: 60px 5%;
  background: url('../images/gray-bg2-3.png') repeat center center;
  background-size: cover;
}

.about-container-new {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.about-content-new {
  width: 48%;
}

.about-content-new h2 {
  font-size: 24px;
  font-weight: bold;
  color: #123700;
  margin-bottom: 15px;
}

.about-content-new p,
.about-content-new ul {
  font-size: 16px;
  line-height: 1.8;
}

.about-content-new ul {
  list-style: none;
  padding-left: 0;
}

.about-content-new ul li {
  font-size: 16px;
  line-height: 1.8;
  position: relative;
  padding-left: 20px;
}

.about-content-new ul li::before {
  content: "✔";
  position: absolute;
  left: -2px;
  color: #C67F33;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-container-new {
      flex-direction: column;
      text-align: center;
  }

  .about-content-new {
      width: 100%;
      padding: 10px 0;
  }
}

@media (max-width: 768px) {
  .about-section-new {
      padding: 40px 5%;
  }

  .about-content-new h2 {
      font-size: 22px;
  }

  .about-content-new p, .about-content-new ul li {
      font-size: 14px;
  }
}

.animated-svg {
    position: absolute;
    top: 20px;  /* Adjust the vertical position */
    left: 20px; /* Adjust the horizontal position */
    width: 100px; /* Increase size if needed */
    z-index: 1000; /* Ensure it's above other elements */
    animation: moveUpDown 3s ease-in-out infinite;
}

@keyframes moveUpDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Responsive Fixes */
@media (max-width: 992px) {
    .animated-svg {
        width: 80px;
        top: 10px;
        left: 10px;
    }
}

@media (max-width: 768px) {
    .animated-svg {
        width: 60px;
        top: 5px;
        left: 5px;
    }
}


/* blood donetion section  */


.blood-mission-section {
  padding: 100px 5%;
  background: var(--bg-light);
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}
.mission-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
/* Typography */
.mission-subtitle {
  color: var(--blood-red);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}
.mission-title {
  font-size: 38px;
  line-height: 1.2;
  color: #222;
  margin-bottom: 20px;
}
.mission-title .highlight { color: var(--primary-teal); }
.mission-description {
  color: #555;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 30px;
}
/* Feature Cards Grid */
.mission-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 35px;
}
.m-feature-card {
  background: white;
  padding: 15px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}
.m-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.m-icon {
  width: 40px;
  height: 40px;
  background: rgba(12, 98, 93, 0.1);
  color: var(--primary-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  flex-shrink: 0;
}
/* Progress Bars */
.mission-stats { margin-bottom: 40px; }
.stat-item { margin-bottom: 20px; }
.stat-labels {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-bottom: 8px;
}
.stat-bar {
  height: 10px;
  background: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}
.stat-bar span {
  height: 100%;
  display: block;
  width: 0;
  transition: width 2s cubic-bezier(0.17, 0.85, 0.43, 1);
}
.fill-teal { background: var(--primary-teal); }
.fill-gold { background: var(--accent-gold); }
/* Animated Button */
.mission-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: var(--primary-teal);
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: 0.4s;
  box-shadow: 0 10px 25px rgba(12, 98, 93, 0.3);
}
.mission-btn:hover {
  background: var(--dark-teal);
  transform: scale(1.05);
}
.mission-btn i {
  transition: 0.3s;
}
.mission-btn:hover i {
  transform: translateX(5px);
}
/* Image Section Styles */
.mission-image-content {
  position: relative;
}
.image-stack {
  position: relative;
  width: 100%;
  height: 100%;
}
.main-blood-img {
  width: 100%;
  height: auto;
  max-height: 600px;
  border-radius: 30px;
  display: block;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
/* Scroll Animations Base - IMPORTANT FOR MOBILE */
.reveal-left { 
  opacity: 0; 
  transform: translateX(-50px); 
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal-right { 
  opacity: 0; 
  transform: translateX(50px); 
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal-left.active,
.reveal-right.active { 
  opacity: 1; 
  transform: translateX(0);
}
/* Mobile */
@media (max-width: 992px) {
  .blood-mission-section { 
    padding: 60px 5%; 
  }
  .mission-container { 
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mission-title {
    font-size: 32px;
  }
  .mission-features { 
    grid-template-columns: 1fr; 
  }
  .mission-image-content { 
    order: -1;
  }
  .main-blood-img { 
    max-height: 400px;
    animation: none;
  }
  .mission-btn { 
    width: 100%; 
    justify-content: center; 
  }
  
  /* Mobile Animation Adjustments */
  .reveal-left,
  .reveal-right { 
    transform: translateY(30px);
  }
  .reveal-left.active,
  .reveal-right.active { 
    transform: translateY(0);
  }
}
@media (max-width: 576px) {
  .mission-title { 
    font-size: 26px; 
  }
  .mission-description {
    font-size: 15px;
  }
  .main-blood-img {
    max-height: 300px;
    border-radius: 20px;
  }
  .m-feature-card {
    font-size: 14px;
  }
}

        .about-section-new {
            position: relative;
            background: url('../images/gray-bg2-3.png') no-repeat center center/cover;
            padding: 80px 5%;
            text-align: start;
        }
        .about-section-new::before {
            content: "";
            position: absolute;
            inset: 0;
        }
        .about-content {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            text-align: start;
            z-index: 2;
        }
        .about-content h2 {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 15px;
        }
        .about-content p {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        .animated-hand {
          position: absolute;
          width: 80px;
          animation: floatUpDown 2s ease-in-out infinite alternate;
      }
      .hand-top-left {
          left: 20px;
          top: 20px;
      }
      .hand-top-right {
          right: 51px;
          top: 20px;
      }
      .hand-bottom-left {
          left: 20px;
          bottom: 20px;
      }
      .hand-bottom-right {
          right: 20px;
          bottom: 20px;
      }
      @keyframes floatUpDown {
          from {
              transform: translateY(0);
          }
          to {
              transform: translateY(-10px);
          }
      }

     .cta-section {
    position: relative;
    text-align: center;
    padding: 80px 5%;
    background: linear-gradient(135deg, #0C0F0F 0%, #1a1f1f 50%, #0C0F0F 100%);
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

/* Animated background elements */
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffc107, transparent);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.5;
    }
}

.cta-section h2 {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    margin-bottom: 30px;
    max-width: 800px;
    position: relative;
    z-index: 1;
    line-height: 1.3;
    background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* CTA section  */

.cta-section p {
    font-size: 16px;
    color: #b0b0b0;
    margin-bottom: 35px;
    max-width: 600px;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.cta-btn {
    background: linear-gradient(135deg, #FFC107 0%, #FFD54F 100%);
    color: #0C0F0F;
    font-size: 18px;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
    border: 2px solid transparent;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn::after {
    content: '→';
    font-size: 20px;
    transition: transform 0.3s ease;
}

.cta-btn:hover {
    background: linear-gradient(135deg, #E5A500 0%, #FFC107 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.4);
    border-color: #FFC107;
}

.cta-btn:hover::after {
    transform: translateX(5px);
}

.cta-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

/* Decorative elements */
.cta-section .decorative-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ffc107;
    border-radius: 50%;
    opacity: 0.3;
}

.cta-section .decorative-dot:nth-child(1) {
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.cta-section .decorative-dot:nth-child(2) {
    top: 60%;
    right: 15%;
    animation: float 8s ease-in-out infinite 1s;
}

.cta-section .decorative-dot:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation: float 7s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) scale(1.5);
        opacity: 0.6;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 5%;
        min-height: 40vh;
    }

    .cta-section h2 {
        margin-bottom: 20px;
    }

    .cta-btn {
        font-size: 16px;
        padding: 14px 32px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 40px 5%;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

    /* Left and Right Hand Images */
    .hand-left, .hand-right {
        position: absolute;
        bottom: 48px;
        width: 277px;
        animation: moveUpDown 2s infinite alternate ease-in-out;
    }

    .hand-left {
        left: 0%;
    }

    .hand-right {
        right: 0%;
        transform: scaleX(-1);
    }
/* Lower Brush Stroke */
.bottom-brush {
  position: absolute;
  bottom: -40px;
  width: 100%;
  height: 80px;
  background: url('../images/shape-two.png') no-repeat center center / cover;
}
    /* Move Up & Down Animation */
    @keyframes moveUpDown {
        0% {
            transform: translateY(0);
        }
        100% {
            transform: translateY(-15px);
        }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .cta-section {
            min-height: 40vh; /* Adjust for smaller screens */
        }

        .cta-section h2 {
            font-size: 24px;
        }

        .hand-left, .hand-right {
            width: 130px;
        }
    }

/* Contact Page Styles */

/* HERO SECTION */
/* Professional Contact Page Styles */

:root {
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #3b82f6;
  --accent: #f59e0b;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --bg-light: #f9fafb;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
  --radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

/* HERO SECTION */
.hero-header {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, rgba(23, 80, 201, 00.3), rgba(99, 102, 241, 0.85)),
    url("../images/close-up-shot-of-african-american-middle-aged-adu-HDBMCVT.jpg") center/cover no-repeat;
  overflow: hidden;
}

.hero-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hero-content {
  text-align: center;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MAIN CONTAINER */
.container-max {
  max-width: 1200px;
  margin: -80px auto 4rem;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

/* CONTACT SECTION */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 3rem;
  align-items: start;
}

/* LEFT SIDE - VOLUNTEER INFO */
.contact-card {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.contact-card h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.contact-card h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

/* IMAGES GRID */
.contact-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.contact-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  cursor: pointer;
}

.contact-images img:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* CONTACT INFO LIST */
.contact-card ul {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}

.contact-card ul li {
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-bottom: 1px solid #e5e7eb;
}

.contact-card ul li:last-child {
  border-bottom: none;
}

.contact-card ul li strong {
  color: var(--text-dark);
  font-weight: 600;
  min-width: 140px;
}

.contact-card ul li a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

.contact-card ul li a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* OFFICE HOURS */
.contact-meta {
  background: var(--bg-light);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 2rem;
  border-left: 4px solid var(--accent);
  font-weight: 500;
}

/* RIGHT SIDE - CONTACT FORM */
aside.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 2rem;
  animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.contact-form h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9ca3af;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: -1rem;
  margin-bottom: 1rem;
  display: block;
}

/* SUBMIT BUTTON */
.contact-form button[type="submit"] {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border: none;
  border-radius: 8px;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  position: relative;
  overflow: hidden;
}

.contact-form button[type="submit"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.contact-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.contact-form button[type="submit"]:hover::before {
  left: 100%;
}

.contact-form button[type="submit"]:active {
  transform: translateY(0);
}

.contact-form button[type="submit"]:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
}

/* FLOATING CHAT */
.floating-chat {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.chat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
  }
}

.chat-icon:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.chat-options {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
}

.chat-options a {
  background: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  white-space: nowrap;
}

.chat-options a:hover {
  transform: translateX(-5px);
  box-shadow: var(--shadow-lg);
  background: var(--primary);
  color: var(--white);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .contact-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form {
    position: static;
  }

  .container-max {
    margin-top: -60px;
    padding: 0 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-header {
    height: 40vh;
    min-height: 300px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .container-max {
    margin-top: -40px;
  }

  .contact-card,
  .contact-form {
    padding: 2rem;
  }

  .contact-card h2,
  .contact-form h2 {
    font-size: 1.5rem;
  }

  .contact-images {
    grid-template-columns: 1fr;
  }

  .contact-images img {
    height: 220px;
  }

  .contact-card ul li {
    flex-direction: column;
    gap: 0.25rem;
  }

  .contact-card ul li strong {
    min-width: auto;
  }

  .floating-chat {
    right: 16px;
    bottom: 16px;
  }

  .chat-icon {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .contact-card,
  .contact-form {
    padding: 1.5rem;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    padding: 0.75rem;
    font-size: 0.95rem;
  }

  .contact-form button[type="submit"] {
    padding: 0.875rem;
    font-size: 1rem;
  }
}

/* ACCESSIBILITY */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* LOADING STATE */
.contact-form button[type="submit"].loading {
  position: relative;
  color: transparent;
}

.contact-form button[type="submit"].loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 3px solid var(--white);
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}









.goog-te-gadget-icon {
  display:none;
}


.goog-te-gadget-simple {
    background-color: #ffff !important;
    border:0 !important;
    font-size: 10pt;
   font-weight:800;
    display: inline-block;
    padding:10px 10px !important;
    cursor: pointer;
    zoom: 1;
    border-radius: 16px;
}

.goog-te-gadget-simple  span {
   color:#3e3065 !important;

}
iframe#\:2\.container {
  display: none!important;
}



body {
  top: 0px !important;
  position: relative;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 15px; /* Space between select language and login */
}
span.address {
  color: #ff0000;
}




.PaymentButton--rzp-dark-standard.svelte-ekc7fv.svelte-ekc7fv {
    background: #055c02 !important;
    border-color: #072654;
}

.PaymentButton--rzpTheme.svelte-ekc7fv.svelte-ekc7fv::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 0;
    width: 47px;
    height: 100%;
    background: #068020!important;
    border-radius: 2px 0 0 2px;
    transform: skew(-15deg, 0);
}

span.razorpay-payment-button.svelte-ohbfj8 {
    margin-top: 16px;
    /* border-radius: 35px; */
}



/* Gallery Section Styles */
.gallery-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.gallery-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.gallery-header h2 {
    font-size: 3rem;
    color: #44200e;
    margin: 20px 0 15px 0;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.gallery-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
    height: 280px;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
    display: block;
    background-color: #f5f5f5;
}

/* Specific fix for the 4th image (IMG-20250817-WA0004.jpg) */
.gallery-item:nth-child(4) img {
    object-position: center;
    object-fit: contain;
    background-color: #f8f9fa;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(68, 32, 14, 0.9));
    color: white;
    padding: 30px 25px 25px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 600;
    color: #FFC107;
}

.gallery-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.4;
    margin: 0;
}

.gallery-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.gallery-btn {
    display: inline-block;
    background: linear-gradient(135deg, #44200e 0%, #8B4513 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(68, 32, 14, 0.3);
    position: relative;
    overflow: hidden;
}

.gallery-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.gallery-btn:hover::before {
    left: 100%;
}

.gallery-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(68, 32, 14, 0.4);
    background: linear-gradient(135deg, #8B4513 0%, #44200e 100%);
}

/* Responsive Design for Gallery */
@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 20px;
    }
    
    .gallery-header h2 {
        font-size: 2.5rem;
    }
    
    .gallery-header p {
        font-size: 1.1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        padding: 0 10px;
    }
    
    .gallery-item {
        height: 220px;
        min-height: 220px;
    }
    
    /* Fix for 4th image on tablet */
    .gallery-item:nth-child(4) img {
        object-fit: cover;
        object-position: center;
    }
    
    .gallery-overlay {
        padding: 20px 20px 20px;
    }
    
    .gallery-overlay h4 {
        font-size: 1.2rem;
    }
    
    .gallery-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 40px 15px;
    }
    
    .gallery-header h2 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 5px;
    }
    
    .gallery-item {
        height: 200px;
        min-height: 200px;
    }
    
    /* Fix for 4th image on mobile */
    .gallery-item:nth-child(4) img {
        object-fit: cover;
        object-position: center;
    }
    
    .gallery-overlay {
        padding: 15px 15px 15px;
    }
    
    .gallery-overlay h4 {
        font-size: 1.1rem;
    }
    
    .gallery-overlay p {
        font-size: 0.9rem;
    }
}






/* ===== OUR EXPERT TEAM SECTION ===== */
.team-section {
  padding: 90px 0 80px;
  background: linear-gradient(160deg, #f4f7f6 0%, #eaf2f1 100%);
  position: relative;
  overflow: hidden;
}

.team-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(12,98,93,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.team-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,193,7,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Header */
.team-header {
  text-align: center;
  margin-bottom: 60px;
}

.team-subtitle {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-teal);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.team-subtitle i {
  margin-right: 6px;
  color: var(--accent-gold);
}

.team-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #44200e;
  margin-bottom: 16px;
  line-height: 1.2;
}

.team-highlight {
  color: var(--primary-teal);
  position: relative;
}

.team-highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: var(--accent-gold);
  border-radius: 2px;
}

.team-header p {
  font-size: 1.1rem;
  color: #555;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 52px;
}

/* Card */
.team-card {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(12,98,93,0.18);
}

.team-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Image wrap */
.team-img-wrap {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.45s ease;
  display: block;
}

.team-card:hover .team-img-wrap img {
  transform: scale(1.08);
}

/* Overlay */
.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(8,67,64,0.88) 0%, rgba(12,98,93,0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px 20px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  text-align: center;
}

.team-card:hover .team-overlay {
  opacity: 1;
  transform: translateY(0);
}

.team-overlay p {
  color: rgba(255,255,255,0.92);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Social icons */
.team-social {
  display: flex;
  gap: 12px;
}

.team-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.team-social a:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #333;
  transform: scale(1.15);
}

/* Info */
.team-info {
  padding: 20px 18px 22px;
  text-align: center;
  background: #fff;
  border-top: 3px solid var(--accent-gold);
}

.team-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #2c1a0e;
  margin-bottom: 6px;
  line-height: 1.3;
}

.team-role {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-teal);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA button */
.team-cta {
  text-align: center;
}

.team-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--dark-teal) 100%);
  color: #fff;
  text-decoration: none;
  padding: 16px 42px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 28px rgba(12,98,93,0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.team-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.team-btn:hover::before {
  left: 100%;
}

.team-btn:hover {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #e6a800 100%);
  color: #2c1a0e;
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(255,193,7,0.35);
}

.team-btn i {
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}

.team-btn:hover i {
  transform: translateX(5px);
}

/* ===== RESPONSIVE — TEAM ===== */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 1024px) {
  .team-img-wrap {
    height: 280px;
  }
}

@media (max-width: 600px) {
  .team-section {
    padding: 60px 0 50px;
  }

  .team-header h2 {
    font-size: 2rem;
  }

  /* Switch to horizontal card — image stays fixed width, never stretches */
  .team-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .team-card-inner {
    flex-direction: row;
    align-items: stretch;
  }

  /* Image: locked fixed width — size NEVER changes on any screen */
  .team-img-wrap {
    width: 120px !important;
    min-width: 120px !important;
    height: auto !important;
    min-height: 150px;
    flex-shrink: 0;
    border-radius: 0;
  }

  .team-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }

  /* Hide hover overlay on touch devices */
  .team-overlay {
    display: none;
  }

  /* Info section fills remaining width */
  .team-info {
    flex: 1;
    text-align: left;
    padding: 14px 16px;
    border-top: none;
    border-left: 3px solid var(--accent-gold);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }

  .team-info h3 {
    font-size: 0.95rem;
    margin-bottom: 2px;
  }

  .team-role {
    font-size: 0.72rem;
  }

  .team-btn {
    padding: 14px 30px;
    font-size: 0.98rem;
  }
}