
 .amount-btn{
  text-align: center;
 }

  /* Navbar background color change */
  .navbar {
    background-color: rgb(252, 252, 251) !important;
  }
  
  /* Navbar text color change */
  .navbar-dark .navbar-nav .nav-link {
    color: #171414 !important;
  }
  
  /* Navbar hover effect */
  .navbar-dark .navbar-nav .nav-link:hover {
    color: #020101 !important;
  }
  
  /* Mobile sidebar background */
  .mobile-sidebar {
    background-color: rgb(3, 2, 2) !important;
  }
  
  /* Mobile sidebar text color */
  .mobile-sidebar .nav-link {
    color: #fffefe !important;
  }
  
  /* Navbar toggler icon color */
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  }
  
  /* Close button color in mobile sidebar */
  .close-btn {
    color: #f7f4f4 !important;
  }

    /* Custom CSS */
        /* Custom styles for navbar */
    .navbar {
      background-color: #1d62a7; /* Dark background */
      padding: 0.5rem 1rem;
    }
    
    .navbar-brand img {
      height: 60px;
      transition: all 0.3s ease;
    }
    
    .nav-link {
      color: rgb(13, 11, 11) !important;
      padding: 0.5rem 1rem;
      font-weight: 500;
      transition: all 0.3s ease;
    }
    
    .nav-link:hover, .nav-link.active {
      color: #fafaf8 !important;
      transform: translateY(-2px);
    }
    
    .donate-button {
      font-weight: 600;
      padding: 0.5rem 1.5rem;
      border-radius: 50px;
      transition: all 0.3s ease;
    }
    
    .donate-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }
    
    .navbar-toggler {
      border: none;
      padding: 0.5rem;
    }
    
    .navbar-toggler:focus {
      box-shadow: none;
    }
    
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    /* Mobile menu styles */
    @media (max-width: 991.98px) {
      .navbar-brand img {
        height: 50px;
      }
      
      .navbar-collapse {
        background-color: #000000;
        padding: 1rem;
        margin-top: 0.5rem;
        border-radius: 0.25rem;
      }
      
      .nav-item {
        margin-bottom: 0.5rem;
      }
      
      .donate-button {
        display: block;
        width: 100%;
        margin-top: 1rem;
        text-align: center;
      }
    }

      /* Make dropdown work on hover on large screens */
    @media (min-width: 900px) {
      .navbar .dropdown:hover .dropdown-menu {
        display: inline;
        margin-top: 0;
      }
    }

    /*nav bar mobile*/
  



 .mobile-sidebar {
  position: fixed;
  top: 0;
  right: -250px; /* RIGHT SIDE instead of left */
  width: 220px;
  height: 100%;
  z-index: 1050;
  transition: all 0.3s ease;
  overflow-y: auto;
  box-shadow: -2px 0 5px rgba(0,0,0,0.5);
  padding-top: 70px; /* space for navbar */
}

.mobile-sidebar.show {
  right: 0;
}

.close-btn {
  position: absolute;
  top: 15px;
  left: 15px;
  background: none;
  border: none;
  font-size: 28px;
}


 .hero-section {
   color: white;
   text-shadow: 0 2px 5px rgba(0,0,0,0.7);
   background-image: url(Hero\ Contact.jpg);
   position: relative;
   
  }
   .about-section h2,
.about-section h4 {
  color: #2c3e50;
}

.about-section p {
  font-size: 1.05rem;
  line-height: 1.6;
}

.about-section .border {
  border-color: #f1f1f1 !important;
}

.about-section .shadow-sm {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-section .shadow-sm:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.donation-buttons {
    margin-top: 30px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .donate-btn {
    font-weight: bold;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
  }
  
  /* Monthly Button (outline style) */
  .donate-btn.monthly {
    background-color: #f9f9f9;
    color: #333;
    border: 2px solid #ccc;
  }
  
  /* Hover effect */
  .donate-btn.monthly:hover {
    background-color: #e6e6e6;
  }
  
  /* One-Time Button (blue filled style) */
  .donate-btn.one-time {
    background-color: #007bff;
    color: #fff;
    border: 2px solid #007bff;
  }
  
  /* Hover effect */
  .donate-btn.one-time:hover {
    background-color: #0056b3;
    border-color: #0056b3;
  }

  
  .monthly-note {
    justify-content: center;
    text-align: left;
    flex-wrap: wrap;
  }
  
  .arrow-img {
    width: 40px;
    height: auto;
  }
  
  .note-text {
    font-size: 1.2rem;
    color: #007bff;
    font-family: 'Segoe UI', cursive, sans-serif;
    max-width: 600px;
  }

  .donation-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
  }
  
  .amount-btn {
    flex: 1 1 150px;
    padding: 15px;
    border: 2px solid #ccc;
    background-color: #f9f9f9;
    font-weight: bold;
    font-size: 1.1rem;
    color: #333;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  
  .amount-btn:hover {
    border-color: #007bff;
  }
  
  .amount-btn.selected {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
  }
  
  /* Tribute Checkbox */
  .tribute-option {
    display: flex;
    align-items: center;
    margin-top: 25px;
    font-size: 1rem;
  }
  
  .tribute-option input[type="checkbox"] {
    display: none;
  }
  
  .tribute-option .checkmark {
    width: 20px;
    height: 20px;
    background-color: #007bff;
    display: inline-block;
    margin-right: 10px;
    position: relative;
    border-radius: 3px;
  }
  
  .tribute-option .checkmark::after {
    content: '✔';
    position: absolute;
    color: white;
    font-size: 14px;
    left: 4px;
    top: -1px;
  }
  
  /* Tribute Dropdown */
  .tribute-select select {
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 1rem;
    margin-top: 5px;
  }

  
  .donation-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .donation-amounts button {
    padding: 15px 25px;
    font-weight: bold;
    font-size: 1rem;
    border: 2px solid #ccc;
    background: #f9f9f9;
    color: #333;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
  }
  
  .donation-amounts button.active,
  .donation-amounts button:hover {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
  }
  
  .tribute-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
  }

  
  .address-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .form-group {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
  }
  
  @media (min-width: 600px) {
    .form-group {
      flex: 1;
    }
  }
  
  .form-group label {
    font-weight: bold;
    margin-bottom: 6px;
  }
  
  .required {
    color: red;
  }
  
  
  
  .form-group input:focus,
  .form-group select:focus {
    border-color: #007bff;
    outline: none;
  }

  
  .contact-fields .form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
  }
  
  .contact-fields .form-group label {
    font-weight: bold;
    margin-bottom: 6px;
  }
  
  .contact-fields input {
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease;
  }
  
  .contact-fields input:focus {
    border-color: #007bff;
    outline: none;
  }
  
  .contact-fields .info-text {
    font-size: 0.9rem;
    color: #555;
    margin-top: 6px;
  }

  
  .text-alert-optin {
    margin-top: 25px;
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  
  .checkbox-container input[type="checkbox"] {
    display: none;
  }
  
  .custom-check {
    width: 22px;
    height: 22px;
    border: 2px solid #ccc;
    display: inline-block;
    border-radius: 3px;
    position: relative;
    margin-top: 4px;
  }
  
  .checkbox-container input[type="checkbox"]:checked + .custom-check::after {
    content: '✔';
    position: absolute;
    top: 0;
    left: 3px;
    color: white;
    background-color: #007bff;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    font-size: 14px;
  }
  
  .alert-text {
    color: #222;
  }
  
  .alert-text a {
    color: #007bff;
    text-decoration: underline;
  }

  
  .payment-section {
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
    justify-content: center;
  }
  
  .payment-btn {
    padding: 12px 20px;
    font-weight: bold;
    font-size: 1rem;
    border: 2px solid #ccc;
    background-color: #f9f9f9;
    color: #333;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .payment-btn.active {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
  }
  
  .payment-btn:hover {
    background-color: #e6f0ff;
  }
  
  .paypal-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #ccc;
    padding: 10px 16px;
    border-radius: 4px;
    cursor: pointer;
    background-color: #fff;
  }
  
  .paypal-btn img {
    width: 30px;
    height: auto;
  }
  
  .paypal-btn span {
    font-weight: bold;
    color: #003087;
  }
  
  /* Payment box placeholder */
  .payment-box {
    height: 250px;
    border: 1px solid #ddd;
    background-color: #eee;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .placeholder-box p {
    color: #666;
    font-size: 1.1rem;
    font-style: italic;
  }
  .payment-btn img {
    height: 20px;
    vertical-align: middle;
    margin-right: 5px;
  }
    
