/* SK Group - Custom styles */
:root {
    --sk-blue: #1a365d;
    --sk-blue-light: #2c5282;
    --sk-dark: #2d3748;
    --sk-gray: #4a5568;
    --sk-white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--sk-dark);
    overflow-x: hidden;
}

/* Header - Transparent over hero, solid when scrolled */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header-transparent {
    background: transparent;
    box-shadow: none;
}

.site-header-transparent .navbar-nav .nav-link,
.site-header-transparent .tagline-text {
    color: rgba(255, 255, 255, 0.95) !important;
}

.site-header-transparent .navbar-nav .nav-link:hover,
.site-header-transparent .tagline-text:hover {
    color: #fff !important;
}

.site-header-transparent .navbar-toggler {
    border-color: rgba(255,255,255,0.6);
    color: rgba(255,255,255,0.9);
}

.site-header-solid {
    background: var(--sk-white) !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.site-header-solid .navbar {
    background: var(--sk-white) !important;
}

.site-header-solid .navbar-nav .nav-link {
    color: var(--sk-dark) !important;
}

.site-header-solid .navbar-nav .nav-link:hover {
    color: var(--sk-blue) !important;
}

.site-header-solid .tagline-text {
    color: var(--sk-gray) !important;
}

.site-header-solid .navbar-toggler {
    border-color: rgba(0,0,0,0.2);
    color: var(--sk-dark);
}

.site-header-solid .navbar-toggler-icon {
    filter: invert(1);
}

.header-logo {
    height: 80px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.tagline-text {
    font-size: 0.9rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
}

/* Hero Section - full viewport from top, banner behind nav */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    /* position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.45) 100%); */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgb(0 0 0 / 61%) 0%, rgb(0 0 0 / 65%) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 1rem 8rem;
}

.hero-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #ffffff;
    text-shadow: -2px 1px 2px rgb(0 0 0 / 70%);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: #ffffff;
    /* max-width: 600px; */
    margin: 0 auto;
    text-shadow: -2px 1px 2px rgb(0 0 0 / 70%);
}

.hero-stats {
    position: relative;
    z-index: 3;
    margin-top: -3rem;
    padding: 0 1rem;
}

.stats-bar {
    background: rgb(255 255 255 / 0%);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: -3px 1px black;
    line-height: 1.2;
}

.stat-label {
    font-size: 1rem;
    color: #ffffff;
    text-shadow: -3px 1px black;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: #cbd5e0;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--sk-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--sk-gray);
    max-width: 720px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

/* About */
.about-section {
    background: var(--sk-white);
}
.about-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--sk-gray);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}
.about-wrapper .about-right img{
    height: 100%;
    object-fit: contain;
}

/* Map section - North India with pin markers */
.map-section {
    background: linear-gradient(180deg, #f0f4f8 0%, #e8eef5 50%, #f7fafc 100%);
}

.network-map-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--sk-white);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(26, 54, 93, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 2rem;
    border: 1px solid rgba(44, 82, 130, 0.1);
}

.echarts-map-container {
    width: 100%;
    height: 420px;
    min-height: 320px;
    border-radius: 12px;
    overflow: hidden;
}

.map-cities-note {
    font-size: 0.875rem;
    color: var(--sk-gray);
    margin-top: 1.25rem;
    margin-bottom: 0;
}

/* Associations & Brands - logo placeholders */
.associations-section,
.brands-section {
    background: var(--sk-white);
}

.logo-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.logo-item {
    flex: 0 0 auto;
    width: 140px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: #f0f4f8; */
    /* border: 1px solid #e2e8f0; */
    border-radius: 8px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.logo-item:hover {
    border-color: var(--sk-blue);
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.1);
}

.logo-placeholder {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sk-blue);
    text-align: center;
    padding: 0 0.5rem;
}
.logo-placeholder img{
    height: 80px;
    width: 80px;
    object-fit: contain;
}
.logo-placeholder-main img{
    height: 100px;
    width: 100px;
    object-fit: contain;
}
.brands-row .logo-item {
    width: 120px;
    height: 70px;
}

.brands-row .logo-placeholder {
    font-size: 0.75rem;
}

/* Business Associates */
.associates-section {
    background: #f7fafc;
}

.associates-list {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.associate-item {
    padding: 0.5rem;
    background: var(--sk-white);
    border-left: 4px solid var(--sk-blue);
    border-radius: 4px;
    font-weight: 500;
    color: var(--sk-dark);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    width: 300px;
}
.associate-item .associate-name{
    font-weight: 700;
}

/* Partner section */
.partner-section {
    background: linear-gradient(135deg, var(--sk-blue) 0%, var(--sk-blue-light) 100%);
    color: var(--sk-white);
}

.partner-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.partner-text {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-partner {
    background: rgba(255,255,255,0.2);
    color: var(--sk-white);
    border: 2px solid rgba(255,255,255,0.8);
    padding: 0.6rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s;
}

.btn-partner:hover {
    background: var(--sk-white);
    color: var(--sk-blue);
    border-color: var(--sk-white);
}

/* Contact */
.contact-section {
    background: var(--sk-white);
}

.contact-form .form-label {
    font-weight: 500;
    color: var(--sk-dark);
}

.contact-form .form-control {
    border-radius: 6px;
    border: 1px solid #cbd5e0;
}

.contact-form .form-control:focus {
    border-color: var(--sk-blue);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.15);
}

.btn-submit {
    background: var(--sk-blue);
    border: none;
    padding: 0.6rem 2rem;
    font-weight: 600;
    border-radius: 8px;
}

.btn-submit:hover {
    background: var(--sk-blue-light);
}

.contact-info a {
    color: var(--sk-blue);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    border-top: 1px solid #e2e8f0;
    background: #f7fafc;
    color: var(--sk-gray);
    font-size: 0.9rem;
}


@media (max-width: 1205px) {
    .about-wrapper{
        flex-direction: column;
    }
    .about-wrapper .about-right img{
        height: 100%;
        width: 100%;
        object-fit: contain;
    }
    .about-wrapper .about-content{
        max-width: 100%;
    }
    .about-content p{
        font-size: 1rem;
    }
    .about-content p strong{            
        font-size: 1rem;
    }
    .about-content p strong{
        font-size: 1rem;
    }
    .about-content p strong{
        font-size: 1rem;
    }
    .about-content p strong{
        font-size: 1rem;
    }

}