@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;800&display=swap');

:root {
    --primary: #F15A24; /* Your Logo Orange */
    --secondary: #003B5C; /* Your Logo Blue */
    --dark: #0f172a;
    --light: #f8fafc;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; }
body { color: #1e293b; background: var(--white); line-height: 1.6; }

/* --- PREMIUM HEADER --- */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    height: 90px; padding: 0 10%;
    display: flex; justify-content: space-between; align-items: center;
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 1px solid #f1f5f9;
}
.logo img { height: 55px; }
nav a { text-decoration: none; color: #334155; font-weight: 600; font-size: 15px; margin-left: 35px; transition: 0.3s; }
nav a:hover { color: var(--primary); }
.nav-btn { background: var(--primary); color: white !important; padding: 12px 28px; border-radius: 6px; box-shadow: 0 10px 20px rgba(241, 90, 36, 0.2); }

/* --- HERO SECTION --- */
.hero {
    padding: 100px 10%;
    background: radial-gradient(circle at 80% 20%, #fdf2f0 0%, #ffffff 50%);
    display: flex; align-items: center; justify-content: space-between;
    min-height: 85vh;
}
.hero-text { flex: 1; max-width: 650px; }
.hero-text h1 { font-size: 4.5rem; font-weight: 800; line-height: 1.1; color: var(--secondary); margin-bottom: 25px; }
.hero-text h1 span { color: var(--primary); }
.hero-text p { font-size: 1.25rem; color: #64748b; margin-bottom: 40px; }

.hero-image { flex: 1; text-align: right; position: relative; }
.hero-image img { width: 90%; border-radius: 24px; box-shadow: 0 40px 80px rgba(0,0,0,0.1); }

/* --- TRUST BAR --- */
.trust-bar {
    background: var(--secondary);
    color: white;
    padding: 40px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    border-radius: 16px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}
.trust-item h3 { font-size: 28px; color: var(--primary); }
.trust-item p { font-size: 14px; opacity: 0.8; }

/* --- SERVICES SECTION --- */
.container { padding: 100px 10%; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-head h2 { font-size: 2.5rem; color: var(--secondary); margin-bottom: 15px; }
.orange-line { width: 60px; height: 4px; background: var(--primary); margin: 0 auto; border-radius: 2px; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.card {
    padding: 45px; border-radius: 20px; background: #fff;
    border: 1px solid #f1f5f9; transition: 0.4s;
}
.card:hover { 
    border-color: var(--primary); 
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}
.card h3 { color: var(--secondary); margin-bottom: 15px; font-size: 1.5rem; }
.card p { color: #64748b; font-size: 1rem; }

/* --- FOOTER --- */
footer { background: var(--dark); color: #fff; padding: 100px 10% 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; }
.footer-col h4 { margin-bottom: 30px; font-size: 20px; color: var(--primary); }
.footer-col p, .footer-col a { color: #94a3b8; text-decoration: none; display: block; margin-bottom: 12px; font-size: 14px; }
/* --- UPDATED PREMIUM HEADER CSS --- */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    height: 90px;
    padding: 0 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 2000; /* Sabse upar rahega */
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border-bottom: 1px solid #f1f5f9;
}

.logo img {
    height: 55px;
    width: auto;
    display: block;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #334155; /* Professional Slate Grey */
    font-weight: 600;
    font-size: 14px;
    margin-left: 35px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    position: relative;
}

/* Hover Effect: Niche ek line aayegi */
nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s;
}

nav a:hover::after, nav a.active::after {
    width: 100%;
}

nav a:hover, nav a.active {
    color: var(--primary);
}

/* Header Call Button */
.header-cta {
    background: var(--primary);
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 4px;
    margin-left: 40px;
    box-shadow: 0 10px 20px rgba(241, 90, 36, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-cta:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(0, 59, 92, 0.2);
}

@media (max-width: 1024px) {
    header { padding: 0 5%; }
    nav a:not(.header-cta) { display: none; } /* Mobile par sirf button dikhega */
}
/* --- FIXED PROFESSIONAL HEADER --- */
header {
    background: #ffffff;
    height: 90px;
    padding: 0 8%;
    display: flex;
    justify-content: space-between; /* Logo left, Nav right */
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 2000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px; /* Logo size fix */
    width: auto;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px; /* Links ke beech barabar jagah */
}

nav a {
    text-decoration: none;
    color: #003B5C; /* Secondary Blue */
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.3s;
    letter-spacing: 0.5px;
}

nav a:hover, nav a.active {
    color: #F15A24; /* Primary Orange */
}

/* Call Button in Header */
.header-cta {
    background: #F15A24;
    color: #ffffff !important;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(241, 90, 36, 0.2);
}

.header-cta:hover {
    background: #003B5C;
}

/* Mobile Responsive Fix */
@media (max-width: 992px) {
    header { padding: 0 4%; }
    nav a:not(.header-cta) { display: none; } /* Mobile par links chhup jayenge, sirf call button dikhega */
}
/* --- WHATSAPP FLOATING BUTTON --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    box-shadow: 0 15px 30px rgba(18, 140, 126, 0.6);
}

/* Mobile par thoda chota dikhega */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}