 body{
            
            width: 100%;
            height: 100%;
        }
        .social-icon {
            width: 24px;
            /* Increase the size as needed */
            height: 24px;
            /* Ensure it's a square */
        }

        .btn-square {
            width: 48px;
            /* Adjust button size to match image size */
            height: 48px;
        }

        pre {
            background-color: transparent;
            border: none;
            font-size: 1rem;
            line-height: 1.5;
            color: #333;
        }

        .img-thumbnail {
            max-width: 100%;
            /* Ensure the image fits within the column */
            height: auto;
            /* Maintain aspect ratio */
        }

        .vision-section {
            background-color: #121D26;
            padding: 20px;
            color: #FFFFFF;
            border-radius: 10px;
            display: flex;
            align-items: center;
        }

        .vision-icon {
            background-color: #76C043;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
        }

        .vision-icon img {
            width: 30px;
        }

        .section {
            background-color: #121D26;
            padding: 20px;
            color: #FFFFFF;
            border-radius: 10px;
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            /* To create space between sections */
        }

        .icon {
            background-color: #76C043;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
        }

        .icon img {
            width: 30px;
            margin-top: 5px;
            /* Optional: Adjust as needed */
        }

        .section1 {
            border: 1px solid #ddd;
            /* Optional: Add a border to define the box */
            padding: 15px;
            /* Add padding for spacing inside the box */
            background-color: #f9f9f9;
            /* Optional: Add a background color */
        }

        .text-center {
            text-align: center;
            /* Center align text under the image */
        }

        .img-fluid {
            max-width: 90%;
            /* Make sure the image is responsive */
            height: auto;
            /* Maintain aspect ratio */
        }

        .page-header {
            padding-top: 70px;
            /* Adjust this value based on the height of your fixed header */
            background: none;
           /*  Remove any background image or color */
            text-align: left;
            /* Align text to the left */
            width: 100%;
            background-color: #2881c9;
        }

        .page-header h2.title {
            margin: 0;
            /* Remove any margins */
            color: white;
            /* Ensure the text color is visible */
            font-size: 2rem;
            /* Adjust font size as needed */
            
            /* Set the background color if needed */
            padding: 10px 20px;
            /* Add some padding if necessary */
            display: inline-block;
            /* Keep the heading contained */
        }
        .back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
/* POPUP */
/* this popup is not for home page.. it applies on everypage except home page */
.popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);
}

.popup-content {
    margin: 20% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 100%;
    max-width: 50%;
    text-align: center;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 0px;
    right: 25px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    color: #fff;
}

#register-btn {
    padding: 10px 50px;
    font-size: 20px;
    cursor: pointer;
    background-color: #007BFF !important;
    border: 1px solid black;
    border-radius: 5px;
	color: Black !important;
}

.popup-content p {
    font-size: 2vw;
    color: #fff;
    font-weight: bold;
    padding: 2vw;
}

.permanent-register-btn {
    display: block;  /* Ensure it is visible initially */
    position: fixed;
    right: 0px;
    bottom: 34%;    /*position of register button*/
    padding: 5px 10px;
    font-size: 13px;
    cursor: pointer;
    background-color: #007BFF !important;  /* Adjust color as needed */
    color: white;
    border: none;
    border-radius: 2px;
}

/* Responsive adjustments */
@media (max-width: 600px) {

    .popup-content {
        margin: 20% auto;
        padding: 20px;
        border: 1px solid #888;
        width: 100%;
        max-width: 80%;
        text-align: center;
        position: relative;
        margin-top: 40%;
    }

    .close-btn {
        right: 10px;
        font-size: 30px;
    }

    #register-btn {
        padding: 10px 50px;
        font-size: 16px;
		background-color: #007BFF !important;
		color: Black !important;
    }

    .popup-content p {
        font-size: 4vw;
    }

    .permanent-register-btn {
        display: block;  /* Ensure it is visible initially */
        position: fixed;
        right: 0px;
        bottom: 35%;    /*position of register button*/
        padding: 5px 10px;
        font-size: 13px;
        cursor: pointer;
        background-color: #007BFF !important;
        color: white;
        border: none;
        border-radius: 2px;
    }
}
.whatsapp-chat-button {
    position: fixed;
    bottom: 170px;
    right: 10px;
    background-color: #25D366; /* WhatsApp green color */
    border: 2px solid #25D366; /* Green border */
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    padding: 15px;
    text-align: center;
    z-index: 1000;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    width: 60px; /* Adjust width */
    height: 60px; /* Adjust height */
}

        .whatsapp-chat-button img {
            width: 60px; /* Adjust size as needed */
            height: 50px;
        }
 .social-icon { 
            color: black; /* White color for icons */
            background-color: #fff; /* Background color (black) */
     
            display: inline-flex; /* Aligns icon in the center of the background */
            justify-content: center; /* Centers icon horizontally */
            align-items: center; /* Centers icon vertically */
        }
