/********** Template CSS **********/
 
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
 .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;
        }

        /* Navbar */
/* marquee */

.marquee {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
    background-color: #084575;
    
    height: 40px;
    
}

.marquee p {
    font-size: 1.5vw;
    font-style: oblique;
    color: #fff;
    display: inline-block;
    padding-left: 50%;
    white-space: nowrap;
    animation: marquee 16s linear infinite;
    margin-top: 0px;
}

@keyframes marquee {
    0% {
        transform: translate(100%);
    }

    100% {
        transform: translate(-100%);
    }
}

@media (max-width:600px) {
    .marquee {
        overflow: hidden;
        white-space: nowrap;
        width: 100%;
        /* border: 1px solid #000; */
        position: relative;
        background-color: #084575;

    }

    .marquee p {
        font-size: 3.5vw;
        color: #fff;
        display: inline-block;
        padding: 0.5vw 0;
        padding-left: 50%;
        white-space: nowrap;
        animation: marquee 10s linear infinite;
        font-weight: 600;
        font-style: oblique;
    }
}


.row-data {
    white-space: nowrap;
    /* Prevents line breaks */
    overflow: hidden;
    /* Hides overflowed content */
    text-overflow: ellipsis;
    /* Adds ellipsis (...) to overflowed content */
    font-size: 14px;
    /* Adjust font size as needed */
}

/* POPUP */
.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); /* Dark overlay */
}

.popup-content {
    /* background-color: #fefefe; */
    margin: 20% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 100%;
    max-width: 50%;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);  /* This creates the blur effect */
    z-index: 999;                 /* Ensures popup is above the content */
    background-color: rgba(0, 0, 0, 0.3); /* Optional: A slightly dark overlay */
}

.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: none;
    /* Hidden by default */
    position: fixed;
    right: 0px;
    bottom: 33%;        /*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;
}

@media (max-width:600px) {

    .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 {
        /* background-color: #fefefe; */
        margin: 20% auto;
        padding: 20px;
        border: 1px solid #888;
        width: 100%;
        max-width: 80%;
        text-align: center;
        position: relative;
        margin-top: 40%;
        backdrop-filter: blur(10px);  /* This creates the blur effect */
        z-index: 999;                 /* Ensures popup is above the content */
        background-color: rgba(0, 0, 0, 0.3); /* Optional: A slightly dark overlay */

    }

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

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

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

    .permanent-register-btn {
        display: none;
        /* Hidden by default */
        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;
    }
}





/* Default styles for larger screens */
.img-container {
    height: 60% !important;
    /* Adjust as needed */
    position: relative;
    overflow: hidden;
}

.img-container img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
}

/* Medium screens (Tablets) */
@media (max-width: 768px) {
    .img-container {
        height: 50%;
        /* Adjust as needed */
    }
}

/* Small screens (Phones) */
@media (max-width: 576px) {
    .img-container {
        height: 60%;
        /* Adjust as needed */
    }
}



/* Style the caret/arrow */
.caret {
    cursor: pointer;
    user-select: none;
    /* Prevent text selection */
    border-color: transparent !important;
}

/* Create the caret/arrow with a unicode, and style it */
.caret::before {
    content: "\25B6";
    color: black;
    display: inline-block;
    margin-right: 6px;
}

/* Rotate the caret/arrow icon when clicked on (using JavaScript) */
.caret-down::before {
    transform: rotate(90deg);
}

/* Hide the nested list */
.nested {
    display: none;
}

/* Show the nested list when the user clicks on the caret/arrow (with JavaScript) */
.active {
    display: block;
}

li {
    list-style-type: none;
}
.whatsapp-chat-button {
            position: fixed;
            bottom: 170px;
            right: 10px;
            background-color: #25D366; /* WhatsApp green color */
            border-radius: 50%;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            padding: 8px !important;
            text-align: center;
            z-index: 1000;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 25px !important;
            text-decoration: none;
        }
        .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 */
        }
