/* =============================================
   1. CORE VARIABLES & RESET
   ============================================= */
:root {
    /* --- Colors --- */
    --bg-dark: #050A14;
    --bg-card: #0F172A;
    --primary: #3B82F6;
    --accent: #60A5FA;
    --gold: #F59E0B;
    --text-white: #F8FAFC;
    --text-muted: #94A3B8;

    /* --- Borders & Overlays --- */
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(59, 130, 246, 0.5);
    --overlay-dark: linear-gradient(to top, rgba(5, 10, 20, 1) 0%, rgba(5, 10, 20, 0.9) 30%, transparent 100%);

    /* --- Animations & Effects --- */
    --ease: cubic-bezier(0.25, 1, 0.5, 1);
    --shadow-neon: 0 0 25px rgba(59, 130, 246, 0.5);
    --shadow-card: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
    cursor: default;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Global Image Safety */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    transition: 0.3s var(--ease);
}

/* =============================================
   2. UTILITIES & ANIMATIONS
   ============================================= */
.text-primary {
    color: var(--primary) !important;
}

.bg-card {
    background-color: var(--bg-card);
}

/* Tech Grid Background */
.tech-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.15;
    z-index: -1;
    transform: perspective(1000px) rotateX(25deg) scale(1.5);
    animation: gridAnimation 30s linear infinite;
    pointer-events: none;
    will-change: transform;
    /* Performance Boost */
}

@keyframes gridAnimation {
    from {
        transform: perspective(1000px) rotateX(25deg) translateY(0);
    }

    to {
        transform: perspective(1000px) rotateX(25deg) translateY(60px);
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes kenBurns {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.15);
    }
}

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* =============================================
   3. PRELOADER & SCROLL TOP
   ============================================= */
#preloader {
    position: fixed;
    inset: 0;
    /* Short for top/left/right/bottom: 0 */
    background: var(--bg-dark);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.spinner-grow {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    box-shadow: 0 0 30px var(--primary);
}

.loader-content .brand-text {
    font-size: 0.9rem;
    letter-spacing: 3px;
    animation: blink 1.5s infinite;
    margin-top: 15px;
}

#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    border: 1px solid var(--primary);
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: 0.4s var(--ease);
    backdrop-filter: blur(5px);
}

#scrollTopBtn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: var(--shadow-neon);
}

/* =============================================
   4. NAVBAR
   ============================================= */
.navbar {
    padding: 25px 0;
    transition: all 0.4s var(--ease);
    background: transparent;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(5, 10, 20, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-white-box {
    background: #FFFFFF;
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.logo-white-box img {
    height: 32px;
    width: auto;
}

.brand-text {
    font-weight: 800;
    font-size: 1.4rem;
    color: #FFFFFF;
    letter-spacing: 1px;
}

/* Nav Links */
.nav-link {
    color: var(--text-muted) !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 18px !important;
    position: relative;
    transition: 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: 0.4s var(--ease);
    transform: translateX(-50%);
}

.nav-link:hover,
.dropdown-item:hover {
    color: var(--text-white) !important;
}

.nav-link:hover::after {
    width: 80%;
}

/* Dropdown */
.dropdown-menu {
    background: var(--bg-card);
    border: 1px solid var(--border) !important;
    border-radius: 12px;
    padding: 15px;
    margin-top: 10px !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: 0.3s var(--ease);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    min-width: 250px;
    display: block;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    color: var(--text-muted);
    padding: 12px 15px;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.3s;
}

.dropdown-item:hover {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary) !important;
    transform: translateX(10px);
}

/* Dropdown Arrow Animation */
.dropdown-toggle::after {
    display: none !important;
}

.dropdown-arrow {
    transition: transform 0.3s var(--ease);
    color: var(--primary);
}

.rotate-180 {
    transform: rotate(180deg);
}

/* =============================================
   5. BUTTONS
   ============================================= */
.btn-neon,
.btn-outline-custom {
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: 0.3s;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--border);

}

.btn-neon {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-neon:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-neon);
}

.btn-outline-custom {
    border: 2px solid var(--text-white);
    color: var(--text-white);
}

.btn-outline-custom:hover {
    border-color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
}

/* =============================================
   6. HERO SECTION
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    background-color: #050A14;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.1);
    will-change: transform, opacity;
    /* Optimized */
}

.slide.active {
    opacity: 1;
    animation: kenBurns 10s linear infinite alternate;
}

