@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Noto+Nastaliq+Urdu&display=swap');

:root {
    --brand: #0066ff;
    --brand-dark: #0044cc;
    --navy: #0a0e27;
    --navy-light: #111633;
    --surface: #f8f9ff;
    --surface-dark: #eef0ff;
    --text: #0f172a;
    --text-muted: #64748b;
    --border: rgba(0,102,255,0.08);
    --glow: rgba(0,102,255,0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--surface);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.urdu { font-family: 'Noto Nastaliq Urdu', serif; line-height: 2.4; font-size: 2.2rem; }

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 10px; }

.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.25rem 2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 2rem;
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-mark {
    width: 36px; height: 36px;
    background: var(--brand);
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px -4px var(--glow);
    transition: transform 0.3s ease;
}

.logo:hover .logo-mark { transform: rotate(-5deg) scale(1.05); }

.logo-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--brand);
    background: rgba(0,102,255,0.06);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 50%;
    transform: translateX(-50%);
    width: 16px; height: 2px;
    background: var(--brand);
    border-radius: 2px;
}

.nav-cta {
    background: var(--brand);
    color: white !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 20px -4px var(--glow);
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: var(--brand-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 30px -4px var(--glow);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: white;
    z-index: 200;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.mobile-menu-close {
    background: var(--surface);
    border: none;
    width: 44px; height: 44px;
    border-radius: 12px;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.3s;
}

.mobile-menu-close:hover { background: var(--surface-dark); }

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 1.75rem;
    font-weight: 600;
    padding: 1rem 0;
    display: block;
    border-bottom: 1px solid var(--border);
    transition: color 0.3s;
}

.mobile-nav-links a:hover { color: var(--brand); }

.page-content {
    opacity: 0;
    transform: translateY(20px);
    animation: pageEnter 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pageEnter {
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--brand);
    color: white;
    box-shadow: 0 4px 20px -4px var(--glow);
}

.btn-primary:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px -4px var(--glow);
}

.btn-secondary {
    background: white;
    color: var(--text);
    border: 1.5px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--brand);
    color: var(--brand);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px -4px var(--glow);
}

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    padding: 0.5rem 1rem;
}

.btn-ghost:hover { color: var(--brand); }

.card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px -12px var(--glow);
    border-color: rgba(0,102,255,0.15);
}

.glass {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border);
}

.section {
    padding: 6rem 2rem;
    position: relative;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brand);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text);
}

.dark-section {
    background: var(--navy);
    color: white;
}

.dark-section .section-title { color: white; }
.dark-section .section-label { color: #60a5fa; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.footer {
    background: var(--navy);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #60a5fa;
    margin-bottom: 1.5rem;
}

.footer-col a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.4rem 0;
    transition: color 0.3s;
}

.footer-col a:hover { color: white; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #64748b;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    display: grid;
    place-items: center;
    color: #94a3b8;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--brand);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .section { padding: 4rem 1.5rem; }
    .urdu { font-size: 1.8rem; }
}

.text-gradient {
    background: linear-gradient(135deg, var(--brand), #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-dot {
    width: 8px; height: 8px;
    background: var(--brand);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--glow);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.9); }
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-track {
    display: inline-flex;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.input {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 2px solid #e2e8f0;
    background: transparent;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    outline: none;
    transition: border-color 0.3s;
}

.input:focus { border-color: var(--brand); }

.input::placeholder { color: #94a3b8; }

.select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230066ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 24px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

.faq-icon {
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.testimonials-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
}

.testimonials-scroll::-webkit-scrollbar { display: none; }

.testimonial-card {
    flex: 0 0 340px;
    scroll-snap-align: start;
    background: var(--navy-light);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 2rem;
    color: white;
}

.process-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-card:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(59,130,246,0.3);
    transform: translateY(-8px);
}

.mineral-bar {
    height: 6px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.mineral-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--brand), #8b5cf6);
    border-radius: 10px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.stepper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stepper-btn {
    width: 40px; height: 40px;
    border-radius: 12px;
    border: 1.5px solid #e2e8f0;
    background: white;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all 0.2s;
}

.stepper-btn:hover {
    border-color: var(--brand);
    color: var(--brand);
    background: var(--surface);
}

.counter { font-variant-numeric: tabular-nums; }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0,102,255,0.06);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brand);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -20%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,102,255,0.08), transparent 70%);
    border-radius: 50%;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -10%; left: -5%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(139,92,246,0.06), transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text { max-width: 540px; }

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 40px 80px rgba(0,102,255,0.15));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    border-left: 3px solid var(--brand);
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.quote-block {
    background: var(--navy);
    border-radius: 32px;
    padding: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.quote-block::before {
    content: '';
    position: absolute;
    bottom: -50px; right: -50px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(59,130,246,0.2), transparent);
    border-radius: 50%;
}

.partner-logo {
    height: 32px;
    width: auto;
    opacity: 1;
    filter: none;
    transition: all 5.8s;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.vacancy-note {
    display: none;
    padding: 1rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 12px;
    color: #dc2626;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

.vacancy-note.show { display: block; }

.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--navy);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 1000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 60px -10px rgba(0,0,0,0.3);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

@media (max-width: 768px) {
    .hero-content { grid-template-columns: 1fr; }
    .hero { min-height: auto; padding-top: 6rem; }
    .hero-visual { order: -1; }
    .hero-image { max-width: 280px; }
    .stat-grid { grid-template-columns: repeat(2, 1fr); }
}

.reveal {
    opacity: 1 !important;
    transform: none !important;
} 
@media (max-width: 768px) {
    .hero-content { 
        grid-template-columns: 1fr; 
        text-align: center; /* Centers all hero content */
        gap: 2rem;
    }
    
    .hero-text { 
        max-width: 100% !important; /* Overrides the 540px desktop width */
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
        align-items: center; /* Centers text and buttons vertically */
    }

    .hero-title {
        font-size: 2.2rem !important; /* Prevents text from being too big for the screen */
        line-height: 1.2;
    }

    .hero-actions {
        justify-content: center; /* Centers your 'Subscribe' and 'Call Now' buttons */
    }
}
. .badge-container {
  /* Keep the box but make it invisible */
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;

  /* Maintain the space it occupied */
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  height: 32px; /* Set a specific height to preserve the layout gap */
  margin: 10px 0;
}

.badge-text {
  /* Keep the text styled but without the pill */
  color: #007bff; /* Keep the brand blue color */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
