/* 
---- Hadapsar landing page main css----


1. tab content css 
2. contact us popup css
3. header menu toggle

*/


.container-sticky {
    position: relative;
    /* Add any other styles for your container */
}

.sticky-img {
    position: sticky;
    top: 10px; /* Adjust this value to control how far from the top the image should be */
    right: 10px; /* Adjust this value to control how far from the right the image should be */
    z-index: 1000; /* Ensures the image stays on top of other content */
    width: 130px; /* Set your desired width */
    height: auto; /* Maintain aspect ratio */
}

@media  (max-width:1100px) {
    .sticky-img {
        display: none;
    }

    
}
   

/* tab content css */
.tabcontents .card {
    text-align: center;
    border: none !important;
    padding: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
    height: 330px;
    margin-top: 15px;
}
.tabcontents .card:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.tabcontents .card i {
    font-size: 85px;
    margin-top: 10px;
}
.location-name {
    font-weight: 400;
    font-size: 26px;
    color: black;
    margin-top: 10px;
}
.tabcontents {
    margin-top: 50px;
    margin-bottom: 100px;
}
.sub-location {
    position: relative;
}
.sub-location::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: rgb(254 46 21);
    bottom: -10px;
}
.tabs {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    /* max-width: 800px;
margin: auto; */
}
.tab-div {
    text-align: center;
    margin: 20px;
}

/* Style the buttons inside the tab */
.tabs button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    width: 100%;
    padding: 14px 50px;
    transition: 0.3s;
    font-size: 18px;
    background-color: #d9d5d4c2;
}

/* Create an active/current tablink class */
.tabs button.active {
    background-color: #0093d3;
    color: white;
}

/* Style the tab content */
.tabcontents {
    display: none;
    padding: 6px 12px;
    border-top: none;
}
.tabl {
    border-radius: 20px;
}
.active2 {
    background-color: #0093d3;
}


        .tab {
            float: left;
            /* border: 1px solid #ccc; */
            /* background-color: #dfe8eb; */
            width: 23%;

            border-radius: 10px 0 0 10px;
        }

        .tab button {
            display: block;
            background-color: inherit;
            color: black;
            padding: 15px 15px;
            width: 100%;
            border: none;
            outline: none;
            text-align: left;
            cursor: pointer;
            transition: 0.3s;
            font-size: 17px;
            margin-top: 10px;
            box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

            border-radius: 4px;
        }

        .tab button:hover {
            background-color: #0093d3;
        }

        .tab button.active {
            background-color: #0093d3;
            color: white;
        }

        .tabcontent {
            float: left;
            padding: 0px 12px;
            width: 77%;
            height: 400px;
            border-radius: 0 10px 10px 0;
        }
    
        /* tab content css ends */

        /* contact us popup css starts */
        .form-popup-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            flex-direction: column;
            align-content: center;
            justify-content: center;
        }

        .form-popup-bg {
            position: fixed;
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            background-color: rgba(94, 110, 141, 0.9);
            opacity: 0;
            visibility: hidden;
            -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
            -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
            transition: opacity 0.3s 0s, visibility 0s 0.3s;
            overflow-y: auto;
            z-index: 10000;
        }

        .form-popup-bg.is-visible {
            opacity: 1;
            visibility: visible;
            -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
            -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
            transition: opacity 0.3s 0s, visibility 0s 0s;
        }

        .form-container {
            background-color: #203154 !important;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
            display: flex;
            flex-direction: column;
            width: 100%;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            padding: 40px;
            color: #fff;
        }

        .close-button {
            background: none;
            color: #fff;
            width: 40px;
            height: 40px;
            position: absolute;
            top: 0;
            right: 0;
            border: solid 1px #fff;
        }

        .form-popup-bg:before {
            content: '';
            background-color: #fff;
            opacity: .25;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }

        .popup-button {
            position: fixed;
            right: -55px;
            bottom: 250px;
            transform: rotate(270deg);
        }
    /* contact us popup css ends */

/*  header menu toggle css  */


 


.icon-12 {
    font-size: 35px;
    margin-right: 10px;
    color: #ff5421;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scroll when the menu is open */
}

.menu-btn {
    position: static; /* Change from fixed to static */
    font-size: 24px;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

/* Sliding Menu */
.menu {
    position: fixed; /* Keep menu position fixed for sliding effect */
    top: 0;
    right: -50%; /* Initially hidden off the screen (to the right) */
    width: 50%; /* Menu will take half the width of the screen */
    height: 100%;
    background-color: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    padding: 20px;
    transition: right 0.4s ease; /* Sliding animation */
}

/* Menu Content */
.menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Media Query to hide the toggle button and menu content on small screens */
@media (max-width: 901px) {
    .menu-btn {
        display: none; /* Hide the toggle button */
    }

    .menu {
        display: none; /* Hide the entire menu */
    }
}
@media (max-width: 480px) {
    .menu-btn {
        display: none; /* Hide the toggle button */
    }

    .menu {
        display: none; /* Hide the entire menu */
    }
}


/* Menu Open State */
.menu.open {
    right: 0; /* Show menu when open */
}

/* Additional styles */
.contact-info {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}


.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.social-icons {
    margin-top: 30px;
}

.social-icons a {
    margin: 0 10px;
    text-decoration: none;
    font-size: 24px;
    color: #333;
}



/* 28 years logo sticky */
          
.container-sticky {
    position: relative;
    /* Add any other styles for your container */
}

.sticky-img {
    position: sticky;
    top: 10px; /* Adjust this value to control how far from the top the image should be */
    right: 10px; /* Adjust this value to control how far from the right the image should be */
    z-index: 1000; /* Ensures the image stays on top of other content */
    width: 130px; /* Set your desired width */
    height: auto; /* Maintain aspect ratio */
}

@media  (max-width:1100px) {
    .sticky-img {
        display: none;
    }

    
}