
.aheader {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.aheader img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.aheader-content {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    color: white;
}
.aheader-content h1 {
    font-size: 48px;
    margin: 0;
}
.aheader-content .breadcrumb {
    font-size: 14px;
    margin-top: 10px;
    display: none; /* Hide the breadcrumb */
}
.aheader-content .breadcrumb a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
}
.aheader-content .breadcrumb a:hover {
    text-decoration: underline;
}
.aheader-content .bracket {
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    font-size: 72px;
    font-weight: bold;
}





/* Main container for centering the layout */
    .conttainer {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
        background-image: url('images/bg100.jpg');
        background-size: cover;
        background-position: center;
        animation: backgroundAnimation 10s infinite alternate;
        min-height: 100vh; /* Adjust the height to the viewport */
        margin-top: 0;
    }

    @keyframes backgroundAnimation {
        0% { background-position: center; }
        50% { background-position: top; }
        100% { background-position: center; }
    }

    .conntent {
        display: flex;
        flex-direction: column;
        background-color: #eefff3;
        border-radius: 10px;
        overflow: hidden;
        width: 100%;
        max-width: 1200px;
        transition: all 0.5s ease;
        min-height: 70vh; /* Adjust height of the content */
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Added subtle shadow */
    }

    /* Sidebar styles */
    .sidebar {
        background: linear-gradient(to right, #5ca85c, #92a3c8);
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        min-height: 100%; /* Sidebar fills the height */
    }

    .sidebar button {
        background-color: transparent;
        border: 2px solid #3a3a3a;
        color: #ffffff;
        padding: 15px;
        margin: 10px;
        border-radius: 25px;
        font-size: 16px;
        cursor: pointer;
        text-align: center;
        width: 100%;
        max-width: 200px;
        transition: background-color 0.3s, border-color 0.3s;
    }

    .sidebar button.active {
        background-color: #004d40;
        border-color: #003366;
    }

    /* Main content wrapper */
    .main-content-wrapper {
        display: flex;
        justify-content: space-between;
        padding: 40px;
        flex-wrap: wrap;
        align-items: center;
        min-height: 50vh; /* Ensure content wrapper height is adjustable */
    }

    .main-content {
        flex: 1;
        padding-right: 20px;
        min-height: 40vh; /* Set minimum height for content */
    }

    .main-content h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .main-content p {
        font-size: 16px;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .main-content ul {
        list-style: none;
        padding: 0;
        margin-bottom: 20px;
    }

    .main-content ul li {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
    }

    .main-content ul li i {
        color: #00cc66;
        margin-right: 10px;
    }

    .main-content button {
        background-color: #004d40;
        color: #ffffff;
        border: none;
        padding: 15px 30px;
        border-radius: 25px;
        font-size: 16px;
        cursor: pointer;
    }

    .image-container {
        flex: 0 0 300px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
    }

    .image-container img {
        border-radius: 10px;
        max-width: 100%;
        height: auto;
    }

    /* Media Queries for responsiveness */
    @media (max-width: 1024px) {
        .main-content-wrapper {
            flex-direction: column;
            padding: 20px;
        }

        .main-content {
            padding-right: 0;
            margin-bottom: 20px;
        }

        .image-container {
            flex: 1;
        }

        .sidebar button {
            flex: 1 1 100%;
            margin: 10px 0;
            font-size: 14px;
        }
    }

    @media (max-width: 768px) {
        .sidebar {
            flex-direction: column;
        }

        .sidebar button {
            flex: 1 1 auto;
            margin: 5px 0;
            font-size: 14px;
        }

        .main-content-wrapper {
            flex-direction: column;
            padding: 20px;
        }

        .main-content {
            padding-right: 0;
            margin-bottom: 20px;
        }

        .image-container {
            flex: 1;
        }
    }

    @media (max-width: 600px) {
        .main-content h2 {
            font-size: 20px;
        }

        .main-content p {
            font-size: 14px;
        }

        .main-content ul li {
            font-size: 14px;
        }

        .main-content button {
            padding: 10px 20px;
            font-size: 14px;
        }

        .sidebar button {
            padding: 12px;
            font-size: 12px;
        }
    }

    @media (max-width: 400px) {
        .sidebar button {
            font-size: 12px;
            padding: 8px;
        }

        .main-content h2 {
            font-size: 18px;
        }

        .main-content p {
            font-size: 12px;
        }

        .main-content button {
            padding: 8px 15px;
            font-size: 12px;
        }
    }

    /* Responsive Landscape View */
    @media (orientation: landscape) {
        .main-content-wrapper {
            padding: 30px;
        }

        .main-content {
            padding-right: 30px;
        }

        .image-container img {
            max-height: 100%;
        }

        .sidebar button {
            font-size: 16px;
            padding: 20px;
        }

        .sidebar {
            flex-direction: row;
        }
    }

    /* Larger Screens */
    @media (min-width: 1200px) {
        .conttainer {
            padding: 40px;
        }

        .sidebar {
            flex-direction: row;
        }

        .main-content-wrapper {
            padding: 40px;
        }
    }