/* 
 * Rashna Digital Solutions Pvt. Ltd.
 * Premium Core Design System
 */

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

:root {
    /* Color Palette - Ultra Premium Light Mode */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.8);
    --border-color: rgba(15, 23, 42, 0.08);
    
    --brand-primary: #4f46e5;      /* Indigo */
    --brand-primary-glow: rgba(79, 70, 229, 0.08);
    --brand-secondary: #0ea5e9;    /* Sky/Cyan */
    --brand-accent: #10b981;       /* Emerald Green */
    --brand-accent-glow: rgba(16, 185, 129, 0.08);
    
    --text-primary: #0f172a;       /* Slate 900 */
    --text-secondary: #475569;     /* Slate 600 */
    --text-muted: #94a3b8;         /* Slate 400 */
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(79, 70, 229, 0.3);

    /* Dynamic Fluid Typography & Scaling Sizing */
    --fs-hero-title: clamp(2rem, 5.5vw + 0.6rem, 3.75rem);
    --fs-section-title: clamp(1.65rem, 4vw + 0.5rem, 2.5rem);
    --fs-card-title: clamp(1.15rem, 2.5vw + 0.1rem, 1.45rem);
    --fs-body: clamp(0.85rem, 0.8vw + 0.5rem, 1rem);
    --fs-small: clamp(0.72rem, 0.6vw + 0.4rem, 0.85rem);
    --fs-btn: clamp(0.85rem, 1vw + 0.4rem, 1rem);

    /* Dynamic Fluid Layout Spacing */
    --space-section: clamp(3.5rem, 8vw, 7rem);
    --space-grid-gap: clamp(1rem, 2.5vw, 2rem);
    --space-card-padding: clamp(1.25rem, 3.5vw, 2.5rem);
}

/* Reset & Base Styles */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    position: relative;
}

/* Background Glowing Blobs */
body::before, body::after {
    content: '';
    position: absolute;
    width: 40vw;
    height: 40vw;
    border-radius: 50%;
    z-index: -1;
    filter: blur(150px);
    opacity: 0.06;
    pointer-events: none;
}

body::before {
    top: 5%;
    left: -10%;
    background: radial-gradient(circle, var(--brand-primary) 0%, transparent 70%);
}

body::after {
    top: 55%;
    right: -10%;
    background: radial-gradient(circle, var(--brand-secondary) 0%, transparent 70%);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.text-gradient-indigo-cyan {
    background: linear-gradient(135deg, #a5b4fc 0%, #6366f1 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-emerald {
    background: linear-gradient(135deg, #34d399 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header & Navbar */
.main-header {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.85rem 2rem;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

.header-call-btn {
    background: linear-gradient(135deg, var(--brand-accent) 0%, #059669 100%);
    color: white;
    padding: 0.65rem 1.35rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.15);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.25);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.btn-nav {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    color: white !important;
    padding: 0.6rem 1.25rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 50px;
    position: relative;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(79, 70, 229, 0.05);
    border: 1px solid rgba(79, 70, 229, 0.12);
    color: var(--brand-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-badge span {
    width: 8px;
    height: 8px;
    background-color: var(--brand-secondary);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--brand-secondary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.5; }
}

.hero-title {
    font-size: var(--fs-hero-title);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: var(--fs-body);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: var(--fs-btn);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.5);
}

.btn-secondary {
    background: #f8fafc;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: #f1f5f9;
    transform: translateY(-3px);
    border-color: rgba(79, 70, 229, 0.25);
}

.hero-graphic {
    position: relative;
    display: flex;
    justify-content: center;
}

.glass-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.glass-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 100%);
    pointer-events: none;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: #f8fafc;
    border: 1px solid var(--border-color);
}

.stat-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.15rem;
}

.stat-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Sections Base */
.section {
    padding: var(--space-section) 0;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem auto;
}

.section-subtitle {
    text-transform: uppercase;
    font-size: var(--fs-small);
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--brand-secondary);
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-size: var(--fs-section-title);
    margin-bottom: 1.25rem;
}

.section-desc {
    color: var(--text-secondary);
    font-size: var(--fs-body);
}

.sectors-section-full {
    max-width: 1600px !important;
}

/* Sectors Grid */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-grid-gap);
    justify-content: center;
}

@media (min-width: 1200px) {
    .sectors-grid {
        grid-template-columns: repeat(5, 1fr) !important;
        gap: 1.25rem;
    }
    
    .sector-card {
        padding: 2rem 1.15rem !important; /* Maximizes card interior for wide content */
    }
    
    .sector-card li {
        font-size: 0.82rem !important; /* Perfect crisp font scaling so list items don't wrap */
    }
}

.sector-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
}