/*Our Work Start*/


.work{
  margin-left: px;
}
.event3{
  text-align: center;
}

  .card-img-top {
  height: 250px;
  object-fit: cover;
  border-top: 10px;
  border-top: 10px;
}
/* Our Work Section Styling */
.work-card {
  transition: all 0.3s ease;
  border-radius: 12px !important;
  overflow: hidden;
}

.work-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.card-img-container {
  position: relative;
  overflow: hidden;
}

.card-img-top {
  transition: all 0.5s ease;
  height: 220px;
  object-fit: cover;
}

.work-card:hover .card-img-top {
  transform: scale(1.05);
}

.card-img-overlay {
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: all 0.3s ease;
}

.work-card:hover .card-img-overlay {
  opacity: 1;
}

.view-more-btn {
  color: white;
  border: 2px solid white;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  transform: translateY(20px);
  transition: all 0.3s ease;
  opacity: 0;
}

.work-card:hover .view-more-btn {
  transform: translateY(0);
  opacity: 1;
}

.work-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.work-card:hover .work-icon {
  transform: rotate(15deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .card-img-top {
    height: 180px;
  }
  
  .work-icon {
    width: 40px;
    height: 40px;
  }
}

/*Our Work End*/
  /* success story start*/

body {
      font-family: 'Segoe UI', sans-serif;
      background-color: #f8f9fa;
    }

    .hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                  url('img/success-story-hero.jpg') center/cover no-repeat;
      height: 60vh;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .hero-section h1 {
      font-size: 3rem;
    }

    .hero-section p {
      font-size: 1.25rem;
      font-style: italic;
    }

    .story-content {
      padding: 60px 15px;
    }

    .story-content h2 {
      font-weight: bold;
      margin-bottom: 20px;
    }

    .story-content p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #333;
    }

    .highlight {
      background-color: #fff3cd;
      padding: 15px;
      border-left: 5px solid #07a0ff;
      margin: 30px 0;
    }
    
    /* Custom CSS for full-screen cards */
    .stories-container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }
    
    .card-row {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 30px;
      width: 100%;
      gap: 20px;
    }
    
    .story-card {
      flex: 1;
      min-width: 300px;
      max-width: 400px;
      transition: transform 0.3s;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      border-radius: 8px;
      overflow: hidden;
      background: white;
    }
    
    .story-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }
    
    .story-content {
      padding: 25px;
    }
    
    .img-fluid {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }
    
    .story-content h5 {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: #333;
    }
    
    .story-content p {
      font-size: 1.1rem;
      color: #666;
      margin-bottom: 20px;
    }
    
    .text-primary {
      font-size: 1.1rem;
      font-weight: bold;
    }
    
    /* Larger cards for the 2-card row */
    .row-2-cards .story-card {
      min-width: 400px;
      max-width: 500px;
    }
    
    .row-2-cards .img-fluid {
      height: 300px;
    }
    
    /* Custom CSS for team section */
    .team-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      padding: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    @media (max-width: 768px) {
      .team-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    .team-card {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none;
      color: #333;
      text-align: center;
      padding: 20px;
    }
    
    .team-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    }
    
    .team-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 50%;
      margin-bottom: 15px;
      border: 3px solid #f8f9fa;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .team-card h3 {
      margin: 10px 0;
      color: #2c3e50;
      font-size: 1.2rem;
    }
    
    .team-card p {
      color: #7f8c8d;
      font-size: 0.9rem;
    }
    
    /* Section heading */
    .team-heading {
      text-align: center;
      margin: 40px 0 20px;
      color: #2c3e50;
    }
    

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .story-card {
        min-width: 45%;
      }
    }
    
    @media (max-width: 768px) {
      .story-card {
        min-width: 100%;
        max-width: 100%;
      }
      
      .row-2-cards .story-card {
        min-width: 100%;
      }
    }
  
     body {
      font-family: 'Segoe UI', sans-serif;
      background-color: #f8f9fa;
    }
    .card img {
      height: 200px;
      object-fit: cover;
    }
    .story-link {
      text-decoration: none;
      color: inherit;
    }
    .story-link:hover .card {
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
      transition: 0.3s ease;
    }
    
    
  /* Success Stories Section Styling */
  .success-stories-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
  }

  .success-stories-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, #6B73FF, #000DFF);
  }

  .success-stories-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
  }

  .success-stories-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #6B73FF, #000DFF);
    border-radius: 2px;
  }

  .story-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
  }

  .story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  }

  .story-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .story-card:hover img {
    transform: scale(1.05);
  }

  .story-content {
    padding: 1.5rem;
    position: relative;
  }

  .story-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
  }

  .story-content p {
    color: #6c757d;
    margin-bottom: 1.5rem;
  }

  .story-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #6B73FF, #000DFF);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }

  .story-card:hover::after {
    transform: scaleX(1);
  }

  @media (max-width: 768px) {
    .success-stories-section h2 {
      font-size: 2rem;
    }
    
    .story-card {
      margin-bottom: 1.5rem;
    }
  }

    /* seccess story end*/



/* our bods start*/
    
.body{
  background: #13254e;
}
.team-container {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .team-card {
      background-color: #1d1d2b;
      border-radius: 50%;
      padding: 30px 20px;
      width: 220px;
      text-align: center;
      text-decoration: none;
      color: #824c4c;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .team-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 24px rgba(13, 12, 12, 0.15);
    }

    .team-card h3 {
      margin: 0;
      font-size: 18px;
      font-weight: bold;
    }

    .team-card p {
      margin: 8px 0 0;
      color: #585757;
      font-size: 15px;
    }

    @media (max-width: 768px) {
      .team-container {
        flex-direction: column;
        align-items: center;
      }
    }

    .team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px;
}

.team-card {
  background: #f3f3f5;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  text-align: center;
  text-decoration: none;
  color: #333;
  width: 220px;
  transition: transform 0.3s, box-shadow 0.3s;
  padding: 20px;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.team-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #07ffff;
}

    






    /*our bods end*/ 

  /*About Us Start*/
  
    :root {
      --primary-color: #2c3e50;
      --secondary-color: #07bdf4;
      --accent-color: #3498db;
      --light-bg: #f8f9fa;
    }
    
    .hero-section {
      background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('img/about-hero.jpg');
      background-size: cover;
      background-position: center;
      color: white;
      padding: 100px 0;
      text-align: center;
    }
    
    .mission-card {
      border-left: 5px solid var(--secondary-color);
      transition: transform 0.3s;
    }
    
    .mission-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .value-card {
      background: white;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      height: 100%;
      transition: all 0.3s;
    }
    
    .value-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    
    .value-icon {
      font-size: 2.5rem;
      color: var(--secondary-color);
      margin-bottom: 20px;
    }
    
    .timeline {
      position: relative;
      padding-left: 50px;
    }
    
    .timeline::before {
      content: '';
      position: absolute;
      left: 20px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: var(--accent-color);
    }
    
    .timeline-item {
      position: relative;
      margin-bottom: 30px;
    }
    
    .timeline-item::before {
      content: '';
      position: absolute;
      left: -38px;
      top: 5px;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--secondary-color);
      border: 3px solid white;
    }
    
    .team-card {
      border: none;
      overflow: hidden;
      border-radius: 10px;
      transition: all 0.3s;
    }
    
    .team-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    
    .team-img {
      height: 250px;
      object-fit: cover;
      transition: transform 0.5s;
    }
    
    .team-card:hover .team-img {
      transform: scale(1.05);
    }
    
    .section-title {
      position: relative;
      display: inline-block;
      margin-bottom: 30px;
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 50px;
      height: 3px;
      background: var(--secondary-color);
    }
  /*About Us end*/

