 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            list-style: none;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        .logo img {
            height: 50px;
        }
        
        .main-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
            height: 80px;
            background-color: white;
            color: #000000;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: background-color 0.3s ease;
        }

        .logo img {
            height: 50px;
            content: url('img/logo.png');
            width: auto;
        }

        .main-nav ul {
            display: flex;
            align-items: center;
        }

        .main-nav ul li {
            margin: 0 20px;
            position: relative;
        }

        .main-nav ul li a {
            font-weight: 500;
            font-size: 16px;
            padding: 5px 0;
            position: relative;
            transition: color 0.3s ease;
            text-decoration: none;
            color: #000000;
        }

        .main-nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            background-color: purple;
            transition: width 0.3s ease-in-out;
        }

        .main-nav ul li a:hover {
            color: purple;
        }

        .main-nav ul li a:hover::after {
            width: 100%;
        }

        .programslist .programslist1 {
            display: none;
            position: absolute;
            top: 150%;
            left: 50%;
            transform: translateX(-50%);
            background-color: #ffffff;
            min-width: 300px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            padding: 10px 0;
            opacity: 0;
            color: #000000;
            margin: 0;
            visibility: hidden;
            transition: top 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        }

        .programslist:hover .programslist1 {
            display: block;
            top: 100%;
            opacity: 1;
            visibility: visible;
        }

        .programslist1 ul {
            flex-direction: column;
        }

        .programslist1 ul li {
            margin: 0;
            width: 100%;
        }

        .programslist1 ul li a {
            padding: 12px 20px;
            display: block;
            font-size: 14px;
            white-space: nowrap;
        }

        .programslist1 ul li a:hover {
            background-color: #000000;
            color: rgb(254, 254, 255);
        }

        .programslist1 ul li a i {
            margin-left: 8px;
        }

        .others .other-main {
            display: none;
            position: absolute;
            top: 150%;
            left: 50%;
            transform: translateX(-50%);
            background-color: white;
            color: rgb(6, 6, 6);
            min-width: 300px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            padding: 10px 0px;
            opacity: 0;
            visibility: hidden;
            transition: top 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        }

        .others:hover .other-main {
            display: block;
            top: 100%;
            opacity: 1;
            visibility: visible;
        }

        .other-main ul {
            display: flex;
            flex-direction: column;
        }

        .other-main ul li {
            margin: 0;
            width: 100%;
        }

        .other-main ul li a {
            padding: 12px 20px;
            display: block;
            font-size: 14px;
            white-space: nowrap;
        }

        .other-main ul li a:hover {
            background-color: #212128;
            color: rgb(255, 254, 255);
        }

        .other-main ul li a i {
            margin-left: 8px;
        }

        .menu-toggle {
            display: none;
        }

        .hamburger-menu {
            display: none;
            cursor: pointer;
            z-index: 1002;
        }

        .hamburger-menu .bar {
            display: block;
            width: 25px;
            height: 3px;
            background-color: #333;
            margin: 5px 0;
            transition: all 0.4s ease-in-out;
        }

        .side-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 80%;
            max-width: 320px;
            height: 100%;
            color: white;
            background-color: #c500ed;
            z-index: 1001;
            transform: translateX(-100%);
            transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1);
            padding-top: 100px;
        }

        .side-menu nav ul {
            display: flex;
            flex-direction: column;
            padding-left: 20px; /* Added padding */
        }

        .side-menu nav li {
            width: 100%;
        }

        .side-menu nav a {
            display: block;
            padding: 18px 0px;
            font-size: 1.6em;
            font-weight: 400;
            text-decoration: none;
            color: white;
            transition: background-color 0.3s, color 0.3s;
        }

        .side-menu nav a:hover {
            color: #ffffff;
        }


        #menu-toggle:checked~.side-menu {
            transform: translateX(0);
        }

        #menu-toggle:checked~.hamburger-menu .bar:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }

        #menu-toggle:checked~.hamburger-menu .bar:nth-child(2) {
            opacity: 0;
        }

        #menu-toggle:checked~.hamburger-menu .bar:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }

        @media (max-width: 992px) {
            .main-nav {
                display: none;
            }

            .hamburger-menu {
                display: block;
            }
        }
     
        body {
            padding-top: 80px; 
        }

        .future {
            height: 90vh;
            min-height: 400px;
            backdrop-filter: blur(5px);
          
            background: linear-gradient(rgba(0, 0, 0, 0.795)), url(img/future);
            background-position: center;
            background-size: cover;
            background-attachment: scroll; 
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center; 
            padding: 0 20px;
        }

        .future h3 {
            font-size: 5.6rem;
            line-height: 1.2; /* Adjusted line height */
            font-weight: 800;
            color: rgb(114, 13, 209);
        }

        .purple {
            color: rgb(253, 24, 203);
        }

        .future p {
            font-size: 1.2em;
            font-weight: 500;
            color: rgb(211, 182, 238); /* Lightened for contrast */
            margin-top: 10px;
        }

        .future-text-p {
            width: 80%;
            margin: 30px auto;
            text-align: center;
        }

        .future-text-p h3 {
            font-size: 3.5em;
            color: rgb(164, 2, 161);
            font-weight: 700;
            margin-bottom: 40px;
        }

        .future-text-p h3 span {
            color: rgb(53, 2, 101);
        }

        .future-text-p p {
            font-size: 1.2em;
            font-weight: 400;
            margin-bottom: 40px;
        }
        
        /* Testimonial styles */
        .testy {
            height: auto;
            padding: 10vh 0;
            width: 100%;
            max-width: 900px; /* Set a max-width for large screens */
            margin: 0 auto;
        }

        .five {
            text-align: center;
        }

        .five img {
            height: 100px; /* Reduced size slightly */
        }

        .carousel-item {
            text-align: center;
            padding: 0 5%; /* Padding so text doesn't hit edges */
        }

        .carousel-inner {
            margin: auto;
            padding-bottom: 40px; /* Space for controls */
        }
        
        /* Make carousel controls dark */
        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            background-color: #333;
            border-radius: 50%;
            padding: 20px;
        }

        .carousel-item p {
            font-size: 1.4em;
        }

        .carousel-item h4 {
            font-size: 1.4rem; /* Use rem */
            color: rgb(173, 86, 255);
            font-weight: 800;
            margin-top: 20px;
        }

        .carousel-item h6 {
            font-weight: 500;
        }

        /* Video and Donate styles */
        .future-video {
            margin-top: 30px;
            width: 100%;
            margin: 30px auto;
            /* Responsive 16:9 video */
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
        }

        .future-video video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .momo {
            height: auto; /* Let image define height */
            max-height: 500px;
            width: 100%;
            max-width: 600px; /* Set max-width */
            margin: auto;
            margin-bottom: 30px;
        }

        .momo img {
            height: 100%;
            width: 100%;
            object-fit: contain; /* Use 'contain' to see the whole image */
        }

        /* ======== PROGRAM DETAILS STYLES START ======== */

        .our-programs {
            padding: 80px 5%;
            background-color: #fff;
        }

        .programs-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 3rem;
            font-weight: 800;
            color: rgb(53, 2, 101);
        }
        
        /* MODIFIED: Program Card styles
          Added height: 100% to make cards in a row match height.
        */
        .program-card {
            background-color: #f9f9f9;
            border: 1px solid #eee;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%; /* This is key for equal-height columns */
        }

        .program-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .program-card h3 {
            font-size: 1.6rem;
            color: rgb(164, 2, 161);
            font-weight: 700;
            margin-bottom: 15px;
        }

        .program-card h4 {
            font-size: 1.1rem;
            color: #333;
            font-weight: 600;
            margin-top: 20px;
            margin-bottom: 8px;
            border-left: 4px solid #c500ed;
            padding-left: 10px;
        }

        .program-card p,
        .program-card li {
            font-size: 1rem;
            line-height: 1.7;
            color: #555;
        }

        .program-card ul {
            padding-left: 20px;
            margin-top: 10px;
            margin-bottom: 15px;
        }

        .program-card li {
            margin-bottom: 8px;
        }
        /* ======== PROGRAM DETAILS STYLES END ======== */


        /* ======== YOUR RESPONSIVE FOOTER (Kept as-is) ======== */

        footer {
            background: black;
            color: white;
            padding: 50px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 40px;
        }

        .footer {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            border-bottom: 1px solid #444;
            padding-bottom: 30px;
        }

        .logo1 {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        .logo1 img {
            height: 60px;
        }

        .logo1 h4 {
            color: white;
            font-size: clamp(3rem, 10vw, 4rem);
            font-weight: 700;
            line-height: 1.1;
            margin-left: 0;
        }

        .contact-bthn {
            width: 100%;
            max-width: 400px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            padding: 0;
        }

        .contact-bthn a {
            text-decoration: none;
            color: white;
            width: 100%;
            display: block;
        }

        .contact-bthn a:hover {
            color: black;
        }

        .btn33,
        .btn34 {
            height: auto;
            width: 100%;
            background: transparent;
            color: white;
            border: 1px solid white;
            font-weight: 500;
            font-size: 1rem;
            padding: 15px 20px;
            cursor: pointer;
            transition: background-color 0.3s, color 0.3s;
        }

        .btn33:hover,
        .btn34:hover {
            background-color: white;
            color: black;
        }

        .credentials {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .credentials p {
            color: white;
            font-size: 1em;
            font-weight: 400;
        }

        .links2 ul {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px 20px;
            margin: 0;
            padding: 0;
        }

        .links2 .wow {
            display: none;
        }

        .links2 ul li a {
            color: white;
            font-size: 1.1em;
            font-weight: 500;
            transition: color 0.3s;
            text-decoration: none;
        }

        .links2 ul li a:hover {
            color: blueviolet;
        }


        /* ================================================= */
        /* Media Query for Tablets and Desktops (768px+)   */
        /* ================================================= */

        @media (min-width: 768px) {
            /* Revert to your original layout for larger screens */
            footer {
                padding: 5vh 0 10vh 0;
            }

            .footer {
                flex-direction: row;
                justify-content: flex-start;
                border-bottom: 2px solid white;
                padding: 0 0 40px 0;
                width: 86%;
                text-align: left;
            }

            .logo1 {
                flex-direction: row;
                align-items: flex-start;
            }

            .logo1 img {
                height: 80px;
            }

            .logo1 h4 {
                font-size: 6.5em;
                margin-left: 20px;
            }

            .contact-bthn {
                flex-direction: row;
                width: 80%;
                max-width: none;
                padding: 50px 0 80px 0;
            }

            .credentials {
                width: 95%;
                flex-direction: row;
                justify-content: space-between;
            }

            .links2 .wow {
                display: list-item;
                border-right: 1px solid blueviolet;
                padding-right: 20px;
            }
        }

        /* ================================================= */
        /* Additional Responsive Tweaks                  */
        /* ================================================= */

        @media screen and (max-width: 767px) {
            .future h3 {
                font-size: 3.5rem; /* Smaller hero text */
            }
            .future p {
                font-size: 1.1rem;
            }
            .section-title {
                font-size: 2.2rem;
            }
            .carousel-item p {
                font-size: 1.2em;
            }
            .carousel-item h4 {
                font-size: 1.3rem;
            }
            .future-text-p h3 {
                font-size: 2.5em;
            }
        }

        @media screen and (max-width: 480px) {
            .future h3 {
                font-size: 2.5rem; /* Even smaller for small phones */
            }

            .future p {
                font-size: 1rem;
                line-height: normal;
            }
            
            .carousel-item p {
                font-size: 1.1em;
            }
            .carousel-item h4 {
                font-size: 1.2rem;
            }
        }
    