*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    line-height:1.6;
    color:#333;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

header{
    background:#0a3d62;
    padding:15px 0;
    position:sticky;
    top:0;
    z-index:1000;
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo-section{
    display:flex;
    align-items:center;
}

.logo-section img{
    width:45px;
    margin-right:10px;
}

.logo-section h1{
    color:white;
    font-size:20px;
}

nav ul{
    list-style:none;
    display:flex;
}

nav ul li{
    margin-left:20px;
}

nav ul li a{
    color:white;
    text-decoration:none;
    font-weight:500;
}

nav ul li a:hover{
    color:#f9ca24;
}

.hero{
    background:linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),
    url('https://images.unsplash.com/photo-1523240795612-9a054b0db644');
    background-size:cover;
    background-position:center;
    color:white;
    text-align:center;
    padding:120px 20px;
}

.hero h2{
    font-size:38px;
    margin-bottom:20px;
    color:#ffffff;
    text-shadow:2px 2px 8px rgba(0,0,0,0.6);
}

.btn{
    display:inline-block;
    padding:12px 25px;
    background:#f9ca24;
    color:black;
    text-decoration:none;
    font-weight:bold;
    border-radius:5px;
    margin-top:20px;
}

section{
    padding:80px 0;
}

section h2{
    text-align:center;
    margin-bottom:40px;
    color:#0a3d62;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.service-card{
    background:#e6f0ff; /* 👈 light blue */
    padding:25px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    transition:0.3s;
    border-left:5px solid #0a3d62; /* 👈 blue highlight */
}

.service-card h3{
    color:#0a3d62; /* 👈 heading blue */
}

.service-card ul li{
    color:#333;
    margin:6px 0;
}

.service-card:hover{
    transform:translateY(-8px);
}

.contact-box{
    background:#0a3d62;
    color:white;
    padding:40px;
    border-radius:8px;
}

input, textarea{
    width:100%;
    padding:12px;
    margin:10px 0;
    border-radius:5px;
    border:none;
}

button{
    background:#f9ca24;
    border:none;
    padding:12px;
    width:100%;
    font-weight:bold;
    cursor:pointer;
}

footer{
    background:#082c4c;
    color:white;
    text-align:center;
    padding:20px;
}

@media(max-width:768px){
    .nav-container{
        flex-direction:column;
    }

    nav ul{
        margin-top:10px;
    }
}/* WhatsApp Widget */

.wa-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 24px;
    padding: 15px 18px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.wa-widget {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 300px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
}

.wa-header {
    background: #0a3d62;
    color: white;
    display: flex;
    align-items: center;
    padding: 10px;
}

.wa-header img {
    width: 35px;
    height: 35px;
    margin-right: 10px;
    border-radius: 50%;
}

.wa-header h4 {
    margin: 0;
    font-size: 14px;
}

.wa-header span {
    font-size: 12px;
    opacity: 0.8;
}

.wa-header button {
    margin-left: auto;
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.wa-body {
    padding: 15px;
    font-size: 14px;
}

.wa-footer {
    padding: 10px;
    text-align: center;
}

.wa-footer a {
    display: block;
    background: #25D366;
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}
/* Call Now Button */

.call-btn{
    background:#25D366;
    color:white;
    padding:10px 18px;
    border-radius:6px;
    text-decoration:none;
    font-weight:bold;
    animation: blinkCall 1s infinite;
}

/* Blink Animation */

@keyframes blinkCall{
    0%{
        background:#25D366;
        transform: scale(1);
    }
    50%{
        background:#1ebe5d;
        transform: scale(1.1);
    }
    100%{
        background:#25D366;
        transform: scale(1);
    }
}


/* ===== FIX FOR WHATSAPP OVERLAP ===== */

/* Contact section ke niche extra space */
#contact{
    padding-bottom:180px;
}

/* WhatsApp widget thoda niche */
.wa-widget{
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 300px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 9999;
}