/*conatct us start*/
        :root {
            --primary-color: #fbfbfb;
            --secondary-color: #05e2f2;
            --accent-color: #3498db;
            --light-bg: #f8f9fa;
        }
        
        .contact-hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('img/contact-hero.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        
        .contact-card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
            height: 100%;
            padding: 30px;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .contact-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        .contact-form {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(248, 241, 241, 0.957);
            padding: 30px;
        }
        
        .form-control:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 0.25rem rgba(252, 252, 252, 0.25);
        }
        
        .btn-primary {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
        }
        
        .btn-primary:hover {
            background-color: #04cdfa;
            border-color: #06d8f8;
        }
        
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .section-title {
            position: relative;
            display: inline-block;
            margin-bottom: 30px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--secondary-color);
        }
        
        .floating-label {
            position: relative;
            margin-bottom: 20px;
        }
        
        .floating-label input,
        .floating-label textarea,
        .floating-label select {
            height: 50px;
            padding-top: 18px;
        }
        
        .floating-label label {
            position: absolute;
            top: 10px;
            left: 15px;
            color: #777;
            transition: all 0.3s;
            pointer-events: none;
        }
        
        .floating-label input:focus + label,
        .floating-label textarea:focus + label,
        .floating-label input:not(:placeholder-shown) + label,
        .floating-label textarea:not(:placeholder-shown) + label {
            top: -10px;
            left: 10px;
            font-size: 12px;
            background: white;
            padding: 0 5px;
            color: var(--accent-color);
        }
        
        textarea {
            min-height: 150px !important;
            resize: vertical;
        }
    /*conatct us end*/

    /*blogs start*/
    
    :root {
      --primary-color: #2c3e50;
      --secondary-color: #e74c3c;
      --accent-color: #3498db;
      --light-bg: #f8f9fa;
    }
    
    .blog-hero {
      background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('img/blog-hero.jpg');
      background-size: cover;
      background-position: center;
      color: white;
      padding: 100px 0;
      text-align: center;
      margin-bottom: 50px;
    }
    
    .blog-card {
      border: none;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: all 0.3s;
      height: 100%;
    }
    
    .blog-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    
    .blog-img {
      height: 250px;
      object-fit: cover;
      transition: transform 0.5s;
    }
    
    .blog-card:hover .blog-img {
      transform: scale(1.05);
    }
    
    .blog-date {
      color: var(--secondary-color);
      font-weight: 500;
    }
    
    .blog-category {
      display: inline-block;
      background: var(--accent-color);
      color: white;
      padding: 3px 10px;
      border-radius: 20px;
      font-size: 0.8rem;
      margin-bottom: 10px;
    }
    
    .section-title {
      position: relative;
      display: inline-block;
      margin-bottom: 30px;
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 50px;
      height: 3px;
      background: var(--secondary-color);
    }
    
    .read-more {
      color: var(--secondary-color);
      font-weight: 500;
      text-decoration: none;
    }
    
    .read-more:hover {
      text-decoration: underline;
    }
    
    @media (max-width: 768px) {
      .blog-hero {
        padding: 70px 0;
      }
      
      .blog-img {
        height: 200px;
      }
    }
  /*blogs end*/

   /*blogs links start*/
        :root {
            --primary: #000001de;
            --secondary: #212033;
            --accent: #4895ef;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --success: #4cc9f0;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #fefefe;
        }
        
        /* Modern Header */
        .blog-header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 5rem 0;
            clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
            margin-bottom: 3rem;
        }
        
        .blog-title {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }
        
        .meta-badge {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            border-radius: 50px;
            padding: 0.5rem 1.2rem;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 1.5rem;
        }
        
        /* Content Styling */
        .blog-container {
            max-width: 760px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        .blog-content {
            font-size: 1.1rem;
            color: #444;
        }
        
        .blog-content p {
            margin-bottom: 1.8rem;
        }
        
        .blog-content h2 {
            color: var(--dark);
            font-weight: 700;
            margin: 3rem 0 1.5rem;
            position: relative;
            padding-left: 1.5rem;
        }
        
        .blog-content h2:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.3em;
            height: 1em;
            width: 5px;
            background: var(--accent);
            border-radius: 3px;
        }
        
        .blog-content h3 {
            color: var(--secondary);
            margin: 2.5rem 0 1.2rem;
            font-weight: 600;
        }
        
        /* Featured Image */
        .featured-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1);
            margin: 3rem 0;
            transition: transform 0.3s ease;
        }
        
        .featured-image:hover {
            transform: translateY(-5px);
        }
        
        /* Lists Styling */
        .blog-content ul, 
        .blog-content ol {
            margin-bottom: 2rem;
            padding-left: 1.5rem;
        }
        
        .blog-content li {
            margin-bottom: 0.8rem;
            position: relative;
        }
        
        .blog-content ul li:before {
            content: '•';
            color: var(--accent);
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }
        
        /* Blockquote */
        .highlight-quote {
            border-left: 4px solid var(--accent);
            padding: 2rem;
            margin: 3rem 0;
            background: rgba(72, 149, 239, 0.05);
            border-radius: 0 8px 8px 0;
            font-style: italic;
            font-size: 1.2rem;
            color: var(--dark);
        }
        
        .highlight-quote:before {
            content: '"';
            font-size: 4rem;
            color: var(--accent);
            opacity: 0.2;
            position: absolute;
            left: 1rem;
            top: -1rem;
            font-family: serif;
        }
        
        /* Author Card */
        .author-card {
            display: flex;
            align-items: center;
            background: white;
            border-radius: 12px;
            padding: 2rem;
            margin: 4rem 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,0,0,0.05);
        }
        
        .author-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 1.5rem;
            border: 3px solid var(--accent);
        }
        
        .author-name {
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }
        
        /* Social Sharing */
        .social-share {
            display: flex;
            gap: 0.8rem;
            margin: 3rem 0;
        }
        
        .social-share a {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-share a.facebook { background: #3b5998; }
        .social-share a.twitter { background: #1da1f2; }
        .social-share a.linkedin { background: #0077b5; }
        .social-share a.whatsapp { background: #25d366; }
        
        .social-share a:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .blog-header {
                padding: 3rem 0;
                clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
            }
            
            .blog-title {
                font-size: 2rem;
            }
            
            .author-card {
                flex-direction: column;
                text-align: center;
            }
            
            .author-img {
                margin-right: 0;
                margin-bottom: 1rem;
            }
        }
    /*blogs links end*/

    /*Whatsapp Start*/
      /* WhatsApp floating button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-button img {
  width: 35px;
  height: 35px;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}



    /*Whatsapp end*/


    /*FOOTER START*/


        /* Footer Styles */

 /* Footer Mobile Fixes */
@media (max-width: 767px) {
  .footer {
    text-align: center;
  }
  
  .footer-heading {
    margin-top: 30px;
  }
  
  .footer-heading:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 30px;
    margin-bottom: 20px;
  }
  
  .footer-links li {
    margin-bottom: 8px;
  }
  
  .footer-contact p {
    justify-content: center;
  }
  
  .social-links {
    justify-content: center;
  }
}

/* Ensure links don't overflow on small devices */
.footer-links a {
  white-space: nowrap;
  display: inline-block;
}

/* Better spacing between sections */
.footer-about,
.footer-links,
.footer-contact {
  margin-bottom: 30px;
}
        
    .footer {
      background-color: #0d295a;
      color: white;
      padding: 60px 0 0;
      font-family: 'Segoe UI', sans-serif;
    }
    
    .footer-logo img {
      height: 80px;
      margin-bottom: 20px;
    }
    
    .footer-about p {
      line-height: 1.8;
      margin-bottom: 20px;
    }
    
    .footer-heading {
      color: #fff;
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 10px;
    }
    
    .footer-heading:after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 50px;
      height: 2px;
      background: #07deff;
    }
    
    .footer-links ul {
      list-style: none;
      padding: 0;
    }
    
    .footer-links li {
      margin-bottom: 12px;
    }
    
    .footer-links a {
      color: #b1b1b1;
      text-decoration: none;
      transition: all 0.3s ease;
      display: block;
    }
    
    .footer-links a:hover {
      color: #16b9da;
      padding-left: 5px;
    }
    
    .footer-contact p {
      color: #b1b1b1;
      margin-bottom: 15px;
      display: flex;
      align-items: flex-start;
    }
    
    .footer-contact i {
      color: #15c6d3;
      margin-right: 10px;
      margin-top: 3px;
    }
    
    .social-links a {
      display: inline-block;
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      color: white;
      border-radius: 50%;
      text-align: center;
      line-height: 40px;
      margin-right: 10px;
      transition: all 0.3s ease;
    }
    
    .social-links a:hover {
      background: #13899e;
      color: #011d48;
      transform: translateY(-3px);
    }
    
    .footer-bottom {
      background: rgba(0, 0, 0, 0.2);
      padding: 20px 0;
      margin-top: 40px;
    }
    
    .footer-bottom p {
      color: #000000;
      margin: 0;
      text-align: center;
      font-size: 0.9rem;
    }
    
    .footer-bottom a {
      color: #02b0d7;
      text-decoration: none;
    }
    
    .newsletter-form {
      display: flex;
      margin-top: 20px;
    }
    
    .newsletter-form input {
      flex: 1;
      padding: 10px 15px;
      border: none;
      border-radius: 4px 0 0 4px;
    }
    
    .newsletter-form button {
      background: #feffff;
      color: #011d48;
      border: none;
      padding: 0 15px;
      border-radius: 0 4px 4px 0;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .newsletter-form button:hover {
      background: #01c6d4;
    }
    
    @media (max-width: 768px) {
      .footer {
        text-align: center;
      }
      
      .footer-heading:after {
        left: 50%;
        transform: translateX(-50%);
      }
      
      .footer-links ul {
        margin-bottom: 30px;
      }
      
      .footer-contact p {
        justify-content: center;
      }
      
      .social-links {
        justify-content: center;
      }
      
      .newsletter-form {
        justify-content: center;
      }
    }
     /* Footer end */

     /* whatsapp chhat icon start*/
     :root {
      --whatsapp-green: #25D366;
      --bubble-shadow: 0 4px 12px rgba(0,0,0,0.15);
      --border-radius: 16px;
      --transition-speed: 0.3s;
    }

    body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #f5f5f5;
    }

    #whatsapp-chat {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 9999;
    }

    .chat-toggle {
      background-color: var(--whatsapp-green);
      color: #fff;
      border: none;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      cursor: pointer;
      box-shadow: var(--bubble-shadow);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color var(--transition-speed);
    }

    .chat-toggle:hover {
      background-color: #1eb25a;
    }

    .chat-popup {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      position: absolute;
      bottom: 80px;
      right: 0;
      width: 320px;
      background-color: #fff;
      border-radius: var(--border-radius);
      box-shadow: var(--bubble-shadow);
      overflow: hidden;
      animation: fadeInUp var(--transition-speed) ease-in-out;
    }

    @keyframes fadeInUp {
      from {opacity: 0; transform: translateY(20px);}
      to {opacity: 1; transform: translateY(0);}
    }

    .chat-header {
      background-color: var(--whatsapp-green);
      color: #fff;
      padding: 12px 16px;
      font-weight: bold;
    }

    .chat-body {
      padding: 16px;
    }

    .chat-body textarea {
      width: 100%;
      height: 60px;
      padding: 10px;
      border-radius: 8px;
      border: 1px solid #ccc;
      resize: none;
      font-size: 14px;
    }

    .chat-body button {
      margin-top: 10px;
      width: 100%;
      background-color: var(--whatsapp-green);
      color: white;
      border: none;
      padding: 10px;
      font-size: 16px;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color var(--transition-speed);
    }

    .chat-body button:hover {
      background-color: #1eb25a;
    }

    @media (max-width: 400px) {
      .chat-popup {
        width: 90vw;
        right: 5vw;
      }
    }
    /* whatsapp chhat icon end*/
    
    /* full website animation start*/
    
    /* Animation Classes */
    .fade-in {
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .fade-in.active {
      opacity: 1;
    }

    .slide-up {
      transform: translateY(50px);
      opacity: 0;
      transition: all 0.8s ease-out;
    }

    .slide-up.active {
      transform: translateY(0);
      opacity: 1;
    }

    .slide-left {
      transform: translateX(-50px);
      opacity: 0;
      transition: all 0.8s ease-out;
    }

    .slide-left.active {
      transform: translateX(0);
      opacity: 1;
    }

    .slide-right {
      transform: translateX(50px);
      opacity: 0;
      transition: all 0.8s ease-out;
    }

    .slide-right.active {
      transform: translateX(0);
      opacity: 1;
    }

    /* Hover Animations */
    .work-card {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .work-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.2) !important;
    }

    .story-card {
      transition: transform 0.3s ease;
      overflow: hidden;
    }

    .story-card:hover {
      transform: scale(1.03);
    }

    .story-card img {
      transition: transform 0.5s ease;
    }

    .story-card:hover img {
      transform: scale(1.1);
    }

    .team-card {
      transition: all 0.3s ease;
    }

    .team-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .blog-card {
      transition: all 0.3s ease;
    }

    .blog-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .btn {
      transition: all 0.3s ease;
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .nav-link {
      position: relative;
      transition: all 0.3s ease;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: #07eaff;
      transition: width 0.3s ease;
    }

    .nav-link:hover::after {
      width: 100%;
    }

    /* Pulse animation for donate button */
    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    .btn-warning {
      animation: pulse 2s infinite;
    }

    .btn-warning:hover {
      animation: none;
    }

    /* Floating animation for WhatsApp button */
    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
      100% { transform: translateY(0px); }
    }

    #whatsapp-chat .chat-toggle {
      animation: float 3s ease-in-out infinite;
    }

    /* Timeline animations */
    .timeline-item {
      opacity: 0;
      transform: translateX(-50px);
      transition: all 0.8s ease;
    }

    .timeline-item.active {
      opacity: 1;
      transform: translateX(0);
    }

    /* Delay for each timeline item */
    .timeline-item:nth-child(1) { transition-delay: 0.1s; }
    .timeline-item:nth-child(2) { transition-delay: 0.3s; }
    .timeline-item:nth-child(3) { transition-delay: 0.5s; }
    .timeline-item:nth-child(4) { transition-delay: 0.7s; }
    .timeline-item:nth-child(5) { transition-delay: 0.9s; }

    /* full website animation end*/

    /* nav bar sticky animation start*/

    
    /* Navbar Animation Styles */