.hero .container {
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    font-weight: 700;
    background: rgba(59, 130, 246, 0.15);
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 800;
}

.hero-stat-card {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    padding: 25px;
    margin-bottom: 15px;
    transition: 0.3s;
    cursor: default;
}

.hero-stat-card:hover {
    border-color: var(--primary);
    transform: translateX(10px);
    background: rgba(59, 130, 246, 0.1);
}

/* =============================================
   7. TICKER & HOVER CARDS
   ============================================= */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: var(--primary);
    padding: 15px 0;
    white-space: nowrap;
}

.ticker {
    display: inline-block;
    animation: ticker 25s linear infinite;
    will-change: transform;
}

.ticker-item {
    display: inline-block;
    padding: 0 40px;
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ticker-wrap:hover .ticker {
    animation-play-state: paused;
}

.hover-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 40px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: 0.4s var(--ease);
}

.hover-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(45deg, transparent, var(--primary), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.4s;
}

.hover-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
    border-color: transparent;
}

.hover-card:hover::before {
    opacity: 1;
}

.card-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    border: 1px solid var(--border);
    transition: 0.4s;
}

.hover-card:hover .card-icon-box {
    background: var(--primary);
    color: #fff;
    transform: rotateY(180deg);
    border-color: var(--primary);
}

/* =============================================
   8. PRODUCT CARDS & ABOUT
   ============================================= */
.about-img-wrap {
    position: relative;
    border: 1px solid var(--border);
    padding: 15px;
    transition: 0.5s;
}

.about-img-wrap img {
    filter: grayscale(100%);
    transition: 0.5s;
}

.about-img-wrap:hover {
    border-color: var(--primary);
    padding: 0;
}

.about-img-wrap:hover img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

/* Product Card */
.product-card {
    position: relative;
    height: 520px;
    border-radius: 20px;
    overflow: hidden;
    background: #0a1120;
    border: 1px solid var(--border);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.8), 0 0 20px rgba(59, 130, 246, 0.15);
}

.product-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(5, 10, 20, 0.7);
    backdrop-filter: blur(10px);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid var(--border);
    z-index: 10;
}

.img-wrapper {
    height: 100%;
    width: 100%;
    position: relative;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) saturate(0.8);
    transition: all 0.8s ease;
}

.product-card:hover .img-wrapper img {
    filter: brightness(0.6) saturate(1.1);
    transform: scale(1.1);
}

.product-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    z-index: 5;
    background: var(--overlay-dark);
    transition: all 0.5s ease;
}

.product-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    text-transform: capitalize;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: var(--primary);
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.product-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.product-link:hover {
    color: var(--primary);
    gap: 15px;
}

.product-link:hover i {
    transform: translateX(5px);
}

/* =============================================
   9. FOOTER
   ============================================= */
footer {
    background: #020408;
    border-top: 1px solid var(--border);
    padding: 80px 0 30px;
}

.footer-link {
    display: block;
    color: var(--text-muted);
    margin-bottom: 12px;
    transition: 0.3s;
    position: relative;
    padding-left: 0;
}

.footer-link::before {
    content: '›';
    position: absolute;
    left: -10px;
    opacity: 0;
    transition: 0.3s;
    color: var(--primary);
}

.footer-link:hover {
    color: #fff;
    padding-left: 15px;
}

.footer-link:hover::before {
    opacity: 1;
    left: 0;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 10px;
    transition: 0.3s;
}

.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* =============================================
   10. RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--bg-card);
        padding: 25px;
        border-radius: 12px;
        border: 1px solid var(--border);
        margin-top: 15px;
    }

    /* Fixed height for smaller screens */
    .product-card {
        height: 450px;
    }

    .product-title {
        font-size: 1.4rem;
    }

    .dropdown-menu {
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 5px !important;
        background: rgba(0, 0, 0, 0.2);
    }

    .dropdown-menu.show {
        display: block;
    }

    .ticker-item {
        font-size: 0.8rem;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .btn-neon,
    .btn-outline-custom {
        padding: 10px 20px;
        font-size: 0.75rem;
    }
}



/* Premium About Page Custom Tweaks */
.about-hero {
    padding: 180px 0 100px;
    background: linear-gradient(rgba(5, 10, 20, 0.8), rgba(5, 10, 20, 0.8)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070') center/cover;
    position: relative;
}

.vision-card {
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    transition: 0.4s var(--ease);
}

.vision-card:hover {
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.05);
    transform: translateY(-10px);
}