.sector-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand-primary);
    box-shadow: 0 25px 50px -12px rgba(79, 70, 229, 0.08), 0 0 0 1px rgba(79, 70, 229, 0.05);
}

.sector-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.06) 0%, rgba(16, 185, 129, 0.06) 100%);
    border: 1px solid rgba(79, 70, 229, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.sector-card:hover .sector-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
}

.sector-card h3 {
    font-size: var(--fs-card-title);
    margin-bottom: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.sector-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sector-card li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    line-height: 1.35;
}

.sector-card li::before {
    content: '✓';
    color: var(--brand-accent);
    font-weight: 800;
    background: rgba(16, 185, 129, 0.08);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
    margin-top: 2px;
    font-weight: bold;
}

/* Segment Columns (Businesses vs Candidates Benefits) */
.benefits-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.benefit-block {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: var(--space-card-padding);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
}

.benefit-block-business {
    border-left: 4px solid var(--brand-primary);
}

.benefit-block-candidate {
    border-left: 4px solid var(--brand-accent);
}

.benefit-block h3 {
    font-size: clamp(1.35rem, 3.2vw + 0.2rem, 1.85rem);
    margin-bottom: 1.5rem;
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.benefit-list li {
    display: flex;
    gap: 1rem;
}

.benefit-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-block-business .benefit-check {
    background: rgba(79, 70, 229, 0.1);
    color: var(--brand-primary);
}

.benefit-block-candidate .benefit-check {
    background: rgba(16, 185, 129, 0.1);
    color: var(--brand-accent);
}

.benefit-item-content h4 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.benefit-item-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Leads Form Hub Section */
.form-hub {
    background: radial-gradient(circle at top, rgba(79, 70, 229, 0.08) 0%, transparent 60%);
}

.form-card {
    max-width: 760px;
    margin: 0 auto;
}

.form-tabs {
    display: flex;
    background: #f1f5f9;
    border: 1px solid var(--border-color);
    padding: 0.5rem;
    border-radius: 16px;
    margin-bottom: 2.5rem;
    gap: 0.5rem;
}

.tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 1rem;
    border-radius: 12px;
    font-size: var(--fs-btn);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn.active[data-form="business"] {
    background: var(--brand-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.tab-btn.active[data-form="candidate"] {
    background: var(--brand-accent);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

/* Forms Content Container */
.form-content {
    position: relative;
    min-height: 400px;
}

.lead-form-el {
    display: none;
    animation: fadeInUp 0.4s ease forwards;
}

.lead-form-el.active {
    display: block;
}

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

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group-full {
    grid-column: span 2;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: var(--fs-small);
    font-weight: 600;
    color: var(--text-secondary);
}

.form-input {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.85rem 1.2rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: var(--fs-body);
    transition: var(--transition-smooth);
    width: 100%;
}

.form-input:focus {
    outline: none;
    background: #ffffff;
    border-color: var(--brand-primary);
    box-shadow: 0 0 12px rgba(79, 70, 229, 0.1);
}

.lead-form-el[id="candidateForm"] .form-input:focus {
    border-color: var(--brand-accent);
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.1);
}

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

/* Premium Custom Styled Select Dropdown Wrapper */
.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
}

.custom-select-trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.85rem 1.2rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: var(--fs-body);
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 100%;
}

.custom-select-trigger span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 0.5rem;
    flex: 1;
    text-align: left;
}

.custom-select-trigger:hover {
    background: #f1f5f9;
    border-color: rgba(16, 185, 129, 0.3);
}

.custom-select-wrapper.open .custom-select-trigger {
    border-color: var(--brand-accent);
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.1);
    background: #ffffff;
}

