   
        :root {
            --bg: #020813;
            --bg-2: #061421;
            --card: rgba(8, 24, 39, 0.78);
            --card-2: rgba(10, 30, 49, 0.9);
            --cyan: #20e7ff;
            --cyan-2: #06aeea;
            --blue: #126dff;
            --text: #f4fbff;
            --muted: #9fb5c8;
            --border: rgba(32, 231, 255, 0.22);
            --border-strong: rgba(32, 231, 255, 0.55);
            --shadow: 0 20px 80px rgba(0, 218, 255, 0.13);
            --radius: 22px;
            --container: 1180px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', Arial, sans-serif;
            color: var(--text);
            background:
                radial-gradient(circle at 20% 10%, rgba(0, 224, 255, 0.14), transparent 28%),
                radial-gradient(circle at 80% 5%, rgba(18, 109, 255, 0.2), transparent 30%),
                linear-gradient(180deg, #020813 0%, #03101d 45%, #020813 100%);
            overflow-x: hidden;
        }

        body::before {
            content: '';
            position: fixed;
            inset: 0;
            pointer-events: none;
            opacity: 0.28;
            background-image:
                linear-gradient(rgba(32, 231, 255, 0.06) 1px, transparent 1px),
                linear-gradient(90deg, rgba(32, 231, 255, 0.06) 1px, transparent 1px);
            background-size: 54px 54px;
            mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 80%);
            z-index: -2;
        }

        body::after {
            content: '';
            position: fixed;
            inset: 0;
            pointer-events: none;
            background: radial-gradient(circle at center, transparent 20%, rgba(0,0,0,0.45));
            z-index: -1;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            width: min(var(--container), calc(100% - 40px));
            margin: 0 auto;
        }

        .section {
            padding: 70px 0;
            border-top: 1px solid rgba(32, 231, 255, 0.12);
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--cyan);
            font-size: 12px;
            text-transform: uppercase;
            font-weight: 800;
            letter-spacing: 1.5px;
            margin-bottom: 14px;
        }

        .eyebrow::before {
            content: '';
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--cyan);
            box-shadow: 0 0 18px var(--cyan);
        }

        .section-title {
            font-size: clamp(30px, 4vw, 46px);
            line-height: 1.08;
            letter-spacing: -1.5px;
            margin-bottom: 14px;
        }

        .section-lead {
            color: var(--muted);
            font-size: 16px;
            line-height: 1.75;
            max-width: 770px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            border: 1px solid var(--border-strong);
            border-radius: 999px;
            padding: 14px 24px;
            font-weight: 800;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.7px;
            transition: 0.25s ease;
            cursor: pointer;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
            color: #00111f;
            box-shadow: 0 14px 40px rgba(32, 231, 255, 0.25);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 22px 55px rgba(32, 231, 255, 0.32);
        }

        .btn-outline {
            color: var(--text);
            background: rgba(2, 8, 19, 0.45);
        }

        .btn-outline:hover {
            background: rgba(32, 231, 255, 0.1);
            transform: translateY(-3px);
        }

        .glass-card {
            background: linear-gradient(145deg, rgba(8, 24, 39, 0.88), rgba(5, 17, 30, 0.75));
            border: 1px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            backdrop-filter: blur(14px);
        }

        /* Header */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 999;
            background: rgba(2, 8, 19, 0.82);
            backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(32, 231, 255, 0.16);
        }

        .navbar {
            min-height: 78px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 13px;
            min-width: 230px;
        }

        .brand-mark {
            width: 46px;
            height: 46px;
            border: 2px solid var(--cyan);
            border-radius: 15px;
            display: grid;
            place-items: center;
            font-weight: 900;
            color: var(--cyan);
            box-shadow: inset 0 0 20px rgba(32, 231, 255, 0.18), 0 0 22px rgba(32, 231, 255, 0.18);
        }

        .brand-text strong {
            display: block;
            font-size: 13px;
            line-height: 1.2;
            text-transform: uppercase;
        }

        .brand-text span {
            color: var(--muted);
            font-size: 11px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 23px;
            list-style: none;
        }

        .nav-links a {
            position: relative;
            color: #d8eaf5;
            font-size: 12px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.7px;
            transition: 0.25s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -27px;
            width: 0;
            height: 2px;
            background: var(--cyan);
            transition: 0.25s ease;
            box-shadow: 0 0 18px var(--cyan);
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--cyan);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .header-cta {
            white-space: nowrap;
            padding: 12px 20px;
        }

        .menu-toggle {
            display: none;
            width: 46px;
            height: 46px;
            border: 1px solid var(--border);
            border-radius: 14px;
            background: rgba(32, 231, 255, 0.08);
            color: var(--text);
            font-size: 23px;
        }

        /* Hero */
        .hero {
            position: relative;
            min-height: calc(100vh - 78px);
            display: flex;
            align-items: center;
            padding: 78px 0 45px;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                linear-gradient(90deg, rgba(2, 8, 19, 0.9), rgba(2, 8, 19, 0.62), rgba(2, 8, 19, 0.9)),
                url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?q=80&w=2200&auto=format&fit=crop') center/cover;
            opacity: 0.7;
            z-index: -2;
        }

        .hero::after {
            content: '';
            position: absolute;
            right: -140px;
            top: 7%;
            width: 520px;
            height: 520px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(32,231,255,0.18), transparent 62%);
            z-index: -1;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.04fr 0.96fr;
            gap: 48px;
            align-items: center;
        }

        .hero-content h1 {
            font-size: clamp(48px, 7vw, 88px);
            line-height: 0.96;
            letter-spacing: -3.5px;
            margin-bottom: 20px;
        }

        .hero-content h1 span {
            display: block;
            color: var(--cyan);
            text-shadow: 0 0 35px rgba(32, 231, 255, 0.2);
        }

        .hero-subtitle {
            font-size: clamp(18px, 2vw, 25px);
            line-height: 1.38;
            max-width: 660px;
            margin-bottom: 22px;
            font-weight: 700;
        }

        .hero-desc {
            color: var(--muted);
            font-size: 16px;
            line-height: 1.8;
            max-width: 650px;
            margin-bottom: 28px;
        }

        .hero-tags {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
            max-width: 680px;
            margin-bottom: 32px;
        }

        .hero-tags span {
            display: flex;
            align-items: center;
            gap: 9px;
            color: #dff8ff;
            font-size: 13px;
            font-weight: 700;
        }

        .tag-dot {
            width: 22px;
            height: 22px;
            border: 1px solid var(--cyan);
            border-radius: 50%;
            display: inline-grid;
            place-items: center;
            color: var(--cyan);
            font-size: 11px;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .hero-visual {
            position: relative;
            min-height: 540px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .profile-card {
            position: relative;
            width: min(450px, 100%);
            min-height: 540px;
            border-radius: 34px;
            border: 1px solid rgba(32, 231, 255, 0.25);
            background:
                radial-gradient(circle at 50% 15%, rgba(32, 231, 255, 0.22), transparent 30%),
                linear-gradient(180deg, rgba(7, 31, 51, 0.8), rgba(2, 8, 19, 0.96));
            overflow: hidden;
            box-shadow: 0 35px 100px rgba(0,0,0,0.35), 0 0 60px rgba(32, 231, 255, 0.13);
        }

        .profile-card::before {
            content: '';
            position: absolute;
            inset: 24px;
            border: 1px solid rgba(32, 231, 255, 0.14);
            border-radius: 28px;
        }

        .profile-placeholder {
            position: absolute;
            inset: 42px 42px 0;
            display: flex;
            align-items: flex-end;
            justify-content: center;
        }

        .person-shape {
            position: relative;
            width: 330px;
            height: 420px;
        }

        .person-head {
            position: absolute;
            top: 0;
            left: 50%;
            width: 128px;
            height: 128px;
            transform: translateX(-50%);
            border-radius: 50%;
            background: linear-gradient(145deg, #f1d0b9, #b67858);
            border: 4px solid rgba(255,255,255,0.15);
            box-shadow: 0 0 0 12px rgba(32,231,255,0.06);
        }

        .person-hair {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 130px;
            height: 58px;
            background: #111827;
            border-radius: 60px 60px 30px 30px;
        }

        .person-body {
            position: absolute;
            top: 142px;
            left: 50%;
            width: 280px;
            height: 300px;
            transform: translateX(-50%);
            background: linear-gradient(145deg, #07192b, #0e3554);
            border-radius: 80px 80px 20px 20px;
            border: 1px solid rgba(255,255,255,0.12);
        }

        .person-tie {
            position: absolute;
            top: 154px;
            left: 50%;
            width: 44px;
            height: 155px;
            transform: translateX(-50%);
            background: linear-gradient(180deg, #d7e9f4, #6d8798);
            clip-path: polygon(50% 0, 85% 25%, 65% 100%, 35% 100%, 15% 25%);
            opacity: 0.9;
        }

        .hero-info-card {
            position: absolute;
            right: 0;
            bottom: 56px;
            width: 235px;
            padding: 22px;
            border-radius: 18px;
            background: rgba(3, 15, 27, 0.86);
            border: 1px solid var(--border-strong);
            box-shadow: 0 20px 70px rgba(0,0,0,0.35);
        }

        .hero-info-card li {
            list-style: none;
            display: grid;
            grid-template-columns: 30px 1fr;
            gap: 10px;
            margin-bottom: 16px;
            color: var(--muted);
            font-size: 12px;
        }

        .hero-info-card li:last-child {
            margin-bottom: 0;
        }

        .hero-info-card strong {
            display: block;
            color: var(--text);
            font-size: 13px;
        }

        .info-icon {
            width: 30px;
            height: 30px;
            border-radius: 9px;
            display: grid;
            place-items: center;
            background: rgba(32, 231, 255, 0.11);
            color: var(--cyan);
        }

        .shield-glow {
            position: absolute;
            top: 55px;
            right: 12px;
            width: 150px;
            height: 180px;
            border: 3px solid rgba(32, 231, 255, 0.5);
            clip-path: polygon(50% 0, 92% 18%, 82% 76%, 50% 100%, 18% 76%, 8% 18%);
            opacity: 0.45;
            box-shadow: inset 0 0 30px rgba(32,231,255,0.3), 0 0 42px rgba(32,231,255,0.22);
        }

        /* About */
        .about-grid {
            display: grid;
            grid-template-columns: 0.95fr 1.05fr;
            gap: 48px;
            align-items: center;
        }

        .about-graphic {
            min-height: 360px;
            display: grid;
            place-items: center;
            position: relative;
            overflow: hidden;
        }

        .about-graphic::before,
        .about-graphic::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            border: 1px solid rgba(32, 231, 255, 0.18);
        }

        .about-graphic::before {
            width: 290px;
            height: 290px;
        }

        .about-graphic::after {
            width: 210px;
            height: 210px;
            box-shadow: 0 0 50px rgba(32,231,255,0.14);
        }

        .big-shield {
            position: relative;
            width: 155px;
            height: 185px;
            clip-path: polygon(50% 0, 94% 19%, 84% 76%, 50% 100%, 16% 76%, 6% 19%);
            background: linear-gradient(145deg, rgba(32,231,255,0.96), rgba(18,109,255,0.45));
            box-shadow: 0 0 60px rgba(32,231,255,0.36);
            display: grid;
            place-items: center;
            z-index: 2;
        }

        .big-shield::before {
            content: '🔒';
            font-size: 52px;
            filter: drop-shadow(0 0 12px rgba(0,0,0,0.3));
        }

        .about-copy p {
            color: var(--muted);
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-top: 30px;
        }

        .stat-card {
            padding: 20px;
            border-radius: 18px;
            background: rgba(32, 231, 255, 0.06);
            border: 1px solid rgba(32, 231, 255, 0.18);
        }

        .stat-card strong {
            display: block;
            color: var(--cyan);
            font-size: 31px;
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-card span {
            color: var(--muted);
            font-size: 12px;
            line-height: 1.4;
        }

        /* Services */
        .center-head {
            text-align: center;
            max-width: 790px;
            margin: 0 auto 34px;
        }

        .center-head .section-lead {
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .service-card {
            padding: 28px;
            min-height: 220px;
            transition: 0.25s ease;
        }

        .service-card:hover {
            transform: translateY(-7px);
            border-color: var(--border-strong);
            box-shadow: 0 30px 80px rgba(32,231,255,0.15);
        }

        .service-icon,
        .focus-icon {
            width: 54px;
            height: 54px;
            border-radius: 16px;
            display: grid;
            place-items: center;
            color: var(--cyan);
            background: rgba(32, 231, 255, 0.09);
            border: 1px solid rgba(32, 231, 255, 0.24);
            font-size: 25px;
            margin-bottom: 18px;
            box-shadow: inset 0 0 28px rgba(32, 231, 255, 0.08);
        }

        .service-card h3 {
            font-size: 18px;
            margin-bottom: 12px;
        }

        .service-card p {
            color: var(--muted);
            line-height: 1.7;
            font-size: 14px;
        }

       
.timeline {
    position: relative;
    padding: 80px 0;
    background: #020817;
    overflow: hidden;
}

/* Line ko thoda thin aur subtle rakhein */
.timeline-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 135px; /* Adjust according to logo height */
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(32,231,255,0) 0%, 
        rgba(32,231,255,0.4) 50%, 
        rgba(32,231,255,0) 100%);
    z-index: 1;
}

.timeline-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.timeline-item {
    width: 180px; /* Thoda space badhaya taaki text saans le sake */
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

/* Logo Fix: Agar image nahi hai toh placeholder aacha dikhe */
.company-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.company-logo img {
    max-width: 35px;
    height: auto;
    filter: brightness(0) invert(1); /* Logos ko white karne ke liye (Optional) */
    opacity: 0.8;
}

.timeline-dot {
    width: 8px;
    height: 8px;
    background: #20e7ff;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(32,231,255,0.8);
    margin-bottom: 25px;
    border: 2px solid #020817;
}

/* Typography for Professional look */
.timeline-item h3 {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 6px 0;
    letter-spacing: 0.5px;
    min-height: 40px; /* Taki titles align rahein */
}

.timeline-item p {
    font-size: 12px;
    color: #20e7ff; /* Company name highlight */
    font-weight: 500;
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-date {
    font-size: 11px;
    color: #64748b;
    font-weight: 400;
}

/* Mobile: 2 per row with clean gaps */
@media (max-width: 600px) {
    .timeline-line { display: none; }
    
    .timeline-item {
        width: 45%; /* Ek row mein do */
        margin-bottom: 40px;
    }
    
    .company-logo {
        margin-bottom: 15px;
    }
}

        /* Skills and Certifications */
        .split-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
        }

        .panel {
            padding: 30px;
        }

        .skill-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 18px;
        }

        .skill-tags span {
            border: 1px solid rgba(32, 231, 255, 0.34);
            color: #dff8ff;
            border-radius: 999px;
            padding: 9px 14px;
            font-size: 13px;
            background: rgba(32, 231, 255, 0.06);
        }

        .cert-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 13px;
            margin-top: 22px;
        }

        .cert-card {
            height: 92px;
            display: grid;
            place-items: center;
            border-radius: 18px;
            background: rgba(255,255,255,0.035);
            border: 1px solid rgba(32, 231, 255, 0.2);
            color: var(--cyan);
            font-weight: 900;
            text-align: center;
            font-size: 13px;
            padding: 10px;
        }

        /* Focus */
        .focus-layout {
            display: grid;
            grid-template-columns: 0.72fr 1.28fr;
            gap: 32px;
            align-items: stretch;
        }

        .focus-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .focus-card {
            min-height: 210px;
            padding: 22px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            position: relative;
            overflow: hidden;
            transition: 0.25s ease;
        }

        .focus-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                linear-gradient(180deg, transparent 0%, rgba(2,8,19,0.82) 75%),
                var(--focus-bg, radial-gradient(circle at top, rgba(32,231,255,0.18), transparent 60%));
            z-index: 0;
        }

        .focus-card > * {
            position: relative;
            z-index: 1;
        }

        .focus-card:hover {
            transform: translateY(-5px);
            border-color: var(--border-strong);
        }

        .focus-card h3 {
            font-size: 16px;
            line-height: 1.35;
        }

        .focus-card p {
            color: var(--muted);
            font-size: 13px;
            line-height: 1.55;
            margin-top: 8px;
        }

        /* Contact */
        .contact-grid {
            display: grid;
            grid-template-columns: 0.78fr 1.22fr;
            gap: 36px;
            align-items: stretch;
        }

        .contact-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
            margin-top: 26px;
        }

        .contact-mini {
            padding: 18px;
            border-radius: 18px;
            background: rgba(32,231,255,0.06);
            border: 1px solid rgba(32,231,255,0.17);
        }

        .contact-mini span {
            color: var(--muted);
            font-size: 13px;
            display: block;
            margin-bottom: 7px;
        }

        .contact-mini strong,
        .contact-mini a {
            font-size: 14px;
            word-break: break-word;
        }

        .contact-form {
            padding: 30px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .form-group.full {
            grid-column: 1 / -1;
        }

        input,
        textarea {
            width: 100%;
            border: 1px solid rgba(32,231,255,0.18);
            background: rgba(2,8,19,0.52);
            color: var(--text);
            border-radius: 12px;
            padding: 15px 16px;
            outline: none;
            font-family: inherit;
            transition: 0.25s ease;
        }

        textarea {
            min-height: 140px;
            resize: vertical;
        }

        input:focus,
        textarea:focus {
            border-color: var(--cyan);
            box-shadow: 0 0 0 4px rgba(32,231,255,0.08);
        }

        .form-message {
            margin-bottom: 18px;
            padding: 13px 16px;
            border-radius: 12px;
            font-size: 14px;
        }

        .form-message.success {
            background: rgba(20, 255, 160, 0.1);
            border: 1px solid rgba(20, 255, 160, 0.25);
            color: #8cffd2;
        }

        .form-message.error {
            background: rgba(255, 77, 77, 0.1);
            border: 1px solid rgba(255, 77, 77, 0.25);
            color: #ffb0b0;
        }

        .submit-btn {
            width: 100%;
            margin-top: 14px;
            border: none;
        }

        /* Footer */
        .footer {
            padding: 28px 0;
            border-top: 1px solid rgba(32,231,255,0.16);
            background: rgba(2,8,19,0.7);
        }

        .footer-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            color: var(--muted);
            font-size: 13px;
        }

        .back-top {
            position: fixed;
            right: 22px;
            bottom: 22px;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            background: linear-gradient(135deg, var(--cyan), var(--blue));
            color: #00111f;
            font-weight: 900;
            box-shadow: 0 15px 40px rgba(32,231,255,0.28);
            z-index: 50;
        }

        /* Animations */
        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: 0.7s ease;
        }

        .reveal.show {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 1100px) {
            .nav-links {
                gap: 14px;
            }

            .nav-links a {
                font-size: 11px;
            }

            .header-cta {
                display: none;
            }

            .hero-grid,
            .about-grid,
            .focus-layout,
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .hero-visual {
                min-height: 500px;
            }

            .services-grid,
            .focus-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .timeline-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .timeline-line {
                display: none;
            }

            .timeline-item {
                padding-left: 26px;
                min-height: auto;
                padding-bottom: 28px;
                border-left: 1px solid rgba(32,231,255,0.25);
            }

            .timeline-dot {
                top: 16px;
                left: -7px;
            }

            .timeline-date {
                position: static;
                margin-top: 10px;
            }
        }

        @media (max-width: 820px) {
            .menu-toggle {
                display: grid;
                place-items: center;
            }

            .nav-links {
                position: absolute;
                top: 78px;
                left: 20px;
                right: 20px;
                display: none;
                flex-direction: column;
                align-items: flex-start;
                padding: 22px;
                border-radius: 18px;
                background: rgba(3, 15, 27, 0.98);
                border: 1px solid rgba(32,231,255,0.22);
                box-shadow: 0 30px 80px rgba(0,0,0,0.45);
            }

            .nav-links.open {
                display: flex;
            }

            .nav-links a::after {
                display: none;
            }

            .hero {
                padding-top: 55px;
            }

            .hero-tags,
            .stats,
            .split-grid,
            .contact-list,
            .form-grid {
                grid-template-columns: 1fr;
            }

            .services-grid,
            .focus-grid,
            .timeline-grid {
                grid-template-columns: 1fr;
            }

            .hero-visual {
                min-height: 450px;
            }

            .profile-card {
                min-height: 470px;
            }

            .hero-info-card {
                position: relative;
                right: auto;
                bottom: auto;
                width: 100%;
                margin-top: 18px;
            }

            .profile-placeholder {
                inset: 32px 32px 0;
            }

            .person-shape {
                transform: scale(0.85);
            }

            .cert-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-inner {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 520px) {
            .container {
                width: min(100% - 28px, var(--container));
            }

            .brand {
                min-width: auto;
            }

            .brand-text span {
                display: none;
            }

            .hero-content h1 {
                letter-spacing: -2px;
            }

            .btn {
                width: 100%;
            }
        }

/* =====================================================
   FULL RESPONSIVE FIX PATCH
   Added safely without changing existing PHP/HTML content
===================================================== */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img,
svg,
video,
canvas {
    max-width: 100%;
    height: auto;
}

button,
input,
textarea,
select {
    max-width: 100%;
}

.container {
    max-width: var(--container);
}

/* Large laptops */
@media (max-width: 1280px) {
    .container {
        width: min(1120px, calc(100% - 40px));
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 11px;
    }

    .hero-grid {
        gap: 34px;
    }

    .hero-content h1 {
        font-size: clamp(46px, 6.3vw, 76px);
    }

    .timeline-grid {
        gap: 14px;
    }
}

/* Tablets and small laptops */
@media (max-width: 1100px) {
    .container {
        width: min(940px, calc(100% - 36px));
    }

    .header-cta {
        display: none;
    }

    .nav-links {
        gap: 13px;
    }

    .brand {
        min-width: 210px;
    }

    .hero {
        min-height: auto;
        padding: 80px 0 70px;
    }

    .hero-grid,
    .about-grid,
    .focus-layout,
    .contact-grid,
    .split-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 820px;
    }

    .hero-visual {
        min-height: auto;
        margin-top: 25px;
    }

    .profile-card {
        width: min(430px, 100%);
        min-height: 510px;
    }

    .hero-info-card {
        right: 30px;
        bottom: 35px;
    }

    .stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .services-grid,
    .focus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline {
        padding-top: 10px;
    }

    .timeline-line {
        display: none;
    }

    .timeline-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .timeline-item {
        min-height: auto;
        padding: 22px 22px 22px 30px;
        border-left: 1px solid rgba(32, 231, 255, 0.28);
        background: rgba(32, 231, 255, 0.035);
        border-radius: 18px;
    }

    .timeline-dot {
        top: 28px;
        left: -7px;
    }

    .timeline-date {
        position: static;
        display: block;
        margin-top: 10px;
    }

    .cert-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Main mobile/tablet menu */
@media (max-width: 900px) {
    .site-header {
        position: sticky;
    }

    .navbar {
        min-height: 74px;
    }

    .menu-toggle {
        display: grid;
        place-items: center;
        flex: 0 0 auto;
    }

    .nav-links {
        position: absolute;
        top: 74px;
        left: 18px;
        right: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px;
        border-radius: 18px;
        background: rgba(3, 15, 27, 0.98);
        border: 1px solid rgba(32, 231, 255, 0.25);
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
        backdrop-filter: blur(18px);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 13px 14px;
        border-radius: 12px;
        font-size: 12px;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(32, 231, 255, 0.09);
    }

    .nav-links a::after {
        display: none;
    }

    .hero {
        padding: 60px 0 55px;
    }

    .hero::before {
        background:
            linear-gradient(180deg, rgba(2, 8, 19, 0.92), rgba(2, 8, 19, 0.78)),
            url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?q=80&w=2200&auto=format&fit=crop') center/cover;
    }

    .hero-content h1 {
        font-size: clamp(42px, 10vw, 64px);
        letter-spacing: -2.4px;
    }

    .hero-subtitle {
        font-size: 19px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .hero-tags {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-actions {
        gap: 12px;
    }

    .about-graphic {
        min-height: 310px;
    }

    .services-grid,
    .focus-grid,
    .timeline-grid {
        grid-template-columns: 1fr;
    }

    .focus-layout .btn {
        margin-top: 6px;
    }

    .contact-grid {
        gap: 28px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
}

/* Mobile */
@media (max-width: 700px) {
    .container {
        width: min(100% - 30px, var(--container));
    }

    .section {
        padding: 58px 0;
    }

    .brand {
        min-width: auto;
        max-width: calc(100% - 58px);
    }

    .brand-mark {
        width: 42px;
        height: 42px;
        border-radius: 13px;
        font-size: 13px;
    }

    .brand-text strong {
        font-size: 12px;
    }

    .brand-text span {
        font-size: 10px;
    }

    .hero-content h1 {
        font-size: clamp(38px, 12vw, 54px);
        line-height: 1;
        letter-spacing: -2px;
    }

    .hero-subtitle {
        font-size: 17px;
        line-height: 1.45;
    }

    .hero-desc,
    .section-lead,
    .about-copy p {
        font-size: 15px;
        line-height: 1.75;
    }

    .section-title {
        font-size: clamp(28px, 9vw, 38px);
        letter-spacing: -1px;
    }

    .hero-tags {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .hero-tags span {
        font-size: 13px;
    }

    .btn {
        width: 100%;
        min-height: 48px;
        padding: 13px 18px;
        font-size: 12px;
        text-align: center;
    }

    .hero-visual {
        display: block;
    }

    .profile-card {
        width: 100%;
        min-height: 430px;
        border-radius: 26px;
    }

    .profile-placeholder {
        inset: 28px 25px 0;
    }

    .person-shape {
        width: 280px;
        height: 370px;
        transform: scale(0.86);
        transform-origin: bottom center;
    }

    .shield-glow {
        width: 112px;
        height: 138px;
        top: 42px;
        right: 15px;
    }

    .hero-info-card {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 16px;
        padding: 18px;
    }

    .hero-info-card li {
        grid-template-columns: 32px 1fr;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card {
        padding: 18px;
    }

    .stat-card strong {
        font-size: 28px;
    }

    .service-card,
    .focus-card,
    .panel,
    .contact-form {
        padding: 22px;
    }

    .service-card,
    .focus-card {
        min-height: auto;
    }

    .contact-list,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cert-card {
        height: 82px;
    }

    .back-top {
        width: 42px;
        height: 42px;
        right: 16px;
        bottom: 16px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .navbar {
        gap: 12px;
    }

    .brand-text strong {
        font-size: 11px;
    }

    .brand-text span {
        display: none;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
        font-size: 21px;
    }

    .nav-links {
        left: 12px;
        right: 12px;
    }

    .hero {
        padding: 48px 0 48px;
    }

    .hero-content h1 {
        font-size: 36px;
        letter-spacing: -1.4px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-desc {
        font-size: 14px;
    }

    .eyebrow {
        font-size: 10px;
        letter-spacing: 1.2px;
    }

    .profile-card {
        min-height: 380px;
    }

    .profile-card::before {
        inset: 16px;
        border-radius: 22px;
    }

    .profile-placeholder {
        inset: 20px 18px 0;
    }

    .person-shape {
        transform: scale(0.74);
    }

    .hero-info-card {
        border-radius: 16px;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .about-graphic {
        min-height: 260px;
    }

    .about-graphic::before {
        width: 230px;
        height: 230px;
    }

    .about-graphic::after {
        width: 165px;
        height: 165px;
    }

    .big-shield {
        width: 125px;
        height: 150px;
    }

    .big-shield::before {
        font-size: 42px;
    }

    .service-icon,
    .focus-icon {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .service-card h3,
    .focus-card h3 {
        font-size: 17px;
    }

    .timeline-item {
        padding: 20px 18px 20px 26px;
    }

    .company-logo {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 16px;
    }

    .skill-tags span {
        font-size: 12px;
        padding: 8px 12px;
    }

    input,
    textarea {
        padding: 14px;
        font-size: 14px;
    }

    .footer .brand {
        max-width: 100%;
    }

    .footer-inner p {
        font-size: 12px;
        line-height: 1.6;
    }
}

/* Extra small phones */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 26px;
    }

    .profile-card {
        min-height: 350px;
    }

    .person-shape {
        transform: scale(0.66);
    }

    .cert-grid {
        grid-template-columns: 1fr;
    }
}

.site-header {
    position: fixed;   
    top: 0;            
    left: 0;
    width: 100%;        
    z-index: 1000;      
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Thora sa shadow taake design professional lage */
}

/* Kyunke header ab fix ho chuka hai, niche wala content iske piche chup jayega. 
   Isliye body ya main content ko thora niche push karna hoga */
body {
    padding-top: 80px; /* Is value ko apne header ki height ke mutabiq adjust kar lein */
}

/*education Responsice css*/

/* Main Container for Education */
    .edu-list {
        display: flex;
        flex-direction: column; /* Isse hamesha ek ke niche ek card aayega */
        gap: 25px;
        margin-top: 30px;
        width: 100%;
    }

    .edu-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(0, 242, 254, 0.1);
        padding: 2.5rem;
        border-radius: 20px;
        width: 100%; /* Laptop aur Mobile dono pe full width */
        display: flex;
        flex-direction: column;
        box-sizing: border-box; /* Padding ko width ke andar rakhta hai */
        position: relative;
        overflow: hidden;
    }

    .edu-card h3 {
        font-size: 1.8rem;
        color: #fff;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .edu-card p {
        color: #00f2fe;
        font-size: 1.1rem;
        font-weight: 500;
        margin-bottom: 25px;
    }

    .edu-footer {
        margin-top: auto;
        padding-top: 15px;
        border-top: 1px solid rgba(255,255,255,0.05);
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.9rem;
    }

    /* Mobile Responsive Adjustments */
    @media (max-width: 768px) {
        .edu-card {
            padding: 1.5rem;
        }
        
        .edu-card h3 {
            font-size: 1.4rem; /* Mobile pe heading thori choti */
        }

        .edu-footer {
            flex-direction: row; /* Date aur location ko ek hi line mein rakha hai */
            font-size: 0.8rem;
        }
    }
    @media (max-width: 320px) {
        .edu-card {
            padding: 1.1rem;
        }
        
        .edu-card h3 {
            font-size: 1.1rem; /* Mobile pe heading thori choti */
        }

        .edu-footer {
            flex-direction: row; /* Date aur location ko ek hi line mein rakha hai */
            font-size: 0.8rem;
        }
    }

