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

 :root {
     --primary-color: #007BFF;
     --primary-hover-color: #0056b3;
     --secondary-color: #f8f9fa;
     --text-color: #333;
     --heading-color: #111;
     --card-background: #ffffff;
     --card-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
     --border-radius: 12px;
     --black: black;
     --white: white;
     --faq-q: #2c3e50;
     --fap-a: #7f8c8d;
     --border-color: rgba(0, 0, 0, 0.185);
 }

 html.dark-mode {
     --primary-color: #64b5f6;
     --primary-hover-color: #90caf9;
     --secondary-color: #1e1e1e;
     --text-color: #e0e0e0;
     --heading-color: #ffffff;
     --card-background: #1e1e1e;
     --card-shadow: 0 4px 25px rgba(255, 255, 255, 0.05);
     --border-radius: 12px;
     --black: #ffffff;
     --white: #121212;
     --faq-q: #e2e8f0;
     --fap-a: #a0aec0;
     --border-color: rgba(255, 255, 255, 0.333);
 }

 * {
     margin: 0;
     padding: 0;
 }

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

 body {
     scrollbar-width: none;
     -ms-overflow-style: none;
 }

 p {
     font-family: 'Merriweather', serif;
     line-height: 30px;
     text-indent: 20px;
 }

 header {
     position: fixed;
     width: 100%;
     z-index: 50;
     top: 0;
     font-weight: 500;
     font-style: normal;
 }

 .menu {
     display: flex;
     flex-direction: row;
     justify-content: space-between;
     align-items: center;
     padding: 16px 10px;
     background-color: var(--white);
 }

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

 .menu-items {
     display: flex;
     flex-wrap: wrap;
     gap: 30px;
     margin-right: 20px;
 }

 .menu-items a {
     text-decoration: none;
     color: var(--black);
     font-size: 16px;
     transition: all 0.4s ease;
 }

 .menu-items button {
     background-color: rgba(255, 255, 255, 0);
     border-color: rgba(255, 255, 255, 0);
     cursor: pointer;
     font-size: 16px;
     font-weight: 0;
     padding: 0%;
 }

 .hamburger {
     display: none;
 }

 .menu-items a:hover {
     color: rgb(15, 11, 211);
     transform: scale(1.1);
 }

 .btn-close {
     display: none;
 }

 .theme-toggle {
     width: 50px;
     height: 40px;
     border-radius: 10px;
     border-color: #00000000;
     cursor: pointer;
     background-color: var(--black);
     color: var(--white);
 }

 .theme-toggle i {
     color: var(--black);
 }


 @media (max-width:768px) {

     .menu-items {
         display: none;
     }

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

     }

     .menu-items a {
         color: white;

     }

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

     .btn-close {
         display: block;
         cursor: pointer;
     }


     .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;
     }

     .hamburger:hover {
         color: #b82e5e;
     }

 }

 .hero {
     display: flex;
     height: 100vh;
     align-items: center;
     background-color: #1a202c;
     overflow-x: hidden;
     padding-top: 5%;
     /* position: relative; */
 }

 .hero-text {
     width: 45%;
     padding: 0 5%;
     z-index: 5;

 }

 .hero-text h1 {
     font-size: 4rem;
     font-weight: 800;
     line-height: 1.1;
     margin-bottom: 1.5rem;
     color: white;
 }

 .hero-text p {
     font-size: 1.25rem;
     color: #a0aec0;
     line-height: 1.6;
     margin-bottom: 2.5rem;
     max-width: 550px;
 }

 .hero-btn {
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     justify-content: center;
     gap: 30px;
     padding: 16px;
 }

 .hero-text a {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     border: none;
     color: white;
     padding: 1rem 2.5rem;
     border-radius: 50px;
     font-size: 1.1rem;
     font-weight: 700;
     cursor: pointer;
     transition: transform 0.2s ease, box-shadow 0.2s ease;
     text-decoration: none;
 }

 .hero-text a:hover {
     transform: translateY(-4px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
 }

 .hero-head {
     position: relative;
     overflow-x: hidden;
     font-size: 3rem;
     font-weight: bold;
     text-transform: uppercase;
     background: linear-gradient(90deg,
             #ffffff 0%,
             #a8ff78 20%,
             #78ffd6 40%,
             #ffffff 60%,
             #a8ff78 80%,
             #78ffd6 100%);
     background-size: 200% auto;
     color: #000;
     background-clip: text;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;

     animation: shine1 5s linear infinite;
 }

 .hero-head::-webkit-scrollbar {
     display: none;
 }

 .hero-head {
     scrollbar-width: none;
     -ms-overflow-style: none;
 }

 .hero-head::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
     transform: skewX(-20deg);
     animation: shine 3s infinite;
     overflow-x: hidden;
     /* z-index: 110; */
 }

 @keyframes shine {
     0% {
         left: -100%;
     }

     100% {
         left: 100%;
     }
 }

 @keyframes shine1 {
     0% {
         background-position: -200% center;
     }

     100% {
         background-position: 200% center;
     }
 }


 .hero-image {
     width: 55%;
     height: 100%;
     position: relative;
 }

 .hero-image::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 30%;
     height: 100%;
     background: linear-gradient(to right, #1a202c 10%, transparent 100%);
     z-index: 5;
     pointer-events: none;
 }

 .impact-icons-list {
     list-style: none;
     padding: 16px;
     margin: 0;
     display: flex;
     justify-content: center;
     align-items: center;
     flex-wrap: wrap;
     gap: 40px;

 }

 .impact {
     background-color: #4c00ffa1;
     border-radius: 20px;
 }

 .impact .head {
     color: white;
 }

 .impact-section {
     display: flex;
     justify-content: center;
     gap: 50px;
     padding: 60px 20px;
     color: white;
     flex-wrap: wrap;
     text-align: center;
 }

 .impact-card {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 15px;
     background: rgba(255, 255, 255, 0.1);
     padding: 30px 20px;
     border-radius: 15px;
     min-width: 150px;
     transition: transform 0.3s;
 }

 .impact-card:hover {
     transform: translateY(-10px);
 }

 .icon i {
     font-size: 2.5rem;
     color: #ffe66d;
     animation: pulse 1.5s infinite alternate;
 }

 .impact-number {
     font-size: 2.5rem;
     font-weight: bold;
 }

 .impact-card p {
     font-size: 1.1rem;
     margin: 0;
 }

 @keyframes pulse {
     0% {
         transform: scale(1);
     }

     100% {
         transform: scale(1.2);
     }
 }

 @media(max-width:768px) {
     .impact-section {
         flex-direction: column;
         gap: 30px;
     }

     .impact-number {
         font-size: 2rem;
     }

     .icon i {
         font-size: 2rem;
     }
 }



 .icon-item {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 15px;
     color: white;
 }

 .icon-circle {
     width: 80px;
     height: 80px;
     border-radius: 50%;
     display: grid;
     place-items: center;
     font-size: 2rem;
     background-color: rgba(255, 255, 255, 0.1);

     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .icon-text {
     font-weight: 600;
     font-size: 1rem;
 }

 .icon-item:hover .icon-circle {
     transform: scale(1.1);
     box-shadow: 0 0 25px 5px var(--glow-color, #fff);
 }

 .green-bg {
     --glow-color: #2ecc71;
 }

 .red-bg {
     --glow-color: #e74c3c;
 }

 .grey-bg {
     --glow-color: #de06ff;
 }

 .light-grey-bg {
     --glow-color: #0130ff;
 }


 @media (max-width: 768px) {
     .impact-icons-list {
         gap: 50px 20px;
     }

     .icon-item {
         flex-basis: 40%;
     }

     .icon-circle {
         width: 70px;
         height: 70px;
         font-size: 1.8rem;
     }
 }

 @media (max-width: 480px) {
     .icon-item {
         flex-basis: 45%;
     }
 }

 .hero-image img {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     opacity: 0;
     transition: opacity 1.5s ease-in-out;
 }

 .hero-image img.active {
     opacity: 1;
 }

 @media (max-width:1300px) {}

 @media (max-width: 900px) {

     .hero {
         position: relative;
         height: 100vh;
     }

     .hero-text {
         width: 90%;
         padding: 2rem 5%;
         text-align: center;
         /* padding-top: 26% !important; */
     }

     .hero-text h1 {
         font-size: 2.5rem;
     }

     .hero-text p {
         max-width: 100%;
     }

     .hero-image {
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         z-index: 1;
     }

     .hero-image::before {
         width: 100%;
         height: 100%;
         background: linear-gradient(180deg, rgba(26, 32, 44, 0.2) 0%, rgba(26, 32, 44, 0.7) 100%);
     }
 }

 .particles {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1;
     pointer-events: none;
 }

 .particle {
     position: absolute;
     background: rgba(255, 255, 255, 0.8);
     border-radius: 50%;
     animation: floatParticle 8s ease-in-out infinite;
     opacity: 0;
 }



 @media (max-width: 768px) {
     .particle {

         transform: scale(0.8);
     }
 }


 .floating-icons i {
     position: absolute;
     font-size: 2.5rem;
     opacity: 0.7;
     animation: floatIcons 10s linear infinite;
     color: #fff;
     z-index: 20;
 }

 @keyframes floatIcons {
     0% {
         transform: translateY(0) rotate(0deg);
     }

     50% {
         transform: translateY(-30px) rotate(15deg);
     }

     100% {
         transform: translateY(0) rotate(0deg);
     }
 }

 .floating-icons i:nth-child(1) {
     top: 25%;
     left: 20%;
     animation-delay: 0s;
 }

 .floating-icons i:nth-child(2) {
     top: 30%;
     left: 60%;
     animation-delay: 2s;
 }

 .floating-icons i:nth-child(3) {
     top: 50%;
     left: 40%;
     animation-delay: 4s;
 }

 .floating-icons i:nth-child(4) {
     top: 70%;
     left: 80%;
     animation-delay: 6s;
 }

 .head {
     color: var(--black);
     font-size: xx-large;
     margin: 3%;
 }

 .featured-campaigns {
     padding: 3%;
     position: relative;
     padding: 80px 20px;
     /* background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%); */
 }

 .featured-campaigns-p {
     color: var(--text-color);
     padding: 20px;
 }

 .grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
 }


 .campaigns-card {
     background: var(--white);
     border-radius: 12px;
     box-shadow: 0 6px 18px var(--card-background);
     overflow: hidden;
     display: flex;
     border: 1px solid var(--border-color);
     flex-direction: column;
     position: relative;
 }

 .campaigns-image {
     height: 160px;
     background-size: cover;
     background-position: center
 }

 .urgent-badge {
     background: #e63946;
     color: #fff;
     font-size: 0.8rem;
     padding: 4px 8px;
     border-radius: 6px;
     position: absolute;
     top: 10px;
     left: 10px;
     animation: pulse 1.5s infinite;
 }

 @keyframes pulse {
     0% {
         transform: scale(1);
         opacity: 1;
     }

     50% {
         transform: scale(1.1);
         opacity: 0.7;
     }

     100% {
         transform: scale(1);
         opacity: 1;
     }
 }

 .campaigns-content {
     padding: 16px;
     display: flex;
     flex-direction: column;
     gap: 10px;
     flex: 1
 }

 .campaigns-title {
     font-weight: 600;
     font-size: 16px;
     margin: 0;
     color: var(--black);
 }

 .campaigns-para {
     font-size: 14px;
     color: var(--text-color);
     margin: 0
 }

 .campaigns-bar {
     margin-left: 20px;
 }

 .campaigns-meta {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 12px
 }

 .campaigns-amounts {
     font-size: 14px;
     color: var(--black);
 }

 .campaigns-amounts .raised {
     font-weight: 700
 }

 .campaigns-progress-wrap {
     width: 100%;
     background: #eee;
     border-radius: 999px;
     height: 10px;
     overflow: hidden
 }

 .campaigns-progress {
     height: 100%;
     width: 0;
     background: linear-gradient(90deg, blue, #36a3ff);
     transition: width 900ms cubic-bezier(.2, .9, .3, 1)
 }

 .campaigns-card-footer {
     padding: 16px;
     border-top: 1px solid rgba(15, 23, 42, 0.04);
     display: flex;
     align-items: center;
     justify-content: space-between
 }

 .campaigns-btn {
     color: var(--black);
     padding: 10px 14px;
     border-radius: 8px;
     border: 0;
     cursor: pointer;
     border: 2px solid transparent;
     font-weight: 600;
     text-decoration: none;
     transition: all 0.4s ease-in;
 }

 .campaigns-btn:hover {
     background-color: #007BFF;
     color: white;
 }

 .campaigns-btn.secondary {
     background: rgba(0, 128, 0, 0.586);
     color: rgb(255, 255, 255);
     border: 1px solid rgba(11, 116, 222, 0.12);
     text-decoration: none;
 }

 .campaigns-btn.secondary:hover {
     background-color: green;
 }

 .campaigns-pill {
     background: rgba(15, 23, 42, 0.04);
     padding: 6px 8px;
     border-radius: 999px;
     font-size: 12px;
     color: var(--muted)
 }


 .how-it-works {
     padding: 80px 15px;
     text-align: center;
     background-color: var(--white);
     overflow-x: hidden;
 }

 .how-it-works .head {
     font-size: 36px;
     font-weight: 700;
     color: var(--heading-color);
     margin-bottom: 10px;
 }

 .how-it-works .sub-head {
     font-size: 18px;
     color: var(--text-color);
     max-width: 600px;
     margin: 0 auto 50px auto;
 }

 .works-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 40px;
     max-width: 1100px;
     margin: 0 auto;
     position: relative;
 }

 .works-card {
     background-color: var(--white);
     padding: 40px 30px;
     border-radius: 12px;
     box-shadow: 0 4px 25px rgba(0, 0, 0, 0.07);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     z-index: 1;
 }

 .works-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 10px 30px rgba(91, 27, 165, 0.638);
 }

 .works-icon {
     font-size: 40px;
     width: 90px;
     height: 90px;
     margin: 0 auto 25px auto;
     background-color: var(--white);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     border: 3px solid var(--white);
     box-shadow: 0 0 0 4px #e0e0e0;
 }

 .works-card h4 {
     font-size: 22px;
     font-weight: 600;
     color: #34495e;
     margin-bottom: 15px;
 }

 .works-card p {
     font-size: 16px;
     line-height: 1.6;
     color: #7f8c8d;
 }


 .works-grid::before {
     content: '';
     position: absolute;
     top: 45px;
     left: 15%;
     width: 70%;
     height: 4px;
     background-image: linear-gradient(to right, #bdc3c7 33%, rgba(255, 255, 255, 0) 0%);
     background-position: bottom;
     background-size: 15px 4px;
     background-repeat: repeat-x;
     z-index: 0;
 }



 @media (max-width: 900px) {
     .works-grid::before {
         display: none;
     }
 }

 @media (max-width: 576px) {
     .how-it-works .head {
         font-size: 30px;
     }

     .how-it-works .sub-head {
         font-size: 16px;
     }
 }

 .stories-section {
     padding: 80px 0;
     background-color: var(--secondary-color);
     margin: 3%;
 }

 .section-header {
     text-align: center;
     margin-bottom: 50px;
 }

 .section-header .subtitle {
     display: inline-block;
     color: var(--primary-color);
     font-weight: 700;
     font-size: 16px;
     margin-bottom: 10px;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .section-header h2 {
     font-family: var(--font-heading);
     font-size: 36px;
     color: var(--heading-color);
     margin: 0 0 15px 0;
 }

 .section-header .header-description {
     font-size: 18px;
     color: #666;
     max-width: 700px;
     margin: 0 auto;
 }

 .stories-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 30px;
 }

 .story-card {
     background-color: var(--card-background);
     border-radius: var(--border-radius);
     box-shadow: var(--card-shadow);
     overflow: hidden;
     display: flex;
     flex-direction: column;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .story-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
 }

 .story-image {
     position: relative;
     height: 220px;
 }

 .story-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .story-category {
     position: absolute;
     top: 15px;
     left: 15px;
     background-color: rgba(0, 123, 255, 0.9);
     color: #fff;
     padding: 5px 12px;
     border-radius: 20px;
     font-size: 14px;
     font-weight: 700;
 }

 .story-content {
     padding: 25px;
     display: flex;
     flex-direction: column;
     flex-grow: 1;
     color: var(--black);
 }

 .story-content h3 {
     font-family: var(--font-heading);
     font-size: 22px;
     margin: 0 0 15px 0;
     color: var(--heading-color);
 }

 .story-content p {
     font-size: 16px;
     line-height: 1.6;
     flex-grow: 1;
     margin-bottom: 20px;
 }

 .story-impact-metric {
     background-color: var(--white);
     border-left: 4px solid var(--primary-color);
     padding: 10px 15px;
     margin-bottom: 20px;
     font-size: 15px;

 }

 .btn-story {
     display: inline-block;
     align-self: flex-start;
     background-color: var(--primary-color);
     color: #fff;
     padding: 12px 25px;
     border-radius: 5px;
     text-decoration: none;
     font-weight: 700;
     transition: background-color 0.3s ease;
 }

 .btn-story:hover {
     background-color: var(--primary-hover-color);
 }

 .testimonial-section {
     padding: 80px 0;
     background-color: var(--white);
 }

 .testimonial-card {
     display: flex;
     gap: 40px;
     align-items: center;
 }

 .testimonial-content {
     flex-basis: 60%;
     background-color: var(--secondary-color);
     padding: 50px;
     border-radius: var(--border-radius);
     position: relative;
 }

 .testimonial-slide {
     display: none;
 }

 .testimonial-slide.active {
     display: block;
     animation: fadeIn 0.6s ease-in-out;
 }

 .testimonial-quote-icon {
     color: var(--primary-color);
     opacity: 0.3;
     margin-bottom: 20px;
 }

 .testimonial-quote-text {
     font-size: 22px;
     font-style: italic;
     line-height: 1.6;
     color: var(--text-color);
     margin-bottom: 30px;
 }

 .testimonial-quote-author h4 {
     font-family: var(--font-heading);
     margin: 0 0 5px 0;
     font-size: 20px;
     color: var(--heading-color);
 }

 .testimonial-quote-author span {
     color: var(--primary-color);
     font-weight: 700;
 }


 .testimonial-selectors {
     flex-basis: 35%;
     display: flex;
     flex-direction: column;
     gap: 15px;
     color: var(--black);
 }

 .testimonial-selector {
     display: flex;
     align-items: center;
     gap: 15px;
     padding: 15px;
     border-radius: 10px;
     cursor: pointer;
     border: 2px solid transparent;
     transition: all 0.3s ease;
     opacity: 0.6;
 }

 .testimonial-selector:hover {
     background-color: var(--white);
     opacity: 1;
 }

 .testimonial-selector.active {
     background-color: var(--white);
     border-color: var(--primary-color);
     opacity: 1;
 }

 .testimonial-selector img {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     object-fit: cover;
 }

 .testimonial-selector-info h5 {
     margin: 0 0 4px 0;
     font-family: var(--font-heading);
     font-size: 16px;
 }

 .testimonial-selector-info span {
     font-size: 14px;
     color: #555;
 }


 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(15px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }


 @media (max-width: 992px) {
     .testimonial-card {
         flex-direction: column;
     }

     .testimonial-selectors {
         flex-direction: row;
         flex-wrap: wrap;
         justify-content: center;
         margin-top: 30px;
     }
 }

 @media (max-width: 768px) {
     .testimonial-content {
         padding: 30px;
     }

     .quote-text {
         font-size: 18px;
     }
 }


 .cta-section {
     padding: 60px 15px;
     background-color: #2c3e50;
     color: #ffffff;
     overflow-x: hidden;
 }

 .cta-content {
     max-width: 1100px;
     margin: 0 auto;
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 30px;
 }

 .cta-text h2 {
     font-family: 'Poppins', sans-serif;
     font-size: 32px;
     font-weight: 700;
     margin: 0 0 10px 0;
 }

 .cta-text p {
     font-size: 18px;
     opacity: 0.9;
     line-height: 1.6;
     margin: 0;
 }

 .btn-donate {
     display: inline-flex;
     align-items: center;
     gap: 12px;
     background-color: #ffffff;
     color: #2c3e50;
     font-size: 18px;
     font-weight: 700;
     padding: 18px 35px;
     border-radius: 50px;
     text-decoration: none;
     transition: all 0.3s ease;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .btn-donate:hover {
     background-color: #f1c40f;
     color: #2c3e50;
     transform: translateY(-5px);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
 }

 .btn-donate svg {
     transition: transform 0.3s ease;
 }

 @media (max-width: 768px) {
     .cta-content {
         flex-direction: column;
         text-align: center;
     }

     .cta-text {
         margin-bottom: 30px;
     }

     .cta-text h2 {
         font-size: 28px;
     }
 }


 .faq-section {
     padding: 80px 15px;
     background-color: var(--white);
     overflow-x: hidden;
 }

 .faq-accordion {
     max-width: 800px;
     margin: 0 auto;
     border-top: 1px solid #e0e0e0;
 }

 .faq-item {
     border-bottom: 1px solid #e0e0e0;
 }

 .faq-question {
     width: 100%;
     background: none;
     border: none;
     padding: 20px 0;
     text-align: left;
     font-family: 'Poppins', sans-serif;
     font-size: 18px;
     font-weight: 600;
     color: var(--faq-q);
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .faq-question span {
     flex-grow: 1;
     padding-right: 15px;
 }

 .faq-answer {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.4s ease-out;
 }

 .faq-answer p {
     padding: 0 10px 20px 0;
     margin: 0;
     font-size: 16px;
     line-height: 1.7;
     color: var(--fap-a);
 }

 .icon-plus-minus {
     position: relative;
     width: 16px;
     height: 16px;
     flex-shrink: 0;
 }

 .icon-plus-minus::before,
 .icon-plus-minus::after {
     content: '';
     position: absolute;
     background-color: #3498db;
     transition: transform 0.3s ease;
 }

 .icon-plus-minus::before {
     width: 100%;
     height: 2px;
     top: 50%;
     left: 0;
     transform: translateY(-50%);
 }

 .icon-plus-minus::after {
     width: 2px;
     height: 100%;
     top: 0;
     left: 50%;
     transform: translateX(-50%);
 }


 .faq-item.active .faq-question {
     color: #3498db;
 }

 .faq-item.active .icon-plus-minus::after {
     transform: translateX(-50%) rotate(90deg);
 }

 footer {
     background-color: #2c3e50;
     color: #bdc3c7;
     padding-top: 60px;
 }

 .footer-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 15px;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 40px;
 }

 .footer-column {
     display: flex;
     flex-direction: column;
 }

 .footer-column h4 {
     font-size: 18px;
     color: #ffffff;
     margin-bottom: 20px;
     position: relative;
     padding-bottom: 10px;
 }

 .footer-column h4::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 40px;
     height: 2px;
     background-color: #3498db;
 }

 .footer-logo {
     font-size: 32px;
     font-weight: 700;
     color: #ffffff;
     text-decoration: none;
     margin-bottom: 10px;
 }

 .footer-tagline {
     margin: 0 0 20px 0;
     line-height: 1.6;
 }

 .follow-us a {
     display: inline-block;
     margin-right: 10px;
     transition: transform 0.3s ease;
 }

 .follow-us a:hover {
     transform: translateY(-4px);
 }

 .follow-us img {
     width: 36px;
     height: auto;
 }

 .footer-menu a {
     color: #bdc3c7;
     text-decoration: none;
     margin-bottom: 12px;
     display: block;
     transition: color 0.3s ease, padding-left 0.3s ease;
 }

 .footer-menu a:hover {
     color: #ffffff;
     padding-left: 5px;
 }

 .contact-us p {
     margin: 0 0 12px 0;
 }

 .contact-us span {
     font-weight: 700;
     color: #ffffff;
     margin-right: 8px;
 }

 .contact-us a {
     color: #bdc3c7;
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .contact-us a:hover {
     color: #ffffff;
 }

 .signup-news-letter p {
     margin: 0 0 20px 0;
     line-height: 1.6;
 }

 .newsletter-form {
     display: flex;
 }

 @media (max-width:478px) {
     .newsletter-form {
         flex-wrap: wrap;
         flex-direction: column;
         gap: 20px;
     }

     .newsletter-form a {
         width: 100px;
         text-align: center;
     }

     .newsletter-form input {
         border-radius: 5px !important;
     }

     .newsletter-form a {
         border-radius: 5px !important;
     }
 }

 .newsletter-form input {
     flex-grow: 1;
     border: 1px solid #4a627a;
     background-color: #3b5066;
     padding: 12px;
     border-radius: 5px 0 0 5px;
     color: #ffffff;
     outline: none;
 }

 .newsletter-form input::placeholder {
     color: #95a5a6;
 }

 .newsletter-form a {
     padding: 12px 20px;
     text-decoration: none;
     border: none;
     background-color: #3498db;
     color: #ffffff;
     font-weight: 700;
     cursor: pointer;
     border-radius: 0 5px 5px 0;
     transition: background-color 0.3s ease;
 }

 .newsletter-form button:hover {
     background-color: #2980b9;
 }


 .footer-bottom-bar {
     margin-top: 40px;
     padding: 20px 15px;
     text-align: center;
     background-color: rgba(0, 0, 0, 0.2);
 }

 .footer-bottom-bar p {
     margin: 0;
     font-size: 14px;
 }

 .footer-bottom-bar a {
     color: #ffffff;
     text-decoration: none;
     font-weight: 600;
 }

 .footer-bottom-bar a:hover {
     text-decoration: underline;
 }

 /* Blog */
 body.panel-open {
     overflow: hidden;
 }

 /* --- Blog Preview Section --- */
 .blog-preview {
     padding: 80px 0;
     background-color: #ffffff;
 }

 .blog-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .blog-preview h2 {
     text-align: center;
     font-family: var(--heading-font);
     font-size: 2.8rem;
     color: var(--text-color);
     margin-bottom: 10px;
 }

 .section-subtitle {
     text-align: center;
     font-size: 1.1rem;
     color: var(--secondary-text-color);
     margin-bottom: 60px;
 }

 .blog-cards {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 30px;
     margin-bottom: 50px;
 }

 /* --- Individual Blog Card Styling --- */
 .blog-card {
     background: white;
     border-radius: var(--border-radius);
     box-shadow: var(--box-shadow);
     overflow: hidden;
     display: flex;
     flex-direction: column;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .blog-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
 }

 .blog-card img {
     width: 100%;
     height: 220px;
     object-fit: cover;
     transition: transform 0.4s ease;
 }

 .blog-card:hover img {
     transform: scale(1.05);
 }

 .blog-content {
     padding: 25px;
     display: flex;
     flex-direction: column;
     flex-grow: 1;
 }

 .blog-content h3 {
     font-size: 1.3rem;
     color: var(--text-color);
     margin-bottom: 15px;
 }

 .blog-content p {
     color: var(--secondary-text-color);
     line-height: 1.7;
     flex-grow: 1;
     margin-bottom: 20px;
 }

 .read-more {
     color: var(--primary-color);
     text-decoration: none;
     font-weight: 600;
     cursor: pointer;
     transition: color 0.2s ease;
 }

 .read-more:hover {
     color: var(--primary-hover);
     text-decoration: underline;
 }

 .blog-btn {
     text-align: center;
 }

 .blog-btn a {
     display: inline-block;
     padding: 14px 32px;
     border-radius: 50px;
     text-decoration: none;
     background-color: var(--primary-color);
     color: white;
     transition: all 0.3s ease;
 }

 .panel-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.6);
     z-index: 999;
     opacity: 0;
     visibility: hidden;
     transition: opacity 0.4s ease, visibility 0.4s;
 }

 .panel-overlay.is-active {
     opacity: 1;
     visibility: visible;
 }

 .story-panel {
     position: fixed;
     top: 0;
     left: 0;
     width: 450px;
     height: 100vh;
     background-color: white;
     z-index: 1000;
     transform: translateX(-100%);
     transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
     overflow-y: auto;
     box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
 }

 .story-panel.is-open {
     transform: translateX(0);
 }

 .story-panel-image {
     width: 100%;
     height: 250px;
     object-fit: cover;
 }

 .story-panel-content {
     padding: 30px;
 }

 .story-panel-content h2 {
     font-family: var(--heading-font);
     font-size: 2rem;
     margin-bottom: 20px;
 }

 .story-panel-content p {
     font-size: 1rem;
     line-height: 1.8;
     color: var(--secondary-text-color);
 }

 .close-panel-btn {
     position: absolute;
     top: 15px;
     right: 20px;
     background: none;
     border: none;
     font-size: 2.5rem;
     font-weight: 300;
     color: var(--secondary-text-color);
     cursor: pointer;
 }

 @media (max-width: 768px) {
     .blog-preview h2 {
         font-size: 2.2rem;
     }

     .story-panel {
         width: 85%;
     }
 }



 .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;
 }


 /* Share Model */
 .share-modal-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.6);
     display: none;
     /* Hidden by default */
     align-items: center;
     justify-content: center;
     z-index: 1000;
 }

 .share-modal-container {
     background: white;
     border-radius: var(--border-radius);
     width: 90%;
     max-width: 450px;
     padding: 30px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
 }

 .share-modal-header {
     text-align: center;
     margin-bottom: 20px;
 }

 .share-modal-header h3 {
     font-size: 1.5rem;
     margin-bottom: 5px;
 }

 .share-modal-header p {
     color: #6c757d;
     font-size: 0.9rem;
 }

 .copy-link-section {
     display: flex;
     margin-bottom: 25px;
 }

 #share-link-input {
     flex-grow: 1;
     padding: 10px;
     border: 1px solid #dee2e6;
     border-radius: 8px 0 0 8px;
     font-size: 0.9rem;
     background-color: #f8f9fa;
 }

 #copy-link-btn {
     padding: 0 20px;
     border: 1px solid var(--primary-color);
     background: var(--primary-color);
     color: white;
     border-radius: 0 8px 8px 0;
     font-weight: 600;
     cursor: pointer;
 }

 .social-share-title {
     text-align: center;
     font-weight: 600;
     margin-bottom: 20px;
     color: #6c757d;
 }

 .social-share-grid {
     display: flex;
     justify-content: center;
     gap: 20px;
 }

 .social-icon {
     display: flex;
     flex-direction: column;
     align-items: center;
     text-decoration: none;
     color: #343a40;
     font-weight: 600;
     font-size: 0.9rem;
 }

 .social-icon i {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     display: grid;
     place-items: center;
     color: white;
     font-size: 1.5rem;
     margin-bottom: 8px;
 }

 .fa-whatsapp {
     background-color: #25D366;
 }

 .fa-facebook-f {
     background-color: #1877F2;
 }

 .fa-twitter {
     background-color: #1DA1F2;
 }

 .fa-envelope {
     background-color: #6c757d;
 }

 .home-select {
     display: none;
     position: absolute;
     top: 100%;
     left: 0;
     background: var(--white);
     min-width: 160px;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     padding: 20px;
 }

 .home-nav {
     position: relative;
 }

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

 @media (max-width:768px) {
     .home-select {
         left: 10% !important;
     }
 }