.navbar {
  transition: all 0.3s ease-in-out;
  background-color: transparent;
}

.navbar.navbar-scroll {
  background-color: rgba(247, 245, 245, 0.9) !important;
  box-shadow: 0 2px 10px rgba(245, 244, 244, 0.1);
  padding: 0.5rem 0;
}

.navbar-brand img {
  transition: all 0.3s ease-in-out;
}

.navbar.navbar-scroll .navbar-brand img {
  height: 50px;
}

.navbar .btn-warning {
  transition: all 0.3s ease-in-out;
}

.navbar.navbar-scroll .btn-warning {
  padding: 0.35rem 1rem;
  font-size: 0.9rem;
}

    /* nav bar sticky animation end*/

    /* Mobile Sidebar Styles */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  overflow-y: auto;
}



.close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
}

/* Prevent body scrolling when sidebar is open */
body.sidebar-open {
  overflow: hidden;
}

/* new css full web start */

   /* ==============================================
   PHRO THEME - MIDNIGHT SKY
   ============================================== */

/* 1. VARIABLES & GLOBAL STYLES
/* ============================================== */
:root {
  /* THE NEW PALETTE */
  --primary-black: #fdfdfd;   /* A deep, modern off-black */
  /* Slightly lighter for depth */
  --accent-blue: #00b0ff;     /* A vibrant, electric sky blue */
  --accent-blue-dark: #0088cc;/* A darker shade for hovers */
  
  --light-text: #fefdfd;      /* Main text - off-white is easier on the eyes */
  --highlight-text: #070606;  /* Pure white for main headings */
  --secondary-text: #0e0b0b;  /* Muted gray for less important text */
  
  --border-color: #333333;
  --glow-shadow: 0 5px 25px rgba(0, 176, 255, 0.15); /* A subtle blue glow */
}

/* Import a clean, modern font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
  color: #000000;
  background-color: var(--secondary-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--highlight-text);
}

/* ==============================================
   2. NAVBAR & SIDEBAR
/* ============================================== */
.navbar-scroll {
  background: rgba(18, 18, 18, 0.85); /* var(--primary-black) with transparency */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color 0.3s ease;
}

.navbar-brand img {
  transition: transform 0.3s ease;
}
.navbar-brand:hover img {
  transform: scale(1.05);
}

.navbar .nav-link {
  position: relative;
  padding: 5px 0;
  margin: 0 15px;
  color: var(--highlight-text) !important;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-blue);
  transition: width 0.3s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 100%;
}

.mobile-sidebar {
  background-color: var(--primary-black) !important;
}

.sidebar-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.7); z-index: 1040;
  color: black;
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}

