body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
    color: #333;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f15a29;
    padding: 10px 20px;
    flex-wrap: wrap;
}

.navbar .logo {
    display: flex;
    align-items: center;
}

.navbar .logo img {
    width: 80px;
    /* height: 50px; */
    border-radius: 100%;
    margin-right: 10px;
}

.navbar .logo span {
    font-size: 20px;
    color: white;
    font-weight: 600;
}

.navbar .menu {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.navbar .menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 12px;
    transition: background 0.3s;
}

.navbar .menu a:hover {
    background-color: white;
    color: #f15a29;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar .menu {
        width: 100%;
        flex-direction: column;
        margin-top: 10px;
    }

    .navbar .menu a {
        width: 100%;
        padding: 10px 0;
    }
}

/* Slider CSS Goes Here.. */
/* ===== Slider Wrapper Styles ===== */
.slider-wrapper {
    position: relative;
    max-width: auto;
    margin: auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 450px;
    /* Adjust height as needed */
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 30px;
    text-align: center;
}

.slide-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.slide-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Navigation Controls */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-control:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.prev-slide {
    left: 20px;
}

.next-slide {
    right: 20px;
}

/* Indicators */
.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background-color: white;
    transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .slider {
        height: 400px;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .slider {
        height: 350px;
    }

    .slide-content {
        padding: 20px;
    }

    .slide-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .slider-control {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .slider {
        height: 300px;
    }

    .slide-title {
        font-size: 1.5rem;
    }

    .slide-description {
        display: none;
        /* Hide description on very small screens */
    }

    .slider-indicators {
        bottom: 10px;
    }
}

/* Co-Founder Message */
.founder-message {
    background: #fff7f0;
    padding: 40px 20px;
  }

  .founder-message .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
    flex-wrap: wrap;
    gap: 20px;
  }

  .founder-message .text {
    flex: 1 1 55%;
  }

  .founder-message .text h2 {
    color: #f15a29;
    font-size: 28px;
    margin-bottom: 15px;
  }

  .founder-message .text p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
  }

  .founder-message .image {
    flex: 1 1 35%;
    text-align: center;
  }

  .founder-message .image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }

  @media (max-width: 768px) {
    .founder-message .container {
      flex-direction: column;
      text-align: center;
    }

    .founder-message .text {
      order: 2;
    }

    .founder-message .image {
      order: 1;
    }
  }

  .hero{
    margin: 10px 20px;      
    /* box-shadow:4px 4px 50px 4px rgba(207, 14, 10, 0.56); */
    box-shadow:4px 4px 50px 4px yellow;        
    /* animation: hero-background 2s infinite alternate; */
  }

  /* @keyframes hero-background {
    100%{
    }
  } */
  
.hero h1 {
    color: #f15a29;
    font-size: 48px;
}

.hero p {
    margin-top: 15px;
    font-size: 20px;
    color: #555;
}

.section {
    padding: 60px 20px;
    text-align: center;
}

.section h2 {
    margin-bottom: 20px;
    color: #f15a29;
}

