*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
/* Font upgrade: Arial se badalkar neat system-ui lagaya hai */
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background:#fff;
color:#222;
overflow-x:hidden;
padding-top:110px;
}

.container{
width:95%;
max-width:1400px;
margin:auto;
}

/* ===== FIXED HEADER START ===== */
.navbar{
background:#fff;
border-bottom:1px solid #e5e5e5;
padding:12px 0;
position:fixed;
top:0;
left:0;
width:100%;
z-index:99999;
box-shadow: 0 2px 20px rgba(0,0,0,.08);
transition:.3s;
}
/* ===== FIXED HEADER END ===== */

.navbar .container{
display:flex;
align-items:center;
justify-content:space-between;
}

/* LOGO */
.logo img{
height:85px;
width:auto;
display:block;
}

/* MENU */
.nav-menu{
display:flex;
list-style:none;
align-items:center;
gap:10px;
margin:0;
padding:0;
}

.nav-menu li{
position:relative;
}

.nav-menu li a{
display:block;
padding:15px 14px;
text-decoration:none;
color:#222;
font-size:14px;
font-weight:500;
text-transform:uppercase;
transition:.3s;
}

.nav-menu li a:hover{
background:#0059a8;
color:#fff;
}

.nav-menu li a.active{
background:#0059a8;
color:#fff;
}

/* MOBILE MENU BUTTON */
.menu-toggle{

display:none;

width:46px;
height:46px;

align-items:center;
justify-content:center;

cursor:pointer;

font-size:26px;

color:#0A2E5C;

background:transparent;

border:none;

outline:none;

box-shadow:none;

padding:0;

line-height:1;

}

/* HERO */
.hero{
padding:100px 0;
background:#f5f5f5;
text-align:center;
}

.hero h1{
font-size:52px;
margin-bottom:20px;
color:#0A2E5C;
}

.hero p{
font-size:18px;
color:#555;
max-width:700px;
margin:auto;
}

/* FOOTER */
footer{
background:#0A2E5C;
padding:30px 0;
color:#fff;
text-align:left; /* Links aur content ko line up karne ke liye */
margin-top:60px;
}

/* MOBILE */
@media(max-width:992px){
.logo img{
height:70px;
}
.menu-toggle{
display:block;
}
.nav-menu{
position:absolute;
top:100%;
left:0;
background:#fff;
width:100%;
display:none;
flex-direction:column;
padding:20px 0;
box-shadow:0 10px 20px rgba(0,0,0,.08);
}
.nav-menu.active{
display:flex;
}
.nav-menu li{
width:100%;
text-align:center;
}
.nav-menu li a{
padding:15px;
border-bottom:1px solid #eee;
}
}

@media(max-width:576px){
.logo img{
height:60px;
}
.hero h1{
font-size:34px;
}
.hero p{
font-size:15px;
}
}

/* FOOTER MAIN */
.footer-main{
background:#0A2E5C;
padding:70px 0 40px;
color:#fff;
}

.footer-grid{
display:grid;
grid-template-columns: 2fr 1fr 1fr 1.5fr;
gap:50px;
}

.footer-logo{
height:90px;
margin-bottom:20px;
}

.footer-box{
text-align: left; /* Tino blocks ko properly align rakhne ke liye */
}

.footer-box h3{
font-size:20px;
margin-bottom:25px;
position: relative;
padding-bottom: 8px;
}

/* Headings ke neeche premium accent line */
.footer-box h3::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 35px;
height: 3px;
background: #F58220;
border-radius: 2px;
}

.footer-box p{
line-height:1.8;
font-size:14px;
color:#ddd;
}

.footer-box ul{
list-style:none;
padding:0;
}

.footer-box ul li{
margin-bottom:12px;
}

.footer-box ul li a{
color:#ddd;
text-decoration:none;
transition:.3s;
display: inline-block;
}

.footer-box ul li a:hover{
color:#F58220;
padding-left:6px;
}

