/* =========================================
   GLOBAL VARIABLES & RESET
   ========================================= */
:root {
    --primary: #0D4EA6;
    --primary-dark: #093A7A;
    --secondary: #2BB673;
    --secondary-dark: #21915C;
    --bg-light: #FFFFFF;
    --bg-accent: #F5F9FF;
    --text-dark: #1A1A2E;
    --text-muted: #6B7280;
    --border-light: #E5E7EB;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

.dark-mode {
    --bg-light: #0F172A;
    --bg-accent: #1E293B;
    --text-dark: #F8FAFC;
    --text-muted: #94A3B8;
    --border-light: #334155;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

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

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

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

/* =========================================
   SCROLL PROGRESS BAR
   ========================================= */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    width: 0%;
    z-index: 9999;
    transition: width 0.1s ease;
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.dark-mode .header {
    background: rgba(15, 23, 42, 0.95);
}

.header.scrolled {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--secondary);
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

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

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

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

.theme-toggle {
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
}

.theme-toggle:hover {
    background: var(--bg-accent);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
    padding-top: 80px;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.1;
}

.hero-inner{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:70px;
    align-items:center;
}
.hero-right{

display:flex;

justify-content:center;

align-items:center;

}
.green{
background:#e8fff3;
color:#21b573;
}

.blue{
background:#edf5ff;
color:#1f7aff;
}

.purple{
background:#f2ebff;
color:#7856ff;
}

.orange{
background:#fff4df;
color:#ff9800;
}
.hero-inner{
display:grid;
grid-template-columns:1.15fr .85fr;
gap:80px;
align-items:center;
position:relative;
}

.hero-features{

position:relative;

left:auto;

top:auto;

transform:none;

width:100%;

margin-top:30px;

}

.hero-visual{

order:3;

}




.hero-content h1 {
    font-size: clamp(3rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content h1 .highlight {
    white-space: nowrap;
}

.footer-highlight{
    color: #2BB673;
    font-weight: 600;
}

.hero-content h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(43, 182, 115, 0.2);
    z-index: -1;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 540px;
    line-height: 1.7;
}

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

.hero-feature-grid{

margin-top:55px;

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

max-width:700px;

}
.hero-feature-card{

display:flex;

align-items:flex-start;

gap:18px;

padding:22px;

background:#fff;

border-radius:18px;

border:1px solid #eef2f7;

box-shadow:0 10px 30px rgba(0,0,0,.07);

transition:.35s;

}
.hero-feature-card:hover{

transform:translateY(-8px);

box-shadow:0 25px 60px rgba(13,78,166,.15);

}
.hero-feature-card h4{

margin:0 0 8px;

font-size:18px;

font-weight:700;

color:#1b1f36;

}

.hero-feature-card p{

margin:0;

font-size:15px;

line-height:1.6;

color:#667085;

}
.hero-feature-icon{

width:60px;

height:60px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:24px;

flex-shrink:0;

}
.hero-visual{

width:100%;

max-width:360px;

height:500px;

margin:auto;

}

.hero-illustration{

width:100%;

height:100%;

display:flex;

justify-content:center;

align-items:center;

border-radius:30px;

background:linear-gradient(135deg,#f8fbff,#eef4ff);

box-shadow:0 20px 55px rgba(0,0,0,.08);

border:1px solid #edf3fa;

}
.network-content{

text-align:center;

}

.network-content i{

font-size:110px;

color:#0D4EA6;

opacity:.12;

margin-bottom:25px;

}

.network-content h3{

font-size:38px;

color:#0D4EA6;

margin-bottom:10px;

font-weight:700;

}

.network-content span{

font-size:17px;

color:#667085;

}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 6s ease-in-out infinite;
}

.dark-mode .floating-card {
    background: var(--bg-accent);
}

@media(max-width:991px){

.hero-inner{

grid-template-columns:1fr;

}

.hero-right{

margin-top:50px;

}

.hero-feature-grid{

grid-template-columns:1fr;

}

.hero-visual{

height:420px;

max-width:340px;

}

}
.floating-card.card-1 { top: 10%; left: 10%; animation-delay: 0s; }
.floating-card.card-2 { top: 20%; right: 10%; animation-delay: 1s; }
.floating-card.card-3 { bottom: 20%; left: 15%; animation-delay: 2s; }
.floating-card.card-4 { bottom: 10%; right: 15%; animation-delay: 3s; }

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

/* =========================================
   SECTION UTILITIES
   ========================================= */
.section {
    padding: 6rem 0;
    position: relative;
}

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

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(13, 78, 166, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* =========================================
   COMPANY INTRO
   ========================================= */
.company-intro-section {
    background: var(--bg-accent);
}

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

.intro-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.intro-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.intro-icon {
    width: 60px;
    height: 60px;
    background: rgba(13, 78, 166, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--primary);
}

.intro-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.intro-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =========================================
   VISION & MISSION
   ========================================= */
.vision-mission-section {
    background: var(--bg-accent) !important;
    padding: 6rem 0 !important;
}

.vm-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
    min-height: 300px !important;
}

.vm-card {
    padding: 3rem !important;
    border-radius: 20px !important;
    background: #FFFFFF !important;
    border-left: 6px solid var(--primary) !important;
    box-shadow: 0 15px 40px rgba(13, 78, 166, 0.12) !important;
    transition: var(--transition) !important;
    display: flex !important;
    flex-direction: column !important;
    
    /* FIX: Force visibility to prevent GSAP stuck state */
    opacity: 1 !important;
    transform: none !important;
    animation: vmFadeIn 0.8s ease-out forwards;
}

.vm-card:nth-child(2) {
    animation-delay: 0.2s;
}

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

.vm-card.mission {
    border-left-color: var(--secondary) !important;
    box-shadow: 0 15px 40px rgba(43, 182, 115, 0.12) !important;
}

.vm-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 25px 50px rgba(13, 78, 166, 0.2) !important;
}

.vm-icon {
    width: 70px !important;
    height: 70px !important;
    background: rgba(13, 78, 166, 0.1) !important;
    color: var(--primary) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.75rem !important;
    margin-bottom: 1.5rem !important;
}

.vm-card.mission .vm-icon {
    background: rgba(43, 182, 115, 0.1) !important;
    color: var(--secondary) !important;
}

.vm-card h3 {
    font-size: 1.85rem !important;
    font-weight: 800 !important;
    margin-bottom: 1.25rem !important;
    color: #0D4EA6 !important;
    letter-spacing: -0.5px !important;
}

.vm-card.mission h3 {
    color: #2BB673 !important;
}

.vm-text {
    color: #1F2937 !important;
    line-height: 1.8 !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    margin: 0 !important;
}

.dark-mode .vision-mission-section {
    background: #0F172A !important;
}

.dark-mode .vm-card {
    background: #1E293B !important;
    border-left-color: var(--primary) !important;
}

.dark-mode .vm-card.mission {
    border-left-color: var(--secondary) !important;
}

.dark-mode .vm-card h3 {
    color: #60A5FA !important;
}

.dark-mode .vm-card.mission h3 {
    color: #34D399 !important;
}

.dark-mode .vm-text {
    color: #E2E8F0 !important;
}

/* =========================================
   LEADERSHIP
   ========================================= */
.leadership-section {
    background: var(--bg-accent);
}

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

.leader-card {
    background: var(--bg-light);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

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

.leader-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 2rem;
    color: white;
    position: relative;
}

.leader-card:nth-child(2) .leader-header {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
}

.leader-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.leader-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.leader-title {
    font-size: 0.9rem;
    opacity: 0.9;
}

.leader-body {
    padding: 2rem;
}

.leader-highlights {
    list-style: none;
    margin-bottom: 2rem;
}

.leader-highlights li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.leader-highlights li:last-child {
    border-bottom: none;
}

.leader-highlights li i {
    color: var(--secondary);
}

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

.stat-mini {
    background: var(--bg-accent);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
}

.stat-mini .number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

.stat-mini .label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* =========================================
   WHY CHOOSE US
   ========================================= */
.why-choose-section {
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-accent);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--border-light);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: var(--primary);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.dark-mode .feature-icon {
    background: var(--bg-light);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: white;
    transform: rotateY(360deg);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =========================================
   CORE SERVICES
   ========================================= */
.services-section {
    background: var(--bg-accent);
}

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

.service-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(13, 78, 166, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.service-features li i {
    color: var(--secondary);
    margin-top: 4px;
}

.service-industries {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.service-industries h4 {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.industry-tag {
    padding: 0.25rem 0.75rem;
    background: var(--bg-accent);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* =========================================
   TECHNOLOGY CORE
   ========================================= */
.technology-section {
    background: var(--bg-light);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-light);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-content {
    background: var(--bg-accent);
    padding: 2rem;
    border-radius: 16px;
    max-width: 400px;
    position: relative;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.timeline-item:nth-child(odd) .timeline-content::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 10px 0 10px 10px;
    border-style: solid;
    border-color: transparent transparent transparent var(--bg-accent);
}

.timeline-item:nth-child(even) .timeline-content::after {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 10px 10px 10px 0;
    border-style: solid;
    border-color: transparent var(--bg-accent) transparent transparent;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    border: 4px solid var(--bg-light);
    z-index: 2;
}

.timeline-step {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =========================================
   CRM PLATFORM
   ========================================= */
.crm-platform-section {
    background: var(--bg-accent);
}

.crm-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.crm-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.crm-feature {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.crm-feature:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.crm-feature i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.crm-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.crm-feature p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.crm-mockup {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
    position: relative;
}

.mockup-header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-light);
}

.mockup-dot:nth-child(1) { background: #FF5F56; }
.mockup-dot:nth-child(2) { background: #FFBD2E; }
.mockup-dot:nth-child(3) { background: #27C93F; }

.mockup-body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.mockup-card {
    background: var(--bg-accent);
    border-radius: 12px;
    padding: 1rem;
    height: 100px;
}

.mockup-card.large {
    grid-column: span 2;
    height: 150px;
}

/* =========================================
   OPERATIONS & MAP
   ========================================= */
.operations-section {
    background: var(--bg-light);
}

/* =========================================
   PAN INDIA MAP
========================================= */
.map-container{
    position:relative;
    width:900px;
    height:720px;
    margin:auto;
    background:#f6f9fd;
    border-radius:24px;
}

.india-map-svg{
    position:absolute;
    width:560px;      /* was 500 */
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
}

.india-map-wrapper{
    position:relative;
    width:100%;
    height:100%;
}
.map-item{
    position:absolute;
    width:900px;
    height:720px;
    left:0;
    top:0;
    pointer-events:none;
}

.map-item .label{
    pointer-events:auto;
}

.map-item .line{
    position:absolute;
    height:2px;
    background:#20c997;
}

.map-item .dot{
    position:absolute;
    width:10px;
    height:10px;
    border-radius:50%;
    background:#20c997;
    box-shadow:0 0 0 8px rgba(32,201,151,.18);
}

.map-item .label{
    position:absolute;
    background:#fff;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    color:#16396b;
    box-shadow:0 12px 30px rgba(0,0,0,.10);
    white-space:nowrap;
    cursor:pointer;
    transition:all .35s ease;
}
.map-item:hover .line{
    background:#8fdcc2;
}

.map-item:hover .dot{
    animation:pulse 1.3s infinite;
}

.map-item:hover .label{
    transform:translateY(-4px) scale(1.05);
    background:#0D4EA6;
    color:#fff;
    box-shadow:0 18px 40px rgba(13,78,166,.28);
}

.map-item:hover .label::after{
    content:" →";
    font-weight:700;
}
/* Gujarat */
/* Gujarat */

.gujarat .dot{
    left:280px;
    top:285px;
}

.gujarat .line{
    left:115px;
    top:289px;
    width:165px;
}

.gujarat .label{
    left:20px;
    top:266px;
}
.maharashtra .dot{
    left:305px;
    top:385px;
}

.maharashtra .line{
    left:145px;
    top:389px;
    width:160px;
}

.maharashtra .label{
    left:70px;
    top:365px;
}
.delhi .dot{
    left:430px;
    top:130px;
}

.delhi .line{
    left:440px;
    top:134px;
    width:100px;
}

.delhi .label{
    left:545px;
    top:115px;
}
.bengal .dot{
    left:485px;
    top:315px;
}

.bengal .line{
    left:495px;
    top:319px;
    width:90px;
}

.bengal .label{
    left:595px;
    top:295px;
}
.telangana .dot{
    left:395px;
    top:450px;
}

.telangana .line{
    left:405px;
    top:454px;
    width:120px;
}

.telangana .label{
    left:530px;
    top:435px;
}
.karnataka .dot{
    left:300px;
    top:528px;
}

.karnataka .line{
    left:130px;
    top:532px;
    width:170px;
}

.karnataka .label{
    left:70px;
    top:510px;
}
.up .dot{
    left:455px;
    top:240px;
}

.up .line{
    left:465px;
    top:244px;
    width:105px;
}

.up .label{
    left:575px;
    top:220px;
}
@keyframes pulse{
    0%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(32,201,151,.6);
    }
    70%{
        transform:scale(1);
        box-shadow:0 0 0 12px rgba(32,201,151,0);
    }
    100%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(32,201,151,0);
    }
}

/* =========================================
   TRACK RECORD
   ========================================= */
.track-record-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 5rem 0;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.counter-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.counter-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* =========================================
   INDUSTRIES
   ========================================= */
.industries-section {
    background: var(--bg-accent);
}

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

.industry-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 78, 166, 0.05) 0%, rgba(43, 182, 115, 0.05) 100%);
    opacity: 0;
    transition: var(--transition);
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: rgba(13, 78, 166, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.industry-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.industry-examples {
    list-style: none;
    position: relative;
    z-index: 1;
}

.industry-examples li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.industry-examples li::before {
    content: '•';
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* =========================================
   RECRUITMENT
   ========================================= */
.recruitment-section {
    background: var(--bg-light);
}

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

.rec-stat {
    background: var(--bg-accent);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-light);
}

.rec-stat h3 {
    font-size: 2.5rem;
    color: var(--primary);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.rec-stat p {
    color: var(--text-muted);
    font-weight: 500;
}

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

.rec-feature {
    background: var(--bg-accent);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.rec-feature:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
}

.rec-feature i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.rec-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.rec-feature p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* =========================================
   PARTNER WITH US
   ========================================= */
.partner-section {
    background: var(--bg-accent);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.trust-card {
    background: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.trust-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.trust-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.trust-card p {
    color: var(--text-muted);
    line-height: 1.6;
}
/* Statistics Cards */
.map-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin-top:40px;
}

.map-stat-card{
    background:#fff;
    border-radius:18px;
    padding:32px 20px;
    text-align:center;
    border:1px solid #e9eef6;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s ease;
}

.map-stat-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.map-stat-card h3{
    font-size:48px;
    font-weight:800;
    color:#0d5bd7;
    margin-bottom:10px;
    line-height:1;
}

.map-stat-card p{
    font-size:18px;
    color:#5d6b82;
    font-weight:600;
    margin:0;
}

/* =========================================
   CLIENT SUCCESS
   ========================================= */
.success-section {
    background: var(--bg-light);
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    background: var(--bg-accent);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--border-light);
}

.testimonial-text {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* =========================================
   DEMO REQUEST
   ========================================= */
.demo-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 6rem 0;
}

.demo-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.demo-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.demo-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.demo-form {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
}

.dark-mode .demo-form {
    background: var(--bg-accent);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: var(--bg-light);
    color: var(--text-dark);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 78, 166, 0.1);
}

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

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* =========================================
   CONTACT
   ========================================= */
.contact-section {
    background: var(--bg-accent);
}

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

.contact-info-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateX(10px);
    border-color: var(--primary);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(13, 78, 166, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-details p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.map-frame {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 5rem 0 2rem;
}

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

.footer-brand .logo {
    color: white;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: white;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* =========================================
   FLOATING ELEMENTS
   ========================================= */
.floating-elements {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.float-btn.whatsapp {
    background: #25D366;
}

.float-btn.chat {
    background: var(--primary);
}

.float-btn:hover {
    transform: scale(1.1);
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1024px) {
    .hero-inner,
    .crm-showcase,
    .demo-container,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .industries-grid,
    .recruitment-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
        padding-left: 80px;
        padding-right: 0;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::after,
    .timeline-item:nth-child(even) .timeline-content::after {
        left: -10px;
        right: auto;
        border-width: 10px 10px 10px 0;
        border-color: transparent var(--bg-accent) transparent transparent;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .intro-grid,
    .leaders-grid,
    .counters-grid,
    .map-stats,
    .recruitment-stats {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .industries-grid,
    .recruitment-features {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}
/* =========================================
   MOBILE RESPONSIVE
   ========================================= */

/* Tablet */
@media (max-width: 991px) {

    .container{
        padding:0 20px;
    }

    .hero-section{
        padding:120px 0 60px;
        min-height:auto;
    }

    .hero-inner{
        display:flex;
        flex-direction:column;
        gap:40px;
    }

    .hero-content{
        text-align:center;
        order:1;
    }

    .hero-right{
        order:2;
        margin-top:0;
        width:100%;
    }

    .hero-visual{
        max-width:360px;
        width:100%;
        height:420px;
    }

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

    .hero-feature-grid{
        grid-template-columns:1fr;
        margin-top:40px;
    }

}


/* Mobile */
@media (max-width:768px){

    .container{
        padding:0 18px;
    }

    .hero-section{
        padding:110px 0 50px;
    }

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

    .hero-content p{
        font-size:16px;
        max-width:100%;
    }

    .hero-buttons{
        flex-direction:column;
        width:100%;
    }

    .hero-buttons .btn{
        width:100%;
    }

    .hero-feature-grid{
        gap:18px;
    }

    .hero-feature-card{
        padding:18px;
        border-radius:16px;
    }

    .hero-feature-card h4{
        font-size:17px;
    }

    .hero-feature-card p{
        font-size:14px;
    }

    .hero-feature-icon{
        width:52px;
        height:52px;
        font-size:20px;
    }

    .hero-visual{
        max-width:320px;
        height:380px;
    }

    .network-content i{
        font-size:80px;
    }

    .network-content h3{
        font-size:28px;
    }

    .network-content span{
        font-size:15px;
    }

}


/* Small Mobile */
@media (max-width:576px){

    .hero-section{
        padding:95px 0 40px;
    }

    .hero-content h1{
        font-size:1.9rem;
    }

    .hero-content p{
        font-size:15px;
    }

    .hero-feature-card{
        flex-direction:column;
        text-align:center;
        align-items:center;
    }

    .hero-feature-icon{
        margin-bottom:8px;
    }

    .hero-visual{
        max-width:280px;
        height:320px;
    }

    .hero-illustration{
        border-radius:20px;
    }

}


/* Very Small Phones */
@media (max-width:390px){

    .container{
        padding:0 15px;
    }

    .hero-content h1{
        font-size:1.7rem;
    }

    .hero-content p{
        font-size:14px;
    }

    .hero-buttons .btn{
        padding:14px;
        font-size:15px;
    }

    .hero-feature-card{
        padding:16px;
    }

    .hero-visual{
        max-width:250px;
        height:290px;
    }

}
.contact-link{
    color: inherit;
    text-decoration: none;
    transition: .3s;
    font-weight: 500;
}

.contact-link:hover{
    color:#0D4EA6;
    text-decoration: underline;
}