.sidebar-overlay.show { opacity: 1; visibility: visible; }



.mobile-sidebar.show { right: 0; }

.mobile-sidebar .close-btn {
  position: absolute; top: 15px; right: 25px; font-size: 30px;
  background: none; border: none;
}

/* ==============================================
   3. BUTTONS
/* ============================================== */
.btn-warning {
  background-color: var(--accent-blue);
  border-color: var(--accent-blue);
  color: var(--primary-black);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-warning:hover {
  background-color: var(--accent-blue-dark);
  border-color: var(--accent-blue-dark);
  color: var(--highlight-text);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 176, 255, 0.3);
}

.btn-outline-primary {
    color: var(--accent-blue);
    border-color: var(--accent-blue);
    font-weight: 700;
}

.btn-outline-primary:hover {
    background-color: var(--accent-blue);
    color: var(--primary-black);
}

/* ==============================================
   4. SECTIONS & CARDS
/* ============================================== */
.hero-section h1 {
    text-shadow: 0 2px 20px rgba(0, 176, 255, 0.3);
}
.hero-section p {
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

.success-stories-section {
  padding: 80px 0;
}
.success-stories-section.bg-light {
    background-color: var(--primary-black) !important;
}

/* Universal Card Styling */
.work-card, .story-card, .blog-card, .team-card {
  background-color: var(--primary-black);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  text-decoration: none;
  display: block;
}

.work-card:hover, .story-card:hover, .blog-card:hover, .team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--glow-shadow);
  border-color: var(--accent-blue);
}

