
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        :root {
            --blue: #1a56db;
            --dark-blue: #0a3880;
            --light-blue: #e8f0fe;
            --dark: #0d1b3e;
            --text: #374151;
            --text-light: #6b7280;
            --white: #ffffff;
            --bg: #f8faff;
            --border: #e5e7eb;
            --gradient: linear-gradient(135deg, #1a56db 0%, #0a3880 100%);
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text);
            background: var(--white);
            overflow-x: hidden;
        }

        /* ===== SCROLLBAR ===== */
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: #f1f1f1; }
        ::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

        /* ===== TOP BAR ===== */
        .top-bar {
            background: var(--dark);
            padding: 8px 0;
            font-size: 13px;
            color: #adb5bd;
        }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
        .top-bar-left { display: flex; gap: 20px; flex-wrap: wrap; }
        .top-bar-left a, .top-bar-right a { color: #adb5bd; text-decoration: none; transition: color .3s; }
        .top-bar-left a:hover, .top-bar-right a:hover { color: var(--white); }
        .top-bar-left a i, .top-bar-left a { font-size: 12px; }
        .top-bar-left a i { margin-right: 5px; color: var(--blue); }
        .top-bar-right { display: flex; gap: 12px; }
        .top-bar-right a { width: 28px; height: 28px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; }
        .top-bar-right a:hover { background: var(--blue); color: #fff; }

      
      
        /* ===== PAGE HERO / BREADCRUMB ===== */
        .page-hero {
            background: var(--gradient);
            padding: 80px 0 60px;
            position: relative;
            overflow: hidden;
        }
        .page-hero::before {
            content: '';
            position: absolute; inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        .page-hero .container { position: relative; z-index: 1; text-align: center; }
        .page-hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; color: #fff; margin-bottom: 12px; }
        .page-hero h1 span { color: #93c5fd; }
        .page-hero p { color: rgba(255,255,255,0.8); font-size: 17px; max-width: 560px; margin: 0 auto 24px; }
        .breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.7); }
        .breadcrumb a { color: rgba(255,255,255,0.8); text-decoration: none; }
        .breadcrumb a:hover { color: #fff; }
        .breadcrumb i { font-size: 10px; }

        /* ===== SECTION COMMONS ===== */
        .section-tag {
            display: inline-block; background: var(--light-blue); color: var(--blue);
            font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
            padding: 6px 16px; border-radius: 20px; margin-bottom: 12px;
        }
        .section-title { font-size: clamp(26px, 4vw, 40px); font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 14px; }
        .section-title .blue-text { color: var(--blue); }
        .section-head { text-align: center; max-width: 600px; margin: 0 auto 50px; }
        .section-head p { color: var(--text-light); font-size: 15px; }

        /* ===== SERVICES OVERVIEW STRIP ===== */
        .services-nav {
            background: var(--bg);
            padding: 30px 0;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 76px;
            z-index: 90;
        }
        .services-nav-inner {
            display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px;
            scrollbar-width: none;
        }
        .services-nav-inner::-webkit-scrollbar { display: none; }
        .snav-btn {
            display: flex; align-items: center; gap: 7px;
            padding: 9px 18px; border-radius: 25px;
            background: #fff; border: 2px solid var(--border);
            color: var(--text); font-size: 13px; font-weight: 500;
            cursor: pointer; transition: all .3s; white-space: nowrap; text-decoration: none;
        }
        .snav-btn i { color: var(--blue); font-size: 13px; }
        .snav-btn:hover, .snav-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; }
        .snav-btn:hover i, .snav-btn.active i { color: #fff; }

        /* ===== SERVICE SECTIONS ===== */
        .service-section {
            padding: 90px 0;
            scroll-margin-top: 140px;
        }
        .service-section:nth-child(odd) { background: var(--white); }
        .service-section:nth-child(even) { background: var(--bg); }

        .service-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .service-layout.reverse { direction: rtl; }
        .service-layout.reverse > * { direction: ltr; }

        /* Visual Panel */
        .service-visual {
            position: relative;
        }
        .sv-box {
            border-radius: 24px;
            padding: 50px 40px;
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            min-height: 340px;
            position: relative;
            overflow: hidden;
        }

        .sv-box-img{
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover; /* pura box fill karega */
}
        .sv-box::before {
            content: '';
            position: absolute; inset: 0;
            background: var(--gradient);
            opacity: 0.95;
            border-radius: 24px;
        }
        .sv-icon-big {
            position: relative; z-index: 1;
            width: 100px; height: 100px;
            background: rgba(255,255,255,0.15);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 42px; color: #fff;
            margin-bottom: 24px;
            border: 2px solid rgba(255,255,255,0.3);
        }
        .sv-title-big { position: relative; z-index: 1; font-size: 22px; font-weight: 700; color: #fff; text-align: center; }
        .sv-dots { position: absolute; bottom: 20px; right: 20px; z-index: 1; display: flex; gap: 6px; }
        .sv-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); }
        .sv-dots span:first-child { background: #fff; }

        /* Sub items grid inside visual */
        .sv-sub-grid {
            position: absolute;
            bottom: -20px; right: -20px;
            display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
            z-index: 2;
        }
        .sv-sub-item {
            background: #fff;
            border-radius: 12px;
            padding: 12px 14px;
            font-size: 12px; font-weight: 600; color: var(--dark);
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
            display: flex; align-items: center; gap: 8px;
        }
        .sv-sub-item i { color: var(--blue); font-size: 14px; }

        /* Content Side */
        .service-content {}
        .service-content .section-tag { margin-bottom: 10px; }
        .service-content h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; color: var(--dark); margin-bottom: 16px; line-height: 1.25; }
        .service-content p { color: var(--text-light); font-size: 15px; line-height: 1.8; margin-bottom: 20px; }

        .service-features { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 28px; }
        .service-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--text); }
        .service-features li i { color: var(--blue); background: var(--light-blue); width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; }

        .service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
        .stag { background: var(--light-blue); color: var(--blue); font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 20px; }

        .btn-primary {
            display: inline-flex; align-items: center; gap: 8px;
            background: var(--gradient); color: #fff;
            padding: 13px 28px; border-radius: 30px; font-size: 14px; font-weight: 600;
            text-decoration: none; transition: all .3s;
            box-shadow: 0 4px 20px rgba(26,86,219,0.35);
        }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(26,86,219,0.45); }
        .btn-outline {
            display: inline-flex; align-items: center; gap: 8px;
            border: 2px solid var(--blue); color: var(--blue);
            padding: 11px 26px; border-radius: 30px; font-size: 14px; font-weight: 600;
            text-decoration: none; transition: all .3s; margin-left: 12px;
        }
        .btn-outline:hover { background: var(--blue); color: #fff; }

        /* ===== PROCESS SECTION ===== */
        .process-section {
            padding: 90px 0;
            background: var(--dark);
        }
        .process-section .section-tag { background: rgba(255,255,255,0.1); color: #93c5fd; }
        .process-section .section-title { color: #fff; }
        .process-section .section-head p { color: rgba(255,255,255,0.6); }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            position: relative;
            margin-top: 20px;
        }
        .process-grid::before {
            content: '';
            position: absolute;
            top: 36px; left: 12.5%; right: 12.5%;
            height: 2px;
            background: linear-gradient(90deg, var(--blue), rgba(26,86,219,0.2));
            z-index: 0;
        }
        .process-step {
            text-align: center; padding: 0 20px;
            position: relative; z-index: 1;
        }
        .ps-num {
            width: 72px; height: 72px; border-radius: 50%;
            background: var(--gradient);
            display: flex; align-items: center; justify-content: center;
            font-size: 22px; font-weight: 800; color: #fff;
            margin: 0 auto 20px;
            border: 4px solid var(--dark);
            box-shadow: 0 0 0 2px var(--blue);
        }
        .process-step h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
        .process-step p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }

        /* ===== STATS BAR ===== */
        .stats-bar {
            background: var(--gradient);
            padding: 50px 0;
        }
        .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
        .stat-item { padding: 10px; }
        .stat-item .num { font-size: clamp(32px, 4vw, 48px); font-weight: 900; color: #fff; line-height: 1; }
        .stat-item .lbl { font-size: 14px; color: rgba(255,255,255,0.75); margin-top: 6px; font-weight: 500; }
        .stat-item .num span { font-size: 0.6em; }

        /* ===== CTA BANNER ===== */
        .cta-banner {
            background: var(--bg);
            padding: 80px 0;
        }
        .cta-inner {
            background: var(--gradient);
            border-radius: 24px;
            padding: 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-inner::before {
            content: '';
            position: absolute; top: -60px; right: -60px;
            width: 200px; height: 200px;
            border-radius: 50%;
            background: rgba(255,255,255,0.07);
        }
        .cta-inner::after {
            content: '';
            position: absolute; bottom: -80px; left: -40px;
            width: 250px; height: 250px;
            border-radius: 50%;
            background: rgba(255,255,255,0.05);
        }
        .cta-inner h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; color: #fff; margin-bottom: 14px; position: relative; z-index: 1; }
        .cta-inner p { color: rgba(255,255,255,0.8); font-size: 16px; margin-bottom: 32px; position: relative; z-index: 1; }
        .cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; z-index: 1; }
        .btn-white {
            display: inline-flex; align-items: center; gap: 8px;
            background: #fff; color: var(--blue);
            padding: 14px 30px; border-radius: 30px; font-size: 15px; font-weight: 700;
            text-decoration: none; transition: all .3s;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }
        .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
        .btn-outline-white {
            display: inline-flex; align-items: center; gap: 8px;
            border: 2px solid rgba(255,255,255,0.7); color: #fff;
            padding: 12px 28px; border-radius: 30px; font-size: 15px; font-weight: 600;
            text-decoration: none; transition: all .3s;
        }
        .btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

        /* ===== FOOTER ===== */
        .footer { background: var(--dark); }
        .footer-top { padding: 60px 0 40px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
        .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
        .footer-logo-circle { width: 44px; height: 44px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; color: #fff; }
        .footer-logo-text span { display: block; font-size: 18px; font-weight: 800; color: #fff; letter-spacing: 2px; line-height: 1; }
        .footer-logo-text .blue { color: var(--blue); }
        .footer-logo-text small { font-size: 10px; color: rgba(255,255,255,0.5); letter-spacing: 3px; }
        .footer-brand p { color: rgba(255,255,255,0.55); font-size: 13px; line-height: 1.7; margin-bottom: 20px; }
        .footer-social { display: flex; gap: 10px; }
        .footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 13px; text-decoration: none; transition: all .3s; }
        .footer-social a:hover { background: var(--blue); color: #fff; }
        .footer-links h4, .footer-services h4, .footer-contact h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 18px; }
        .footer-links ul, .footer-services ul { list-style: none; }
        .footer-links ul li, .footer-services ul li { margin-bottom: 10px; }
        .footer-links ul li a, .footer-services ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 13px; transition: color .3s; display: flex; align-items: center; gap: 7px; }
        .footer-links ul li a i, .footer-services ul li a i { font-size: 10px; color: var(--blue); }
        .footer-links ul li a:hover, .footer-services ul li a:hover { color: #fff; }
        .fc-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
        .fc-item i { color: var(--blue); font-size: 14px; margin-top: 2px; }
        .fc-item a, .fc-item span { color: rgba(255,255,255,0.55); font-size: 13px; text-decoration: none; transition: color .3s; }
        .fc-item a:hover { color: #fff; }
        .footer-timing { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.55); font-size: 13px; margin-top: 8px; }
        .footer-timing i { color: var(--blue); }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
        .footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
        .footer-bottom p { color: rgba(255,255,255,0.45); font-size: 13px; }
        .footer-bottom p span { color: var(--blue); }
        .footer-bottom p .fa-heart { color: #ef4444; }
        .footer-bottom-links { display: flex; gap: 20px; }
        .footer-bottom-links a { color: rgba(255,255,255,0.45); font-size: 13px; text-decoration: none; transition: color .3s; }
        .footer-bottom-links a:hover { color: #fff; }

        /* ===== FIXED BUTTONS ===== */
        .fixed-actions { position: fixed; bottom: 30px; right: 25px; display: flex; flex-direction: column; gap: 12px; z-index: 1000; }
        .fixed-btn { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; text-decoration: none; transition: all .3s; box-shadow: 0 4px 15px rgba(0,0,0,0.25); }
        .call-btn { background: var(--blue); }
        .whatsapp-btn { background: #25d366; }
        .fixed-btn:hover { transform: translateY(-3px) scale(1.08); }

        #scrollTop { position: fixed; bottom: 140px; right: 25px; width: 44px; height: 44px; border-radius: 50%; background: var(--dark); color: #fff; border: none; cursor: pointer; font-size: 16px; z-index: 1000; box-shadow: 0 4px 15px rgba(0,0,0,0.2); transition: all .3s; }
        #scrollTop:hover { background: var(--blue); transform: translateY(-2px); }

        /* ===== TICKER ===== */
        .ticker-wrap { background: var(--blue); overflow: hidden; padding: 12px 0; }
        .ticker-track { display: flex; gap: 0; animation: ticker 30s linear infinite; white-space: nowrap; }
        .ticker-track span { padding: 0 30px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 8px; }
        .ticker-track span i { color: rgba(255,255,255,0.5); font-size: 10px; }
        @keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes fadeLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
        @keyframes fadeRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
        .anim-up { animation: fadeUp .7s ease both; }
        .anim-left { animation: fadeLeft .7s ease both; }
        .anim-right { animation: fadeRight .7s ease both; }
        [data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
        [data-reveal].visible { opacity: 1; transform: translateY(0); }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .service-layout { grid-template-columns: 1fr; gap: 40px; }
            .service-layout.reverse { direction: ltr; }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
            .process-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
            .process-grid::before { display: none; }
        }
        @media (max-width: 768px) {
            .nav-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: #fff; flex-direction: column; justify-content: center; align-items: center; z-index: 9999; gap: 10px; }
            .nav-menu.open { display: flex; }
            .hamburger { display: flex; z-index: 10000; position: relative; }
            .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; min-width: auto; padding: 10px; }
            .service-features { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
            .cta-inner { padding: 40px 20px; }
            .footer-grid { grid-template-columns: 1fr; }
            .top-bar { display: none; }
            .sv-sub-grid { position: static; margin-top: 16px; }
            .sv-box { min-height: 260px; }
        }
        @media (max-width: 480px) {
            .stats-grid { grid-template-columns: 1fr 1fr; }
            .process-grid { grid-template-columns: 1fr; }
            .page-hero h1 { font-size: 28px; }
        }
    