/* Define Variables for consistency in case styles.css is missing */
:root {
    --nteks-primary: #1976d2; /* A shade of blue for primary */
    --nteks-warning: #ffc107; /* Bootstrap warning yellow */
    --nteks-dark: #212529; /* Bootstrap dark */
    --nteks-success: #198754; /* Bootstrap success green */
}

/* Navbar Link Colors */
.modern-nav .nav-link {
    color: var(--nteks-dark) !important; /* Default color */
    position: relative;
    transition: color 0.3s ease;
}

/* Hover and Active State (Blue) */
.modern-nav .nav-link:hover,
.modern-nav .nav-link.active {
    color: var(--nteks-primary) !important; /* Blue color */
}

/* Optional: Add a small underline under the active link */
.modern-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--nteks-primary);
}





/* --- INDIA SPECIFIC PAGE STYLES --- */

/* Hero Section */
.india-hero {
    /* Updated URL formatting: using double quotes is often safer for complex URLs */
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.6)), url("https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=2069&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    min-height: 60vh;
}

.z-2 {
    z-index: 2;
}

/* NEW: Stat Cards for Quantifiable Success Section */
.stat-card {
    transition: transform 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}


/* Service Icon Boxes (For Staffing Grid) */
.service-icon-box {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
}

.bg-primary-subtle { background-color: rgba(25, 118, 210, 0.1); }
.bg-warning-subtle { background-color: rgba(255, 193, 7, 0.1); }
.bg-dark-subtle { background-color: rgba(33, 37, 41, 0.1); }

/* Tech Grid Section */
.tech-grid-container {
    background: rgba(255,255,255,0.05); 
    border: 1px solid rgba(255,255,255,0.1);
}

.tech-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    height: 100%;
}

.tech-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

/* Industries Cards */
.industry-card {
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.industry-card:hover {
    border-color: var(--nteks-primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

/* Form Section Background */
.bg-primary-custom {
    background-color: var(--nteks-primary);
}


/* --- INDIA MAP SECTION STYLES --- */

.bg-light-map {
    background-color: #f0f3f8; /* Subtle background for the map section */
}

/* 1. Remove box/border/shadow from the container */
.map-container {
    background-color: transparent; /* Remove background color */
    min-height: 300px; 
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 2. Style the image and add the hover effect */
.map-image-style {
    max-width: 100%;
    height: auto;
    display: block;
    /* Add smooth transition for hover effect */
    transition: transform 0.4s ease-in-out;
}

/* 3. Hover Effect: Map becomes slightly bigger */
.map-image-style:hover {
    transform: scale(1.05); /* Zoom in 5% on hover */
}


/* ================= INDIA FOOTER ================= */

.footer-section {
    background-color: #1a1a1a;
    border-top: 3px solid var(--nteks-warning);
}

.footer-title {
    font-weight: 700;
    margin-bottom: 14px;
    color: #ffffff;
}

.footer-list li {
    margin-bottom: 8px;
}

.footer-link {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #ffc107;
    padding-left: 5px;
}

.footer-logo {
    height: 55px;
    width: auto;
}

.social-link {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    transition: 0.3s;
}

.social-link:hover {
    color: #ffc107;
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0,0,0,0.3);
}
