 @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@400;500&display=swap');

 :root {
     --white: white;
     --black: black;
     --header-gradient: linear-gradient(90deg, #1400f0, #00c9df);
     --light-dim: #777;
     --card-h1: rgb(38, 36, 36);
     --global-bg: #f4f7fc;
     --security-head: #1a2b48;
     --border: rgba(0, 0, 0, 0.27);
     --our-story-bg: radial-gradient(circle at 20% 30%, rgba(245, 122, 147, 0.3), transparent 60%),
         radial-gradient(circle at 80% 70%, rgba(3, 124, 224, 0.3), transparent 60%),
         radial-gradient(circle at 50% 100%, rgba(17, 221, 119, 0.3), transparent 60%);
 }

 html.dark-mode {
     --white: black;
     --black: white;
     --header-gradient: linear-gradient(90deg, #8400f0, #76048a);
     --light-dim: #e3e3e3;
     --card-h1: rgb(222, 208, 208);
     --global-bg: #444446;
     --security-head: #7388ac;
     --border: rgba(223, 223, 223, 0.27);
     --our-story-bg: radial-gradient(circle at 20% 30%, rgba(11, 11, 11, 0.882), transparent 60%),
         radial-gradient(circle at 80% 70%, rgba(16, 38, 53, 0.733), transparent 60%),
         radial-gradient(circle at 50% 100%, rgba(28, 28, 26, 0.858), transparent 60%);
 }

 body {
     margin: 0;
     padding: 0;
     background-color: var(--white);
     transition: all 0.3s ease-in;
     overflow-x: hidden;
     font-family: 'Poppins', sans-serif;
     padding-top: 70px;
 }

 header {
     position: fixed;
     top: 0;
     width: 100%;
     z-index: 100;
 }

 .header-cls {
     display: flex;
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
     padding: 16px 10px;
     /* background-color: var(--white); */
     /* background-color: rgba(0, 0, 255, 0.538); */
     background: var(--header-gradient);
 }

 .logo img {
     width: 180px;
     padding: 10px;
 }

 .menu-items {
     display: flex;
     flex-direction: row;
     flex-wrap: wrap;
     gap: 30px;
 }

 .menu-items a {
     font-size: 18px;
     text-decoration: none;
     color: white;
     transition: all 0.3s ease-in;
 }

 .menu-items a:hover {
     color: rgb(0, 234, 255);
     transform: translateY(-4px);
 }

 .home-nav {
     position: relative;
 }

 .home-select {
     position: absolute;
     display: none;
     top: 100%;
     left: 0%;
     width: 150px;
     background-color: rebeccapurple;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     padding: 20px;
     border-radius: 20px;
 }

 .home-select a {
     color: rgb(248, 248, 248) !important;
 }

 .home-nav:hover .home-select {
     display: block;
 }

 .menu-sett {
     display: flex;
     align-items: center;
 }

 .menu-login {
     display: none;
 }

 .sign-in-menu a {
     text-decoration: none;
     padding: 10px 10px;
     border: 2px solid;
     border-radius: 25px;
     margin-right: 20px;
     color: white;
     transition: all 0.4s ease-in;
     margin-left: 30px;
     cursor: pointer;
 }

 .sign-in-menu a:hover {
     background-color: rgb(249, 249, 255);
     color: blue;
     border-color: white;
 }

 .theme-toggle {
     padding: 10px 10px;
     background-color: transparent;
     border-color: rgba(0, 0, 0, 0);
     color: white;
     cursor: pointer;
 }

 .theme-toggle:hover {
     border: 1px solid rgba(0, 0, 255, 0.597);
     border-radius: 50px;
 }

 .theme-toggle span {
     font-size: 28px;
 }

 .hamburger {
     display: none;
     color: white !important;
 }

 .close-btn {
     display: none;
 }

 @media (max-width:768px) {

     .menu-items {
         display: none;
     }

     .sign-in-menu {
         display: none;
     }

     .menu-items {
         flex-direction: column;
         background: #0e0d0dcc;
         position: fixed;
         top: 0;
         right: 0;
         width: 180px;
         height: 100%;
         padding: 60px 20px;
         transition: right 0.3s ease;
         z-index: 999;

     }

     .menu-login {
         display: block;
     }

     .menu-items a {
         color: white;
     }

     .menu-items button {
         color: rgb(255, 255, 255);
     }

     .close-btn {
         display: block;
         color: rgb(0, 0, 0);
         background-color: #0385ff00;
         cursor: pointer;
         border-color: #00000000;
         border: 2px solid;
     }

     .hamburger {
         display: block;
         margin-right: 20px;
         cursor: pointer;
         color: var(--black);
     }

     .menu-items.show {
         right: -30px;
         display: flex;
         flex-direction: column;
         flex-wrap: wrap;
         justify-content: flex-start;
         align-content: flex-start;
     }

     .sign-in-menu.show {
         display: block;
         margin-top: 20px;
         color: white;
     }

     .hamburger:hover {
         color: #b82e5e;
     }

 }


 .footer {
     margin-top: 3%;
     background: linear-gradient(135deg, #0a0f29, #1a1a1a);

 }

 .footer-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 20px;
     padding: 20px 10px;

 }

 .follow-us img {
     width: 50px;
 }

 .footer-tagline {
     color: wheat;
     text-indent: 20px;
 }

 .footer-links {
     display: flex;
     flex-direction: column;
     gap: 10px;
 }

 .footer h1 {
     color: #facc15 !important;
 }

 .footer-links a {
     text-decoration: none;
     text-indent: 25px;
     transition: all .2s ease-in;
     color: #a5b4fc;
 }

 .footer-links a:hover {
     text-decoration: underline;
     color: #6366f1;
 }

 .footer-contact-info {
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 .footer-contact-info li {
     list-style: none;
     color: #d1d5db;
 }

 .footer-contact-info a {
     color: #a5b4fc;
     text-decoration: none;
 }

 .footer-contact-info a:hover {
     color: #6366f1;
     text-decoration: underline;
 }

 .footer-legel-link li {
     list-style: none;
 }

 .footer-legel-link {
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 .footer-legel-link a {
     text-decoration: none;
     color: #a5b4fc;
 }

 .footer-legel-link a:hover {
     color: #6366f1;
     text-decoration: underline;
 }

 .footer-newsletter {
     display: flex;
     flex-direction: column;
     /* gap: 10px; */
 }

 .news-letter h2 {
     color: #0febff;
 }

 .newsletter-form {
     display: flex;
     flex-direction: row;
     gap: 10px;
 }

 .newsletter-form input {
     padding: 16px 10px;
     background-color: transparent;
     border: none;
     border-bottom: 2px solid white;
     transition: all 0.3s ease-in;
 }

 .newsletter-form button {
     padding: 10px;
     cursor: pointer;
     border-radius: 10px;
     border-color: transparent;
     background-color: transparent;
     color: white;
     border: 1px solid white;
     transition: all 0.3s ease-in;
 }

 .newsletter-form button:hover {
     background-color: #007CF0;
     border-color: transparent;
 }

 .footer-copyright {
     padding: 20px 10px;
     text-align: center;
     color: whitesmoke;
 }

 .section-header {
     text-align: center;
     padding: 80px 0px;
 }

 .section-header h1 {
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 1rem;
     color: #2a81d8;
 }

 .section-header p {
     font-size: 1.1rem;
     color: var(--light-dim);
     font-style: italic;
     margin: 0 auto 50px auto;
 }


 .who-we-are-hero {
     position: relative;
     height: 100vh;
     display: flex;
     justify-content: center;
     align-items: center;
     text-align: center;
     color: #ffffff;
     overflow: hidden;
 }

 .video-background {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: -2;
 }

 .video-background video {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .hero-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(rgba(0, 0, 0, 0.666), rgba(0, 0, 0, 0.648));
     z-index: -1;
 }

 .hero-content {
     position: relative;
     z-index: 1;
     max-width: 800px;
     padding: 20px;
 }

 .hero-content h1 {
     font-size: 3.5rem;
     font-weight: 800;
     line-height: 1.2;
     margin-bottom: 20px;
     text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
 }

 .hero-content p {
     font-size: 1.2rem;
     margin-bottom: 30px;
     opacity: 0.9;
     text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
 }

 .btn-hero {
     display: inline-block;
     padding: 12px 28px;
     border: 2px solid #ffffff;
     border-radius: 50px;
     color: #ffffff;
     text-decoration: none;
     font-weight: 700;
     font-size: 1.1rem;
     transition: all 0.3s ease;
 }

 .btn-hero:hover {
     background-color: #ffffff;
     color: #333;
     transform: translateY(-3px);
 }


 .hero-content h1 {
     animation-delay: 0.2s;
 }

 .hero-content p {
     animation-delay: 0.4s;
 }

 .hero-content .btn-hero {
     animation-delay: 0.6s;
 }


 @media (max-width: 768px) {
     .hero-content h1 {
         font-size: 2.5rem;
     }

     .hero-content p {
         font-size: 1rem;
     }
 }

 .our-story-section {
     padding: 80px 20px;
     background-color: var(--white);
     background: var(--our-story-bg);
     /* background-color: #ffffff; */
     transition: background 0.5s ease;
     overflow-x: hidden;
 }

 .our-story-container {
     max-width: 900px;
     margin: 0 auto;
 }

 .timeline {
     position: relative;
     max-width: 600px;
     margin: 0 auto;
 }

 .timeline::after {
     content: '';
     position: absolute;
     width: 4px;
     background-color: #007bff;
     top: 0;
     bottom: 0;
     left: 50%;
     margin-left: -2px;
     z-index: 1;
 }

 .timeline-item {
     padding: 10px 40px;
     position: relative;
     width: 70%;
     box-sizing: border-box;
 }

 .timeline-item:nth-child(odd) {
     left: 50%;
 }

 .timeline-item:nth-child(even) {
     left: 0;
 }

 .timeline-icon {
     position: absolute;
     width: 50px;
     height: 50px;
     right: -25px;
     left: -25px;
     background-color: #007bff;
     top: 15px;
     border-radius: 50%;
     z-index: 2;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     font-size: 1.5rem;
     border: 4px solid #f8f9fa;
 }

 .timeline-item:nth-child(even) .timeline-icon {
     left: 270px;
 }

 .timeline-content {
     padding: 20px 30px;
     background-color: var(--white);
     border-radius: 8px;
     border: .1px solid var(--border);
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
 }

 .timeline-content h3 {
     font-size: 1.5rem;
     font-weight: 600;
     margin-bottom: 10px;
     color: var(--card-h1);
 }

 .timeline-content p {
     font-size: 1rem;
     line-height: 1.6;
     color: var(--light-dim);
 }

 .left-timeline {
     width: 60%;
 }

 @media (max-width: 600px) {
     .timeline::after {
         left: 25px;
     }

     .timeline-item {
         width: 100%;
         padding-left: 70px;
         padding-right: 15px;
     }

     .left-timeline {
         width: 100%;
     }

     .timeline-item:nth-child(odd),
     .timeline-item:nth-child(even) {
         left: 0;
     }

     .timeline-icon {
         left: 0;
     }

     .timeline-item:nth-child(even) .timeline-icon {
         left: 0;
     }

 }

 @media (max-width:468px) {
     .left-timeline {
         width: 80%;
     }
 }

 .mission-vision-section {
     padding: 80px 20px;
     background-color: var(--white);
     background: radial-gradient(circle at 15% 30%, rgba(255, 183, 197, 0.25), transparent 60%),
         radial-gradient(circle at 80% 70%, rgba(102, 204, 255, 0.25), transparent 60%);
     /* background-color: #ffffff; */
 }

 .mission-vision-container {
     max-width: 1000px;
     margin: 0 auto;
 }



 .mv-grid {
     display: flex;
     justify-content: center;
     gap: 40px;
     flex-wrap: wrap;
 }

 .mv-card {
     flex: 1;
     min-width: 300px;
     max-width: 450px;
     background-color: var(--white);
     border-radius: 12px;
     padding: 40px;
     text-align: center;
     border-top: 5px solid var(--black);
     box-shadow: 0 10px 30px rgba(13, 99, 161, 0.359);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .mv-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
 }

 .mission-card:hover {
     border-color: #007bff;

 }

 .vision-card:hover {
     border-color: #28a745;
 }


 .mv-icon {
     width: 70px;
     height: 70px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2.2rem;
     margin: 0 auto 25px auto;
     color: #fff;
 }

 .mission-card .mv-icon {
     background-color: #007bff;
 }

 .vision-card .mv-icon {
     background-color: #28a745;
 }


 .mv-card h3 {
     font-size: 1.8rem;
     font-weight: 700;
     margin-bottom: 15px;
     color: var(--card-h1);
 }

 .mv-card p {
     font-size: 1.05rem;
     line-height: 1.7;
     color: var(--light-dim);
 }

 @media (max-width: 768px) {

     .mv-grid {
         flex-direction: column;
         align-items: center;
     }
 }

 @media (max-width:468px) {
     .mv-card {
         min-width: 200px;
     }
 }

 .what-we-do-section {
     padding: 100px 20px;
     background-color: var(--white);
     overflow: hidden;
     background: radial-gradient(circle at 15% 30%, rgba(173, 216, 255, 0.25), transparent 60%),
         radial-gradient(circle at 80% 70%, rgba(0, 184, 255, 0.25), transparent 60%);
 }



 .features-showcase {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 30px;
     align-items: center;
     justify-items: center;
     justify-content: center;
 }


 .feature-card-item {
     background-color: var(--white);
     border-radius: 15px;
     padding: 30px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     text-align: center;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     z-index: 1;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     width: 200px !important;
     position: relative;
     overflow: hidden;

 }

 .feature-card-item:hover {
     transform: translateY(-8px);
     box-shadow: 0 25px 40px rgba(0, 0, 0, 0.359);
 }

 .feature-card-item i {
     font-size: 2.5rem;
     width: 70px;
     height: 70px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 20px;
     color: white;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .feature-card-item::before {
     content: "";
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: linear-gradient(90deg, #ff0303, #3540ba, #ff00d4);
     animation: rotation_9018 8s linear infinite;
     opacity: 1;
     transition: opacity 0.5s ease;
     z-index: 0;
 }


 .feature-card-item::after {
     content: "";
     position: absolute;
     inset: 4px;
     background: var(--white);
     border-radius: 12px;
     z-index: 1;
 }

 .feature-card-content {
     position: relative;
     z-index: 2;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
 }


 .feature-card-content h3 {
     font-size: 1.2rem;
     color: var(--card-h1) !important;
     margin-bottom: 10px;
     font-weight: 600;
 }

 .feature-card-content p {
     font-size: 0.95rem;
     color: var(--light-dim) !important;
     line-height: 1.5;
 }

 @keyframes rotation_9018 {
     from {
         transform: rotate(0deg);
     }

     to {
         transform: rotate(360deg);
     }
 }

 .icon-bg-blue {
     background-color: #007bff;
 }

 .icon-bg-green {
     background-color: #28a745;
 }

 .icon-bg-purple {
     background-color: #6f42c1;
 }

 .icon-bg-orange {
     background-color: #fd7e14;
 }

 .icon-bg-red {
     background-color: #dc3545;
 }


 .feature-card-item h3 {
     font-size: 1.35rem;
     font-weight: 700;
     margin-bottom: 10px;
     color: #1a2b48;
 }

 .feature-card-item p {
     font-size: 1rem;
     line-height: 1.6;
     color: #556278;
 }

 .join-movement-section {
     padding: 100px 20px;
     background: radial-gradient(circle at 20% 30%, rgba(216, 191, 255, 0.35), transparent 60%),
         radial-gradient(circle at 80% 70%, rgba(255, 173, 234, 0.3), transparent 60%);
     background-color: var(--white);
 }


 .cta-container {
     display: flex;
     background-color: var(--white);
     border-radius: 20px;
     overflow: hidden;
     background-color: var(--bg-color);


 }

 .cta-part {
     flex: 1;
     padding: 50px 40px;
     text-align: center;
     display: flex;
     flex-direction: column;
     align-items: center;
     box-shadow: 0 10px 30px rgba(17, 35, 230, 0.05);

 }

 .campaign-cta {
     border-right: 1px solid #e9ecef;
 }

 .cta-icon {
     font-size: 2.5rem;
     width: 70px;
     height: 70px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 25px;
     background-color: #eef5ff;
     color: #007bff;
 }

 .donate-cta .cta-icon {
     background-color: #fff0f1;
     color: #dc3545;
 }

 .cta-part h3 {
     font-size: 1.8rem;
     font-weight: 700;
     margin-bottom: 15px;
     color: var(--card-h1);
 }

 .cta-part p {
     font-size: 1rem;
     line-height: 1.6;
     color: var(--light-dim);
     margin-bottom: 30px;
     flex-grow: 1;
 }

 .btn {
     display: inline-block;
     padding: 14px 28px;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 600;
     transition: all 0.3s ease;
     border: 2px solid transparent;
 }

 .btn-primary {
     background-color: #007bff;
     color: #fff;
 }

 .btn-primary:hover {
     background-color: #0056b3;
     transform: translateY(-3px);
 }

 .btn-secondary {
     background-color: transparent;
     border-color: #dc3545;
     color: #dc3545;
 }

 .btn-secondary:hover {
     background-color: #dc3545;
     color: #fff;
     transform: translateY(-3px);
 }




 @media (max-width: 768px) {
     .cta-container {
         flex-direction: column;
     }

     .campaign-cta {
         border-right: none;
         border-bottom: 1px solid #e9ecef;
     }
 }


 .modal {
     display: none;
     position: fixed;
     z-index: 1000;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
     backdrop-filter: blur(3px);
     overflow-y: auto;
     justify-content: center;
     padding: 5px;
 }

 .modal-content {
     border-radius: 12px;
     overflow-y: auto;
     min-height: 90vh;
     display: flex;
     flex-direction: column;
     position: relative;
     animation: fadeIn 0.3s ease;
 }

 @media (max-width:768px) {
     .modal-content {
         margin-top: 5%;
     }
 }


 @keyframes fadeIn {
     from {
         transform: scale(0.9);
         opacity: 0;
     }

     to {
         transform: scale(1);
         opacity: 1;
     }
 }


 .close-btn {
     position: absolute;
     top: 10px;
     right: 15px;
     font-size: 22px;
     cursor: pointer;
 }