/* CONTACT LAYOUT FIX (Jo layout bigad raha tha use sahi kiya) */
.footer-contact-item {
display: flex;
align-items: flex-start;
gap: 15px;
margin-bottom: 18px;
text-align: left;
}

.footer-contact-item i {
color: #F58220; /* Icons ko high quality orange color diya */
font-size: 16px;
margin-top: 4px;
width: 20px;
text-align: center;
}

.footer-contact-item div span {
display: block;
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.5px;
color: #94a3b8;
margin-bottom: 2px;
}

.footer-contact-item div p {
margin: 0;
color: #fff;
font-size: 14px;
line-height: 1.4;
}

.footer-contact-item div p a {
color: #fff;
text-decoration: none;
transition: color .2s;
}

.footer-contact-item div p a:hover {
color: #F58220;
}

/* FOOTER BOTTOM (Hierarchical fix taaki text overlap na kare) */
.footer-bottom{
background:#071C37;
padding:18px 0;
border-top: 1px solid rgba(255,255,255,0.05);
}

.bottom-flex{
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
flex-wrap:wrap;
}

.social{
display:flex;
gap:15px;
}

.social a{
color:#fff;
text-decoration:none;
font-size:14px;
width: 36px;
height: 36px;
background: rgba(255,255,255,0.08);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: .3s;
}

.social a:hover{
background:#F58220;
transform:translateY(-3px);
}

.policy{
display:flex;
gap:20px;
}

.policy a{
color:#fff;
text-decoration:none;
font-size:14px;
transition: color .2s;
}

.policy a:hover {
color: #F58220;
}

.copyright{
color:#ddd;
font-size:14px;
text-align:center;
}

/* MOBILE RESPONSIVE RULES */
@media(max-width:991px){
.footer-grid{
grid-template-columns:1fr 1fr;
}
.footer-contact-item {
justify-content: flex-start;
}
}

@media(max-width:768px){
.bottom-flex{
flex-direction:column;
text-align:center;
}
}

@media(max-width:576px){
.footer-grid{
grid-template-columns:1fr;
}
.policy{
flex-direction:row;
gap:15px;
justify-content: center;
}
}

/* ==================================
   FLOATING WHATSAPP & CALL START
================================== */
.floating-whatsapp,
.floating-call{
position:fixed;
right:20px;
width:60px;
height:60px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
color:#fff;
font-size:24px;
z-index:9999;
box-shadow:0 8px 25px rgba(0,0,0,.25);
transition:.3s;
}

.floating-whatsapp{
bottom:20px;
background:#25D366;
}

.floating-call{
bottom:95px;
background:#0A2E5C;
}

.floating-whatsapp:hover,
.floating-call:hover{
transform:translateY(-5px);
color:#fff;
}

@media(max-width:576px){
.floating-whatsapp,
.floating-call{
width:55px;
height:55px;
font-size:22px;
}
.floating-whatsapp{
right:15px;
bottom:15px;
}
.floating-call{
right:15px;
bottom:85px;
}
}


/* ===================================================
   ADD THIS AT THE VERY END OF YOUR STYLE.CSS FILE
=================================================== */

/* Desktop par company name hidden rahega */
.mobile-company-name {
    display: none;
}

/* Mobile responsive screen par center me text dikhane ke liye */
@media(max-width: 992px) {
    .mobile-company-name {
        display: block !important;
        font-size: 18px !important;
        font-weight: 700 !important;
        color: #0A2E5C !important; /* Aapka brand primary blue color */
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        text-align: center !important;
        flex: 1 !important; /* Isse text automatic logo aur burger menu ke beech me fit ho jayega */
        padding: 0 10px !important;
    }
}

/* Chote mobile phones ke liye font thoda adjust karne ke liye */
@media(max-width: 576px) {
    .mobile-company-name {
        font-size: 15px !important;
        letter-spacing: 0px !important;
    }
}

.footer-bottom .copyright a {
    color: #ff7a00;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.footer-bottom .copyright a:hover {
    color: #ffffff;
    text-decoration: underline;
}