 body {
            margin: 0;
            font-family: 'Poppins', sans-serif;
            color: white;
        }
        .banner {
            background: #333;
            background-image: url(../img/1.jpg);
            background-size: cover;
            background-position: center;
            height: 94vh;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 20px 30px;
        }





 .banner {
    position: relative;
}

.banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Overlay effect */
    z-index: 1; /* Lower than sidebar */
}

.banner-content, 
.header-top {
    position: relative;
    z-index: 2;
}

.sidebar {
    position: fixed;
    right: -250px;
    top: 0;
    width: 250px;
    height: 100%;
    background: black;
    color: white;
    transition: 0.3s;
    padding-top: 60px;
    z-index: 3; /* Ensures it's above the overlay */
}

.sidebar.open {
    right: 0;
}

.sidebar ul {
    position: relative;
    z-index: 4; /* Ensures links are clickable */
}







        
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo img {
            height: 35px;
        }
        .menu-icon {
            font-size: 30px;
            cursor: pointer;
            color: white;
            background: #eeeeee96;
            padding: 10px;
            border-radius: 5px;
        }
        .banner-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            width: 100%;
            max-width: 1200px;
            margin: auto;
/*            margin-top: 100px;*/
            padding-left: 30px;
        }
        .col {
           flex: 1;
    /* min-width: 240px; */
    padding: 10px;
        }
        .col h2, .col p, .col ul, .col ul li {
            color: white;
        }
        .col h2 {
            font-size: 28px;
            margin-bottom: 15px;
        }
        .col p {
            font-size: 18px;
            line-height: 1.5;
        }
        .col ul {
            padding-left: 20px;
        }
        .col ul li {
            font-size: 18px;
            margin-bottom: 5px;
        }
        .col.right {
            color: black;
            margin-top: 39px;
        }
        .dropdown {
            display: none;
            background: #fff;
            border-radius: 5px;
            color: black;
            display: none; /* Ensures all dropdowns are closed by default */
        }
        .dropdown .col {
            flex: 1;
        }
        .dropdown ul {
            list-style-type: disc;
            padding-left: 20px;
        }
        .dropdown ul li {
            padding: 5px 0;
            color: black;
            font-size: 15px;
        }
        .toggle-btn {
            cursor: pointer;
            display: block;
            font-size: 20px;
            margin-top: 10px;
            padding: 10px;
            border-radius: 5px;
            color: black;
            background-color: #ffffff99;
        }
        .sidebar {
            position: fixed;
            right: -250px;
            top: 0;
            width: 250px;
            height: 100%;
            background: black;
            color: white;
            transition: 0.3s;
            padding-top: 60px;
        }
        .sidebar.open {
            right: 0;
        }
        .sidebar .close-icon {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 24px;
            cursor: pointer;
            color: white;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar ul li {
            padding: 15px;
        }
        .sidebar ul li a {
            color: white;
            text-decoration: none;
            display: block;
        }
        footer {
            text-align: center;
            padding: 10px;
            background: #222;
           font-size: 13px;
            position: fixed;
            color: #ffffff;
            bottom: 0;
            width: 100%;
        }
       @media (max-width: 1024px) {
    .banner-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-left: 0;
    }
    .col {
        width: 100%;
        padding: 10px;
    }
    .col.right {
       margin-top: -52px;
    }
    .toggle-btn {
        width: 89%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .banner {
        height: auto;
/*        padding: 15px;*/
    }
    .header-top {
        flex-direction: row;
        justify-content: space-between;
    }
    .menu-icon {
        font-size: 24px;
        padding: 8px;
    }
    .sidebar {
        width: 200px;
    }
    .sidebar ul li {
        padding: 10px;
    }
    .banner-content {
/*        padding: 10px;*/
    }
    .dropdown {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .dropdown .col {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .menu-icon {
        font-size: 22px;
        padding: 5px;
    }
    .logo img {
        height: 25px;
    }
    .sidebar {
        width: 180px;
        padding-top: 40px;
    }
    .sidebar .close-icon {
        top: 10px;
        right: 15px;
        font-size: 20px;
    }
    .toggle-btn {
        font-size: 18px;
        padding: 8px;
    }
    .col h2 {
        font-size: 24px;
    }
    .col p,
    .col ul li {
        font-size: 16px;
    }
}