/* WhatsApp floating button */
.wa-button{
    bottom:20px;
    right:20px;
    z-index:9999;
}
.social-icons{
margin-top:15px;
}

.social-icons a{
color:#f9ca24;
font-size:22px;
margin:0 12px;
text-decoration:none;
transition:0.3s;
}

.social-icons a:hover{
color:white;
transform:scale/* Founder Section */

.founder-section{
    padding:60px 0;
    background:#f4f4f4;
    text-align:center;
}

.founder-box img{
    width:180px;
    height:180px;
    object-fit:cover;
    border-radius:50%;
    border:5px solid #0a3d62;
    margin-bottom:15px;
}

.founder-box h3{
    margin-bottom:5px;
    color:#0a3d62;
}

.founder-box p{
    margin-bottom:15px;
    color:#555;
}

.founder-call{
    display:inline-block;
    background:#25D366;
    color:white;
    padding:10px 20px;
    border-radius:5px;
    text-decoration:none;
    font-weight:bold;
}

.founder-call:hover{
    background:#1ebe5d;
}

}

.founder-box img{
    width:180px;
    height:180px;
    object-fit:cover;
    border-radius:50%;
    border:5px solid #0a3d62;
    margin-bottom:15px;
    display:block;
    margin-left:auto;
    margin-right:auto;
}
/* Founder Section */

.founder-section{
    padding:60px 0;
    background:#f4f4f4;
}

.founder-card{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    text-align:left;
}

.founder-card img{
    width:180px;
    height:180px;
    object-fit:cover;
    object-position: top; /* 👈 face ऊपर से दिखे */
    border-radius:50%;
    border:5px solid #0a3d62;
}

.founder-info h3{
    margin-bottom:5px;
    color:#0a3d62;
}

.founder-info p{
    margin-bottom:10px;
    color:#555;
}

.founder-call{
    display:inline-block;
    background:#25D366;
    color:white;
    padding:8px 18px;
    border-radius:5px;
    text-decoration:none;
    font-weight:bold;
}

.founder-section{
    padding:40px 0;
    background:#f4f4f4;
}

.founder-card{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px; /* 👈 gap कम किया */
    max-width:400px; /* 👈 card छोटा किया */
    margin:auto; /* 👈 center में */
    text-align:left;
}

.founder-card img{
    width:120px;   /* 👈 size छोटा */
    height:120px;
    object-fit:cover;
    object-position: top;
    border-radius:50%;
    border:4px solid #0a3d62;
}

.founder-info h3{
    margin-bottom:5px;
    font-size:18px;
}

.founder-info p{
    margin-bottom:8px;
    font-size:14px;
    color:#555;
}

.founder-call{
    display:inline-block;
    background:#25D366;
    color:white;
    padding:6px 14px;
    border-radius:5px;
    text-decoration:none;
    font-size:14px;
}

/* Popup */

.popup{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    justify-content:center;
    align-items:center;
    z-index:2000;
}

.popup-content{
    background:white;
    padding:30px;
    border-radius:10px;
    width:90%;
    max-width:400px;
    text-align:center;
    position:relative;
}

.popup-content input,
.popup-content textarea{
    width:100%;
    padding:10px;
    margin:10px 0;
}

.popup-content button{
    background:#f9ca24;
    border:none;
    padding:10px;
    width:100%;
    font-weight:bold;
}

#closePopup{
    position:absolute;
    top:10px;
    right:15px;
    cursor:pointer;
    font-size:20px;
}

#about{
    background: linear-gradient(135deg, #e6f0ff, #f4f9ff); /* 👈 soft blue gradient */
    padding:80px 0;
}

#about h2{
    color:#0a3d62;
    font-size:32px;
    margin-bottom:20px;
}

#about p{
    max-width:800px;
    margin:10px auto;
    font-size:16px;
    line-height:1.7;
    color:#333;
    text-align:center;
}

#about .container{
    background:white;
    padding:40px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}