*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f0e7e2;

}

::-webkit-scrollbar-thumb {
    background: #006bb6;
    
    border: 2px solid #f0e7e2;
}

::-webkit-scrollbar-thumb:hover {
    background: #004a80;
}

body{
    background-color: #f8eee9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

header{
    border-bottom: 2px solid #006bb6;
    background-color: #f8eee9;
    width:100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;    
}
.logo{
    margin-right: 150px;
}
.logo img{
    height:40px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a{
    color: #006bb6;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}
.nav-links a:hover{
    color: #004a80;
}

.hamburger{
    display: none;
    font-size: 28px;
    color: #006bb6;
    cursor: pointer;
}

#menu-toggle{
    display: none;
}

@media(max-width: 768px){
    .logo{
        margin-right: 0;
    }
    .hamburger{
        display: block;
    }
    .nav-links{
        position: absolute;
        top: 70px;
        left: 0;
        background-color: #f8eee9;
        border-bottom: 2px solid #006bb6;
        width: 100%;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        display: none;
    }
    .nav-links li{
        margin: 12px 0;
    }

    #menu-toggle:checked ~ .nav-links{
        display: flex;
    }
}

/*Adela ryo*/

.get-in-touch{
    height: 30vh;
    text-align: center;
    background-color: #006bb6;
}

.get-in-touch h1{
    padding: 5%;
    color: #f8eee9;
}

@media(max-width: 768px){
    .get-in-touch h1{
        font-size: 24px;
        padding: 12%;
    }
}


/*sawaal jawaab -- Araji patrika ane phone number "Miss Call Marvo nai" -->Amarey balance nai*/


.contact-section{
    background-image: url(banner.png);
    background-size: cover;
    background-position: center;
    min-height: auto;
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 50px;
    gap: 40px;
}


.contact-section .details{
    background: #006bb6;           
    border-radius: 15px;
    padding: 20px 28px;               
    width: 350px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 6px;                            
    height: 350px;            
}
@media (max-width:768px) {
    .contact-section .details
    {
        width: 100%;

    }
}


.contact-section .details h2 {
    font-size: 28px;
    font-weight: 700;
    color: #f8eee9;
    margin: 0 0 10px 0 !important;      
    text-align: center;
}


.contact-section .details p {
    color: white;
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 15px;
}


.contact-section .details .contact-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;                         
    color: white;
    font-size: 18px;
    padding: 0 !important;
    margin: 0 !important;
}


.contact-section .details .contact-info i {
    font-size: 20px;
    margin-top: 2px;                    
    color: #f8eee9;
}


.contact-section .details .contact-info p {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 16px;
    color: whitesmoke;
    text-align: left;                   
}


.glass-box{
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 35px;
    width: 450px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.4);
}

.glass-box form{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group{
    display: flex;
    flex-direction: column;
}

.form-group label{
    font-weight: 600;
    color: #004f8b;
    margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea{
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.3);
    font-size: 15px;
    backdrop-filter: blur(5px);
}

.form-group textarea{
    height: 120px;
    resize: none;
}

.glass-box button{
    padding: 12px 18px;
    background: #006bb6;
    color: #fff;
    font-size: 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.glass-box button:hover{
    background: #005c9c;
    transform: translateY(-2px);
}


@media (max-width: 900px){
    .contact-section{
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .glass-box, .details{
        width: 90%;
    }
}
@media(max-width: 600px){
    .glass-box{
        width: 100%;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .glass-box form{
        gap: 12px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea{
        padding: 10px 12px;
        font-size: 14px;
    }

    .form-group label{
        font-size: 14px;
        margin-bottom: 3px;
    }

    .form-group textarea{
        height: 100px;
    }

    .glass-box button{
        font-size: 15px;
        padding: 10px 16px;
    }
}

/*Bhoytadiyu*/



footer {
    background-color: #006bb6;
    color: #f8eee9;
    padding: 3em 0;
}


footer .footer-inner {
    max-width: 1200px;    
    margin: 0 auto;       
    padding: 0 20px;     
}


footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4em;
    margin-bottom: 2em;
}

footer{
    background-color: #006bb6;
    color: #f8eee9;
    align-items: center;
    justify-content: center;
    padding: 1.5em 2em;
}

footer .footer-content{
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    gap: 5em;
    text-align: left;
}

footer .footer-content .logo{
    text-align: center;
}

footer .footer-content .logo img{
    height: 50px;
}

footer .footer-content .logo p{
    margin-top: -10px;
    font-size: 14px;
    color: #f8eee9;
    font-family:cursive;
}
footer .footer-content .links{
    flex: 1;
}
footer .footer-content .links h3{
    margin-bottom: 1em;
}
footer .footer-content .links ul{
    list-style: none;
    padding: 0;
}
footer .footer-content .links ul li{
    margin-bottom: 10px;
}
footer .footer-content .links ul li a{
    color: #f8eee9;
    text-decoration: none;
}
footer .footer-content .links ul li a:hover{
    text-decoration: underline;
}
footer .footer-content .contact{
    flex: 1;
}
footer .footer-content .contact p{
    margin: 5px 0;
}
footer .footer-content .contact p:last-child{
    margin-bottom: 0;
}
footer .footer-bottom{
    text-align: center;
    margin-top: 2em;
    font-size: 14px;
    border-top: 1px solid #f8eee9;
}
footer .footer-bottom p{
    margin: 0;
}
footer .footer-bottom .social-icons{
    margin-top: 10px;
}
footer .footer-bottom .social-icons a{
    color: #f8eee9;
    text-decoration: none;
    margin: 0 10px;
    font-size: 20px;
}

footer .footer-content .contact .label {
    font-weight: 600;
    margin-right: 5px;
}

.footer-content .contact .address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-content .contact .address i {
    font-size: 18px;
    margin-top: 3px; 
}

.footer-content .contact .address span {
    line-height: 1.4;
    display: block;
}

@media screen and (max-width: 900px) {
    footer .footer-content{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    footer .footer-content .logo{
        margin-bottom: 1em;
    }
    footer .footer-content .links, 
    footer .footer-content .contact{
        flex: none;
        margin-bottom: 1em;
    }
}