.content {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
    background: linear-gradient(to bottom, #fff7f1, #ffe2cc);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in;
}

.content h1 {
    color: #f15a29;
    margin-bottom: 20px;
}

.content p {
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Our Focus Area CSS */
.section-title {
    text-align: center;
    margin-top: -30px;
    margin-bottom: 80px;
    color: #f15a29;
    /* color: red;     */
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    margin: auto;
}

.focus-areas {
    padding: 50px 0px;
    background-color: var(--light-color);
    /* background: linear-gradient(to right, #ffe0b2, #f8f9fa); */
}

.focus-grid {
    margin: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.focus-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(241, 0, 0, 0.793);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.focus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.focus-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.focus-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* Our Approch */
.approach-section {
    max-width: auto;
    margin: 60px auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease;
    text-align: left;
}

.approach-section h2 {
    color: #f15a29;
    font-size: 30px;
    text-align: center;
    margin-bottom: 25px;
}

.approach-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Initiatives CSS */
.initiatives-section {
    max-width: 1200px;
    margin: 0px auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.initiative-box {
    background: white;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(207, 14, 10, 0.56);
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.initiative-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.initiative-box h3 {
    color: #f15a29;
    margin-top: 0;
    font-size: 20px;
}

.initiative-box p {
    font-size: 15px;
    line-height: 1.6;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

footer a {
    color: #f15a29;
    margin: 0 10px;
    font-size: 30px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Team Section */
.our-team {
    background: #fffaf5;
    padding: 60px 20px;
    text-align: center;
  }

  .our-team h2 {
    font-size: 32px;
    color: #f15a29;
    margin-bottom: 20px;
    animation: slideIn 1s ease-out forwards;
  }

  .team-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }

  .team-member {
    background: white;
    border-radius: 12px;
    padding: 20px;
    width: 200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
  }
  
  .team-member:hover {
    box-shadow:5px 5px 50px 5px orangered;
    transition:1s;
  }

  .team-member img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    /* margin-bottom: 15px; */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .team-member h3 {
    font-size: 20px;
    /* margin-bottom: 10px; */
    color: #333;
  }

  .team-member p {
    font-size: 14px;
    color: #555;
  }

  @keyframes fadeInUp {
    from {
      transform: translateY(40px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateX(-100px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @media (max-width: 768px) {
    .team-container {
      flex-direction: column;
      align-items: center;
    }

    .team-member {
      width: 90%;
    }
  }

/* About Us Pahaat Full-Form */
.pahat-vertical {
    max-width: 1000px;
    margin: 10px auto;
    padding: 30px;
    background: linear-gradient(to bottom, #fff7f1, #ffe2cc);
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1.2s ease;
}

.pahat-vertical h2 {
    text-align: center;
    font-size: 36px;
    color: #f15a29;
    margin-bottom: 30px;
}

.pahat-row {
    display: flex;
    align-items: flex-start;
    background: white;
    margin: 15px 0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    animation: fadeIn 1s ease;
}

.pahat-letter {
    font-size: 32px;
    font-weight: bold;
    color: #f15a29;
    margin-right: 20px;
    min-width: 50px;
}

.pahat-description {
    font-size: 16px;
    line-height: 1.5;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {

    .donate-container,
    .pahat-vertical {
        margin: 20px;
    }

    .pahat-row {
        flex-direction: column;
    }

    .pahat-letter {
        margin-bottom: 10px;
    }
}

/* Contact Us CSS */
.contact-container {
    max-width: 1100px;
    margin: 40px auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in;
}

.contact-grid {
    /* background: lightblue; */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Volunteer Form  */
.trigger-box {
      max-width: 400px;
      margin: 20px auto;
      padding: 10px 200px;
      text-align: center;
      background-color: #f15a29;
      color: white;
      font-size: 20px;
      border-radius: 10px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .trigger-box:hover {
      background-color: #e1491f;
    }

    .form-container {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.8s ease-in-out;
    }

    .form-container.open {
      max-height: 1500px; /* Enough height to show full form */
    }

    .volunteer-form-section {
      max-width: 700px;
      margin: 0px auto;
      padding: 20px 30px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .volunteer-form-section h2 {
      text-align: center;
      color: #f15a29;
      margin-bottom: 25px;
    }

    .volunteer-form {
      display: flex;
      flex-direction: column;
      /* gap: 15px; */
    }

    .volunteer-form label {
      font-weight: 500;
    }

    .volunteer-form input,
    .volunteer-form textarea {
      padding: 10px;
      font-size: 14px;
      border: 1px solid #ccc;
      border-radius: 6px;
    }

    .volunteer-form button {
      padding: 12px;
      background: #f15a29;
      color: white;
      width: 300px;
      margin: auto;
      font-size: 16px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }

    .volunteer-form button:hover {
      background: #d9491b;
    }

    @media (max-width: 600px) {
      .volunteer-form-section {
        padding: 20px;
      }
    }


form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

form input,
form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

form button {
    background-color: #f15a29;
    color: white;
    border: none;
    padding: 5px 25px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #d9481f;
}

.address-box {
    background: #fafafa;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.address-box h2 {
    color: #f15a29;
}

.address-box p {
    margin: 15px 0;
}

.map {
    margin-top: 20px;
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 10px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Gallery Page */
.gallery-section {
      max-width: 1000px;
      margin: 40px auto;
      padding: 20px;
    }

    .gallery-section h2 {
      text-align: center;
      font-size: 30px;
      margin-bottom: 30px;
      color: #f15a29;
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .gallery img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .gallery img:hover {
      transform: scale(1.05);
    }

    @media (max-width: 768px) {
      .gallery {
        grid-template-columns: 1fr;
      }
    } 

/* Legal Documents  */
.legal-documents {
    padding: 50px 20px;
    background: #f9f9f9;
    text-align: center;
  }

  .legal-documents h2 {
    color: #f15a29;
    font-size: 30px;
    margin-bottom: 30px;
  }

  .documents-container {
    max-width: 900px;
    margin: auto;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .doc-card {
    background: white;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
  }

  .doc-card:hover {
    transform: scale(1.02);
  }

  .doc-card img {
    width: 40px;
    height: 40px;
  }

  .doc-card h4 {
    margin: 0;
    font-size: 16px;
    color: #333;
  }

  .doc-card a {
    display: inline-block;
    margin-top: 5px;
    font-size: 14px;
    color: #f15a29;
    text-decoration: underline;
  }

  @media (max-width: 600px) {
    .doc-card {
      flex-direction: column;
      text-align: center;
    }

    .doc-card img {
      margin-bottom: 10px;
    }
  }