@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins';
}

html,body {
    height: 100%;
    width: 100%;
}


.mobile-bottom-bar, .query-form {
    display: none;
}

@media (max-width: 480px) {
   

/* 📱 Mobile Bottom Bar (Fixed at Bottom) */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #ffffff;
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    padding: 10px;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* 🔗 Social Icons */
.icon {
    font-size: 6.5vw;
    color: #333;
    text-decoration: none;
    margin-right: 6vw;
}
.icon-insta{
    color: #E4405F;
}
.icon-fb{
    color: #1877F2;
}
.call {
    color: #112686;
}

/* 📩 Send Query Button */
.query-btn {
    background: #ff5733;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 3.5vw;
}

.query-btn:hover {
    background: #e04b28;
}

 /* 📩 Query Form */
 .query-form {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    padding: 10px;
}

/* Form Box */
.form-content {
    background: white;
    padding: 20px;
    width: 95%;
    border-radius: 10px;
    position: relative;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-content h2 {
    font-size: 6vw;
    text-align: center;
    margin-bottom: 5vw;
}

/* Input Fields */
.form-content form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
}

.form-content input,
.form-content textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    margin-bottom: 3vw;
}

.form-content textarea {
    resize: none;
    height: 80px;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: red;
    color: white;
    border: none;
    font-size: 18px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Show Form */
.query-form.active {
    visibility: visible;
    opacity: 1;
}

/* Submit Button */
.submit-btns {
    background: blue;
    color: white;
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

.submit-btn:hover {
    background: darkblue;
}
}



.whatsapp-icon {
    position: fixed;
    height: 6vw;
    width: 6vw;
    background-color: #4585e4;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.whatapp-iconn{
    font-size: 3.5vw;
}

.whatsapp-icon {
    bottom: 20px;
    right: 20px;
}
@media (max-width: 480px) {
    .whatsapp-icon {
        width: 20vw; 
        height: 20vw;
        font-size: 2vw;
        bottom: 2%;
        right: 2%;
        z-index: 2000;
    }
    .whatapp-iconn{
        font-size: 10vw;
    }
}













.container {
    max-width: 900px;
    margin: 4vw auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1, h2 {
    color: #333;
}
h1 {
    text-align: center;
    border-bottom: 3px solid #007BFF;
    padding-bottom: 10px;
}
h2{
    margin-top: 1vw;
}
p {
    line-height: 1.6;
    color: #555;
}
ul {
    padding-left: 20px;
}
.highlight {
    font-weight: bold;
}




.page6{
    height: 60vh;
    width: 100%;
}
.footer {
    height: 100%;
    width: 100%;
    background-color: #f4f6f8;
    padding: 4vw 6vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}
.footer-column h3 {
    font-size: 18px;
    font-weight: bold;
    color: #23408e;
    margin-bottom: 12px;
}
.footer-column ul {
    list-style: none;
}
.footer-column ul li {
    margin-bottom: 8px;
}
.footer-column ul li a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
}
.footer-column ul li a:hover {
    color: #23408e;
}
.contact p {
    font-size: 16px;
    color: #000;
    margin-bottom: 8px;
}





@media screen and (max-width: 480px) {
    .container {
        width: 95%;
        padding: 15px;
    }
    h2 {
        font-size: 20px;
    }
    h3 {
        font-size: 18px;
    }
    p {
        font-size: 14px;
    }
}


@media screen and (max-width: 480px) {
    @media (max-width: 480px) {
        .page6{
            height: auto;
        }
        .footer {
            padding: 6vw 4vw;
        }
    
        .footer-container {
            flex-direction: column; /* Stack footer sections */
            align-items: center;
            text-align: center;
        }
    
        .footer-column {
            width: 100%;
            padding: 3vw 0;
        }
    
        .footer-column h3 {
            font-size: 4.5vw;
        }
    
        .footer-column ul li a {
            font-size: 4vw;
        }
    
        .contact p {
            font-size: 4vw;
        }
    }
   
}