.counter-box {
    text-align: center;
    padding: 30px;
    border-right: 1px solid var(--border);
}

.counter-box:last-child {
    border-right: none;
}

.counter-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

@media (max-width: 768px) {
    .counter-box {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
}




/* =============================================
       1. CORE VARIABLES (Logo Based Theme)
       ============================================= */
:root {
    /* --- Brand Colors --- */
    --brand-dark: #06101F;
    /* Deepest Navy (Logo Background) */
    --brand-blue: #16529E;
    /* Royal Blue (Logo 'J') */
    --brand-light: #4A89DC;
    /* Lighter Blue for Hover */

    /* --- Theme Colors --- */
    --bg-dark: #02060D;
    /* Main Page Background */
    --bg-card: #0A1629;
    /* Card Background */
    --bg-card-hover: #0F1F38;
    /* Card Hover */

    --text-white: #F8FAFC;
    --text-muted: #94A3B8;

    /* --- Effects --- */
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(22, 82, 158, 0.6);
    /* Blue Border on Hover */
    --shadow-glow: 0 10px 40px -10px rgba(22, 82, 158, 0.3);
    --ease: cubic-bezier(0.25, 1, 0.5, 1);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

/* =============================================
       2. HERO SECTION (Header) - PREMIUM DESIGN
       ============================================= */
.hero-section {
    position: relative;
    height: 65vh;
    /* Thodi height badhayi for breathing space */
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* FIX: Fixed Navbar ki wajah se jo gap chahiye tha */
    padding-top: 90px;
    margin-top: 0;
}

/* Background Image styling */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Placeholder Image - Change URL to your actual image */
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.02);
    /* Subtle premium zoom effect */
}

/* Dark Blue Gradient Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Enhanced Gradient: Text ko read karna aur asaan hoga */
    background: linear-gradient(90deg,
            rgba(2, 6, 13, 0.98) 0%,
            rgba(6, 16, 31, 0.85) 45%,
            rgba(22, 82, 158, 0.3) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 0 5%;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    /* Smooth Slide up animation */
    animation: heroFadeInUp 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* "What We Offer" Tag - Modernized */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(74, 137, 220, 0.1);
    border-left: 3px solid var(--brand-light);
    color: var(--text-white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0 6px 6px 0;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 4rem;
    /* Font thoda bada kiya impact ke liye */
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    /* Drop shadow for depth */
}

/* Gradient Text Effect */
.hero-title span {
    background: linear-gradient(135deg, var(--brand-light), #8bb4f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Breadcrumb - Glassmorphism Effect */
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    margin: 0;
}

.breadcrumb a {
    color: var(--text-muted);
    font-weight: 500;
}

.breadcrumb a:hover {
    color: var(--brand-light);
}

@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
       3. PRODUCTS SECTION
       ============================================= */
.products-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.sub-heading {
    display: block;
    color: var(--brand-blue);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
}

/* Grid System */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* --- Service Card Design --- */
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 45px 35px;
    border-radius: 16px;
    position: relative;
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
}

/* Glow Effect on Hover */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(22, 82, 158, 0.2), transparent 45%);
    opacity: 0;
    transition: 0.4s;
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
    opacity: 1;
}

/* Icon Box */
.icon-box {
    width: 65px;
    height: 65px;
    background: rgba(22, 82, 158, 0.1);
    border: 1px solid rgba(22, 82, 158, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--brand-blue);
    margin-bottom: 25px;
    transition: 0.4s;
}

.service-card:hover .icon-box {
    background: var(--brand-blue);
    color: #fff;
    border-color: var(--brand-blue);
    transform: rotateY(180deg);
}

.service-card h5 {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

/* Link Styling */
.card-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.card-link i {
    font-size: 0.8rem;
    color: var(--brand-blue);
    transition: 0.3s;
}

.card-link:hover {
    color: var(--brand-light);
}

.card-link:hover i {
    transform: translateX(5px);
    color: var(--brand-light);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-section {
        height: auto;
        padding-top: 120px;
        /* Mobile par thoda extra gap */
        padding-bottom: 60px;
    }

    .hero-tag {
        font-size: 0.75rem;
    }

    .products-section {
        padding: 60px 0;
    }

    .main-heading {
        font-size: 2rem;
    }
}