/* Work Card Specifics */
.work-card .card-img-container { position: relative; overflow: hidden; }
.work-card .card-img-top { transition: transform 0.4s ease; }
.work-card:hover .card-img-top { transform: scale(1.1); }
.work-card .card-img-overlay {
  background: linear-gradient(to top, rgba(0, 176, 255, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.work-card:hover .card-img-overlay { opacity: 1; }
.work-card .view-more-btn {
  color: white; border: 1px solid white; padding: 8px 16px;
  border-radius: 50px; font-weight: 700; backdrop-filter: blur(5px);
}
.work-card .work-icon {
  width: 50px; height: 50px; display: flex;
  align-items: center; justify-content: center;
}
.work-card .bg-primary, .work-card .bg-warning, .work-card .bg-success {
    background-color: var(--accent-blue) !important;
    color: var(--primary-black) !important;
}
.work-card .card-title {
    color: var(--highlight-text);
}
.work-card .card-text {
    color: var(--secondary-text);
}

@media (max-width: 768px) {
  .card-title {
    font-size: 1rem !important; /* smaller on mobile */
  }

  .card-text {
    font-size: 0.85rem; /* optional: smaller paragraph too */
  }
}


/* Story Card Specifics */
.story-card { position: relative; }
.story-card .story-content { padding: 25px; }
.story-card h5 { color: var(--highlight-text); }
.story-card p { color: var(--secondary-text); }
.story-card span { font-weight: 700; color: var(--accent-blue); }

/* Blog Card Specifics */
.blog-card { display: flex; flex-direction: column; }
.blog-card .blog-img { height: 200px; object-fit: cover; }
.blog-card .blog-category {
    background-color: var(--accent-blue); color: var(--primary-black);
    padding: 3px 10px; border-radius: 50px; font-size: 0.8rem;
    font-weight: 700; display: inline-block; margin-bottom: 15px;
}
.blog-card .read-more { font-weight: 700; color: var(--accent-blue); }

/* Team Card Specifics */
.team-container { padding-top: 20px; }
.team-card { padding: 20px; text-align: center; }
.team-card img {
  width: 150px; height: 150px; border-radius: 50%;
  object-fit: cover; border: 4px solid var(--accent-blue); margin-bottom: 15px;
}
.team-card h3 { font-size: 1.2rem; color: var(--highlight-text); }
.team-card p { color: var(--secondary-text); font-weight: 300; }

/* ==============================================
   5. ABOUT US TIMELINE
/* ============================================== */
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::after {
  content: ''; position: absolute; width: 3px; background-color: var(--accent-blue);
  top: 0; bottom: 0; left: 50%; margin-left: -1.5px;
}
.timeline-item { padding: 10px 40px; position: relative; width: 50%; }
.timeline-item::after {
  content: ''; position: absolute; width: 20px; height: 20px;
  right: -10px; background-color: var(--secondary-black);
  border: 4px solid var(--accent-blue); top: 25px;
  border-radius: 50%; z-index: 1;
}
.timeline-item:nth-child(odd) { left: 0; text-align: right; padding-right: 50px; }
.timeline-item:nth-child(even) { left: 50%; text-align: left; padding-left: 50px; }
.timeline-item:nth-child(odd)::after { right: -10px; }
.timeline-item:nth-child(even)::after { left: -10px; }
.timeline-item h3 { color: var(--accent-blue); }
.timeline-item p { color: var(--secondary-text); }

/* ==============================================
   6. CONTACT FORM
/* ============================================== */
.contact-form {
  background: var(--primary-black); padding: 40px;
  border-radius: 8px; box-shadow: var(--glow-shadow);
}
.floating-label { position: relative; margin-bottom: 1.5rem; }
.form-control, .form-select {
  height: 50px; border: 1px solid var(--border-color);
  padding-top: 1.25rem; transition: border-color 0.3s ease;
  background-color: var(--secondary-black); color: var(--light-text);
}
.form-control:focus, .form-select:focus {
  border-color: var(--accent-blue); box-shadow: none;
  background-color: var(--secondary-black);
}
.floating-label label {
  position: absolute; top: 0.8rem; left: 0.75rem; color: var(--secondary-text);
  pointer-events: none; transition: all 0.2s ease-in-out;
}
.form-control:focus + label, .form-control:not(:placeholder-shown) + label,
.form-select:valid + label {
  top: 0.25rem; left: 0.75rem; font-size: 0.75rem; color: var(--accent-blue);
}
.contact-form .btn-primary {
    background-color: var(--accent-blue); border-color: var(--accent-blue);
    color: var(--primary-black); font-weight: 700;
}
.contact-form .btn-primary:hover {
    background-color: var(--accent-blue-dark); border-color: var(--accent-blue-dark);
}

/* ==============================================
   7. FOOTER
/* ============================================== */
.footer {
  background-color: var(--primary-black);
  color: var(--secondary-text);
  padding: 60px 0 0 0;
  border-top: 1px solid var(--border-color);
}
.footer h4 { color: var(--highlight-text); }
.footer ul li a { color: var(--secondary-text); line-height: 2; }
.footer ul li a:hover { color: var(--accent-blue); }
.footer .social-links a {
  display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center;
  background-color: var(--secondary-black); color: var(--light-text);
  border-radius: 50%; margin-right: 10px; transition: all 0.3s;
}
.footer .social-links a:hover {
  background-color: var(--accent-blue); color: var(--primary-black);
}
.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 20px 0; margin-top: 40px; text-align: center; font-size: 0.9rem;
}
.footer-bottom a { color: var(--accent-blue); }

/* ==============================================
   8. ANIMATIONS & WHATSAPP
/* ============================================== */
.fade-in, .slide-up, .slide-left, .slide-right {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.is-visible { opacity: 1; }
.slide-up { transform: translateY(50px); }
.slide-up.is-visible { opacity: 1; transform: translateY(0); }
.slide-left { transform: translateX(-50px); }
.slide-left.is-visible { opacity: 1; transform: translateX(0); }
.slide-right { transform: translateX(50px); }
.slide-right.is-visible { opacity: 1; transform: translateX(0); }

#whatsapp-chat { position: fixed; bottom: 20px; right: 20px; z-index: 1000; }
#whatsapp-chat .chat-toggle img {
    width: 60px; height: 60px; border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer; transition: transform 0.3s;
}
#whatsapp-chat .chat-toggle:hover img { transform: scale(1.1); }
.chat-popup { display: none; /* JS handles this */ }

/* ==============================================
   9. RESPONSIVE ADJUSTMENTS
/* ============================================== */
@media (max-width: 767px) {
  .timeline::after { left: 20px; }
  .timeline-item { width: 100%; padding-left: 50px; padding-right: 15px; text-align: left !important; }
  .timeline-item:nth-child(odd), .timeline-item:nth-child(even) { left: 0; }
  .timeline-item::after { left: 10px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}


/* mobile fix start */


/* Mobile layout fixes */
@media (max-width: 767px) {
  /* Prevent horizontal overflow */
  html, body {
    width: 100%;
    overflow-x: hidden;
  }
  
  /* Ensure all containers stay within viewport */
  .container, .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Fix footer layout */
  .footer .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
  
  .footer .col-lg-2,
  .footer .col-lg-3,
  .footer .col-lg-4,
  .footer .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  
  /* Fix team section layout */
  .org-chart {
    padding: 0 15px;
  }
  
  .bottom-level {
    justify-content: center;
    gap: 15px;
  }
  
  .member-card {
    width: 45%;
  }
  
  /* Fix card layouts */
  .work-card, .story-card, .blog-card {
    margin-bottom: 20px;
  }
  
  /* Fix contact form */
  .contact-form {
    padding: 15px;
  }
  
  /* Fix map container */
  .map-container iframe {
    min-height: 300px;
  }
}



/* our team arrow start */


    :root {
      --primary-color: #3498db;
      --secondary-color: #e67e22;
      --text-color: #2c3e50;
      --light-text: #7f8c8d;
      --bg-color: #f5f7fa;
    }
    
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    body {
      font-family: 'Poppins', Arial, sans-serif;
      
      
    }
    
    
    .chart-title {
      
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--text-color);
      position: relative;
      display: inline-block;
    }
    
    .chart-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
      border-radius: 2px;
    }
    
    .top-level {
      margin-bottom: 50px;
      position: relative;
      animation: fadeInDown 1s ease;
      display: flex;
      justify-content: center; /* Added to center the top card */
      width: 100%;
    }
    
    .bottom-level {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
      position: relative;
      margin-top: 60px;
    }
    
    .member-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-decoration: none;
      color: inherit;
      transition: all 0.3s ease;
      position: relative;
      width: 160px;
    }
    
    .member-card:hover {
      transform: translateY(-10px);
    }
    
    .image-container {
      position: relative;
      width: 120px;
      height: 120px;
      margin-bottom: 15px;
      border-radius: 50%;
      overflow: hidden;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      border: 4px solid white;
    }
    
    .top-level .member-card .image-container {
      width: 150px;
      height: 150px;
      border: 4px solid var(--secondary-color);
    }
    
    .member-card:hover .image-container {
      transform: scale(1.05);
      box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    }
    
    .member-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .member-card:hover img {
      transform: scale(1.1);
    }
    
    .member-info {
      text-align: center;
    }
    
    .member-info h3 {
      font-size: 1.1rem;
      margin-bottom: 5px;
      font-weight: 600;
      color: var(--text-color);
    }
    
    .member-info p {
      font-size: 0.9rem;
      color: var(--light-text);
      margin-bottom: 10px;
    }
    
    .social-links {
      display: flex;
      justify-content: center;
      transform: translateY(10px);
      transition: all 0.3s ease;
    }
    
    .member-card:hover .social-links {
      opacity: 1;
      transform: translateY(0);
    }
    
    .social-links a {
      color: white;
      background: var(--primary-color);
      width: 25px;
      height: 25px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      transition: all 0.3s ease;
    }
    
    .social-links a:hover {
      background: var(--secondary-color);
      transform: scale(1.2);
    }
    
    /* Tree-style connector lines */
    .tree-connector {
      position: absolute;
      width: 80%;
      height: 60px;
      top: 100%;
      left: 10%;
      z-index: 1;
    }
    
    .tree-line {
      position: absolute;
      background-color: #bdc3c7;
    }
    
    .vertical-line {
      width: 2px;
      height: 30px;
      left: 50%;
      top: 0;
      transform: translateX(-50%);
    }
    
    .horizontal-line {
      height: 2px;
      width: 100%;
      top: 30px;
      left: 0;
    }
    
    /* Main vertical connector with arrow */
    .main-connector {
      position: absolute;
      width: 2px;
      height: 30px;
      background: linear-gradient(to bottom, var(--secondary-color), var(--primary-color));
      left: 50%;
      top: 0;
      transform: translateX(-50%);
      opacity: 0;
      animation: fadeInUp 1s ease 0.5s forwards;
    }
    
    .main-connector::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: -4px;
      width: 0;
      height: 0;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-top: 8px solid var(--primary-color);
    }
    
    /* Connectors for bottom cards */
    .card-connector {
      position: absolute;
      width: 2px;
      height: 30px;
      background-color: var(--primary-color);
      bottom: 100%;
      left: 50%;
      transform: translateX(-50%);
      opacity: 0;
    }
    
    .bottom-card-container:nth-child(1) .card-connector {
      animation: fadeInUp 0.5s ease 0.8s forwards;
    }
    .bottom-card-container:nth-child(2) .card-connector {
      animation: fadeInUp 0.5s ease 0.9s forwards;
    }
    .bottom-card-container:nth-child(3) .card-connector {
      animation: fadeInUp 0.5s ease 1.0s forwards;
    }
    .bottom-card-container:nth-child(4) .card-connector {
      animation: fadeInUp 0.5s ease 1.1s forwards;
    }
    .bottom-card-container:nth-child(5) .card-connector {
      animation: fadeInUp 0.5s ease 1.2s forwards;
    }
    .bottom-card-container:nth-child(6) .card-connector {
      animation: fadeInUp 0.5s ease 1.3s forwards;
    }
    .bottom-card-container:nth-child(7) .card-connector {
      animation: fadeInUp 0.5s ease 1.4s forwards;
    }
    
    .card-connector::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: -4px;
      width: 0;
      height: 0;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-top: 8px solid var(--primary-color);
    }
    
    /* Position the connector container above the cards */
    .bottom-card-container {
      position: relative;
      margin-bottom: 30px;
      animation: fadeIn 0.5s ease forwards;
      opacity: 0;
    }
    
    .bottom-card-container:nth-child(1) { animation-delay: 0.8s; }
    .bottom-card-container:nth-child(2) { animation-delay: 0.9s; }
    .bottom-card-container:nth-child(3) { animation-delay: 1.0s; }
    .bottom-card-container:nth-child(4) { animation-delay: 1.1s; }
    .bottom-card-container:nth-child(5) { animation-delay: 1.2s; }
    .bottom-card-container:nth-child(6) { animation-delay: 1.3s; }
    .bottom-card-container:nth-child(7) { animation-delay: 1.4s; }
    
    /* Animations */
    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    
    /* Responsive adjustments */
    @media (max-width: 992px) {
      .bottom-level {
        gap: 25px;
      }
      
      .member-card {
        width: 140px;
      }
      
      .image-container {
        width: 100px;
        height: 100px;
      }
      
      .top-level .member-card .image-container {
        width: 130px;
        height: 130px;
      }
    }
    
    @media (max-width: 768px) {
      .chart-title {
        font-size: 2rem;
      }
      
      .bottom-level {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
      }
      
      .tree-connector,
      .card-connector,
      .main-connector {
        display: none;
      }
      
      .member-card {
        width: auto;
      }
    }
    
    @media (max-width: 576px) {
      .chart-title {
        font-size: 1.8rem;
      }
      
      .bottom-level {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
      }
      
      .image-container {
        width: 90px;
        height: 90px;
      }
      
      .top-level .member-card .image-container {
        width: 120px;
        height: 120px;
      }
    }





    /* Show desktop tree only on large screens */
/* By default, desktop version visible, mobile hidden */
#mobileSidebar {
  background-color: #111 !important; /* dark background */
  color: white;
}



#mobileSidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 250px;
  height: 100vh;
  color: white;
  z-index: 1050;
  display: inline;
  overflow-y: auto;
  padding: 20px;
}




    /* our team arrow end */


 /* Full-width contact section */
      
        
        
    


        .contact-map-section {
            min-height: 600px;
        }
        
        .contact-form-wrapper {
            padding: 60px;
            background: white;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .map-container {
            height: 100%;
            min-height: 500px;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

      

      /* Hero Section Slides Image Start
      
      
 /* Fix Image Size */
.hero-img {
  height: 70vh;
  object-fit: cover;
}

/* Move indicators to right side */
.carousel-indicators.side-indicators {
  position: absolute;
  top: 50%;
  right: 20px;
  left: auto;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}

/* Style the dots */
.carousel-indicators.side-indicators button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #007bff;   /* Blue border */
  background-color: transparent;
  opacity: 1;
  transition: all 0.3s ease;
}

/* Active dot */
.carousel-indicators.side-indicators button.active {
  background-color: #007bff;   /* Blue fill */
}

/* hero section slides image end
      
/* objective start*/
body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0; 
            background-color: #f4f4f4; 
        }

        .objectives-container {
            max-width: 1200px; 
            margin: 0 auto;
            padding: 20px;
            background-color: transparent; 
        }

        .header-section {
            background-color: #03a7ff;
            color: white;
            padding: 15px 20px;
           
            margin-bottom: 20px;
            
          
            width: 100%;
            box-sizing: border-box; 
        }
        
        .full-width-header .header-section {
             max-width: 1200px;
             margin: 0 auto;
             padding: 15px 20px;
        }


        .header-section h1 {
            margin: 0;
            font-size: 3em;
            font-weight: bold;
        }

        .objectives-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .objective-item {
            display: flex;
            align-items: flex-start;
            width: 48%; 
            margin-bottom: 30px;
        }

        .objective-number {
            font-size: 2.5em;
            color: #01afff;
            font-weight: bold;
            margin-right: 15px;
            line-height: 1; 
        }

        .objective-text {
            font-size: 1.1em;
            color: #333;
            line-height: 1.6;
        }

      
        @media (max-width: 768px) {
            .objective-item {
                width: 100%; 
            }
            .header-section h1 {
                font-size: 2em;
            }
        }

/*objective end



body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    padding: 20px;
    margin: 0;
}

.team-section-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Introduction Text Styling */
.intro-text {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.intro-text p {
    color: #666;
    line-height: 1.6;
}

/* Slider Wrapper and Navigation */
.profile-slider-wrapper {
    position: relative;
    padding-bottom: 20px;
    /* Slider ko chalaane ke liye overflow-x: hidden zaroori hai */
    overflow: hidden; 
}

/* Navigation Arrows Design */
.slider-nav-arrows {
    position: absolute;
    top: -20px; /* Position adjust kiya */
    right: 0;
    display: flex;
    gap: 5px;
    z-index: 10;
}

.arrow-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 1px solid #ccc;
    cursor: pointer;
    color: #333;
    font-weight: bold;
    font-size: 1.2em;
}

/* Main Slider Area - JavaScript controlled */
.profile-slider {
    display: flex;
    gap: 20px; /* Cards ke beech ki jagah */
    padding: 10px 0;
    /* Total cards ka size set kiya (8 cards * 270px width + 7 gaps * 20px) */
    width: calc((250px * 8) + (20px * 7)); 
    transition: transform 0.5s ease-in-out; /* Smooth slide transition */
}

/* Profile Card Styling */
.profile-card {
    /* Ek card ki fixed width */
    flex: 0 0 250px; 
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    background-color: #fff;
}

.profile-card img {
    width: 100%;
    height: 250px; 
    object-fit: cover; 
    display: block;
}

.profile-info {
    padding: 15px 10px 0;
    display: flex;
    flex-direction: column;
}

.profile-info strong {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 5px;
}

.profile-info span {
    color: #666;
    font-size: 0.95em;
}


/* Mobile Sidebar Fix */
.mobile-sidebar.active {
  right: 0 !important;
  transform: translateX(0) !important;
}

.sidebar-overlay.active {
  display: block !important;
}

/* Navbar background fix for mobile */
@media (max-width: 991.98px) {
  .navbar {
    background-color: #1d62a7 !important;
  }
  
  .navbar .nav-link {
    color: white !important;
  }
}

/* Success Stories Section Styling */
.success-stories-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.success-stories-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(to right, #6B73FF, #000DFF);
}

.success-stories-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.success-stories-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #6B73FF, #000DFF);
  border-radius: 2px;
}

.story-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.story-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.story-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.story-card:hover img {
  transform: scale(1.05);
}

.story-content {
  padding: 1.5rem;
  position: relative;
}

.story-content h5 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.story-content p {
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.story-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #6B73FF, #000DFF);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.story-card:hover::after {
  transform: scaleX(1);
}

@media (max-width: 768px) {
  .success-stories-section h2 {
    font-size: 2rem;
  }
  
  .story-card {
    margin-bottom: 1.5rem;
  }
}

/* Success Stories Cards Styling */
.story-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: block;
    text-decoration: none;
    color: inherit;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    text-decoration: none;
    color: inherit;
}

.story-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-card:hover img {
    transform: scale(1.05);
}

.story-content {
    padding: 20px;
}

.story-content h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.story-content p {
    color: #6c757d;
    margin-bottom: 15px;
    line-height: 1.5;
}

.text-primary {
    color: #007bff !important;
    font-weight: 500;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.fade-in.active {
    opacity: 1;
}

.slide-up {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease;
}

.slide-up.active {
    transform: translateY(0);
    opacity: 1;
}

.slide-left {
    transform: translateX(-30px);
    opacity: 0;
    transition: all 0.8s ease;
}

.slide-left.active {
    transform: translateX(0);
    opacity: 1;
}

.slide-right {
    transform: translateX(30px);
    opacity: 0;
    transition: all 0.8s ease;
}

.slide-right.active {
    transform: translateX(0);
    opacity: 1;
}

/* Fix for About Us Timeline Section */
#aboutus {
  background-color: #f5f7fa !important;
  color: #333 !important;
}

#aboutus h2 {
  color: #2c3e50 !important;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

#aboutus h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #6B73FF, #000DFF);
  border-radius: 2px;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 50px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #3498db;
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
  opacity: 1 !important;
  transform: none !important;
  color: #333 !important;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e74c3c;
  border: 3px solid white;
  z-index: 2;
}

.timeline-item h3 {
  color: #3498db !important;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.timeline-item p {
  color: #555 !important;
  line-height: 1.6;
  font-size: 1.05rem;
  margin: 0;
}

html { scroll-behavior: smooth; }

    /* Sidebar Styles */
    .mobile-sidebar {
      position: fixed;
      top: 0;
      right: -260px;   /* hidden initially */
      width: 260px;
      height: 100%;
      background: #222;
      transition: right 0.3s ease;
      z-index: 1050;
      padding-top: 20px;
    }
    .mobile-sidebar.active { right: 0; }

    .close-btn {
      background: none;
      border: none;
      font-size: 2rem;
      position: absolute;
      top: 15px;
      left: 15px;
      cursor: pointer;
      z-index: 1100;
    }

    .sidebar-overlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 1040;
    }
    .sidebar-overlay.active { display: block; }


    /* Mobile Sidebar Animation Styles */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background-color: #111 !important;
  z-index: 1050;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  padding-top: 70px;
}

.mobile-sidebar.active {
  right: 0;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Navbar Toggler Animation */
.navbar-toggler {
  transition: transform 0.3s ease;
  border: none;
  background: transparent !important;
}

.navbar-toggler.active {
  transform: rotate(90deg);
}

.navbar-toggler-icon {
  transition: transform 0.3s ease;
}

.navbar-toggler.active .navbar-toggler-icon {
  transform: rotate(180deg);
}

/* Close Button Animation */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: white !important;
  transition: transform 0.3s ease;
  z-index: 1100;
}

.close-btn:hover {
  transform: scale(1.2);
}

/* Navbar Link Animations */
.mobile-sidebar .nav-link {
  position: relative;
  padding: 12px 20px;
  margin: 5px 15px;
  border-radius: 5px;
  transition: all 0.4s ease;
  transform: translateX(20px);
  opacity: 0;
  color: white !important;
  font-weight: 500;
}

.mobile-sidebar.active .nav-link {
  transform: translateX(0);
  opacity: 1;
}

/* Stagger animation for nav items */
.mobile-sidebar.active .nav-item:nth-child(1) .nav-link {
  transition-delay: 0.1s;
}
.mobile-sidebar.active .nav-item:nth-child(2) .nav-link {
  transition-delay: 0.15s;
}
.mobile-sidebar.active .nav-item:nth-child(3) .nav-link {
  transition-delay: 0.2s;
}
.mobile-sidebar.active .nav-item:nth-child(4) .nav-link {
  transition-delay: 0.25s;
}
.mobile-sidebar.active .nav-item:nth-child(5) .nav-link {
  transition-delay: 0.3s;
}
.mobile-sidebar.active .nav-item:nth-child(6) .nav-link {
  transition-delay: 0.35s;
}
.mobile-sidebar.active .nav-item:nth-child(7) .nav-link {
  transition-delay: 0.4s;
}
.mobile-sidebar.active .nav-item:nth-child(8) .nav-link {
  transition-delay: 0.45s;
}
.mobile-sidebar.active .nav-item:nth-child(9) .nav-link {
  transition-delay: 0.5s;
}

