* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background-color: #ffffff; color: #0f172a; line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; transition: all 0.3s ease; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* NAVBAR GLASSMORPHISM */
.site-header {
    position: fixed; top: 0; left: 0; width: 100%;
    background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05); z-index: 1000;
}
.navbar { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo .logo-text { font-size: 24px; font-weight: 800; color: #0f172a; letter-spacing: -0.5px; }
.logo .highlight { color: #2563eb; }
.nav-links { display: flex; gap: 35px; }
.nav-links a { font-size: 15px; font-weight: 600; color: #64748b; }
.nav-links a:hover, .nav-links a.active { color: #2563eb; }
.btn-primary {
    background-color: #2563eb; color: #ffffff; padding: 12px 24px; border-radius: 8px;
    font-size: 15px; font-weight: 600; box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}
.btn-primary:hover { background-color: #1d4ed8; transform: translateY(-2px); }

/* PREMIUM GRADIENT TEXT */
.text-gradient {
    background: linear-gradient(to right, #2563eb, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* HERO SECTION */
.hero { padding: 60px 0 100px; }
.hero-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.hero-content { flex: 1; max-width: 650px; }
.hero-content h1 { font-size: 52px; font-weight: 800; color: #0f172a; line-height: 1.15; margin-bottom: 24px; letter-spacing: -1px; }
.hero-content p { font-size: 18px; color: #475569; margin-bottom: 40px; font-weight: 400; }
.hero-buttons { display: flex; gap: 20px; }
.btn-secondary {
    background-color: transparent; color: #0f172a; padding: 12px 24px; border-radius: 8px;
    font-size: 15px; font-weight: 600; border: 2px solid #cbd5e1; transition: all 0.3s ease;
}
.btn-secondary:hover { border-color: #0f172a; background-color: rgba(15, 23, 42, 0.05); }
.hero-image { flex: 1; display: flex; justify-content: center; }
.hero-image img { max-width: 100%; height: auto; border-radius: 20px; animation: float 6s ease-in-out infinite; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* ABOUT SECTION (WHO WE ARE) */
.about-section { padding: 100px 0; background-color: #f8fafc; }
.about-inner { display: flex; align-items: center; gap: 80px; }
.about-content { flex: 1; }
.sub-heading { color: #2563eb; font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.about-content h2 { font-size: 40px; font-weight: 800; color: #0f172a; margin-bottom: 20px; }
.about-content p { font-size: 16px; color: #475569; margin-bottom: 20px; line-height: 1.7; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 30px; }
.about-features li { display: flex; align-items: center; font-weight: 600; color: #0f172a; font-size: 15px; }
.about-features li svg { margin-right: 10px; }

/* ABOUT SECTION: OVERLAPPING IMAGE & BADGE LOGIC */
.about-visual { flex: 1; display: flex; justify-content: center; align-items: center; }
.image-wrapper { position: relative; display: inline-block; }
.main-team-image { width: 100%; max-width: 500px; border-radius: 24px; box-shadow: 0 20px 40px rgba(0,0,0,0.08); display: block; }
.badge-overlay {
    position: absolute;
    top: 50%;
    left: -70px; /* Image ke left edge par overlap karega */
    transform: translateY(-50%);
    width: 150px;
    height: 150px;
    background: #ffffff; /* Transparent background ke liye clean base */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 2;
}
.rotating-badge-small { width: 100%; height: 100%; border-radius: 50%; animation: spin 15s linear infinite; }

@keyframes spin { 100% { transform: rotate(360deg); } }

/* SERVICES SECTION */
.services { padding: 100px 0; background-color: #ffffff; }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.section-header h2 { font-size: 40px; font-weight: 800; color: #0f172a; margin-bottom: 15px; }
.section-header p { font-size: 16px; color: #64748b; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card { background: #f8fafc; padding: 40px 30px; border-radius: 16px; border: 1px solid rgba(0,0,0,0.03); transition: all 0.4s ease; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.1); background: #ffffff; border-color: rgba(37, 99, 235, 0.1); }
.icon-box { width: 60px; height: 60px; background: rgba(37, 99, 235, 0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; transition: all 0.4s ease; }
.service-card:hover .icon-box { background: #2563eb; }
.service-card:hover .icon-box svg { stroke: #ffffff; }
.service-card h3 { font-size: 22px; font-weight: 700; color: #0f172a; margin-bottom: 15px; }
.service-card p { font-size: 15px; color: #475569; line-height: 1.7; }

/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-inner { flex-direction: column; text-align: center; }
    .about-features { grid-template-columns: 1fr; justify-items: center; }
    .image-wrapper { margin-top: 40px; }
    .badge-overlay { left: -20px; width: 120px; height: 120px; } /* Mobile par overlap thoda kam kiya */
}
@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .hero-inner { flex-direction: column; text-align: center; }
    .hero-content h1 { font-size: 40px; }
    .hero-buttons { justify-content: center; }
    .hero-image { margin-top: 30px; }
    .badge-overlay { left: 50%; bottom: -60px; top: auto; transform: translateX(-50%); } /* Chote phone pe center bottom me aayega */
}