/* PayNet Global Styles - Based on Logo Colors */
:root {
    /* Primary Colors - From PayNet Logo */
    --primary: #4A1A7A;          /* Deep Purple from "Pay" */
    --primary-light: #6B2D9E;    /* Lighter Purple */
    --primary-dark: #3A1060;     /* Darker Purple */
    
    /* Accent Colors - From Logo Arrows */
    --accent: #3a1060;           /* Cyan/Teal from arrows */
    --accent-light: #3a1060;     /* Lighter Cyan */
    --accent-dark: #3a1060;      /* Darker Cyan */
    
    /* Secondary */
    --secondary: #1B4B8A;        /* Blue from "Net" */
    --secondary-light: #2563EB;
    
    /* Neutrals */
    --dark: #1A1A2E;
    --dark-light: #2D2D44;
    --gray: #64748B;
    --gray-light: #94A3B8;
    --gray-lighter: #E2E8F0;
    --white: #FFFFFF;
    --bg-light: #F8FAFC;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #4A1A7A 0%, #1B4B8A 50%, #3a1060 100%);
    --gradient-purple: linear-gradient(135deg, #4A1A7A 0%, #6B2D9E 100%);
    --gradient-cyan: linear-gradient(135deg, #3a1060 0%, #3a1060 100%);
    --gradient-mixed: linear-gradient(135deg, #4A1A7A 0%, #3a1060 100%);
    
    /* Shadows */
    --card-shadow: 0 10px 40px rgba(74, 26, 122, 0.12);
    --card-shadow-hover: 0 20px 60px rgba(74, 26, 122, 0.2);
    --btn-shadow: 0 4px 15px rgba(74, 26, 122, 0.3);
    --btn-shadow-hover: 0 8px 25px rgba(74, 26, 122, 0.4);
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--dark);
    color: var(--white);
    padding: 10px 0;
        display: none;
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 30px;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left i {
    color: var(--accent);
}

.top-bar-right {
    display: flex;
    gap: 15px;
}

.top-bar-right a {
    color: var(--white);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.top-bar-right a:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
        padding: 10px 0px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 55px;
    width: auto;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-item {
    position: relative;
    padding: 10px 15px;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-item:hover {
    background: rgba(74, 26, 122, 0.05);
    color: var(--primary);
}

.nav-item.active {
    color: var(--primary);
}

.nav-item i {
    margin-left: 5px;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-item:hover i {
    transform: rotate(180deg);
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 130%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--card-shadow-hover);
    padding: 30px;
    min-width: 1000px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    border: 1px solid var(--gray-lighter);
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mega-menu-section h4 {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray-lighter);
    display: flex;
    align-items: center;
    gap: 8px;
}

.mega-menu-section h4 i {
    font-size: 1.1rem;
    color: var(--accent);
}

.mega-menu-item {
    display: flex;
    align-items: center;
    gap: 5px;
    /* padding: 12px; */
    border-radius: 10px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.mega-menu-item:hover {
    background: linear-gradient(135deg, rgba(74, 26, 122, 0.05), rgba(0, 180, 216, 0.05));
    transform: translateX(5px);
}

.mega-menu-item-icon {
    width: 70px;
    height: 70px;
    /* background: linear-gradient(135deg, rgba(74, 26, 122, 0.1), rgba(0, 180, 216, 0.1)); */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.mega-menu-item-content h5 {
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 3px;
}

.mega-menu-item-content p {
    font-size: 0.8rem;
    color: var(--gray);
}

/* Header CTA */
.header-cta {
    display: flex;
    gap: 15px;
}

/* Buttons */
.btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: var(--btn-shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--btn-shadow-hover);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: white;
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-1 {
     background: white;
}

.hero-slide-2 {
    background: linear-gradient(135deg, #1A1A2E 0%, #4A1A7A 100%);
}

.hero-slide-3 {
    background: linear-gradient(135deg, #3a1060 0%, #4A1A7A 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
        margin-top: 120px;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 600px;
        margin-top: 90px;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease;
}

.hero-badge i {
    color: var(--accent-light);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title span {
    color: var(--accent-light);
}

.hero-description {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 35px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-image {
    position: absolute;
    right: 0%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    max-width: 100%;
    display: flex;
    justify-content: center;
}
.hero-img-element {
    max-width: 100%;
    max-height: 770px; /* Limits height so it fits in slider */
    width: auto;
    object-fit: contain;
    /* Add the floating animation to the image */
    animation: none !important;
    /* Optional: Drop shadow to make product pop */
    filter: none !important;
}

.hero-device {
    width: 400px;
    height: 500px;
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    display: none;
    align-items: center;
    justify-content: center;
    animation: float 4s ease-in-out infinite;

}

/* ============================================
   SLIDE 3 OVERRIDES (White Theme)
   ============================================ */
.hero-slide-3 {
    background: white; /* Force White Background */
}

/* Text color dark karein */
.hero-slide-3 .hero-text,
.hero-slide-3 .hero-title,
.hero-slide-3 .hero-description {
    color: var(--dark);
}

.hero-slide-1 .hero-text,
.hero-slide-1 .hero-title,
.hero-slide-1 .hero-description {
    color: var(--dark);
}
.hero-slide-1 .hero-badge {
    background: rgba(74, 26, 122, 0.1);
    color: var(--primary);
    border: 1px solid rgba(74, 26, 122, 0.2);
}
.hero-slide-1 .hero-badge i {
    color: var(--primary);
}
/* Badge ko adjust karein taake white pe nazar aye */
.hero-slide-3 .hero-badge {
    background: rgba(74, 26, 122, 0.1);
    color: var(--primary);
    border: 1px solid rgba(74, 26, 122, 0.2);
}

.hero-slide-3 .hero-badge i {
    color: var(--primary);
}

/* Background shapes ko thora visible karein white pe */
.hero-slide-3 .hero-shape {
    display: none !important;
    background: var(--primary);
    opacity: 0.05;
}

/* Slide 3 ki headings mein span color (blue/cyan) same rahega */
.hero-slide-3 .hero-title span {
    color: var(--accent); 
}
@media (max-width: 992px) {
    .hero-image {
        display: none; /* Hide images on mobile/tablet to save space */
    }
}

.hero-device i {
    font-size: 8rem;
    color: rgba(255,255,255,0.3);
}

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

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    top: -100px;
    right: -100px;
    animation: pulse 8s ease infinite;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--white);
    bottom: -50px;
    left: 20%;
    animation: pulse 6s ease infinite 1s;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    background: var(--accent-light);
    top: 10%;
    left: 40%;
    animation: pulse 7s ease infinite 0.5s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.15; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--white);
    width: 40px;
    border-radius: 6px;
}

.slider-arrows {
    position: absolute;
    bottom: 40px;
    right: 5%;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    background: var(--white);
    color: var(--primary);
}
/* ============================================
   PARTNERS BAR (Updated)
   ============================================ */
.partners-bar {
    background: var(--white);
    padding: 60px 0 !important; /* Padding thordi barha di taake khula lagay */
    border-bottom: 1px solid var(--gray-lighter);
}

.partners-title {
    text-align: center;
    font-size: 24px !important; /* Font size thorda bara kiya */
    font-weight: 600;   /* Light bold (not too heavy) */
    color: #000000; /* Color thorda dark kiya taake prominent ho */
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    font-family: 'Space Grotesk', sans-serif;
}

.partners-logos {
    display: flex;
    justify-content: space-between; /* Logos ke beech barabar gap */
    align-items: center;
    gap: 50px !important;
    flex-wrap: nowrap; /* Ek hi line mein rakhne ke liye */
    max-width: 1200px;
    margin: 0 auto;
}

.partners-logos img {
    height: 120px; /* Logos ki height control */
    width: auto;
    object-fit: contain;
   
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Hover par logo color wapis aa jaye aur thorda uthay */
.partners-logos img:hover {
     filter: grayscale(100%); /* Black & White effect for professional look */
    opacity: 1;
    transform: translateY(-3px);
}

/* Mobile ke liye adjustment: Agar screen bohat choti ho to logos chotay ho jayen par line mein rahein */
@media (max-width: 768px) {
    .partners-logos {
        gap: 15px;
        overflow-x: auto; /* Agar screen bohat choti ho to scroll aa jaye, layout na tooty */
        padding-bottom: 10px;
    }
    
    .partners-logos img {
        height: 80px; /* Mobile pe chota size */
    }
    
    .partners-title {
        font-size: 1.1rem;
    }
}
/* ============================================
   PRODUCT SLIDER
   ============================================ */
.product-slider-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.product-slider-wrapper {
    margin-top: 50px;
}

.product-slider {
    display: flex;
    transition: transform 0.6s ease;
    gap: 30px;
}
/* Dots Container Styling */


.product-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    animation: fadeIn 0.6s ease;
}

.product-slide.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.product-card-featured {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-featured:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-10px);
}

.product-image-wrapper {
    height: 280px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image-wrapper::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    top: -150px;
    right: -150px;
}

.product-image-placeholder {
    font-size: 120px;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.product-info {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-grow: 1;
}

.product-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    width: fit-content;
}

.product-name {
    font-size: 2rem;
    color: var(--dark);
    margin: 0;
}

.product-category {
    color: var(--gray);
    font-size: 1rem;
    margin: 0;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--dark);
}

.feature-item i {
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.product-slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.product-slider-dots {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.product-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-lighter);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-dot:hover {
    background: var(--accent-light);
}

.product-dot.active {
    background: var(--accent);
    width: 12px;
    height: 12px;
}

.product-slider-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.product-slider-arrow:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.product-slider-arrow.next {
    transform: rotate(180deg);
}

.product-slider-arrow.next:hover {
    transform: scale(1.1) rotate(180deg);
}

/* ============================================
   PAGE HERO (For Inner Pages)
   ============================================ */
.page-hero {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
     background-image:
       linear-gradient(90deg, #1a1a2e 40%, rgb(26 16 51 / 21%) 97%, rgba(26, 16, 51, 0) 100%), url(../images/hero-general.png);

    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    opacity: 1;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    color: var(--white);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb i {
    font-size: 0.7rem;
    opacity: 0.5;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-hero h1 span {
    color: #fff;
}

.page-hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin: 0 auto;
}

/* ============================================
   PARTNERS BAR
   ============================================ */
/* .partners-bar {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-lighter);
}

.partners-title {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partner-logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray);
    opacity: 0.6;
    transition: all 0.3s ease;
    cursor: pointer;
}

.partner-logo-text:hover {
    opacity: 1;
}

.partner-logo-text.visa { color: #1A1F71; }
.partner-logo-text.mastercard { color: #EB001B; }
.partner-logo-text.unionpay { color: #D50032; }
.partner-logo-text.paypal { color: #003087; } */

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(74, 26, 122, 0.1), rgba(0, 180, 216, 0.1));
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-badge i {
    color: var(--accent);
}

.section-title {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-title span {
        background: #3a1060;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.categories {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-mixed);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(74, 26, 122, 0.1), rgba(0, 180, 216, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.4s ease;
}

.category-card:hover .category-icon {
    background: var(--gradient-mixed);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.category-card p {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.category-link i {
    transition: transform 0.3s ease;
}

.category-card:hover .category-link i {
    transform: translateX(5px);
}

/* ============================================
   PRODUCTS SECTION (FINAL FIXED VERSION)
   ============================================ */
.products {
    padding: 70px 0 50px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

/* Background Glow */
.products::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    opacity: 0.3;
    pointer-events: none;
}

.products .section-title { color: #ffffff; }
.products .section-subtitle { color: #94a3b8; }
.products .section-badge { background: rgba(255,255,255,0.1); color: #ffffff; }

/* SLIDER CONTAINER */
.products-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 10px;
    
    /* Default behavior: Smooth Snap */
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    
    scrollbar-width: none;
    cursor: grab; /* Hath ka nishan dikhayega */
}
.products-slider.active {
    cursor: grabbing; /* Band muthi ka nishan */
    scroll-snap-type: none; /* Drag karte waqt snap band karein taake atkay nahi */
    scroll-behavior: auto;  /* Instant movement for dragging */
}
.products-slider::-webkit-scrollbar {
    display: none;
}
.products-slider::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}

/* PRODUCT CARD (Clickable Anchor) */
.product-card {
    display: block; /* Anchor tag ko box banana zaroori hai */
    text-decoration: none; /* Link underline khatam */
    
    /* Mobile Layout: 1 Card + Thora sa next */
    min-width: 85%;
    flex: 0 0 85%;
    
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    scroll-snap-align: center; /* Center snap on mobile */
    position: relative;
    
    /* Visuals */
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Desktop Logic: Show Exactly 3 Cards */
/* Formula: (100% width - (Gap * 2)) / 3 */
@media (min-width: 1024px) {
    .product-card {
        min-width: calc((100% - 60px) / 3);
        flex: 0 0 calc((100% - 60px) / 3);
        scroll-snap-align: start; /* Desktop pe left align snap behtar hai */
    }
}

/* Tablet Logic: 2 Cards */
@media (min-width: 768px) and (max-width: 1023px) {
    .product-card {
        min-width: calc((100% - 30px) / 2);
        flex: 0 0 calc((100% - 30px) / 2);
        scroll-snap-align: start;
    }
}

/* Hover Effects */
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--primary);
}

/* IMAGE Styling */
.product-image {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}
.product-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.product-card:hover .product-image img {
    transform: scale(1.05);
}
.product-image-placeholder {
    width: 100%; height: 100%;
    background: #f1f5f9; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem; color: #cbd5e1;
}

/* TEXT Styling (Fix for Anchor Tag colors) */
.product-card h3 {
    color: #1e293b; /* Dark Slate */
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.product-card p {
    color: #64748b; /* Gray */
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* FEATURES Styling */
.product-features {
    display: flex;       /* Grid hata kar Flex lagaya */
    flex-wrap: wrap;     /* Agar jagah kam ho to neechay aye */
    gap: 8px;
    
}

.product-feature {
    background: #f1f5f9;
    color: #475569;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap; /* Text ko tootne se bachaye */
    width: auto;         /* Full width hone se rokay */
    flex: 0 0 auto;      /* Isay grow hone se rokay */
}
/* BADGE Styling */
.product-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--accent);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* DOTS NAVIGATION */
.slider-arrows-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Arrows ke beech gap */
    margin-top: 30px;
}

/* 3. Arrow Styling (Purple Circle jaisa image mein hai) */
.slider-arrow {

    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px); /* Optional: Blur effect */
}

/* Hover Effect */
.slider-arrow:hover {
    transform: scale(1.1); /* Thora sa zoom ho */
    box-shadow: 0 5px 15px rgba(74, 26, 122, 0.3);
}

/* Click Effect */
.slider-arrow:active {
    transform: scale(0.95);
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);

}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.benefit-card.featured {
     background-image:
        linear-gradient(
            90deg,
            rgba(26, 16, 51, 0.95) 0%,
            rgba(26, 16, 51, 0.85) 55%,
            rgba(26, 16, 51, 0.086) 100%
        ),
        url("../images/hero-general.png"); /* apni image ka path */

    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    color: var(--white);
    grid-column: span 2;
    display: flex;
    align-items: center;
    gap: 40px;
}
.benefit-card.featured > .benefit-icon {
    display: none;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(74, 26, 122, 0.1), rgba(0, 180, 216, 0.1));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-card.featured .benefit-icon {
    background: rgba(255,255,255,0.2);
    color: var(--white);
    width: 80px;
    height: 80px;
    font-size: 2rem;
    flex-shrink: 0;
    margin-bottom: 0;
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
}

.benefit-card.featured p {
    color: rgba(255,255,255,0.9);
}

.benefit-highlight {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: linear-gradient(135deg, rgba(74, 26, 122, 0.03), rgba(0, 180, 216, 0.03));
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--gray-lighter);
}

.service-card:hover {
    background: var(--white);
    box-shadow: var(--card-shadow);
    transform: translateY(-8px);
    border-color: transparent;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(74, 26, 122, 0.1), rgba(0, 180, 216, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #4a1a7a;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(10deg);
}

.service-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
    padding: 80px 0;
        background: #f0f0f0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    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.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1a1a2e;

    font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    color: #1a1a2e;

}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    padding: 100px 0;
    background: var(--white);
}

.cta-card {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    border-radius: 30px;
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
 
    top: -200px;
    right: -100px;
    opacity: 0.4;
}

.cta-content {
    max-width: 500px;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--gray-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo img {
    height: 50px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
        background: white;
    transform: translateY(-3px);
    color: #1a1a2e;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-light);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.7rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover i {
    opacity: 1;
}

.footer-bottom {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* ============================================
   ABOUT PAGE SPECIFIC
   ============================================ */
.about-intro {
    padding: 100px 0;
    background: var(--white);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-intro-content .section-badge {
    display: inline-flex;
}

.about-intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--dark);
}

.about-intro-content h2 span {
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-intro-content p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    font-weight: 500;
}

.about-feature i {
    color: var(--accent);
    font-size: 1.2rem;
}

.about-intro-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
}

.about-image-placeholder {
    width: 100%;
    height: 450px;
    background: var(--gradient-mixed);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: rgba(255,255,255,0.3);
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    padding: 25px 35px;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    text-align: center;
}

.about-image-badge .badge-number {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
}

.about-image-badge .badge-text {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Space Grotesk', sans-serif;
}

/* Vision Mission */
.vision-mission {
    padding: 100px 0;
    background: var(--bg-light);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vm-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
}

.vm-card:hover {
    transform: translateY(-10px);
}

.vm-card.vision {
    border-top: 4px solid var(--primary);
}

.vm-card.mission {
    border-top: 4px solid var(--accent);
}

.vm-card.values {
    border-top: 4px solid var(--secondary);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-mixed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 25px;
}

.vm-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.vm-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* Focus Areas */
.focus-areas {
    padding: 100px 0;
    background: var(--white);
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.focus-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.focus-card:hover {
    background: var(--white);
    box-shadow: var(--card-shadow);
    transform: translateY(-5px);
}

.focus-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(74, 26, 122, 0.1);
    font-family: 'Space Grotesk', sans-serif;
}

.focus-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-mixed);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin: 0 auto 20px;
}

.focus-card h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.focus-card p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Partners Section */
.partners-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
}

.partner-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
}

.partner-logo-large {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.partner-logo-large.mc { color: #EB001B; }
.partner-logo-large.up { color: #D50032; }
.partner-logo-large.pp { color: #003087; }
.partner-logo-large.bop { color: #1E3A5F; }
.partner-logo-large.fbl { color: #00A651; }

.partner-card h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.partner-card p {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ============================================
   PRODUCTS PAGE SPECIFIC
   ============================================ */
.products-page {
    padding: 100px 0;
    background: var(--white);
}

.products-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 25px;
    border-radius: 50px;
    border: 2px solid var(--gray-lighter);
    background: transparent;
    color: var(--gray);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card-large {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
}

.product-card-large:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
}

.product-card-large .product-image-large {
    height: 240px;
    background: var(--gradient-mixed);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(255,255,255,0.4);
}

.product-card-large .product-content {
    padding: 30px;
}

.product-card-large h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.product-card-large p {
    color: var(--gray);
    margin-bottom: 20px;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.product-spec {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-light);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--gray);
}

.product-spec i {
    color: var(--accent);
}

/* ============================================
   SOLUTIONS PAGE SPECIFIC
   ============================================ */
.solutions-page {
    padding: 100px 0;
    background: var(--white);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.solution-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
}

.solution-image {
    height: 200px;
    background: var(--gradient-mixed);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255,255,255,0.4);
}

.solution-content {
    padding: 30px;
}

.solution-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.solution-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

/* ============================================
   SERVICES PAGE SPECIFIC
   ============================================ */
.services-page {
    padding: 100px 0;
    background: var(--white);
}

.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-detailed-card {
    display: flex;
    gap: 25px;
    padding: 35px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
}

.service-detailed-card:hover {
    transform: translateY(-5px);
}

.service-detailed-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-mixed);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    flex-shrink: 0;
}

.service-detailed-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.service-detailed-content p {
    color: var(--gray);
    margin-bottom: 15px;
}

.service-features-list {
    list-style: none;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.service-features-list li i {
    color: var(--accent);
    font-size: 0.8rem;
}

/* ============================================
   CONTACT PAGE SPECIFIC
   ============================================ */
.contact-page {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.contact-info p {
    color: var(--gray);
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-mixed);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    flex-shrink: 0;
}

.contact-item-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-item-content p {
    color: var(--gray);
    margin-bottom: 0;
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 24px;
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--gray-lighter);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-card.featured {
        grid-column: span 2;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .focus-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-image {
        display: none;
    }

    .hero-text {
        max-width: 100%;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 50px;
    }

    .cta-buttons {
        justify-content: center;
    }

    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-detailed-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }

    .hero-slider {
        height: 500px;
    }
    .hero-text{
        margin-top: 30px !important;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-content{
        margin-top: 50px;
    }

    .section-title {
        font-size: 2rem;
    }
    .header-cta a.btn.btn-primary {
    display: none;
}
.hero-shape{
    display: none;
}
    .page-hero h1 {
        font-size: 2.2rem;
    }
    .btn {

    padding: 10px 20px;


    font-size: 13px;
    }
     .cta-image{
        display: none;
     }
     .cta-content{
        padding-bottom: 20px !important;
     }
.cta-card{

    padding: 20px !important;
}
.cta-content h2 {
    font-size: 30px;
}
    .categories-grid,
    .benefits-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card.featured {
        grid-column: span 1;
        flex-direction: column;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .focus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 30px;
    }

    .product-name {
        font-size: 1.6rem;
    }

    .product-card-featured {
        max-width: 100%;
    }

    .product-slider-nav {
        gap: 15px;
    }

    .product-slider-arrow {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .focus-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .product-info {
        padding: 25px 20px;
    }

    .product-name {
        font-size: 1.4rem;
    }

    .product-features {
        gap: 10px;
        padding: 15px 0;
    }

    .feature-item {
        font-size: 0.85rem;
    }

    .product-slider-nav {
        gap: 10px;
    }

    .product-slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    .logo img {
    height: 45px;
    width: auto;
}
}
.cta-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 80px 0px 80px;
    border-radius: 28px;
    overflow: visible; /* 👈 MOST IMPORTANT */
}

/* LEFT CONTENT */
.cta-content {
    max-width: 600px;
    z-index: 2;
        padding-bottom: 80px;
}

/* RIGHT IMAGE */
.cta-image {
    position: absolute;
    right: 80px;
    bottom: 0;
    z-index: 1;
}

/* IMAGE STYLE */
.cta-image img {
    height: 550px;
    width: auto;
    object-fit: contain;
    transform: translateY(5px); /* 👈 head top se bahar */
}
img.about-image {
    border-radius: 16px;
    height: 600px;
}
@media (max-width: 768px) {
    .cta-card::before {
        display: none !important;
    }
}


/* ============================================
   NEW CLEAN MOBILE NAVIGATION - CSS ONLY
   ============================================ */

/* Desktop Navigation - Always Visible */
.desktop-nav {
    display: flex !important;
}

/* Mobile Navigation - Hidden by Default */
.mobile-nav {
    display: none !important;
}

/* ============================================
   MOBILE RESPONSIVE (< 992px)
   ============================================ */

@media screen and (max-width: 992px) {
    
    /* Hide Desktop Nav, Show Mobile Nav */
    .desktop-nav {
        display: none !important;
    }
    
    .mobile-nav {
        display: flex !important;
        position: fixed !important;
        top: 80px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: var(--white) !important;
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        z-index: 1000;
        transition: max-height 0.4s ease-in-out;
    }

    /* Mobile Nav Active State */
    .mobile-nav.active {
        max-height: 100vh !important;
        overflow-y: auto !important;
    }

    /* ============================================
       MOBILE NAV ITEMS STYLING
       ============================================ */
    
    .nav-item-mobile {
        display: block !important;
        width: 100% !important;
        padding: 15px 20px !important;
        border-bottom: 1px solid var(--gray-lighter) !important;
        color: var(--dark) !important;
        font-weight: 500 !important;
        font-size: 1rem !important;
        text-decoration: none !important;
        transition: all 0.2s ease !important;
    }

    .nav-item-mobile:hover {
        background: white !important;
       
    }

    /* ============================================
       PRODUCTS DROPDOWN (ACCORDION STYLE)
       ============================================ */
    
    .products-dropdown {
        padding: 0 !important;
    }

    .dropdown-header {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 15px 20px !important;
        border-bottom: 1px solid var(--gray-lighter) !important;
        background: white !important;
        cursor: pointer !important;
        font-weight: 600 !important;
        color: var(--primary) !important;
        transition: all 0.2s ease !important;
    }

    .dropdown-header:hover {
        background: white !important;
    }

    .dropdown-header i {
        font-size: 0.7rem !important;
        transition: transform 0.3s ease !important;
        color: var(--accent) !important;
    }
    .nav-item-mobile.products-dropdown {
    padding: 0px !important;
}

    /* Chevron Rotation on Open */
    .products-dropdown.open .dropdown-header i {
        transform: rotate(180deg) !important;
    }

    /* Dropdown Content - Hidden by Default */
    .dropdown-content {
        display: none !important;
        max-height: 0 !important;
        overflow: hidden !important;
        background:white !important
        transition: all 0.3s ease !important;
    }

    /* Dropdown Content - Visible When Open */
    .products-dropdown.open .dropdown-content {
        display: block !important;
        max-height: 500px !important;
    }

    /* Individual Dropdown Items */
    .dropdown-item {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        padding: 12px 20px !important;
        border-bottom: 1px solid #f0f0f0 !important;
        color: var(--dark) !important;
        text-decoration: none !important;
        transition: all 0.2s ease !important;
        font-size: 0.95rem !important;
    }

    .dropdown-item:last-child {
        border-bottom: none !important;
    }

    .dropdown-item i {
        font-size: 0.7rem !important;
        color: var(--accent) !important;
        opacity: 0 !important;
        transition: all 0.2s ease !important;
    }

    .dropdown-item:hover {
        background: rgba(74, 26, 122, 0.08) !important;
        padding-left: 30px !important;
    }

    .dropdown-item:hover i {
        opacity: 1 !important;
    }

    /* ============================================
       MOBILE HAMBURGER BUTTON
       ============================================ */
    
    .mobile-menu-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: none !important;
        border: none !important;
        font-size: 1.5rem !important;
        color: var(--dark) !important;
        cursor: pointer !important;
        z-index: 1001 !important;
        transition: all 0.3s ease !important;
    }

    .mobile-menu-btn:active {
        transform: scale(0.95);
    }

    /* ============================================
       HIDE GET STARTED & LOGIN ON MOBILE
       ============================================ */
    
    .header-cta {
        display: none !important;
    }

    /* ============================================
       SCROLLBAR STYLING FOR MOBILE NAV
       ============================================ */
    
    .mobile-nav::-webkit-scrollbar {
        width: 6px;
    }

    .mobile-nav::-webkit-scrollbar-track {
        background: transparent;
    }

    .mobile-nav::-webkit-scrollbar-thumb {
        background: rgba(74, 26, 122, 0.3);
        border-radius: 3px;
    }

    .mobile-nav::-webkit-scrollbar-thumb:hover {
        background: rgba(74, 26, 122, 0.5);
    }
}

/* ============================================
   TABLET ADJUSTMENTS (768px - 992px)
   ============================================ */

@media screen and (max-width: 768px) {
    
    .nav-item-mobile {
        padding: 12px 15px !important;
    }

    .dropdown-header {
        padding: 12px 15px !important;
    }

    .dropdown-item {
        padding: 10px 15px !important;
        gap: 10px !important;
    }

    .dropdown-item:hover {
        padding-left: 25px !important;
    }
}

/* ============================================
   SMALL PHONES (< 480px)
   ============================================ */

@media screen and (max-width: 480px) {
    .slider-arrows {
        display: none !important;
    }
    .slider-nav {
        display: none !important;
    }
    .nav-item-mobile {
        padding: 10px 12px !important;
        font-size: 0.95rem !important;
    }

    .dropdown-header {
        padding: 10px 12px !important;
        font-size: 0.95rem !important;
    }

    .dropdown-item {
        padding: 8px 12px !important;
        gap: 8px !important;
        font-size: 0.9rem !important;
    }

    .dropdown-item:hover {
        padding-left: 20px !important;
    }
}


.form-message {
        padding: 15px 20px;
        border-radius: 8px;
        margin-bottom: 20px;
        display: none;
        animation: slideDown 0.3s ease;
    }

    .form-message.success {
        background: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
        display: block;
    }

    .form-message.error {
        background: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
        display: block;
    }

    .error-message {
        display: block;
        color: #e74c3c;
        font-size: 0.85rem;
        margin-top: 5px;
        display: none;
    }

    .error-message.show {
        display: block;
    }

    .form-group input:invalid,
    .form-group textarea:invalid {
        border-color: #e74c3c;
    }

    #submitBtn:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


