 /* ===== HEADER AREA WITH BACKGROUND COLOR ===== */
 .header {
     background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
     position: relative;
 }

 /* .header-top {
      padding: 15px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    } */

 .header-top {
     /* padding: 15px 0; */
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
     padding: 0.9em 0;
     background: #fff;
     position: relative;
 }


 /* Logo Area Styling - Float Left */
 .logo {
     float: left;
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .logo a {
     display: flex;
     align-items: center;
     text-decoration: none;
     gap: 10px;
 }

 .logo img {
     height: 65px;
     transition: transform 0.3s ease;
 }

 .logo img:hover {
     transform: scale(1.05);
 }

 .logo h1 {
     font-weight: bold;
     font-family: 'Times New Roman', Times, serif;
     font-size: 38px;
     margin: 0;
     color: #f30202;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
     letter-spacing: 2px;
 }

 .logo span {
     display: block;
     font-size: 12px;
     color: #ab9106;
     letter-spacing: 1px;
     margin-top: 5px;
 }


 /* Donate Button Styling - Float Right */
 .do-button {
     float: right;
 }

 .do-button a {
     padding: 0.8em 1.2em;
     background: #FCB2B2;
     font-size: 0.85em;
     font-weight: 400;
     color: #fff;
     text-transform: uppercase;
     transition: 0.5s all;
     -webkit-transition: 0.5s all;
     -moz-transition: 0.5s all;
     -o-transition: 0.5s all;
     -ms-transition: 0.5s all;
 }



 .f-icons {
     display: flex;
     align-items: center;
     gap: 15px;
     list-style: none;
     margin: 0;
     padding: 0;
 }


 .donate {
     background: linear-gradient(135deg, #e74c3c, #c0392b);
     color: #6c05f1 !important;
     padding: 10px 25px !important;
     border-radius: 50px;
     font-weight: bold;
     transition: all 0.3s ease;
     text-decoration: none;
     display: inline-block;
 }

 .donate:hover {
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
 }

 .donate i {
     margin-left: 8px;
 }

 .donate input[type="submit"] {
     font-size: 0.9em;
     background: #FCB2B2;
     padding: 0.7em 1em;
     text-align: center;
     color: #fff;
     border: none;
     outline: none;
     text-transform: uppercase;
     -webkit-appearance: none;
     transition: 0.5s all;
     -webkit-transition: 0.5s all;
     -moz-transition: 0.5s all;
     -o-transition: 0.5s all;
     -ms-transition: 0.5s all;
 }

 .donate input[type="submit"]:hover {
     background: #53d0c6;
 }

 /* Top Menu Styling - RIGHT ALIGNED */
 .top-menu {
     clear: both;
     padding: 15px 0 5px 0;
 }

 .top-menu ul {
     list-style: none;
     padding: 0;
     margin: 0;
     display: flex;
     /* justify-content: flex-end; */
     gap: 35px;
     flex-wrap: wrap;
 }


 .top-menu ul li {
     display: inline-block;
 }

 .top-menu ul li a {
     color: #f80606;
     text-decoration: none;
     font-size: 16px;
     font-weight: 600;
     padding: 8px 0;
     transition: all 0.3s ease;
     position: relative;
     letter-spacing: 1px;
 }

 .top-menu ul li a:before {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 2px;
     background: #f05423;
     transition: width 0.3s ease;
 }

 .top-menu ul li a:hover:before,
 .top-menu ul li a.active:before {
     width: 100%;
 }

 .top-menu ul li a:hover,
 .top-menu ul li a.active {
     color: #f05423;
 }

 /* Menu toggle button for mobile */
 span.menu {
     display: none;
     color: #fff;
     font-size: 24px;
     cursor: pointer;
     padding: 10px;
     text-align: center;
 }



 /* ===== BANNER / SLIDER AREA WITH BACKGROUND ===== */
 .banner {
     background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
     padding: 30px 0 50px 0;
     position: relative;
 }

 .banner {
     /* background: url(../images/banner.jpg) no-repeat center top; */
     background-size: cover;
     -webkit-background-size: cover;
     -moz-background-size: cover;
     -o-background-size: cover;
     -ms-background-size: cover;
     min-height: 200px;
     /* position: relative; */
 }

 .callbacks_container {
     background: rgba(0, 0, 0, 0.2);
     border-radius: 15px;
     padding: 10px;
 }

 .rslides {
     position: relative;
     list-style: none;
     overflow: hidden;
     width: 100%;
     padding: 0;
     margin: 0;
     min-height: 200px;
     border-radius: 12px;
 }

 .ima1 {
     width: 100%;
     padding: 20px 10px 20px 10px;
 }

 .rslides li {
     position: absolute;
     display: none;
     width: 100%;
     left: 0;
     top: 0;
 }

 .rslides li:first-child {
     position: relative;
     display: block;
     float: left;
 }

 .rslides img {
     display: block;
     height: auto;
     float: left;
     width: 100%;
     border: 0;
     border-radius: 10px;
 }

 /* ===== ABOUT US SECTION WITH GRADIENT BACKGROUND ===== */
 .about {
     padding: 4em 0;
     background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
     padding: 80px 0;
     position: relative;
 }

 .about::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 80%);
     pointer-events: none;
 }

 .about .container {
     position: relative;
     z-index: 2;
 }

 .about .tittle {
     color: #2c3e50;
 }

 .about .tittle:after {
     background: #e74c3c;
 }

 .about p {
     font-size: 16px;
     line-height: 1.8;
     color: #2c3e50;
     background: rgba(255, 255, 255, 0.85);
     padding: 20px 25px;
     border-radius: 16px;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
 }

 .about p:hover {
     background: rgba(255, 255, 255, 0.95);
     transform: translateX(5px);
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
 }

 .about p.para {
     margin-top: 20px;
 }


 /* .about {} */

 /* .about p {
	font-size: 0.95em;
	color: #888;
	line-height: 1.8em;
} */

 .about-top-left img {
     width: 100%;
 }

 .about-top-right p {
     color: #000000;
     font-size: 0.9em;
     line-height: 1.8em;
     margin-top: 1em;
     background-color: #FFFDD0;
 }

 .about-top-right h4 {
     color: #53d0c6;
     font-size: 1.8em;
     font-weight: 800;
     font-family: 'Poiret One', cursive;
     line-height: 1.35em;
     padding: 0
 }

 .about-top-right {
     padding-left: 0;
 }

 /* ===== MISSION & VISION SECTION WITH GRADIENT BACKGROUND ===== */
 .mission-vision-section {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
     padding: 80px 0 60px 0;
     position: relative;
     overflow: hidden;
 }

 .mission-vision-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.1) 100%);
     pointer-events: none;
 }

 .mission-vision-section::after {
     content: '';
     position: absolute;
     top: -50px;
     right: -50px;
     width: 200px;
     height: 200px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.1);
     pointer-events: none;
 }

 .bg-circle {
     position: absolute;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.08);
     pointer-events: none;
 }

 .bg-circle-1 {
     bottom: -80px;
     left: -80px;
     width: 250px;
     height: 250px;
 }

 .bg-circle-2 {
     top: 30%;
     right: -100px;
     width: 300px;
     height: 300px;
 }

 .bg-circle-3 {
     bottom: 20%;
     left: 20%;
     width: 150px;
     height: 150px;
 }

 .about-box {
     border-bottom-color: #324ff3;
 }

 .about-box {
     background:#FFFDD0;
     backdrop-filter: blur(2px);
     padding: 35px 30px;
     border-radius: 16px;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     height: 100%;
     border-bottom: 4px solid #480cee;
     text-align: justify;
     font-size: 20px;
 }

 .mission-box,
 .vision-box {
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(2px);
     padding: 35px 30px;
     border-radius: 16px;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     height: 100%;
     border-bottom: 4px solid #f05423;
 }

 .vision-box {
     border-bottom-color: #ffd700;
 }

 .mission-box:hover,
 .vision-box:hover {
     transform: translateY(-8px);
     box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
     background: #fff;
 }

 .mv-icon {
     font-size: 52px;
     margin-bottom: 20px;
     display: inline-block;
 }

 .mission-box h4,
 .vision-box h4 {
     font-size: 30px;
     font-weight: 700;
     font-family: 'Poiret One', cursive;
     margin-bottom: 20px;
     color: #333;
     letter-spacing: 1px;
 }

 .mission-box h4 span,
 .vision-box h4 span {
     font-weight: 800;
     color: #f05423;
 }

 .vision-box h4 span {
     color: #ff8c00;
 }

 .mission-box p,
 .vision-box p {
     font-size: 16px;
     line-height: 1.7;
     color: #555;
     text-align: justify;
 }

 .mission-box strong,
 .vision-box strong {
     color: #e67e22;
 }

 .vision-box strong {
     color: #d4a017;
 }

 .mv-divider {
     width: 70px;
     height: 3px;
     background: #f05423;
     margin: 20px auto 0;
     border-radius: 3px;
 }

 .vision-box .mv-divider {
     background: #ffd700;
 }

 /* Caption below mission vision cards */
 .making-life-better {
     text-align: center;
     /* margin-top: 50px; */
     padding: 25px 0 15px 0;
     position: relative;
     z-index: 2;
 }

 .making-life-better h2 {
     font-size: 44px;
     font-weight: 800;
     font-family: 'Poiret One', cursive;
     letter-spacing: 4px;
     text-transform: uppercase;
     display: inline-block;
     background: linear-gradient(135deg, #FFEAA7 0%, #FFD32A 100%);
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
 }

 .making-life-better h2:before,
 .making-life-better h2:after {
     content: '';
     position: absolute;
     top: 50%;
     width: 60px;
     height: 2px;
     background: linear-gradient(90deg, #FFEAA7, #FFD32A);
 }

 .making-life-better h2:before {
     left: -80px;
 }

 .making-life-better h2:after {
     right: -80px;
 }

 .making-life-better p {
     font-size: 18px;
     color: rgba(255, 255, 255, 0.9);
     margin-top: 20px;
     font-style: italic;
     letter-spacing: 1px;
     font-weight: 500;
 }

 .making-life-better .dot-decoration {
     display: flex;
     justify-content: center;
     gap: 12px;
     margin-top: 20px;
 }

 .making-life-better .dot-decoration span {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: #FFD32A;
     opacity: 0.8;
 }

 .making-life-better .dot-decoration span:nth-child(2) {
     width: 12px;
     height: 12px;
     background: #FFEAA7;
     opacity: 1;
 }

 /* ===== OUR ACTIVITIES SECTION WITH GRADIENT BACKGROUND ===== */
 .services {
     background: linear-gradient(135deg, #e0f7fa 0%, #e8eaf6 50%, #f3e5f5 100%);
     padding: 60px 0;
     position: relative;
 }

 .services .tittle {
     color: #333;
 }

 .services .tittle:after {
     background: #f05423;
 }

 .service-box {
     background: rgba(255, 255, 255, 0.9);
     border-radius: 12px;
     padding: 25px 20px;
     margin-bottom: 20px;
     transition: all 0.3s ease;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
 }

 .service-box:hover {
     transform: translateY(-5px);
     background: #fff;
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
 }

 .serve-info {
     background: rgba(255, 255, 255, 0.85);
     border-radius: 12px;
     padding: 25px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
 }


 /* ===== HEALTH CAMPS SECTION WITH GRADIENT BACKGROUND ===== */
 .camps {
     background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
     padding: 60px 0;
     position: relative;
 }

 .camps .tittle {
     color: #333;
 }

 .camps .tittle:after {
     background: #d63031;
 }

 .cam-top {
     background: rgba(255, 255, 255, 0.9);
     border-radius: 12px;
     padding: 15px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .cam-top-text {
     background: rgba(255, 255, 255, 0.85);
     border-radius: 12px;
     padding: 15px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .sub-cam-top {
     background: rgba(255, 255, 255, 0.8);
     border-radius: 10px;
     padding: 12px;
     margin-bottom: 15px;
     transition: all 0.3s ease;
 }

 .sub-cam-top:hover {
     background: #fff;
     transform: translateX(5px);
 }

 /* ===== OUR NEWS SECTION WITH GRADIENT BACKGROUND ===== */
 .news {
     background: linear-gradient(135deg, #d4fc79 0%, #96e6a1 100%);
     padding: 60px 0;
     position: relative;
 }

 .news .tittle {
     color: #333;
 }

 .news .tittle:after {
     background: #2ecc71;
 }

 .article-post {
     background: rgba(255, 255, 255, 0.95);
     border-radius: 16px;
     padding: 20px;
     margin-bottom: 30px;
     transition: all 0.3s ease;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
 }

 .article-post:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
     background: #fff;
 }

 .post-details ul li {
     margin-bottom: 8px;
     color: #555;
 }

 .post-details h3,
 .post-details a h3 {
     color: #53d0c6;
     font-size: 2em;
     font-weight: 400;
     font-family: 'Poiret One', cursive;
     margin-top: 0.5em;
     padding: 0.3em 0 0.1em 0;
 }

 .post-details p {
     font-size: 0.9em;
     line-height: 1.8em;
     color: #888;
     font-weight: 400;
     margin-top: 0.5em;
 }

 .blog {
     display: inline-block;
     margin-top: 15px;
     padding: 8px 20px;
     background: #2ecc71;
     color: #fff;
     border-radius: 30px;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .blog:hover {
     background: #27ae60;
     color: #fff;
     transform: translateX(5px);
 }

 .tittle {
     position: relative;
     margin-bottom: 50px;
     text-align: center;
 }

 .tittle:after {
     content: '';
     display: block;
     width: 70px;
     height: 3px;
     margin: 12px auto 0;
 }

 /* Row styling for columns */
 .row {
     display: flex;
     flex-wrap: wrap;
     margin: 0 -15px;
 }

 .col-md-6 {
     flex: 0 0 50%;
     max-width: 50%;
     padding: 0 15px;
     box-sizing: border-box;
 }

 .clearfix {
     clear: both;
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 15px;
 }

 /* Social Icons Styling */
 .f-icons li a {
     /* display: block; */
     /* width: 35px;
      height: 35px; */
     /* background: rgba(255,255,255,0.1); */
     background: #f05423;
     /* border-radius: 50%; */
     transition: all 0.3s ease;
 }

 .f-icons li a:hover {
     background: #f05423;
     transform: translateY(-2px);
 }

 @media (max-width: 768px) {
     .logo {
         float: none;
         justify-content: center;
         margin-bottom: 15px;
     }

     .logo a {
         justify-content: center;
     }

     .do-button {
         float: none;
         text-align: center;
         margin-bottom: 15px;
     }

     .f-icons {
         justify-content: center;
     }

     span.menu {
         display: block;
         text-align: center;
     }

     .top-menu ul {
         display: none;
         flex-direction: column;
         gap: 15px;
         text-align: center;
         padding: 15px 0;
         justify-content: center;
     }

     .top-menu ul li {
         display: block;
     }

     .top-menu ul.show {
         display: flex;
     }

     .about {
         padding: 50px 0;
     }

     .mission-vision-section {
         padding: 60px 0 40px 0;
     }

     .making-life-better h2 {
         font-size: 28px;
         letter-spacing: 2px;
     }

     .making-life-better h2:before,
     .making-life-better h2:after {
         width: 30px;
     }

     .making-life-better h2:before {
         left: -40px;
     }

     .making-life-better h2:after {
         right: -40px;
     }

     .mission-box,
     .vision-box {
         margin-bottom: 30px;
     }

     .mission-box h4,
     .vision-box h4 {
         font-size: 24px;
     }

     .col-md-6 {
         flex: 0 0 100%;
         max-width: 100%;
     }

     .services,
     .camps,
     .news {
         padding: 40px 0;
     }

     .about p {
         padding: 15px 20px;
         font-size: 14px;
     }

     .logo h1 {
         font-size: 22px;
     }
 }

 @media (max-width: 480px) {
     .making-life-better h2 {
         font-size: 22px;
         letter-spacing: 1px;
     }

     .making-life-better h2:before,
     .making-life-better h2:after {
         display: none;
     }

     .mission-box p,
     .vision-box p {
         font-size: 14px;
     }
 }