.custom-select-arrow {
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.custom-select-wrapper.open .custom-select-arrow {
    transform: rotate(180deg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}

/* Options Dropdown Box Overlay - Absolutely Positioned for ALL Devices */
.custom-select-options {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
    overflow-y: auto;
    max-height: 240px;
}

/* Custom Scrollbar for dropdown options box */
.custom-select-options::-webkit-scrollbar {
    width: 6px;
}
.custom-select-options::-webkit-scrollbar-track {
    background: transparent;
}
.custom-select-options::-webkit-scrollbar-thumb {
    background: rgba(15, 23, 42, 0.15);
    border-radius: 10px;
}

.custom-select-wrapper.open .custom-select-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-option {
    padding: 0.85rem 1.2rem;
    color: var(--text-secondary);
    font-size: var(--fs-body);
    cursor: pointer;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(15, 23, 42, 0.03);
}

.custom-option:last-child {
    border-bottom: none;
}

.custom-option:hover {
    background: rgba(16, 185, 129, 0.06);
    color: var(--brand-accent);
    padding-left: 1.5rem;
}

.custom-option.selected {
    background: rgba(16, 185, 129, 0.1);
    color: var(--brand-accent);
    font-weight: 600;
}

/* Mobile responsive padding and trigger size optimizations */
@media (max-width: 768px) {
    .custom-select-trigger span {
        font-size: clamp(0.75rem, 2.8vw, 0.95rem); /* Prevent wrapping to 2 lines */
    }

    .custom-option {
        padding: 1.05rem 1.2rem; /* Highly comfortable tap target for mobile touch */
    }
}





.char-counter {
    align-self: flex-end;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* File Upload Premium Style */
.file-drop-zone {
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    background: #f8fafc;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.file-drop-zone:hover, .file-drop-zone.dragover {
    border-color: var(--brand-accent);
    background: rgba(16, 185, 129, 0.03);
}

.file-drop-icon {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.file-drop-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.file-drop-text span {
    color: var(--brand-accent);
    font-weight: 600;
}

.file-drop-subtext {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
}

.file-input-hidden {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-preview {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--brand-accent);
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
}

/* AJAX Submit Response Message */
.submit-response {
    display: none;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 1.5rem;
    text-align: center;
    animation: fadeInUp 0.3s ease;
}

.submit-response.success {
    display: block;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34d399;
}

.submit-response.error {
    display: block;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

/* Contact Info cards */
.contact-section {
    background: radial-gradient(circle at bottom, rgba(6, 182, 212, 0.05) 0%, transparent 60%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    backdrop-filter: blur(10px);
}

.contact-info-card:hover {
    transform: translateX(5px);
    border-color: rgba(6, 182, 212, 0.3);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(6, 182, 212, 0.1);
    color: var(--brand-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.contact-info-content span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 0.15rem;
}

.contact-info-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Quick Form in contact */
.quick-box {
    padding: 3rem;
}

.quick-box p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Footer Section */
footer {
    border-top: 1px solid var(--border-color);
    background: #080b12;
    padding: 4rem 2rem 2rem 2rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-about h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.footer-about p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 320px;
}

.footer-links h4 {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--brand-secondary);
    padding-left: 4px;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Admin Dashboard CSS integration */
.admin-body {
    background-color: #07090e;
}

.admin-header {
    background: rgba(17, 24, 39, 0.8);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-title {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.admin-badge {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

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

.admin-container {
    max-width: 1440px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.admin-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.table-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    overflow: hidden;
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.table-header h3 {
    font-size: 1.25rem;
}

.btn-export {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.btn-export:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
}

.table-responsive {
    overflow-x: auto;
    width: 100%;
}

.leads-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.leads-table th {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 2px solid var(--border-color);
    padding: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.leads-table td {
    border-bottom: 1px solid var(--border-color);
    padding: 1rem;
    color: var(--text-secondary);
    vertical-align: middle;
}

.leads-table tr:hover td {
    background: rgba(255, 255, 255, 0.01);
}

.cv-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: #22d3ee;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
}

.cv-badge:hover {
    background: var(--brand-secondary);
    color: white;
}

.requirement-tooltip {
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    cursor: help;
}

/* Spinner Loader style for CTA */
.btn-loader {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    display: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Mobile App Nav & Header Quick Call Styles */
.header-right-app {
    display: none;
    align-items: center;
    gap: 1.25rem;
}

.mobile-call-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    overflow: hidden;
}

.call-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    border: 2px solid rgba(16, 185, 129, 0.5);
    animation: callPulse 1.8s infinite;
    pointer-events: none;
}

@keyframes callPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; }
}

.bottom-app-nav {
    display: none;
}

/* Touch active scale effect for true app feel */
.app-nav-item:active, .btn:active, .sector-card:active, .tab-btn:active, .contact-info-card:active {
    transform: scale(0.96) !important;
}

/* RESPONSIVE DESIGN & PREMIUM APP UI OVERLAYS */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-badge, .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .benefits-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Disable heavy glowing blobs to prevent horizontal overflow & lag */
    body::before, body::after {
        display: none !important;
    }

    /* Header & Navbar adjustments */
    .header-right-app {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0f1322;
        border-bottom: 1px solid var(--border-color);
        padding: 2rem;
        flex-direction: column;
        gap: 1.5rem;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .btn-nav {
        display: none !important; /* Managed by bottom app bar */
    }

    /* Floating bottom app navigation */
    .bottom-app-nav {
        display: flex;
        position: fixed;
        bottom: 1.25rem;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 480px;
        height: 72px;
        background: rgba(15, 21, 36, 0.88);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 24px;
        z-index: 9999;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255,255,255,0.1);
        justify-content: space-around;
        align-items: center;
        padding: 0 0.5rem;
        animation: slideUpAppNav 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    @keyframes slideUpAppNav {
        from { transform: translate(-50%, 100px); opacity: 0; }
        to { transform: translate(-50%, 0); opacity: 1; }
    }

    .app-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--text-secondary);
        font-family: var(--font-heading);
        text-align: center;
        flex: 1;
        height: 100%;
        border-radius: 16px;
        transition: var(--transition-smooth);
        padding: 0.25rem 0;
    }

    .app-nav-icon {
        font-size: 1.4rem;
        margin-bottom: 0.15rem;
        transition: var(--transition-smooth);
    }

    .app-nav-label {
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: -0.01em;
    }

    .app-nav-item.active {
        color: var(--brand-secondary);
    }

    .app-nav-item.active .app-nav-icon {
        transform: translateY(-2px);
        filter: drop-shadow(0 0 5px var(--brand-secondary));
    }

    /* Highlight Apply Now CTA in center */
    .app-nav-item.highlight {
        background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
        color: white !important;
        border-radius: 20px;
        max-height: 58px;
        align-self: center;
        margin: 0 0.25rem;
        box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .app-nav-item.highlight .app-nav-icon {
        font-size: 1.25rem;
    }

    /* Page Elements Styling Refinements */
    .section {
        padding: 4.5rem 1.25rem;
    }

    .hero {
        padding-top: 110px;
        padding-bottom: 30px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .sectors-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .sector-card {
        border-radius: 24px;
        padding: 1.75rem;
    }

    .benefit-block {
        padding: 2.25rem 1.5rem;
        border-radius: 24px;
    }

    .form-tabs {
        border-radius: 12px;
        padding: 0.35rem;
    }

    .tab-btn {
        padding: 0.75rem;
        font-size: 0.85rem;
    }

    .form-card {
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .form-input {
        border-radius: 14px;
        padding: 0.75rem 1rem;
    }

    .file-drop-zone {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    footer {
        padding-bottom: 7.5rem; /* Leave spacing for bottom floating menu */
    }

    /* Premium Contact Section Mobile Optimizations */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info-container {
        gap: 1rem;
    }

    .contact-info-card {
        padding: 1.25rem;
        border-radius: 18px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
        border: 1px solid rgba(255, 255, 255, 0.06);
        transition: all 0.25s ease;
    }

    /* Active Touch Squeeze Interaction */
    .contact-info-card:active {
        transform: scale(0.97);
        border-color: rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.05);
    }

    /* Glowing Multi-colored Icons */
    /* Phone / WhatsApp Card -> Emerald Green */
    .contact-info-card:nth-child(1) .contact-info-icon {
        background: rgba(16, 185, 129, 0.1);
        color: #10b981;
        border: 1px solid rgba(16, 185, 129, 0.15);
    }
    .contact-info-card:nth-child(1):active {
        border-color: rgba(16, 185, 129, 0.3);
        box-shadow: 0 0 15px rgba(16, 185, 129, 0.15);
    }

    /* Email Card -> Cyan / Light Blue */
    .contact-info-card:nth-child(2) .contact-info-icon {
        background: rgba(6, 182, 212, 0.1);
        color: #06b6d4;
        border: 1px solid rgba(6, 182, 212, 0.15);
    }
    .contact-info-card:nth-child(2):active {
        border-color: rgba(6, 182, 212, 0.3);
        box-shadow: 0 0 15px rgba(6, 182, 212, 0.15);
    }

    /* Web Card -> Indigo / Purple */
    .contact-info-card:nth-child(3) .contact-info-icon {
        background: rgba(99, 102, 241, 0.1);
        color: #6366f1;
        border: 1px solid rgba(99, 102, 241, 0.15);
    }
    .contact-info-card:nth-child(3):active {
        border-color: rgba(99, 102, 241, 0.3);
        box-shadow: 0 0 15px rgba(99, 102, 241, 0.15);
    }

    /* Quick Box Premium Glass Card on Mobile */
    .contact-grid .quick-box {
        padding: 1.75rem;
        border-radius: 24px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 100%);
        border: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
        position: relative;
        overflow: hidden;
    }

    .contact-grid .quick-box::before {
        content: '';
        position: absolute;
        width: 150px;
        height: 150px;
        background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
        bottom: -50px;
        right: -50px;
        pointer-events: none;
    }

    .contact-grid .quick-box h3 {
        font-size: 1.3rem !important;
        line-height: 1.3;
        margin-bottom: 0.75rem !important;
        font-weight: 700;
        background: linear-gradient(135deg, #ffffff 0%, #d1d5db 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .contact-grid .quick-box p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem !important;
    }

    .contact-grid .quick-box .stat-item {
        background: rgba(255, 255, 255, 0.02);
        padding: 1rem;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.04);
    }
}