.mobile-sidebar .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateX(5px) !important;
  color: #00b0ff !important;
}

/* Donate Button Animation in Mobile Sidebar */
.mobile-sidebar .btn-warning {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
  margin: 15px;
  background-color: #00b0ff !important;
  border-color: #00b0ff !important;
  color: #fff !important;
}

.mobile-sidebar.active .btn-warning {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.6s;
}

/* Hover effect for donate button */
.mobile-sidebar .btn-warning:hover {
  background-color: #0088cc !important;
  border-color: #0088cc !important;
  transform: translateY(-2px) !important;
}

/* Prevent body scroll when sidebar is open */
body.sidebar-open {
  overflow: hidden;
}

/* Mobile responsive adjustments */
@media (max-width: 991.98px) {
  .navbar {
    background-color: #1d62a7 !important;
  }
  
  .navbar .nav-link {
    color: white !important;
  }
  
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
}

/* Ensure button visibility */
.btn-warning {
    background-color: #07f7fb;
    border-color: #08dce3;
    color: #000;
    text-decoration: none;
    display: inline-block;
}

.btn-warning:hover {
    background-color: #0becf0;
    border-color: #00f7ff;
    color: #000;
}

/* Center alignment for the team section */
.container.text-center {
    text-align: center;
}
















       /* Base Styles */
        :root {
            --primary: #87CEEB; /* Sky Blue */
            --secondary: #000000; /* Black */
            --accent: #FFFFFF; /* White */
            --light-bg: #F0F8FF; /* Very light blue */
            --text-dark: #333333;
            --text-light: #666666;
            --gradient: linear-gradient(135deg, #87CEEB 0%, #B6E6FF 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', 'Segoe UI', sans-serif;
        }
        
        body {
            background-color: var(--accent);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Sleek Header Styles */
        header {
            background-color: rgba(255, 255, 255, 0.95);
            padding: 15px 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 26px;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo i {
            margin-right: 8px;
            font-size: 28px;
        }
        
        .logo span {
            color: var(--secondary);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s;
            position: relative;
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary);
            bottom: -5px;
            left: 0;
            transition: width 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        .nav-cta {
            background: var(--gradient);
            color: var(--secondary);
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(135, 206, 235, 0.4);
        }
        
        .mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--secondary);
        }
        
        /* Hero Section */
        .hero {
            background: var(--gradient);
            padding: 150px 0 100px;
            text-align: center;
            color: var(--secondary);
            position: relative;
            overflow: hidden;
        }
        
        .hero:before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            top: -150px;
            right: -100px;
        }
        
        .hero:after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            bottom: -100px;
            left: -50px;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 52px;
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 20px;
            margin: 0 auto 30px;
            color: var(--text-dark);
            max-width: 600px;
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--secondary);
            color: var(--accent);
            padding: 14px 35px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s;
            border: 2px solid var(--secondary);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .cta-button:hover {
            background-color: transparent;
            color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        /* Workshops Section */
        .section-title {
            text-align: center;
            margin: 100px 0 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 38px;
            color: var(--secondary);
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--gradient);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .section-subtitle {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 50px;
            font-size: 18px;
            color: var(--text-light);
        }
        
        .workshops-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 100px;
        }
        
        .workshop-card {
            background-color: var(--accent);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.4s, box-shadow 0.4s;
            position: relative;
        }
        
        .workshop-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .workshop-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient);
        }
        
        .workshop-image {
            height: 220px;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            font-size: 50px;
        }
        
        .workshop-content {
            padding: 30px;
        }
        
        .workshop-content h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--secondary);
        }
        
        .workshop-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            color: var(--text-light);
            font-size: 14px;
        }
        
        .workshop-meta span:first-child {
            background: var(--light-bg);
            padding: 5px 12px;
            border-radius: 20px;
        }
        
        .workshop-meta span:last-child {
            font-weight: 600;
            color: var(--primary);
        }
        
        .workshop-content p {
            color: var(--text-light);
            margin-bottom: 20px;
        }
        
        .workshop-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s;
        }
        
        .workshop-link i {
            margin-left: 8px;
            transition: transform 0.3s;
        }
        
        .workshop-link:hover {
            color: var(--secondary);
        }
        
        .workshop-link:hover i {
            transform: translateX(5px);
        }
        
        /* Seminars Section */
        .seminars {
            background-color: var(--light-bg);
            padding: 100px 0;
            position: relative;
        }
        
        .seminars:before {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(135, 206, 235, 0.1);
            top: 50px;
            right: 100px;
        }
        
        .seminar-list {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .seminar-item {
            background-color: var(--accent);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 25px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            transition: transform 0.3s;
        }
        
        .seminar-item:hover {
            transform: translateX(10px);
        }
        
        .seminar-date {
            background: var(--gradient);
            color: var(--secondary);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            min-width: 90px;
            margin-right: 30px;
            font-weight: 700;
            box-shadow: 0 5px 15px rgba(135, 206, 235, 0.3);
        }
        
        .seminar-date .day {
            font-size: 28px;
            line-height: 1;
        }
        
        .seminar-date .month {
            font-size: 16px;
            text-transform: uppercase;
        }
        
        .seminar-details h3 {
            font-size: 22px;
            margin-bottom: 8px;
            color: var(--secondary);
        }
        
        .seminar-details p {
            color: var(--text-light);
            margin-bottom: 12px;
        }
        
        .seminar-details .location {
            display: flex;
            align-items: center;
            color: var(--text-light);
            font-size: 15px;
        }
        
        .seminar-details .location i {
            margin-right: 8px;
            color: var(--primary);
        }
        
        /* CTA Section */
        .cta-section {
            background: var(--secondary);
            color: var(--accent);
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section:before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            top: -150px;
            left: -100px;
        }
        
        .cta-section:after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            bottom: -100px;
            right: -50px;
        }
        
        .cta-section h2 {
            font-size: 38px;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }
        
        .cta-section p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 18px;
            position: relative;
            z-index: 2;
        }
        
        .cta-button-light {
            display: inline-block;
            background: var(--gradient);
            color: var(--secondary);
            padding: 14px 35px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s;
            border: none;
            box-shadow: 0 5px 15px rgba(135, 206, 235, 0.3);
            position: relative;
            z-index: 2;
        }
        
        .cta-button-light:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(135, 206, 235, 0.5);
        }
        
        /* Footer */
        footer {
            background-color: var(--secondary);
            color: var(--accent);
            padding: 80px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            color: var(--primary);
            margin-bottom: 25px;
            font-size: 22px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background: var(--primary);
            bottom: 0;
            left: 0;
        }
        
        .footer-column p, .footer-column a {
            color: #CCCCCC;
            margin-bottom: 12px;
            display: block;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background: var(--gradient);
            color: var(--secondary);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #999999;
            font-size: 14px;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 1s ease forwards;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 42px;
            }
            
            .section-title h2 {
                font-size: 32px;
            }
        }
        
        @media (max-width: 768px) {
            header {
                padding: 12px 0;
            }
            
            .logo {
                font-size: 22px;
            }
            
            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: var(--accent);
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                transition: right 0.3s ease;
                z-index: 1001;
                padding: 80px 30px 30px;
            }
            
            nav.active {
                right: 0;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 0 0 20px 0;
            }
            
            nav ul li a {
                font-size: 18px;
                display: block;
                padding: 8px 0;
            }
            
            .mobile-menu {
                display: block;
                z-index: 1002;
            }
            
            .close-menu {
                position: absolute;
                top: 20px;
                right: 20px;
                font-size: 24px;
                cursor: pointer;
                display: block;
            }
            
            .hero {
                padding: 130px 0 80px;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .workshops-grid {
                grid-template-columns: 1fr;
            }
            
            .seminar-item {
                flex-direction: column;
                text-align: center;
            }
            
            .seminar-date {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .cta-section h2 {
                font-size: 32px;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 32px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .cta-button, .cta-button-light {
                padding: 12px 25px;
                font-size: 16px;
            }
        }
 