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

:root {
    --primary: #0066B2;
    --primary-dark: #032a5c;
    /*#002C4C;*/
    --secondary: #0066B2;
    --solid-gold: #B08850;
    --gold-light: #FAC883;
    --base-black: #202020;
    --white: #FFFFFF;

    --primary-gradient: linear-gradient(90deg, #0066B2 -1.23%, #002C4C 100%);
    --gold-gradient: linear-gradient(90deg, #B08850 0%, #FAC883 50%, #B08850 100%);

    --font-primary: 'Mukta', sans-serif;
    --transition: all 0.3s ease;

    /* Text-size styles */
    --font-h1: 60px;
    --font-h2: 48px;
    --font-h3: 38px;
    --font-h4: 32px;
    --font-h5: 26px;
    --font-h6: 22px;
    --font-body: 18px;
    --font-body-small: 16px;
    --font-small: 14px;
    --font-xtra-small: 12px;

    /* Upcoming Events Variables */
    --accent-red: #D32F2F;
    --bg-light: #F4F7FA;
    --badge-community-bg: #D1FAE5;
    --badge-community-text: #065F46;
    --badge-cultural-bg-purple: #5B21B6;
    --badge-cultural-bg-orange: #C2410C;
    --badge-sports-bg: #1E3A8A;

    /* Thane in Numbers Variables */
    --accent-blue: #2563EB;
    --bg-blue-light: #EFF6FF;
    --accent-green: #16A34A;
    --bg-green-light: #F0FDF4;
    --accent-orange: #EA580C;
    --bg-orange-light: #FFF7ED;
    --accent-purple: #9333EA;
    --bg-purple-light: #F3E8FF;
    --accent-pink: #E11D48;
    --bg-pink-light: #FFE4E6;
    --bg-stats-banner: #F8FAFC;

    /* History of Thane Variables */

    --feat-1: #1D3557;
    --feat-2: #5D3A3A;
    --feat-3: #B58529;
    --feat-4: #2A5D44;
    --bg-history-feat: #F4F7FA;


    --border: #E5E7EB;
    --border-light: #F3F4F6;
}

/* Base Styles */
body {
    font-family: var(--font-primary);
    color: var(--base-black);
    margin: 0;
    padding: 0;
    background-color: var(--white);
}

.material-symbols-filled,
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    display: inline-block;

    /* Prevent extra spacing */
    vertical-align: middle;
    white-space: nowrap;

    /* Optional but recommended */
    letter-spacing: normal;
    text-transform: none;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
}

.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24;
}

.material-symbols-filled {
    font-variation-settings:
        'FILL' 1,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24;
}

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

.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: var(--font-body-small);
    border: unset;
    transition: background-color 0.3s ease;
}

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

.outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: var(--font-body-small);
    transition: background-color 0.3s ease;
}

.outline-btn:hover {
    border-color: var(--primary-dark);
    color: var(--primary-dark);
}

.white-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--white);
    color: var(--primary-dark);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: var(--font-body-small);
    border: unset;
    transition: background-color 0.3s ease;
}

.white-btn:hover {
    background-color: #E5E5E5;
}

/* Top Header */
.top-header {
    background-color: var(--white);
    font-size: var(--font-body-small);
    border-bottom: 1px solid #E5E5E5;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 99;
}

.top-header-inner {
    flex-wrap: wrap;
    gap: 15px;
}

.top-header-left,
.top-header-center,
.top-header-right {
    color: var(--base-black);
}

.divider {
    display: inline-block;
    width: 1px;
    height: 16px;
    background-color: #D1D1D1;
    margin: 0 16px;
}

.top-link {
    color: var(--primary-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.top-link:hover {
    color: var(--primary);
}

.top-link .material-symbols-outlined {
    font-size: 20px;
    margin-right: 6px;
}

.date-text,
.weather-text {
    font-weight: 500;
    color: var(--base-black);
}

.weather-icon {
    color: var(--solid-gold);
    margin-right: 6px;
    font-size: 20px;
}

.top-header .social-link {
    color: var(--base-black);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.top-header .social-link:hover {
    color: var(--primary);
}

.top-header .social-link svg {
    width: 18px;
    height: 18px;
}

/* Banner Section */
.banner-section {
    position: relative;
    padding-bottom: 30px;
    /* Space for the navbar overlapping */
    background-color: var(--white);
}

.banner-image-wrapper {
    width: 100%;
    /* Rounded bottom corners */
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    overflow: hidden;
}

.banner-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Main Navigation */
/* .main-navbar-container {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 10;
}

.main-navbar {
    background: var(--primary);
    border-radius: 50px;
    display: flex;
    align-items: center;
    border: 8px solid var(--white);
    overflow: hidden;
}
.home-icon-wrapper {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.home-icon-wrapper:hover {
    background-color: var(--primary);
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: var(--font-body-small);
    transition: opacity 0.3s ease, color 0.3s ease;
}

.nav-link:hover {
    color: var(--white);
    opacity: 0.8;
} */


/* Upcoming Events Section */
.upcoming-events-section {
    padding: 60px 0;
}

.section-icon-main {
    font-size: 48px;
    color: var(--accent-red);
}

.section-subtitle {
    color: var(--accent-red);
    font-weight: 700;
    font-size: var(--font-body-small);
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.section-title-white,
.section-title {
    color: var(--primary);
    font-weight: 800;
    font-size: var(--font-h4);
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.section-title-white {
    color: var(--white);
}

.section-desc {
    color: var(--base-black);
    font-size: var(--font-body);
}

.event-tabs-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.event-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.event-tab {
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid #E5E5E5;
    background-color: var(--white);
    color: var(--base-black);
    font-weight: 500;
    font-size: var(--font-body-small);
    transition: all 0.3s ease;
}

.event-tab.active {
    background-color: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
}

.event-tab:hover:not(.active) {
    border-color: var(--primary-dark);
    color: var(--primary-dark);
}

.view-all-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid #E5E5E5;
    background-color: var(--white);
    color: var(--primary-dark);
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background-color: var(--bg-light);
}

.view-all-btn .material-symbols-outlined {
    font-size: var(--font-body);
}

/* Event Cards */
.event-card {
    border: 1px solid #E5E5E5;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.event-img-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
}

.event-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-date-box {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--white);
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 60px;
}

.event-date-day {
    display: block;
    color: var(--accent-red);
    font-size: var(--font-h5);
    font-weight: 800;
    line-height: 1;
}

.event-date-month {
    display: block;
    color: var(--base-black);
    font-size: var(--font-xtra-small);
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 2px;
}

.event-date-year {
    display: block;
    color: #666;
    font-size: var(--font-xtra-small);
    font-weight: 600;
}

.event-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: var(--font-xtra-small);
    font-weight: 600;
}

.badge-community {
    background-color: var(--badge-community-bg);
    color: var(--badge-community-text);
}

.badge-cultural-purple {
    background-color: var(--badge-cultural-bg-purple);
    color: var(--white);
}

.badge-cultural-orange {
    background-color: var(--badge-cultural-bg-orange);
    color: var(--white);
}

.badge-sports {
    background-color: var(--badge-sports-bg);
    color: var(--white);
}

.event-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.event-card-title {
    color: var(--primary-dark);
    font-size: var(--font-h6);
    font-weight: 700;
    margin-bottom: 15px;
}

.event-info-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    color: #555;
    font-size: var(--font-small);
}

.event-info-row .material-symbols-outlined {
    font-size: var(--font-body);
    color: #888;
}

.event-card-desc {
    color: #666;
    font-size: var(--font-small);
    margin-top: 10px;
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.event-read-more {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: var(--font-small);
    transition: opacity 0.3s ease;
}

.event-read-more:hover {
    opacity: 0.8;
    color: var(--primary-dark);
}

.read-more-icon {
    font-size: var(--font-body-small);
}

/* Event Slider Arrows */
.event-slider-container {
    position: relative;
}

.slider-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
    color: var(--primary-dark);
    border: none;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.slider-arrow.left-arrow {
    left: -20px;
}

.slider-arrow.right-arrow {
    right: -20px;
}

/* Promo Banner */
.promo-banner {
    background-color: var(--bg-light);
    border-radius: 16px;
    padding: 30px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background-image: linear-gradient(to top, rgba(0, 102, 178, 0.05), transparent);
    z-index: 1;
    pointer-events: none;
}

.promo-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.promo-icon-wrapper {
    background-color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.promo-icon-wrapper .material-symbols-outlined {
    font-size: 40px;
    color: var(--accent-red);
}

.promo-text-content h4 {
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 5px;
}

.promo-text-content p {
    color: #666;
    margin-bottom: 0;
    font-size: var(--font-body-small);
}

.promo-action {
    position: relative;
    z-index: 2;
    text-align: right;
}

.promo-contact {
    margin-top: 10px;
    font-size: var(--font-small);
    color: #555;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}

.promo-contact-icon {
    font-size: var(--font-small);
    color: #555;
}

.promo-contact span {
    color: var(--accent-red);
    font-weight: 700;
}

/* Thane in Numbers Section */
.thane-in-numbers-section {
    padding: 60px 0;
}

.thane-in-numbers-section .section-title::after {
    content: unset;
}

.section-title-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.title-line {
    height: 1px;
    background-color: #E5E5E5;
    width: 60px;
    position: relative;
}

.title-line::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #A0AAB2;
    top: -1.5px;
}

.title-line.left::after {
    right: 0;
}

.title-line.right::after {
    left: 0;
}

.stats-subtitle {
    color: var(--accent-red);
    font-weight: 800;
    font-size: var(--font-small);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.stats-desc {
    color: #555;
    font-size: var(--font-body);
}

.view-report-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid #E5E5E5;
    background-color: var(--white);
    color: var(--primary-dark);
    font-weight: 600;
    font-size: var(--font-body-small);
    transition: all 0.3s ease;
}

.view-report-btn:hover {
    background-color: var(--bg-light);
    color: var(--primary-dark);
}

/* Main Cards */
.stats-card {
    background-color: var(--white);
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
}

.stats-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.stats-card .row {
    border: 1px solid #E5E5E5;
    border-radius: 8px;
}

.stats-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stats-icon-wrapper .material-symbols-outlined {
    font-size: 24px;
}

/* Colors for Headers */
.stats-header-blue .stats-icon-wrapper {
    background-color: var(--bg-blue-light);
    color: var(--accent-blue);
}

.stats-header-green .stats-icon-wrapper {
    background-color: var(--bg-green-light);
    color: var(--accent-green);
}

.stats-header-orange .stats-icon-wrapper {
    background-color: var(--bg-orange-light);
    color: var(--accent-orange);
}

.stats-card-title {
    color: var(--primary-dark);
    font-weight: 800;
    font-size: var(--font-body);
    margin-bottom: 2px;
    text-transform: uppercase;
}

.stats-card-subtitle {
    color: #666;
    font-size: var(--font-body-small);
    margin: 0;
}

/* 2x2 Grid inside cards */
.stat-item {
    text-align: center;
    padding: 15px 5px;
}

.stat-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.stat-item-icon .material-symbols-outlined {
    font-size: var(--font-body);
}

.stat-item-number {
    display: block;
    color: var(--primary-dark);
    font-size: var(--font-h6);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 4px;
}

.stat-item-label {
    display: block;
    color: var(--base-black);
    font-weight: 600;
    font-size: var(--font-body-small);
    margin-bottom: 2px;
}

.stat-item-sublabel {
    display: block;
    color: #888;
    font-size: var(--font-small);
}

/* Bottom Stats Banner */
.stats-banner-container {
    background-color: var(--bg-stats-banner);
    border-radius: 16px;
    padding: 24px 30px;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    border: 1px solid #E5E5E5;
}

.stats-banner-bg {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    width: auto;
    object-fit: cover;
    opacity: 0.6;
    pointer-events: none;
    z-index: 1;
}

.stats-banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.banner-stat-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.banner-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.banner-icon-wrapper .material-symbols-outlined {
    font-size: 20px;
}

.banner-stat-content h4 {
    color: var(--primary);
    font-size: var(--font-small);
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.banner-stat-number {
    display: block;
    color: var(--primary-dark);
    font-size: var(--font-h5);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.banner-stat-desc {
    color: #555;
    font-size: var(--font-small);
    line-height: 1.3;
    margin: 0;
}

/* Icon Colors Utils */
.color-blue {
    color: var(--accent-blue);
}

.bg-blue-light {
    background-color: var(--bg-blue-light);
}

.color-green {
    color: var(--accent-green);
}

.bg-green-light {
    background-color: var(--bg-green-light);
}

.color-orange {
    color: var(--accent-orange);
}

.bg-orange-light {
    background-color: var(--bg-orange-light);
}

.color-purple {
    color: var(--accent-purple);
}

.bg-purple-light {
    background-color: var(--bg-purple-light);
}

.color-pink {
    color: var(--accent-pink);
}

.bg-pink-light {
    background-color: var(--bg-pink-light);
}

/* Borders for 2x2 grid inside cards */
.border-end-dashed {
    border-right: 1px solid #E5E5E5;
}

.border-bottom-dashed {
    border-bottom: 1px solid #E5E5E5;
}

.source-text {
    text-align: center;
    color: #888;
    font-size: var(--font-xtra-small);
    margin-top: 15px;
}

/* History of Thane Section */
.history-section {
    padding: 60px 0;
}

.history-hero {
    position: relative;
    background-image: url('../images/history-section-banner.png');
    background-size: 60%;
    background-position: right;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 350px;
    margin-bottom: 50px;
}

.history-hero-content {
    max-width: 450px;
    border-radius: 16px;
}

.history-subtitle {
    color: var(--accent-red);
    font-weight: 800;
    font-size: var(--font-small);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.history-subtitle::before {
    content: '';
    width: 4px;
    height: 16px;
    background-color: var(--accent-red);
}

.history-desc {
    color: #555;
    font-size: var(--font-body-small);
    margin-bottom: 25px;
    line-height: 1.6;
}

.history-hero-badge {
    background-color: var(--white);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 250px;
}

.history-badge-icon {
    width: 40px;
    height: 40px;
    background-color: #F8F3ED;
    color: var(--tl-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.history-badge-content h4 {
    color: var(--primary-dark);
    font-weight: 800;
    font-size: var(--font-body);
    margin-bottom: 2px;
}

.history-badge-content p {
    color: #666;
    font-size: var(--font-xtra-small);
    line-height: 1.3;
    margin: 0;
}

/* Timeline Interactive */
.timeline-container {
    position: relative;
    padding: 0 40px;
    margin-bottom: 50px;
}

.timeline-swiper {
    overflow: hidden;
    padding: 7px;
}

.timeline-track {
    display: flex;
    position: relative;
}

/* Base line connecting nodes */
.timeline-swiper::before {
    content: '';
    position: absolute;
    top: 102px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--solid-gold), var(--primary-dark), var(--primary));
    z-index: 0;
}

.timeline-segment {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
}

/* Colored lines for each segment */
/* .timeline-segment::before {
    content: '';
    position: absolute;
    top: 40px;
    left: -50%;
    width: 100%;
    height: 2px;
    z-index: 2;
}

.timeline-segment:first-child::before {
    display: none;
} */

.timeline-year {
    color: var(--accent-red);
    font-weight: 800;
    font-size: var(--font-body);
    margin-bottom: 2px;
}

.timeline-era {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: var(--font-small);
    margin-bottom: 20px;
    text-align: center;
}

.timeline-node {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: #F8F3ED;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 0 0 2px var(--white);
    position: relative;
    z-index: 3;
    aspect-ratio: 1;
}

.timeline-node .material-symbols-outlined {
    font-size: 34px;
    color: var(--primary-dark);
}

.timeline-card {
    background-color: var(--white);
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    padding: 10px;
    width: 180px;
    text-align: center;
    position: relative;
    height: stretch;
}

.timeline-card-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

.timeline-card-text {
    color: #666;
    font-size: var(--font-small);
    line-height: 1.4;
    margin-bottom: 15px;
}

.timeline-bar {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    border-radius: 3px;
    background: var(--accent-red);
}

/* Timeline Arrows */
.timeline-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 5;
    color: var(--primary-dark);
    border: 1px solid #E5E5E5;
    transition: all 0.3s ease;
    cursor: pointer;
}

.timeline-slider-arrow:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
}

.timeline-slider-arrow.left-arrow {
    left: -10px;
}

.timeline-slider-arrow.right-arrow {
    right: -10px;
}

/* History Features Banner */
.history-features-banner {
    background-color: var(--bg-history-feat);
    border-radius: 16px;
    padding: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.feat-bg-1 {
    background-color: var(--feat-1);
}

.feat-bg-2 {
    background-color: var(--feat-2);
}

.feat-bg-3 {
    background-color: var(--feat-3);
}

.feat-bg-4 {
    background-color: var(--feat-4);
}

.feature-icon-wrapper .material-symbols-outlined {
    font-size: 24px;
}

.feature-content h5 {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: var(--font-body);
    margin-bottom: 2px;
}

.feature-content p {
    color: #666;
    font-size: var(--font-small);
    line-height: 1.3;
    margin: 0;
}


/* Mobile Offcanvas Styles */
.mobile-offcanvas {
    background-color: var(--white);
}

.mobile-offcanvas-title {
    color: var(--primary-dark);
    font-size: var(--font-h5);
    font-weight: 700;
}

.mobile-nav-link {
    color: var(--base-black);
    font-weight: 600;
    font-size: var(--font-body);
    transition: color 0.3s ease;
    padding: 5px 0;
}

.mobile-nav-link:hover {
    color: var(--primary);
}

.mobile-menu-toggle {
    color: var(--primary-dark);
}

.mobile-menu-toggle:focus {
    box-shadow: none;
}

.mobile-divider {
    border-top: 1px solid #E5E5E5;
    opacity: 1;
}

.mobile-social-links .social-link {
    margin-left: 0;
}

/* News Section */
.news-section {
    padding: 60px 0;
}

/* Breaking News Widget */
.breaking-news-widget {
    display: flex;
    align-items: center;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    padding: 12px;
    gap: 15px;
    background-color: var(--white);
}

.breaking-news-icon-box {
    background-color: #FEF2F2;
    color: var(--accent-red);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.breaking-news-content {
    flex-grow: 1;
}

.breaking-news-title {
    color: var(--accent-red);
    font-size: var(--font-small);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-red);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(211, 47, 47, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0);
    }
}

.breaking-news-text {
    color: var(--base-black);
    font-size: var(--font-small);
    font-weight: 600;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.breaking-news-link {
    color: var(--accent-red);
    font-size: var(--font-xtra-small);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Filter Pills */
.news-filter-bar {
    border-top: 1px solid #E5E5E5;
    padding-top: 20px;
}

.news-filter-pills::-webkit-scrollbar {
    display: none;
}

.filter-pill {
    padding: 8px 24px;
    border: 1px solid #E5E5E5;
    border-radius: 50px;
    background-color: transparent;
    color: #555;
    font-size: var(--font-small);
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

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

/* News Cards */
.news-slider-container {
    position: relative;
    margin-top: 20px;
}

.news-card {
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.news-img-wrapper {
    position: relative;
    width: 100%;
}

.news-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--white);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: var(--font-xtra-small);
    font-weight: 600;
}

.badge-red {
    background-color: var(--accent-red);
}

.news-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #666;
    font-size: var(--font-xtra-small);
    font-weight: 500;
    margin-bottom: 15px;
}

.news-meta .material-symbols-outlined {
    font-size: 16px;
    color: #888;
}

.news-card-title {
    font-size: var(--font-body-small);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-card-desc {
    font-size: var(--font-small);
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.news-read-more {
    color: var(--primary-dark);
    font-size: var(--font-small);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.3s ease;
}

.news-read-more:hover {
    opacity: 0.8;
}

/* Newsletter Banner */
.newsletter-banner {
    background-color: var(--bg-light);
    border-radius: 16px;
    padding: 30px;
}

.newsletter-icon {
    width: 60px;
    height: 60px;
    background-color: #E2E8F0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--base-black);
    flex-shrink: 0;
}

.newsletter-icon .material-symbols-outlined {
    font-size: 32px;
}

.newsletter-title {
    color: var(--primary-dark);
    font-weight: 800;
    font-size: var(--font-h5);
    margin-bottom: 5px;
}

.newsletter-desc {
    color: #555;
    font-size: var(--font-small);
    margin: 0;
}

.newsletter-spam-text {
    color: #666;
    font-size: var(--font-xtra-small);
}



/* Category page code Start */
/* ============================================
   1. LOGO / HEADER AREA
   ============================================ */
/* .header-logo-area {
    background: var(--white);
    padding: 0;
    border-bottom: 1px solid var(--border-light);
} */

.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-height: 150px;
    padding: 16px 0;
    gap: 12px;
}

.header-ad-banner img {
    width: auto;
    border-radius: 8px;
}

/* ============================================
   3. STICKY NAVIGATION BAR
   ============================================ */
.main-navbar-container {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 10;
}

.main-navbar {
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: sticky;
    top: 0;
    z-index: 1000;
    /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15); */
}

.main-navbar.homepage {
    border: 4px solid var(--white);
    border-radius: 50px;
    width: max-content;
    margin: 0 auto;
}


.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-body);
    font-weight: 500;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gold-gradient);
    transition: var(--transition);
    border-radius: 2px 2px 0 0;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 70%;
}

a.home-icon-wrapper {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 16px 28px;
    transition: background-color 0.3s ease;
}

.home-icon-wrapper:hover {
    background-color: var(--primary);
}

.nav-search-btn {
    background: rgba(255, 255, 255, 0.1);
    background: transparent;
    border: none;
    color: var(--white);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-body-small);
    cursor: pointer;
    margin-right: 20px;
}

.nav-search-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Hamburger Menu (Mobile) */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: var(--font-h6);
    padding: 10px;
    cursor: pointer;
}

/* Category Page code End*/


/* ============================================
   12. FOOTER
   ============================================ */
.skyline-section {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: 30px;
    /* background: var(--primary-dark); */
}

.skyline-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.main-footer ul {
    padding: 0;
    list-style: none;
}

.main-footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.85);
}

.footer-logo-area {
    margin-bottom: 30px;
}

.footer-logo-area img {
    width: 100%;
    max-width: 280px;
    margin-bottom: 20px;
}

.footer-logo-area p {
    font-size: var(--font-small);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
    max-width: 280px;
}

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

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: var(--font-body);
    transition: var(--transition);
    margin-right: 15px;
}

.footer-social a:hover {
    color: var(--gold-light);
    transform: translateY(-2px);
}

.footer-column h4 {
    font-size: var(--font-body-small);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    font-size: var(--font-small);
    font-weight: 600;
    color: #ffffff;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-column ul li a:hover {
    color: var(--gold-light);
}

.footer-contact p {
    font-size: var(--font-small);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--font-small);
    font-weight: 600;
    color: #ffffff;
}

.footer-bottom a {
    color: #ffffff;
}

.footer-bottom a:hover {
    color: var(--gold-light);
}

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

/* Footer code End */

/* New Code Create above the @media code (above from here) and new media code write in below @media */

@media (min-width: 992px) {
    .border-end-dashed-lg {
        border-right: 1px dashed #D1D5DB;
    }

    .purpose-values-banner {
        padding-left: 140px;
    }
}

@media (min-width: 768px) {
    .border-start-dashed-md {
        border-left: 1px dashed #D1D5DB;
    }
}

@media (max-width: 991px) {
    .history-section {
        padding: 0;
    }

    .scope-hero-content {
        padding: 30px;
    }

    .scope-hero-img-wrapper {
        border-radius: 16px;
        min-height: 300px;
    }

    .scope-hero-gradient {
        width: 100%;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
    }

    .scope-stats-banner {
        margin-top: -30px;
        margin-left: 10px;
        margin-right: 10px;
        padding: 20px;
    }
}

/* Feature Banner Separators */
@media (min-width: 992px) {
    .history-features-banner .col {
        position: relative;
    }

    .history-features-banner .col:not(:first-child)::after {
        content: '';
        position: absolute;
        top: 10%;
        left: 0;
        height: 80%;
        width: 1px;
        background-color: #D1D5DB;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .history-features-banner .col {
        position: relative;
    }

    .history-features-banner .col:nth-child(even)::after {
        content: '';
        position: absolute;
        top: 6px;
        left: 0;
        height: 50px;
        width: 1px;
        background-color: #D1D5DB;
    }

    .history-features-banner .col:nth-child(1),
    .history-features-banner .col:nth-child(2) {
        border-bottom: 1px solid #D1D5DB;
        padding-bottom: 24px;
    }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .nav-links {
        padding: 0 10px;
    }

    :root {
        /* Text-size styles */
        --font-h1: 48px;
        --font-h2: 40px;
        --font-h3: 36px;
        --font-h4: 28px;
        --font-h5: 22px;
        --font-h6: 20px;
        --font-body: 16px;
        --font-body-small: 14px;
        --font-small: 13px;
        --font-xtra-small: 12px;
    }
}

@media (max-width: 991px) {
    .main-navbar {
        justify-content: space-between;
    }

    .search-icon {
        padding-right: 32px;
        /* Pad right side to balance layout when menu is hidden */
    }

    .stats-banner-container {
        padding: 24px;
    }

    .banner-stat-item {
        margin-bottom: 20px;
    }

    .history-hero {
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        padding: 40px 20px;
        background: unset;
        margin-bottom: 0;
    }

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

    .history-hero-badge {
        margin-top: -100px;
        max-width: 100%;
    }

    .history-subtitle {
        justify-content: center;
    }

    .history-subtitle::before {
        display: none;
    }

    .feature-item {
        margin-bottom: 20px;
    }

    .stats-banner-bg {
        opacity: 0.3;
    }
}

/* Category Page Content */
.category-page-wrapper {
    background-color: var(--bg-light);
}

.ad-placeholder-horizontal {
    width: 100%;
    height: 150px;
    background-color: transparent;
    border: 1px dashed #A3B1C6;
    border-radius: 12px;
}

.ad-placeholder-vertical {
    width: 100%;
    height: 250px;
    background-color: transparent;
    border: 1px dashed #A3B1C6;
    border-radius: 12px;
}

.category-article-card {
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.03);
    padding: 16px;
    transition: box-shadow 0.3s ease;
    position: relative;
    margin-bottom: 30px;
}

.category-article-card::after {
    content: '';
    position: absolute;
    bottom: -28px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #E2E8F0;
    border-radius: 12px;
}

.category-article-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
}

.category-article-card img {
    border-radius: 8px;
}

.article-badge {
    border: 1px solid var(--primary);
    color: var(--primary);
    background-color: var(--white);
    padding: 4px 12px 2px 12px;
    border-radius: 4px;
    line-height: 1;
    font-size: var(--font-xtra-small);
    font-weight: 600;
}

.popular-news-number {
    color: #E2E8F0;
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    font-family: var(--font-primary);
}

.hover-primary {
    transition: color 0.3s ease;
}

.hover-primary:hover {
    color: var(--primary) !important;
}

.breadcrumb-link {
    color: var(--primary-dark);
    text-decoration: none;
}

.rss-btn {
    background-color: var(--accent-orange, #F97316);
    color: var(--white);
    width: 40px;
    height: 40px;
}

.rss-btn .material-symbols-outlined {
    font-size: var(--font-h5);
}

.ad-placeholder-text {
    color: #6c757d;
    font-weight: 600;
    font-size: var(--font-small);
}

.article-title {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: var(--font-h5);
}

.article-desc {
    color: #666;
    font-size: var(--font-small);
}

.article-meta {
    color: #666;
    font-size: var(--font-xtra-small);
}

.article-meta .material-symbols-outlined {
    font-size: 16px;
}

.popular-news-title {
    color: var(--primary);
    font-weight: 700;
    font-size: var(--font-h6);
}

.popular-news-title .material-symbols-filled {
    color: var(--primary);
    /* Equivalent to color-blue if var missing */
    font-size: var(--font-xtra-small);
}

.popular-news-link {
    color: var(--base-black);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: var(--font-small);
}

.popular-news-link:hover {
    color: var(--primary);
}

.popular-news-views {
    color: #666;
    font-size: var(--font-small);
}

/* Quick Updates Widget */
.quick-updates-widget {
    background-color: var(--white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.03);
    border: 1px solid #E5E7EB;
    margin-bottom: 30px;
}

.quick-updates-title {
    color: var(--base-black);
    font-weight: 700;
    font-size: var(--font-h5);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.quick-updates-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

.quick-updates-title .material-symbols-filled {
    display: none;
}

.quick-updates-list,
.citizen-updates-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.quick-update-item,
.citizen-update-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #E5E7EB;
}

.quick-update-item:last-child,
.citizen-update-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.quick-update-item:first-child,
.citizen-update-item:first-child {
    padding-top: 0;
}

.update-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4B5563;
    flex-shrink: 0;
}

.update-icon-wrapper .material-symbols-outlined,
.update-icon {
    font-size: 24px;
    color: #4B5563;
}

.update-content {
    display: flex;
    flex-direction: column;
}

.update-title {
    color: var(--base-black);
    font-weight: 600;
    font-size: var(--font-body-small);
    margin-bottom: 0;
}

.update-status {
    color: #6c757d;
    font-size: var(--font-xtra-small);
}

/* Premium Property Ad */
.premium-property-ad {
    background-color: var(--primary-dark);
    border-radius: 12px;
    padding: 40px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.premium-label {
    color: var(--accent-orange, #F97316);
    font-size: var(--font-xtra-small);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.premium-title {
    color: var(--white);
    font-family: serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 24px;
}

.premium-price {
    color: #94a3b8;
    font-size: var(--font-small);
}

/* Pagination */
.custom-pagination {
    font-size: var(--font-small);
}

.custom-pagination a {
    text-decoration: none;
    color: var(--base-black);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E2E8F0;
    background-color: var(--white);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: var(--font-xtra-small);
}

.custom-pagination .page-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.custom-pagination .page-nav {
    height: 40px;
    padding: 0 20px;
    border-radius: 20px;
    gap: 4px;
}

.custom-pagination a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.custom-pagination .page-num.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.custom-pagination .page-dots {
    color: #64748b;
    font-weight: 600;
    padding: 0 4px;
}

/* Article Detail Page */
.article-detail-wrapper {
    background-color: var(--white);
}

.article-badge-solid {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: var(--font-small);
    font-weight: 600;
}

.article-main-title {
    color: var(--base-black);
    font-weight: 800;
    font-size: var(--font-h1);
    line-height: 1.3;
}

.article-lead {
    color: #666;
    font-size: var(--font-h6);
    line-height: 1.6;
}

.author-name {
    color: var(--base-black);
    font-weight: 700;
    font-size: var(--font-small);
}

.author-role {
    font-size: var(--font-small);
}

.author-meta-info {
    font-size: var(--font-small);
    color: #666;
}

.article-stats {
    font-size: var(--font-small);
}

.article-share-buttons .share-btn {
    border-radius: 4px;
    font-size: var(--font-xtra-small);
    font-weight: 600;
    color: var(--white);
    border: none;
    padding: 6px 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.article-share-buttons .share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    color: var(--white);
}

.article-share-buttons .share-btn.share-print,
.article-share-buttons .share-btn.share-copy {
    color: var(--primary-dark);
}

.article-share-buttons .share-btn.share-print:hover,
.article-share-buttons .share-btn.share-copy:hover {
    color: var(--primary);
}


.share-whatsapp {
    background-color: #25D366;
}

.share-facebook {
    background-color: #1877F2;
}

.share-x {
    background-color: #000000;
}

.share-linkedin {
    background-color: #0A66C2;
}

.share-telegram {
    background-color: #0088cc;
}

.share-copy,
.share-print {
    background-color: #F3F4F6;
    color: var(--base-black);
}

/* Sticky Share Sidebar */
.sticky-share-sidebar {
    position: fixed;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    z-index: 1040;
    width: 50px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-radius: 40px;
    border: 1px solid #E5E7EB;
    background: #FFF;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.05);
    padding: 12px;
}

.sticky-share-sidebar.show {
    opacity: 1;
    visibility: visible;
}

.sticky-share-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: all 0.2s ease;
    text-decoration: none;
}

.sticky-share-btn:hover {
    background-color: #F3F4F6;
    color: var(--primary) !important;
}

@media (max-width: 991px) {
    .sticky-share-sidebar {
        display: none !important;
    }
}

.article-featured-image {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    background-color: #f8fafc;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    display: block;
}

.article-caption {
    font-size: var(--font-xtra-small);
    color: #888;
}

.article-body-content {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #1e293b;
}

.article-body-content p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #334155;
    margin-bottom: 22px;
}

.article-body-content img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    margin: 24px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.article-subheading {
    color: var(--primary);
    font-weight: 700;
    font-size: var(--font-h4);
}

/* Article Body Components */
.article-blockquote {
    border-left-color: var(--primary) !important;
    border-left-width: 4px !important;
    border-left-style: solid;
}

.blockquote-text {
    font-size: var(--font-h5);
    font-weight: 500;
}

.article-stats-banner {
    background-color: #E7F1F8;
    border-radius: 12px;
}

.stat-value {
    color: var(--primary);
    font-weight: 700;
    font-size: 2.5rem;
    /* Equivalent to display-6 */
}

.stat-label {
    color: #6C757D;
    /* text-muted */
    font-size: var(--font-small);
}

.ad-placeholder-inarticle {
    background-color: #F1F5F9;
    height: 90px;
    border-radius: 8px;
    width: 100%;
}

.ad-placeholder-large-rec {
    background-color: #F1F5F9;
    height: 250px;
    border-radius: 8px;
    width: 100%;
}

.ad-placeholder-text {
    color: #6C757D;
    font-size: 10px;
}

.article-timeline-widget {
    border-color: #E5E7EB !important;
}

.timeline-widget-title {
    font-weight: 700;
    font-size: var(--font-h6);
}

.article-timeline-widget .timeline-list {
    border-left: 2px solid #E5E7EB;
}

.article-timeline-widget .timeline-dot {
    width: 12px;
    height: 12px;
    left: -7px;
    top: 6px;
    border: 2px solid var(--white);
    background-color: var(--primary);
}

.timeline-date {
    color: var(--primary);
    font-weight: 700;
    font-size: var(--font-small);
}

.timeline-title {
    font-weight: 700;
    color: var(--base-black);
    font-size: var(--font-body-small);
}

.timeline-desc {
    color: #6C757D;
    font-size: var(--font-small);
}

.article-info-box {
    border-color: #E5E7EB !important;
}

.info-icon {
    color: var(--primary);
}

.info-icon .material-symbols-outlined {
    font-size: 20px;
}

.info-title {
    font-weight: 700;
    color: var(--base-black);
    font-size: var(--font-body);
}

.info-desc {
    color: #6C757D;
    font-size: var(--font-small);
    line-height: 1.6;
}

/* Photo Gallery Component */
.article-gallery-widget {
    margin-bottom: 40px;
}

.gallery-title {
    font-size: var(--font-h5);
    font-weight: 700;
    color: var(--base-black);
    margin-bottom: 24px;
}

.gallery-img-large {
    height: 200px;
    object-fit: cover;
}

.gallery-img-small {
    height: 100px;
    object-fit: cover;
}

/* Article Tags */
.article-tags-wrapper {
    margin-bottom: 40px;
}

.tag-pill {
    padding: 8px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    color: #4B5563;
    font-size: var(--font-small);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-pill:hover {
    background-color: #F3F4F6;
    color: var(--primary);
}

/* Author Profile Card */
.article-author-card {
    padding: 24px;
    margin-bottom: 40px;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    background: #F9FAFB;
}

.author-avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author-card-name {
    font-size: var(--font-h5);
    font-weight: 700;
    color: var(--base-black);
}

.btn-outline-primary-custom {
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 6px 16px;
    border-radius: 4px;
    background: transparent;
    font-weight: 600;
    font-size: var(--font-small);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.author-card-bio {
    color: #4B5563;
    font-size: var(--font-small);
    line-height: 1.6;
}

/* Related News Section */
.article-related-news {
    margin-bottom: 40px;
}

.section-title-wrapper {
    margin-bottom: 24px;
}

/* .section-title {
    font-size: var(--font-h5);
    font-weight: 700;
    color: var(--base-black);
    position: relative;
    padding-bottom: 12px;
} */

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 4px;
    background-color: var(--primary);
}

.related-news-card {
    display: flex;
    flex-direction: column;
}

.related-news-img {
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
}

.related-news-category {
    color: var(--primary);
    font-size: var(--font-xtra-small);
    font-weight: 700;
    margin-bottom: 8px;
}

.related-news-title {
    font-size: var(--font-h6);
    font-weight: 700;
    color: var(--base-black);
}

/* Comments Section */
.article-comments-section {
    margin-bottom: 40px;
}

.comment-form {
    margin-bottom: 40px;
}

.comment-textarea {
    width: 100%;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 16px;
    font-size: var(--font-body-small);
    color: var(--base-black);
    resize: vertical;
    margin-bottom: 16px;
    background-color: #F9FAFB;
    font-family: inherit;
}

.comment-textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--white);
}

.comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #E5E7EB;
}

.comment-author {
    font-size: var(--font-body);
    font-weight: 700;
    color: var(--base-black);
}

.comment-time {
    font-size: var(--font-xtra-small);
    color: #9CA3AF;
}

.comment-text {
    font-size: var(--font-body-small);
    color: #4B5563;
    line-height: 1.6;
}

/* Sidebar Most Read News */
.most-read-widget {
    background-color: var(--white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.03);
}

.most-read-title {
    color: var(--base-black);
    font-weight: 700;
    font-size: var(--font-h5);
}

.most-read-number {
    width: 24px;
    height: 24px;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: var(--font-xtra-small);
    font-weight: 700;
    flex-shrink: 0;
}

.most-read-link {
    color: var(--base-black);
    font-weight: 600;
    text-decoration: none;
    font-size: var(--font-small);
    transition: color 0.3s ease;
}

.most-read-link:hover {
    color: var(--primary);
}

/* Status Highlights */
.status-highlight {
    font-size: var(--font-small);
    font-weight: 700;
}

.status-surplus {
    color: #10B981;
}

.status-high {
    color: #EF4444;
}

.status-normal {
    color: #10B981;
}

.status-active {
    color: #F59E0B;
}

/* Article Sidebar Newsletter */
.article-newsletter-widget {
    background-color: var(--primary-dark);
    border-radius: 12px;
    padding: 32px 24px;
}

.article-newsletter-widget .newsletter-title {
    font-size: var(--font-h5);
    font-weight: 700;
}

.article-newsletter-widget .newsletter-desc {
    font-size: var(--font-small);
    color: rgba(255, 255, 255, 0.80);
}

.article-newsletter-widget .newsletter-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 12px 16px;
    font-size: var(--font-small);
}

.article-newsletter-widget .newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.article-newsletter-widget .newsletter-input:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: none;
    color: var(--white);
}

.article-newsletter-widget .newsletter-btn {
    background-color: #1E88E5;
    color: var(--white);
    border: none;
    padding: 12px;
    font-weight: 600;
    font-size: var(--font-small);
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.article-newsletter-widget .newsletter-btn:hover {
    background-color: #1565C0;
}

.ad-placeholder-tall {
    width: 300px;
    height: 600px;
    background-color: #F8FAFC;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
}

/* Category Page Newsletter Widget */
.category-newsletter-widget {
    background: linear-gradient(135deg, var(--primary) 0%, #1783E9 100%);
    border-radius: 12px;
    padding: 32px 24px;
}

.category-newsletter-widget .newsletter-title {
    font-size: var(--font-h5);
    font-weight: 600;
}

.category-newsletter-widget .newsletter-desc {
    font-size: var(--font-xtra-small);
    line-height: 1.5;
}

.category-newsletter-widget .newsletter-input-light {
    background-color: var(--white);
    border: 1px solid var(--white);
    color: var(--base-black);
    padding: 12px 16px;
    font-size: var(--font-small);
    border-radius: 8px;
}

.category-newsletter-widget .newsletter-input-light::placeholder {
    color: #6c757d;
}

.category-newsletter-widget .newsletter-input-light:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
    border-color: var(--white);
    outline: none;
}

.category-newsletter-widget .newsletter-btn-dark {
    background-color: var(--primary-dark);
    color: var(--white);
    border: none;
    padding: 12px;
    font-weight: 600;
    font-size: var(--font-small);
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.category-newsletter-widget .newsletter-btn-dark:hover {
    background-color: #021a38;
    color: var(--white);
}

.ad-placeholder-tall-dashed {
    width: 100%;
    height: 600px;
    border-radius: 12px;
    border: 1px dashed #64748B;
    background: #F1F5F9;
    font-size: var(--font-body);
}

.ad-text-muted {
    color: #64748B;
    font-size: var(--font-xtra-small);
    font-weight: 600;
}

/* Category Page Updates Widget */
.category-updates-widget {
    background-color: var(--white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
}

.category-updates-title {
    color: var(--primary);
    font-weight: 700;
    font-size: var(--font-h6);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.category-updates-title .material-symbols-filled {
    font-size: 12px;
}

.category-updates-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cat-update-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cat-update-icon {
    width: 38px;
    height: 38px;
    background-color: #F8FAFC;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    flex-shrink: 0;
}

.cat-update-icon .material-symbols-outlined {
    font-size: 18px;
    color: var(--primary);
}

.cat-update-content {
    display: flex;
    flex-direction: column;
}

.cat-update-title {
    color: var(--base-black);
    font-weight: 700;
    font-size: var(--font-body-small);
    margin-bottom: 2px;
}

.cat-update-status {
    color: #6c757d;
    font-size: var(--font-small);
}


/* Latest News Section */
.main-heading {
    font-size: var(--font-h1);
    color: var(--primary);
    font-weight: 800;
}

.latest-news-section {
    background-color: var(--white);
}

/* .latest-news-section .section-title {
    color: var(--primary-dark);
    font-size: var(--font-h3);
    font-weight: 700;
} */

.news-card-large {
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    border-radius: 12px;
    background-color: var(--white);
    overflow: clip;
}

.news-card-large:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.news-card-large-img {
    min-height: 250px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.news-card-large-title {
    color: var(--primary-dark);
    font-size: var(--font-h4);
    font-weight: 700;
}

.news-card-large-desc {
    color: #4B5563;
    font-size: var(--font-body-small);
    line-height: 1.6;
}

.news-category {
    color: var(--primary);
    font-weight: 700;
    font-size: var(--font-xtra-small);
    text-transform: uppercase;
}

.news-date {
    color: #6B7280;
    font-size: var(--font-small);
}

.news-card-small {
    transition: all 0.3s ease;
}

.news-card-small:hover {
    transform: translateY(-2px);
}

.news-card-small-title {
    color: var(--primary-dark);
    font-size: var(--font-body);
    font-weight: 700;
    line-height: 1.4;
}

.news-card-small-img-wrapper {
    width: 160px;
    height: 110px;
}

.news-card-vertical {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: clip;
    transition: all 0.3s ease;
}

.news-card-vertical:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.news-card-vertical-img-wrapper {
    height: 180px;
}

.news-card-vertical-title {
    color: var(--primary-dark);
    font-size: var(--font-h6);
    font-weight: 700;
    line-height: 1.4;
}

.news-card-vertical-desc {
    color: #4B5563;
    font-size: var(--font-small);
    line-height: 1.6;
}

/* News Videos Section */
.news-videos-section {
    background-color: var(--white);
}

.video-card {
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: clip;
}

.video-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.video-card-img-wrapper {
    height: 180px;
}

.video-card-title {
    color: var(--primary-dark);
    font-size: var(--font-h6);
    font-weight: 700;
    line-height: 1.4;
}

.video-duration {
    font-size: var(--font-xtra-small);
    font-weight: 700;
    background-color: rgba(0, 0, 0, 0.75);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 4px;
}

.play-icon-overlay {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
}

.video-card:hover .play-icon-overlay {
    background-color: var(--primary);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon-overlay .material-symbols-filled {
    color: var(--white);
    font-size: 32px;
}

.news-videos-section .swiper-pagination-bullet {
    width: 32px;
    height: 8px;
    border-radius: 4px;
    background-color: #E5E7EB;
    display: inline-block;
    transition: background-color 0.3s ease;
    opacity: 1;
    margin: 0 4px;
}

.news-videos-section .swiper-pagination-bullet-active {
    background-color: var(--primary);
}

/* Company Newsletter Section */
.newsletter-section {
    background-color: var(--white);
}

.newsletter-swiper-container {
    position: relative;
    padding: 0 40px;
}

.newsletter-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.newsletter-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.newsletter-logo-wrapper {
    height: 80px;
    width: 100%;
}

.newsletter-company-name {
    color: var(--base-black);
    font-size: var(--font-body-small);
    font-weight: 700;
}

.newsletter-swiper-container .swiper-button-prev,
.newsletter-swiper-container .swiper-button-next {
    width: 36px;
    height: 36px;
    background-color: var(--primary);
    border-radius: 50%;
    color: var(--white);
    box-shadow: 0 2px 6px rgba(0, 102, 178, 0.3);
}

.newsletter-swiper-container .swiper-button-prev::after,
.newsletter-swiper-container .swiper-button-next::after {
    font-size: 16px;
    font-weight: 900;
}

.newsletter-swiper-container .swiper-button-prev {
    left: 0;
}

.newsletter-swiper-container .swiper-button-next {
    right: 0;
}

.newsletter-btn {
    background-color: var(--primary);
    color: var(--white);
    border-radius: 6px;
    padding: 8px 0;
    font-size: var(--font-body-small);
    font-weight: 600;
    border: none;
    transition: background-color 0.3s ease;
    width: 100%;
    display: inline-block;
    text-align: center;
}

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

/* Newsletter CTA Section */
.newsletter-cta-box {
    background-color: var(--primary-dark);
    background-image: url('../images/newsletter-sec-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
}

.newsletter-cta-img-wrapper {
    max-width: 160px;
}

.newsletter-cta-form .form-control {
    border-radius: 8px;
    height: 48px;
    font-size: var(--font-small);
}

.newsletter-cta-form .btn {
    border-radius: 8px;
    height: 48px;
    background-color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    transition: all 0.3s ease;
}

.newsletter-cta-form .btn:hover {
    background-color: var(--primary-dark);
    border-color: var(--white);
}

/* Send News Section */
.send-news-section {
    background-color: var(--white);
}

.send-news-form .form-label {
    color: var(--base-black);
    font-size: var(--font-small);
    font-weight: 700;
}

.custom-input {
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: var(--font-small);
    color: var(--base-black);
}

.custom-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(0, 102, 178, 0.1);
}

.custom-input::placeholder {
    color: #9CA3AF;
}

.file-upload-box {
    border: 1.5px dashed var(--primary);
    background-color: #F8FAFC;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.file-upload-box:hover {
    background-color: #EFF6FF;
}

.file-upload-box .material-symbols-outlined {
    font-size: 32px;
}

.file-input-overlay {
    cursor: pointer;
    z-index: 2;
}

.newsletter-vertical-divider {
    width: 1px;
    height: 60%;
    background-color: rgba(255, 255, 255, 0.3);
}

.newsletter-privacy-text {
    opacity: 0.9;
}

.input-icon {
    font-size: 20px;
}

.icon-16 {
    font-size: 16px;
}

.file-upload-wrapper {
    min-height: 160px;
}

.custom-date-badge {
    border-top-left-radius: 16px;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
    background: var(--primary);
}

.case-study-title {
    color: var(--primary);
    font-weight: 700;
    font-size: var(--font-h5);
    margin-bottom: 1.5rem;
}

.case-study-view-all {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.25rem;
}

.case-study-stat-icon {
    font-size: var(--font-h6);
}

.case-study-icon-box {
    background-color: var(--bg-blue-light);
    color: var(--primary);
    border-radius: 4px;
    display: inline-flex;
    padding: 0.25rem;
}

.case-study-quote-icon {
    color: var(--primary);
    font-size: 2.5rem;
    line-height: 1;
}

.case-study-quote-text {
    font-style: italic;
    color: #4B5563;
    font-size: var(--font-small);
    margin-bottom: 0.5rem;
}

.case-study-divider {
    border-top: 1px solid #E5E5E5;
    margin-top: 0;
    margin-bottom: 1.5rem;
}


@media (max-width: 767px) {

    .view-report-btn {
        margin-top: 15px;
    }

    .border-end-dashed {
        border-right: none;
    }

    .border-bottom-dashed-mobile {
        border-bottom: 1px dashed #E5E5E5;
    }

    .history-hero-badge {
        margin-top: 0;
    }

    .history-features-banner .col:not(:last-child) {
        border-bottom: 1px solid #D1D5DB;
        padding-bottom: 20px;
    }

    :root {
        /* Text-size styles */
        --font-h1: 32px;
        --font-h2: 26px;
        --font-h3: 24px;
        --font-h4: 22px;
        --font-h5: 20px;
        --font-h6: 18px;
        --font-body: 14px;
    }

    .news-card-large-img {
        height: auto;
    }
}

@media (max-width: 576px) {
    .banner-image-wrapper {
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .top-header-left {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 5px;
    }

    .divider {
        display: none;
    }
}


.color-white {
    color: var(--white);
}

.color-primary {
    color: var(--primary);
}

/* Event Categories & Newsletter Section */
.event-categories-section {
    background-color: var(--white);
}

.event-category-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 24px 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.event-category-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(0, 102, 178, 0.08);
    transform: translateY(-3px);
}

.event-category-icon-wrapper {
    width: 88px;
    height: 88px;
    background-color: var(--bg-blue-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.event-category-card-title {
    color: var(--primary);
    font-size: var(--font-h6);
    font-weight: 700;
    margin-bottom: 12px;
}

.event-category-card-desc {
    color: var(--base-black);
    font-size: var(--font-body-small);
    line-height: 1.5;
    margin-bottom: 24px;
    flex-grow: 1;
    opacity: 0.85;
}

.event-category-card-link {
    color: var(--primary);
    font-weight: 700;
    font-size: var(--font-body-small);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.event-category-card-link:hover {
    color: var(--primary-dark);
}

.event-category-card-link .link-arrow {
    transition: transform 0.3s ease;
    font-size: 18px;
}

.event-category-card-link:hover .link-arrow {
    transform: translateX(4px);
}

/* Event Newsletter Banner */
.event-newsletter-banner {
    background-color: var(--bg-blue-light);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 36px;
    margin-top: 20px;
}

.event-newsletter-icon-wrapper {
    width: 68px;
    height: 68px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.event-newsletter-title {
    color: var(--primary-dark);
    font-size: var(--font-h5);
    font-weight: 700;
    margin-bottom: 6px;
}

.event-newsletter-desc {
    color: var(--base-black);
    font-size: var(--font-body-small);
    opacity: 0.85;
}

.event-newsletter-form {
    display: flex;
    flex-direction: column;
}

.event-newsletter-input-group {
    display: flex;
    gap: 12px;
}

.event-newsletter-input {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: var(--font-body-small);
    color: var(--base-black);
    font-family: var(--font-primary);
    transition: var(--transition);
}

.event-newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 178, 0.15);
}

.event-newsletter-privacy {
    color: var(--base-black);
    font-size: var(--font-small);
    margin-top: 10px;
    opacity: 0.7;
}

@media (max-width: 991px) {
    .event-newsletter-banner {
        padding: 24px 20px;
    }
}

@media (max-width: 576px) {
    .event-newsletter-input-group {
        flex-direction: column;
    }
}

/* Advertising & PR Agency Section */
.advertising-agency-section {
    background-image: url('../images/advertising-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 70px 0;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.advertising-logos-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.art-title {
    font-size: 40px;
    font-weight: 900;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
    line-height: 1;
}

.art-circle-badge {
    background-color: var(--accent-red);
    color: var(--white);
    font-size: 36px;
    font-weight: 800;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.art-subtext {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--base-black);
    line-height: 1;
    margin-top: 3px;
}

.advertising-logo-divider {
    width: 1px;
    height: 38px;
    background-color: var(--border);
    margin: 0 12px;
}

.advertising-tb-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.advertising-main-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.text-primary-dark {
    color: var(--primary-dark);
}

.text-accent-orange {
    color: var(--accent-orange);
}

.advertising-pill-wrapper {
    display: flex;
    justify-content: center;
}

.advertising-pill-badge {
    display: inline-block;
    border: 1.5px solid var(--primary-dark);
    border-radius: 50px;
    padding: 6px 28px;
    font-size: var(--font-small);
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-dark);
    text-transform: uppercase;
    background-color: rgba(255, 255, 255, 0.6);
}

.advertising-subtitle {
    font-size: var(--font-h6);
    font-weight: 600;
    color: var(--primary-dark);
    letter-spacing: 0.2px;
}

@media (max-width: 768px) {
    .advertising-main-title {
        font-size: 30px;
    }

    .advertising-pill-badge {
        font-size: var(--font-xtra-small);
        letter-spacing: 1.5px;
        padding: 6px 16px;
    }

    .advertising-subtitle {
        font-size: var(--font-body-small);
    }
}

/* Advertise Banner Feature Cards */
.advertise-feature-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    height: 100%;
}

.advertise-feature-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(0, 102, 178, 0.08);
    transform: translateY(-2px);
}

.advertise-feature-icon-wrapper {
    width: 44px;
    height: 44px;
    background-color: var(--bg-blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.advertise-feature-title {
    color: var(--primary);
    font-size: var(--font-body-small);
    font-weight: 700;
    margin-bottom: 2px;
    line-height: 1.2;
}

.advertise-feature-desc {
    color: var(--base-black);
    font-size: var(--font-small);
    opacity: 0.8;
    line-height: 1.2;
    white-space: nowrap;
}

/* Thane Stats Section for Advertisers */
.thane-stats-section {
    background-color: var(--white);
}

.stats-section-title {
    font-size: var(--font-h3);
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.stats-section-subtitle {
    font-size: var(--font-body);
    color: var(--base-black);
    opacity: 0.75;
}

.stats-accent-line {
    width: 48px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
    margin: 0 auto;
}

.stat-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 14px 18px 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(0, 102, 178, 0.08);
    transform: translateY(-3px);
}

.stat-icon-wrapper {
    width: 64px;
    height: 64px;
    background-color: var(--bg-blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.stat-icon-wrapper .stat-icon {
    font-size: 32px;
    color: var(--primary);
}

.stat-number {
    font-size: var(--font-h5);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
    line-height: 1.1;
}

.stat-label {
    font-size: var(--font-body-small);
    font-weight: 700;
    color: var(--base-black);
    margin-bottom: 4px;
    line-height: 1.25;
}

.stat-sublabel {
    font-size: var(--font-small);
    color: var(--base-black);
    opacity: 0.65;
    margin-bottom: 16px;
    line-height: 1.2;
    flex-grow: 1;
}

.stat-growth-badge {
    color: var(--accent-green);
    font-size: var(--font-small);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.stat-source-note {
    color: var(--base-black);
    font-size: var(--font-small);
    opacity: 0.65;
    margin-top: 24px;
}

.stat-source-icon {
    font-size: 18px;
    color: var(--primary);
}

/* Growth Partner Services Section */
/* .growth-partner-section {
    background-color: var(--bg-light);
} */

.growth-partner-top-badge {
    display: inline-block;
    background-color: var(--bg-blue-light);
    color: var(--primary-dark);
    border-radius: 50px;
    padding: 8px 24px;
    font-size: var(--font-small);
    font-weight: 700;
    letter-spacing: 1.5px;
    border: 1px solid rgba(0, 102, 178, 0.15);
}

.growth-services-wrapper {
    position: relative;
}

.growth-service-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px 20px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.growth-service-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border-color: var(--primary);
}

.growth-service-icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.growth-service-icon-badge.icon-red {
    background-color: #FEE2E2;
    color: var(--accent-red);
}

.growth-service-icon-badge.icon-purple {
    background-color: var(--bg-purple-light);
    color: var(--accent-purple);
}

.growth-service-title {
    font-size: var(--font-h4);
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 12px;
}

.text-accent-red {
    color: var(--accent-red);
}

.text-accent-purple {
    color: var(--accent-purple);
}

.text-solid-gold {
    color: var(--gold-light);
}

.growth-service-subtitle {
    font-size: var(--font-body-small);
    font-weight: 700;
    color: var(--base-black);
    margin-bottom: 8px;
}

.growth-service-desc {
    font-size: var(--font-small);
    color: var(--base-black);
    opacity: 0.75;
    line-height: 1.5;
    margin-bottom: 24px;
    max-width: 392px;
}

/* Feature Pills inside Service Cards */
.growth-feature-pills-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 12px 8px;
}

.growth-pill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}

.growth-pill-item .material-symbols-outlined {
    color: var(--accent-red);
}

.growth-service-right .growth-pill-item .material-symbols-outlined {
    color: var(--accent-purple);
}

.growth-pill-item span:last-child {
    font-size: var(--font-xtra-small);
    font-weight: 700;
    color: var(--base-black);
    line-height: 1.2;
}

/* Center 360 Badge */
.growth-center-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 8px;
    aspect-ratio: 1;
    background-color: var(--primary-dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px solid var(--white);
    box-shadow: 0 8px 24px rgba(3, 42, 92, 0.25);
    z-index: 5;
}

.growth-service-left,
.growth-service-right {
    position: relative;
}

.growth-service-left img,
.growth-service-right img {
    position: absolute;
    top: 0;
    right: 0;
    width: 242px;
    z-index: -1;
}

.bg-line {
    content: "";
    width: 2px;
    height: 100%;
    position: absolute;
    background: #c2c2c2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(194, 194, 194, 0.83) 50%, rgba(0, 0, 0, 0) 100%);
}

.badge-360 {
    font-size: var(--font-h6);
    font-weight: 800;
    line-height: 1;
}

.badge-subtext {
    font-size: var(--font-xtra-small);
    font-weight: 400;
    line-height: 1.1;
    opacity: 0.9;
    margin-top: 4px;
}

/* Middle Split Card: Trust & Reach */
.growth-trust-reach-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
}

.trust-column {
    padding-right: 24px;
    border-right: 1px solid #e5e5e5;
}

.reach-column {
    padding-left: 24px;
}

.trust-reach-heading {
    font-size: var(--font-h6);
    font-weight: 800;
    color: var(--primary-dark);
}

.trust-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    text-align: center;
}

.trust-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-icon-box {
    width: 40px;
    height: 40px;
    background-color: var(--bg-blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.trust-icon-box .material-symbols-outlined {
    color: var(--primary);
}

.trust-number {
    font-size: var(--font-h6);
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 2px;
}

.trust-label {
    font-size: var(--font-xtra-small);
    font-weight: 600;
    color: var(--base-black);
    line-height: 1.2;
    margin-bottom: 0;
}

.reach-platforms-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    text-align: center;
}

.reach-platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reach-icon-box {
    width: 40px;
    height: 40px;
    background-color: var(--bg-blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.reach-icon-box .material-symbols-outlined {
    color: var(--primary);
}

.reach-title {
    font-size: var(--font-xtra-small);
    font-weight: 700;
    color: var(--base-black);
    margin-bottom: 2px;
}

.reach-desc {
    font-size: 10px;
    color: var(--base-black);
    opacity: 0.65;
    line-height: 1.1;
    margin-bottom: 0;
}

/* Dark CTA Banner */
.growth-cta-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #001A33 100%);
    border-radius: 20px;
    color: var(--white);
}

.growth-cta-skyline-bg {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    mix-blend-mode: luminosity;
    pointer-events: none;
}

.growth-cta-title {
    font-size: var(--font-h4);
    font-weight: 800;
    line-height: 1.2;
}

.growth-cta-desc {
    font-size: var(--font-body-small);
    opacity: 0.9;
    max-width: 600px;
}

.btn-danger-red {
    background-color: var(--accent-red);
    color: var(--white);
}

.btn-danger-red:hover {
    background-color: #B71C1C;
    color: var(--white);
}

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

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.growth-phone-circle {
    width: 44px;
    height: 44px;
    background-color: var(--accent-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.call-subtext {
    display: block;
    font-size: var(--font-xtra-small);
    opacity: 0.8;
}

.call-number {
    font-size: var(--font-h6);
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    line-height: 1;
}

.call-number:hover {
    color: var(--gold-light);
}

/* Bottom Guarantee Row */
.growth-guarantee-row {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px 24px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: var(--font-small);
    color: var(--base-black);
    padding-right: 24px;
    border-right: 1px solid var(--border);
}

.guarantee-item .material-symbols-outlined {
    color: var(--primary);
}

.guarantee-script-tagline {
    font-size: var(--font-h6);
    font-weight: 700;
    font-style: italic;
    color: var(--primary-dark);
    position: relative;
}

.script-underline {
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-red);
    border-radius: 2px;
    margin-top: 2px;
    margin-left: auto;
}

@media (max-width: 991px) {
    .guarantee-item {
        border-right: none;
        padding-right: 0;
    }

    .bg-line,
    .growth-center-badge {
        display: none;
    }

    .trust-column {
        padding-right: 0;
        border-right: none;
        padding-bottom: 24px;
        border-bottom: 1px solid var(--border-light);
        margin-bottom: 24px;
    }

    .reach-column {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .growth-feature-pills-row {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .growth-service-left img,
    .growth-service-right img {
        opacity: 0.4;
    }
}

/* Feature Your Brand Section */
.feature-brand-section {
    background-color: var(--white);
}

.feature-brand-title {
    font-size: var(--font-h3);
    font-weight: 800;
    color: var(--primary);
}

.feature-brand-subtitle {
    font-size: var(--font-body);
    color: var(--base-black);
    opacity: 0.75;
}

/* Left Form Card */
.inquiry-form-card,
.placements-options-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.form-label {
    font-size: var(--font-small);
    font-weight: 700;
    color: var(--base-black);
    margin-bottom: 6px;
}

.text-danger {
    color: var(--accent-red);
}

.form-input-field {
    width: 100%;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: var(--font-body-small);
    color: var(--base-black);
    font-family: var(--font-primary);
    transition: var(--transition);
}

.form-input-field:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 178, 0.12);
}

.form-textarea {
    resize: vertical;
}

.inquiry-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--primary);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: var(--font-body-small);
    border: none;
    transition: var(--transition);
    cursor: pointer;
}

.inquiry-submit-btn:hover {
    background-color: var(--primary-dark);
}

.inquiry-privacy-text {
    font-size: var(--font-small);
    color: var(--base-black);
    opacity: 0.7;
    margin-top: 4px;
}

.privacy-icon {
    color: var(--primary);
}

/* Right Placements Card */
/* .placements-options-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 32px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
} */

.placements-header-divider {
    display: flex;
    align-items: center;
    gap: 16px;
}

.placements-header-divider .divider-line {
    flex-grow: 1;
    height: 1px;
    background-color: rgba(0, 102, 178, 0.2);
}

.placements-header-title {
    font-size: var(--font-body-small);
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
    margin-bottom: 0;
}

.placement-item-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    transition: var(--transition);
}

.placement-item-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(0, 102, 178, 0.08);
    transform: translateY(-2px);
}

.placement-icon-box {
    width: 56px;
    height: 56px;
    background-color: var(--bg-blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.placement-icon-box .material-symbols-outlined {
    color: var(--primary);
}

.placement-card-title {
    font-size: var(--font-body-small);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
    line-height: 1.25;
}

.placement-card-desc {
    font-size: var(--font-small);
    color: var(--base-black);
    opacity: 0.7;
    line-height: 1.3;
}

/* Bottom Banner Bar */
.feature-brand-bottom-banner {
    background-color: var(--bg-blue-light);
    border: 1px solid rgba(0, 102, 178, 0.15);
    border-radius: 12px;
    padding: 12px 24px;
    color: var(--primary);
    font-size: var(--font-body-small);
    font-weight: 600;
}

.banner-check-icon {
    color: var(--primary);
}

/* What We Do / Three Ways Section */
.what-we-do-section {
    background-color: var(--white);
}

.what-we-do-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.what-we-do-badge .badge-line {
    width: 24px;
    height: 2px;
    background-color: var(--primary);
}

.what-we-do-badge .badge-text {
    font-size: var(--font-small);
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary);
}

.what-we-do-title {
    font-size: var(--font-h3);
    font-weight: 800;
    color: var(--primary-dark);
}

.what-we-do-subtitle {
    font-size: var(--font-body);
    color: var(--base-black);
    opacity: 0.75;
    line-height: 1.5;
}

/* 3 Cards */
.what-we-do-card {
    height: 400px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.what-we-do-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.card-events {
    background-image: url('../images/what-we-do-img1.png');
}

.card-news {
    background-image: url('../images/what-we-do-img2.png');
}

.card-ad {
    background-image: url('../images/what-we-do-img3.png');
}

.what-we-do-card-body {
    padding: 28px 24px;
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.what-we-do-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.what-we-do-icon-wrapper.icon-orange {
    background-color: #EA580C;
    color: var(--white);
}

.what-we-do-icon-wrapper.icon-blue {
    background-color: var(--primary);
    color: var(--white);
}

.what-we-do-icon-wrapper.icon-teal {
    background-color: #00897B;
    color: var(--white);
}

.what-we-do-card-title {
    font-size: var(--font-h4);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.what-we-do-card-desc {
    font-size: var(--font-body-small);
    color: var(--white);
    opacity: 0.92;
    line-height: 1.4;
    margin-bottom: 24px;
    max-width: 280px;
}

.what-we-do-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: var(--font-body-small);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.what-we-do-card-btn.text-orange {
    color: #EA580C;
}

.what-we-do-card-btn.text-blue {
    color: var(--primary);
}

.what-we-do-card-btn.text-teal {
    color: #00897B;
}

.what-we-do-card-btn:hover {
    transform: scale(1.03);
}

.what-we-do-card-btn .btn-arrow {
    transition: transform 0.3s ease;
    font-size: 18px;
}

.what-we-do-card-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Middle 4 Features Card */
.what-we-do-features-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 28px;
}

.feature-col-item {
    position: relative;
}

.feature-col-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: var(--border);
}

.feature-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-blue-soft {
    background-color: var(--bg-blue-light);
}

.bg-orange-soft {
    background-color: #FFF7ED;
}

.bg-purple-soft {
    background-color: var(--bg-purple-light);
}

.bg-teal-soft {
    background-color: #E0F2F1;
}

.text-orange {
    color: #EA580C;
}

.text-purple {
    color: var(--accent-purple);
}

.text-teal {
    color: #00897B;
}

.feature-item-title {
    font-size: var(--font-body-small);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 2px;
}

.feature-item-desc {
    font-size: var(--font-small);
    color: var(--base-black);
    opacity: 0.75;
    line-height: 1.3;
}

/* Achievements Ticker Bar */
.achievements-bar {
    background-color: var(--primary-dark);
    border-radius: 12px;
    padding: 14px 24px;
    color: var(--white);
}

.achievements-title-badge {
    padding-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 180px;
}

.achieve-heading-main {
    display: block;
    font-size: var(--font-small);
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--white);
    line-height: 1;
}

.achieve-heading-gold {
    display: block;
    font-size: var(--font-small);
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--gold-light);
    line-height: 1.2;
}

.trophy-gold-icon {
    font-size: 34px;
    color: var(--gold-light);
}

.achievements-items-list {
    font-size: var(--font-small);
    font-weight: 500;
    color: var(--white);
}

.achieve-dot {
    color: var(--gold-light);
    font-size: 24px;
}

.achievements-pause-btn {
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: var(--transition);
}

.achievements-pause-btn:hover {
    opacity: 1;
}

@media (max-width: 991px) {
    .feature-col-item:not(:last-child)::after {
        display: none;
    }
}

/* About Thane Vaibhav Section */
.about-thane-vaibhav-section {
    background-color: var(--white);
}

.about-thane-vaibhav-section .container {
    background-color: var(--bg-light);
    border-radius: 12px;
    border: 1px solid #e1e1e1;
    padding: 24px;
}

.about-tv-category {
    display: flex;
    flex-direction: column;
    align-items: self-start;
    gap: 6px;
}

.about-tv-category .category-line {
    width: 20px;
    height: 3px;
    background-color: var(--primary);
}

.about-tv-category .category-text {
    font-size: var(--font-body);
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary);
}

.about-tv-heading {
    font-size: var(--font-h2);
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.15;
}

.about-tv-script {
    font-style: italic;
    font-weight: 600;
    color: #EA580C;
    display: block;
}

.about-tv-desc {
    font-size: var(--font-body-small);
    color: var(--base-black);
    opacity: 0.8;
    line-height: 1.6;
}

.about-tv-features .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: start;
    position: relative;
}

.about-tv-features .feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70%;
    background-color: #e1e1e1;
}


.feature-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.feature-icon-circle.icon-blue {
    background-color: var(--bg-blue-light);
    color: var(--primary);
}

.feature-icon-circle.icon-orange {
    background-color: #FFF7ED;
    color: #EA580C;
}

.feature-icon-circle.icon-teal {
    background-color: #E0F2F1;
    color: #00897B;
}

.feature-icon-circle.icon-purple {
    background-color: var(--bg-purple-light);
    color: var(--accent-purple);
}

.feature-title {
    font-size: var(--font-body-small);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.feature-desc {
    font-size: var(--font-xtra-small);
    color: var(--base-black);
    opacity: 0.7;
    line-height: 1.3;
}

/* Image Grid */
.about-tv-image-grid .grid-img-item img {
    max-height: 300px;
    width: 100%;
    object-fit: cover;
}

.img-lake {
    flex: 1.3;
}

.img-metro {
    flex: 1;
}

.img-monument,
.img-market {
    flex: 0.8;
}

.proudly-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border);
    flex: 1.2;
}

.proudly-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.proudly-title {
    font-size: var(--font-body-small);
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
}

.proudly-desc {
    font-size: var(--font-xtra-small);
    color: var(--base-black);
    opacity: 0.75;
    line-height: 1.3;
}

/* Purpose & Values Banner */
.purpose-values-banner {
    padding: 24px;
    border-radius: 12px;
    color: var(--white);
    background-color: var(--primary-dark);
}

.purpose-skyline-bg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.purpose-category-label {
    font-size: var(--font-small);
    font-weight: 700;
    letter-spacing: 1px;
    color: #EA580C;
}

.bg-green-soft {
    color: #10B94f;
    background-color: #deffed;
}

.purpose-title {
    font-size: var(--font-h4);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.purpose-desc {
    font-size: var(--font-small);
    color: var(--white);
    opacity: 0.85;
    line-height: 1.5;
}

.purpose-column {
    padding-right: 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.value-item {
    position: relative;
    padding: 0 10px;
}

.value-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.15);
}

.value-icon-box .material-symbols-outlined {
    font-size: 32px;
    color: var(--white);
}

.value-title {
    font-size: var(--font-body-small);
    font-weight: 700;
    color: var(--white);
}

.value-desc {
    font-size: var(--font-xtra-small);
    color: var(--white);
    opacity: 0.75;
    line-height: 1.3;
}

@media (max-width: 991px) {
    .purpose-column {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding-bottom: 24px;
    }

    .value-item:not(:last-child)::after {
        display: none;
    }
}

@media (min-width: 1200px) {
    .purpose-values-banner {
        padding-left: 140px;
    }
}

/* Scope & Potential Section */
.scope-potential-section {
    background-color: var(--white);
}

.scope-hero-card {
    background-color: var(--white);
    background-image: url('../images/scope-and-potential-hero-img.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    border-radius: 0 12px 12px 0;
    min-height: 420px;
}

.scope-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #FFFFFF 0%, #FFFFFF 42%, rgba(255, 255, 255, 0.85) 54%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.scope-hero-content-wrapper {
    max-width: 62%;
}

.scope-features-row {
    max-width: 586px;
}

.tag-pipe {
    width: 3px;
    height: 14px;
    background-color: var(--accent-red);
    border-radius: 2px;
}

.tag-text {
    font-size: var(--font-small);
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent-red);
}

.scope-main-title {
    font-size: var(--font-h3);
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
}

.scope-main-desc {
    font-size: var(--font-body-small);
    color: var(--base-black);
    opacity: 0.75;
    line-height: 1.5;
}

.scope-feat-title {
    font-size: var(--font-small);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 2px;
}

.scope-feat-desc {
    font-size: var(--font-xtra-small);
    color: var(--base-black);
    opacity: 0.7;
    line-height: 1.2;
}

.scope-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.scope-floating-stats-bar {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: calc(52% - 12px);
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 10;
}

.stat-icon-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon-circle .material-symbols-outlined {
    font-size: 18px;
}

.stat-number {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 2px;
    line-height: 1.2;
    white-space: nowrap;
}

.stat-label {
    font-size: var(--font-xtra-small);
    font-weight: 700;
    color: var(--base-black);
    line-height: 1.1;
}

.stat-subtext {
    font-size: 10px;
    color: var(--base-black);
    opacity: 0.6;
    display: block;
}

/* Inner Cards */
.scope-inner-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.scope-card-heading {
    font-size: var(--font-body-small);
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--primary-dark);
    text-transform: uppercase;
}

.infra-map-card {
    background-color: #F8FAFC;
    background-image: url('../images/thane-map.png');
    background-size: cover;
    background-position: center right;
    border: 1px solid var(--border);
    border-radius: 16px;
    min-height: 340px;
    display: flex;
    align-items: center;
}

.infra-legend-card {
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    max-width: 320px;
    width: 100%;
}

.infra-legend-list {
    font-size: var(--font-small);
    color: var(--primary-dark);
}

.legend-line {
    width: 24px;
    height: 3px;
    border-radius: 2px;
    flex-shrink: 0;
}

.legend-line.line-purple {
    background-color: var(--accent-purple);
}

.legend-line.line-blue {
    background-color: var(--primary);
}

.legend-line.line-orange {
    background-color: #EA580C;
}

.legend-line.line-dashed-green {
    height: 0;
    border-bottom: 2px dashed #16A34A;
    background-color: transparent;
}

.legend-line.line-dark {
    background-color: #4B5563;
    height: 2px;
}

.legend-icon {
    font-size: 20px;
    color: var(--primary-dark);
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.legend-text {
    font-size: var(--font-small);
    color: var(--primary-dark);
    line-height: 1.25;
}

.legend-text .text-muted {
    font-size: var(--font-xtra-small);
    font-weight: 400;
    color: var(--base-black);
    opacity: 0.65;
}

.driver-col {
    position: relative;
}

.driver-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: var(--border-light);
}

.driver-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.driver-title {
    font-size: var(--font-body-small);
    font-weight: 700;
    color: var(--base-black);
    line-height: 1.25;
}

.driver-desc {
    font-size: var(--font-xtra-small);
    color: var(--base-black);
    opacity: 0.7;
    line-height: 1.3;
}

.advantage-card {
    background-color: var(--bg-blue-light);
    border-color: rgba(0, 102, 178, 0.15);
}

.advantage-checklist {
    font-size: var(--font-small);
    font-weight: 700;
    color: var(--primary-dark);
}

.check-icon {
    color: var(--primary);
    font-size: 20px;
}

.advantage-bg-img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    max-height: 160px;
    object-fit: contain;
    object-position: bottom right;
    pointer-events: none;
    opacity: 0.5;
}

.infra-map-wrapper {
    height: 240px;
    border: 1px solid var(--border-light);
}

.opp-col {
    position: relative;
}

.opp-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.opp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.opp-card-img-wrap {
    height: 140px;
    width: 100%;
    overflow: hidden;
}

.opp-icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: -22px;
    margin-left: 16px;
    z-index: 2;
}

.opp-icon-badge .material-symbols-outlined {
    font-size: 20px;
    color: var(--primary-dark);
}

.opp-card-title {
    font-size: var(--font-body-small);
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.25;
}

.opp-card-desc {
    font-size: var(--font-xtra-small);
    color: var(--base-black);
    opacity: 0.7;
    line-height: 1.45;
}

/* Footer Banner */
.scope-footer-banner {
    background-color: var(--bg-blue-light);
    border: 1px solid rgba(0, 102, 178, 0.15);
}

.scope-banner-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scope-banner-title {
    font-size: var(--font-body);
    font-weight: 800;
    color: var(--primary-dark);
}

.scope-banner-sub {
    font-size: var(--font-small);
    color: var(--base-black);
    opacity: 0.75;
}

.scope-partner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: var(--font-body-small);
    text-decoration: none;
    transition: var(--transition);
}

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

@media (max-width: 1199px) and (min-width: 992px) {
    .scope-floating-stats-bar {
        width: calc(56% - 12px);
        padding: 12px 14px;
    }
}

@media (max-width: 991px) {
    .scope-hero-card {
        background: unset;
    }

    .scope-hero-card::before {
        background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 50%, rgba(255, 255, 255, 0.85) 75%, rgba(255, 255, 255, 0) 100%);
    }

    .scope-hero-content-wrapper {
        max-width: 100%;
    }

    .scope-floating-stats-bar {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        width: 100%;
        margin-top: 20px;
        padding: 16px;
    }

    .stat-number {
        font-size: var(--font-body-small);
    }

    .driver-col:not(:last-child)::after,
    .opp-col:not(:last-child)::after {
        display: none;
    }
}

/* Business Prospects Section */
.business-prospects-section {
    background-color: var(--white);
}

.biz-hero-card {
    background-color: var(--white);
    background-image: url('../images/business-prospects-top.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    border-radius: 0 12px 12px 0;
    min-height: 420px;
    position: relative;
}

.biz-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #FFFFFF 0%, #FFFFFF 42%, rgba(255, 255, 255, 0.85) 54%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.biz-hero-content-wrapper {
    max-width: 62%;
}

.biz-category-tag {
    font-size: var(--font-small);
    font-weight: 700;
    color: var(--accent-red);
}

.biz-main-title {
    font-size: var(--font-h3);
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
}

.biz-main-desc {
    font-size: var(--font-body-small);
    color: var(--base-black);
    opacity: 0.75;
    line-height: 1.5;
}

.biz-floating-stats-card {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: calc(52% - 12px);
    background-color: #032a5cdb;
    border-radius: 18px;
    padding: 20px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 10;
    color: var(--white);
}

.biz-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.biz-stat-title {
    font-size: var(--font-body-small);
    font-weight: 800;
    color: var(--white);
}

.biz-stat-desc {
    font-size: var(--font-xtra-small);
    color: var(--white);
    opacity: 0.75;
    line-height: 1.3;
}

.biz-stat-divider {
    width: 1px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.15);
    align-self: center;
}

.view-all-link {
    font-size: var(--font-small);
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.view-all-link:hover {
    color: var(--primary-dark);
}

.opp-card-link {
    font-size: var(--font-body-small);
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
    transition: var(--transition);
}

.opp-card-link:hover {
    color: var(--primary);
}

/* Grow Banner Card */
.grow-banner-card {
    background-color: var(--bg-blue-light);
    border: 1px solid rgba(0, 102, 178, 0.15);
}

.grow-banner-img {
    max-width: 244px;
}

.grow-banner-title {
    font-size: var(--font-h3);
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
}

.grow-banner-desc {
    font-size: var(--font-body-small);
    color: var(--base-black);
    opacity: 0.8;
    line-height: 1.45;
}

.grow-feat-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(0, 102, 178, 0.12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.grow-feat-icon .material-symbols-outlined {
    font-size: 20px;
}

.grow-feat-title {
    font-size: var(--font-body-small);
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.15;
}

.grow-feat-sub {
    font-size: var(--font-body-small);
    color: var(--base-black);
    opacity: 0.7;
    line-height: 1.15;
}

.grow-cta-col {
    border-left: 1px solid rgba(0, 102, 178, 0.15);
}

.grow-cta-title {
    font-size: var(--font-body-small);
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.35;
}

.grow-phone-text {
    font-size: var(--font-body);
    color: var(--primary-dark);
    font-weight: 700;
}

.grow-phone-text .text-danger {
    color: var(--accent-red) !important;
    font-weight: 800;
}

/* Biz Footer Banner */
.biz-footer-banner {
    background-color: var(--primary-dark);
    color: var(--white);
}

.biz-banner-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.biz-banner-title {
    font-size: var(--font-body);
    font-weight: 800;
    color: var(--white);
}

.biz-banner-sub {
    font-size: var(--font-small);
    color: var(--white);
    opacity: 0.8;
}

@media (max-width: 991px) {
    .banner-section {
        padding-bottom: 0;
    }

    .biz-hero-card {
        background: unset;
    }

    .biz-hero-card::before {
        background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 50%, rgba(255, 255, 255, 0.85) 75%, rgba(255, 255, 255, 0) 100%);
    }

    .biz-hero-content-wrapper {
        max-width: 100%;
    }

    .biz-floating-stats-card {
        position: relative;
        bottom: auto;
        right: auto;
        width: auto;
        margin: 16px;
    }

    .biz-stat-divider {
        display: none;
    }
}

/* Life in Thane Section */
.life-in-thane-section {
    background-color: var(--white);
}

.life-hero-card {
    background-color: var(--white);
    background-image: url('../images/life-in-thane-banner.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    border-radius: 12px;
    position: relative;
}

.life-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #FFFFFF 0%, #FFFFFF 42%, rgba(255, 255, 255, 0.85) 54%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.life-hero-content-wrapper {
    max-width: 62%;
}

.life-category-tag {
    font-size: var(--font-small);
    font-weight: 700;
    color: var(--accent-red);
}

.life-main-title {
    font-size: var(--font-h3);
    font-weight: 800;
    line-height: 1.2;
}

.text-primary-dark {
    color: var(--primary-dark);
}

.text-purple-accent {
    color: #7C3AED;
}

.life-main-desc {
    font-size: var(--font-body-small);
    color: var(--base-black);
    opacity: 0.75;
    line-height: 1.5;
}

/* Category Filter Tabs */
.life-cat-tabs {
    scrollbar-width: none;
}

.life-cat-tabs::-webkit-scrollbar {
    display: none;
}

.life-tab-btn {
    border: 1px solid var(--border);
    background-color: var(--white);
    color: var(--primary-dark);
    font-weight: 600;
    font-size: var(--font-small);
    padding: 8px 18px;
    border-radius: 8px;
    transition: var(--transition);
}

.life-tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: var(--bg-blue-light);
}

.life-tab-btn.active {
    background-color: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
}

.life-tab-btn .material-symbols-outlined {
    font-size: 18px;
}

/* Gallery Photo Grid */
.life-gallery-item {
    height: 210px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.life-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Instagram / Moments Banner */
.life-insta-banner {
    background-color: #F5F3FF;
    border: 1px solid rgba(124, 58, 237, 0.15);
    padding: 24px 28px;
}

.life-insta-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #EDE9FE;
    color: #7C3AED;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.life-insta-title {
    font-size: var(--font-body);
    font-weight: 800;
    color: var(--primary-dark);
}

.life-insta-sub {
    font-size: var(--font-small);
    color: var(--base-black);
    opacity: 0.7;
}

.life-insta-handle {
    font-size: var(--font-body-small);
    font-weight: 700;
    color: #7C3AED;
}

.life-insta-handle:hover {
    color: var(--primary-dark);
}

.life-insta-icon-svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #7C3AED;
}

@media (max-width: 991px) {
    .life-insta-banner {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .life-insta-banner {
        padding: 16px;
    }

    .life-insta-icon {
        width: 42px;
        height: 42px;
    }

    .life-insta-icon .material-symbols-outlined {
        font-size: 22px;
    }

    .life-insta-title {
        font-size: var(--font-body-small);
    }

    .life-insta-sub {
        font-size: var(--font-xtra-small);
    }

    .life-insta-handle {
        font-size: var(--font-small);
    }
}

@media (max-width: 991px) {
    .life-hero-card {
        background-position: top center;
    }

    .life-hero-card::before {
        background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 50%, rgba(255, 255, 255, 0.85) 75%, rgba(255, 255, 255, 0) 100%);
    }

    .life-hero-content-wrapper {
        max-width: 100%;
    }
}

/* From Our Blog Section */
.from-our-blog-section {
    background-color: var(--white);
}

.blog-pipe {
    width: 20px;
    height: 2px;
    background-color: #7C3AED;
    border-radius: 2px;
}

.blog-tag-text {
    font-size: var(--font-small);
    font-weight: 700;
    letter-spacing: 1px;
    color: #7C3AED;
}

.blog-main-title {
    font-size: var(--font-h3);
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
}

.blog-main-desc {
    font-size: var(--font-body-small);
    color: var(--base-black);
    opacity: 0.75;
    line-height: 1.5;
    max-width: 600px;
}

/* Blog Filter Tabs */
.blog-cat-tabs {
    scrollbar-width: none;
}

.blog-cat-tabs::-webkit-scrollbar {
    display: none;
}

.blog-tab-btn {
    border: 1px solid var(--border);
    background-color: var(--white);
    color: var(--primary-dark);
    font-weight: 600;
    font-size: var(--font-small);
    padding: 8px 18px;
    border-radius: 8px;
    transition: var(--transition);
}

.blog-tab-btn:hover {
    border-color: #7C3AED;
    color: #7C3AED;
    background-color: #F5F3FF;
}

.blog-tab-btn.active {
    background-color: #6D28D9;
    color: var(--white);
    border-color: #6D28D9;
}

.blog-tab-btn .material-symbols-outlined {
    font-size: 18px;
}

.view-all-blog-link {
    font-size: var(--font-small);
    font-weight: 700;
    color: #7C3AED;
    text-decoration: none;
    transition: var(--transition);
}

.view-all-blog-link:hover {
    color: var(--primary-dark);
}

/* Blog Cards */
.blog-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.blog-card-img-wrap {
    height: 180px;
    width: 100%;
    overflow: hidden;
}

.blog-badge {
    font-size: var(--font-xtra-small);
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-block;
}

.badge-purple {
    background-color: #F3E8FF;
    color: #7C3AED;
}

.badge-blue {
    background-color: #E0F2FE;
    color: #0284C7;
}

.badge-green {
    background-color: #DCFCE7;
    color: #16A34A;
}

.badge-orange {
    background-color: #FFEDD5;
    color: #EA580C;
}

.blog-card-title {
    font-size: var(--font-body);
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.3;
}

.blog-card-desc {
    font-size: var(--font-xtra-small);
    color: var(--base-black);
    opacity: 0.7;
    line-height: 1.45;
}

.blog-meta {
    font-size: var(--font-xtra-small);
    color: var(--base-black);
    opacity: 0.6;
}

.blog-meta .material-symbols-outlined {
    font-size: 14px;
}

.blog-read-more {
    font-size: var(--font-small);
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.blog-read-more:hover {
    color: var(--primary-dark);
}

/* Newsletter Banner */
.blog-newsletter-banner {
    background-color: #F6F4FD;
    border: 1px solid rgba(109, 40, 217, 0.08);
    border-radius: 12px;
    padding: 24px 28px;
}

.blog-newsletter-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #ECE5FC;
    color: #4C1D95;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.blog-newsletter-icon .material-symbols-outlined {
    font-size: 26px;
}

.blog-newsletter-title {
    font-size: var(--font-body);
    font-weight: 800;
    color: var(--primary-dark);
}

.blog-newsletter-sub {
    font-size: var(--font-small);
    color: var(--base-black);
    opacity: 0.75;
}

.blog-newsletter-form {
    max-width: 480px;
    width: 100%;
}

.blog-email-input {
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-size: var(--font-small);
    flex-grow: 1;
    width: 100%;
    min-width: 0;
    height: 44px;
    padding: 10px 16px;
}

.blog-email-input:focus {
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
    border-color: #7C3AED;
}

.blog-subscribe-btn {
    background-color: #3C1794;
    color: var(--white);
    border-radius: 8px;
    padding: 10px 22px;
    font-weight: 700;
    font-size: var(--font-small);
    border: none;
    transition: var(--transition);
}

.blog-subscribe-btn:hover {
    background-color: #2E1065;
    color: var(--white);
}

@media (max-width: 991px) {
    .blog-newsletter-banner {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .blog-newsletter-banner {
        padding: 16px;
    }

    .blog-newsletter-icon {
        width: 44px;
        height: 44px;
    }

    .blog-newsletter-icon .material-symbols-outlined {
        font-size: 22px;
    }

    .blog-newsletter-title {
        font-size: var(--font-body-small);
    }

    .blog-newsletter-sub {
        font-size: var(--font-xtra-small);
    }

    .blog-subscribe-btn {
        width: 100%;
    }
}

/* Achievements Bar Styling & Responsiveness */
.achievements-bar {
    background-color: var(--primary-dark);
    border-radius: 12px;
    padding: 12px 16px 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.achievements-title-badge {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding-right: 20px;
    margin-right: 4px;
}

.achieve-heading-main {
    font-size: var(--font-small);
    font-weight: 800;
    color: var(--white);
    display: block;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.achieve-heading-gold {
    font-size: var(--font-small);
    font-weight: 800;
    color: #F59E0B;
    display: block;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.trophy-gold-icon {
    color: #F59E0B;
    font-size: 36px;
}

.achievements-ticker-wrapper {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.achievements-items-list {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: achievementTicker 25s linear infinite;
    width: max-content;
}

.achievements-items-list:hover {
    animation-play-state: paused;
}

@keyframes achievementTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.achieve-item {
    font-size: var(--font-small);
    font-weight: 600;
    color: var(--white);
    opacity: 0.9;
}

.achieve-dot {
    color: #F59E0B;
    font-size: 14px;
    opacity: 0.8;
}

.achievements-pause-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--primary-dark);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.achievements-pause-btn:hover {
    background-color: #E2E8F0;
    transform: scale(1.05);
}

.achievements-pause-btn .material-symbols-outlined {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-dark);
}

@media (max-width: 991px) {
    .achievements-bar {
        border-radius: 12px;
        padding: 10px 12px;
        gap: 8px;
    }

    /* .achievements-left {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    } */

    .achievements-title-badge {
        border-right: 1px solid rgba(255, 255, 255, 0.15);
        padding-right: 10px;
        margin-right: 2px;
    }

    .achieve-heading-main,
    .achieve-heading-gold {
        font-size: 10px;
    }

    .trophy-gold-icon {
        font-size: 24px;
    }

    .achieve-item {
        font-size: var(--font-xtra-small);
    }

    .achievements-pause-btn {
        width: 32px;
        height: 32px;
    }

    .achievements-pause-btn .material-symbols-outlined {
        font-size: 18px;
    }
}

@media (max-width: 576px) {

    .achieve-heading-main,
    .achieve-heading-gold {
        font-size: 9px;
    }

    .trophy-gold-icon {
        font-size: 20px;
    }
}

/* About Thane Vaibhav Image Grid & Proudly Card */
.about-tv-image-grid .grid-img-item {
    height: 200px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.about-tv-image-grid .grid-img-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.proudly-card {
    background-color: var(--bg-blue-light);
    border: 1px solid rgba(0, 102, 178, 0.15);
    min-height: 200px;
}

.proudly-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.proudly-icon-box .material-symbols-outlined {
    font-size: 20px;
}

.proudly-title {
    font-size: var(--font-body-small);
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.25;
}

.proudly-desc {
    font-size: var(--font-xtra-small);
    color: var(--base-black);
    opacity: 0.75;
    line-height: 1.45;
}

@media (max-width: 991px) {
    .about-tv-image-grid .grid-img-item {
        height: 180px;
    }

    .proudly-card {
        min-height: 180px;
        padding: 16px !important;
    }
}

@media (max-width: 576px) {
    .about-tv-image-grid .grid-img-item {
        height: 150px;
    }

    .proudly-card {
        min-height: auto;
    }
}

/* ==========================================================================
   Custom Modern Pagination UI (Matching Image 2 Design)
   ========================================================================== */
.custom-pagination {
    background: transparent;
    padding: 16px 0;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s ease-in-out;
    user-select: none;
    border: none;
}

/* Nav buttons: PREV & NEXT */
a.pagination-nav-btn, .pagination-nav-btn {
    background-color: #ffffff;
    color: #0b5ed7 !important;
    padding: 10px 22px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    letter-spacing: 0.5px;
    font-weight: 700;
}

a.pagination-nav-btn:hover:not(.disabled),
a.pagination-nav-btn:focus:not(.disabled) {
    background-color: #0b5ed7 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(11, 94, 215, 0.25);
    transform: translateY(-1px);
}

.pagination-nav-btn.disabled {
    opacity: 0.45;
    cursor: not-allowed;
    background-color: #ffffff;
    color: #94a3b8 !important;
    box-shadow: none;
}

/* Circular Page Number Buttons */
a.pagination-num-btn, .pagination-num-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #1e293b !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

a.pagination-num-btn:hover:not(.active) {
    background-color: #e2e8f0 !important;
    color: #0b5ed7 !important;
}

a.pagination-num-btn.active,
a.pagination-num-btn.active:hover,
a.pagination-num-btn.active:focus,
a.pagination-num-btn.active:visited {
    background-color: #0b5ed7 !important;
    color: #ffffff !important;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(11, 94, 215, 0.3);
}

.pagination-ellipsis {
    color: #64748b;
    font-size: 16px;
    font-weight: 700;
    padding: 0 6px;
    user-select: none;
}

/* Notion-style Date Filter Styles */
.preset-pill {
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 12px;
    background-color: #f1f5f9;
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.preset-pill:hover, .preset-pill.active {
    background-color: var(--primary);
    color: #ffffff;
}

.notion-date-popover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
}

/* ==========================================================================
   News Card Enhancements (Full Image View & Larger Spacious Cards)
   ========================================================================== */
.news-card-small {
    padding: 16px;
    border-radius: 16px;
    background-color: #ffffff;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.news-card-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #e2e8f0;
}

.news-card-small-img-wrapper {
    width: 160px;
    height: 125px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f8fafc;
    flex-shrink: 0;
}

.news-card-small-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.news-card-small-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    color: #1e293b;
    margin-bottom: 8px;
}

.news-card-large {
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.news-card-large-img {
    height: 100%;
    min-height: 260px;
    width: 100%;
    object-fit: cover;
    background-color: #f8fafc;
    display: block;
}

.news-card-vertical {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.news-card-vertical:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.news-card-vertical-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #f8fafc;
}

.news-card-vertical-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 1-Line Category Filters Bar */
.latest-news-filters {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.latest-news-filters::-webkit-scrollbar {
    display: none;
}

/* ==========================================================================
   News Filter Bar — 1-line responsive layout with More dropdown
   ========================================================================== */
.news-filter-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}

/* Unified pill style for categories & date button */
.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 7px 16px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary, #0b5ed7);
    background: #ffffff;
    border: 1.5px solid #c7d9f5;
    cursor: pointer;
    text-decoration: none !important;
    white-space: nowrap;
    transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s;
    user-select: none;
    line-height: 1;
}
.filter-pill:hover {
    background: #eef4ff;
    border-color: var(--primary, #0b5ed7);
    color: var(--primary, #0b5ed7) !important;
    box-shadow: 0 2px 8px rgba(11, 94, 215, 0.1);
}
.filter-pill.active,
.filter-pill:active {
    background: var(--primary, #0b5ed7) !important;
    color: #ffffff !important;
    border-color: var(--primary, #0b5ed7) !important;
    box-shadow: 0 3px 12px rgba(11, 94, 215, 0.2);
}

/* More dropdown wrapper */
.more-dropdown-wrapper {
    position: relative;
    display: inline-flex;
}

/* The hidden dropdown panel */
.more-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 1080;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid #e8f0fd;
    min-width: 190px;
    max-height: 280px;
    overflow-y: auto;
    padding: 6px;
    scrollbar-width: thin;
    scrollbar-color: #c7d9f5 transparent;
}
.more-dropdown-menu.open {
    display: block;
    animation: dropdownFadeIn 0.18s ease;
}
@keyframes dropdownFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0);    }
}

/* Items inside the More dropdown */
.more-dropdown-item {
    display: block;
    padding: 9px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #334155;
    border-radius: 9px;
    text-decoration: none !important;
    transition: background 0.14s, color 0.14s;
    white-space: nowrap;
}
.more-dropdown-item:hover {
    background: #eef4ff;
    color: var(--primary, #0b5ed7);
}
.more-dropdown-item.active {
    background: var(--primary, #0b5ed7);
    color: #ffffff;
    font-weight: 700;
}

/* Rotate icon when More dropdown is open */
.more-dropdown-btn[aria-expanded="true"] .material-symbols-outlined {
    transform: rotate(180deg);
}
.more-dropdown-btn .material-symbols-outlined {
    transition: transform 0.18s ease;
}

/* Responsive: on mobile stack filter bar */
@media (max-width: 576px) {
    .news-filter-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .latest-news-filters {
        width: 100%;
    }
    .date-selector {
        align-self: flex-start;
    }
}

/* ==========================================================================
   Notion-Style Date Popover & Quick Preset Pills
   ========================================================================== */
.preset-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 5px 8px;
    border-radius: 99px;
    font-size: 11.5px;
    font-weight: 500;
    color: #475569;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    text-decoration: none !important;
    white-space: nowrap;
    transition: all 0.15s ease;
    cursor: pointer;
    text-align: center;
}
.preset-pill:hover {
    background: #e2e8f0;
    color: var(--primary, #0b5ed7);
    border-color: #94a3b8;
}
.preset-pill.active {
    background: var(--primary, #0b5ed7) !important;
    color: #ffffff !important;
    border-color: var(--primary, #0b5ed7) !important;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(11, 94, 215, 0.2);
}

.notion-date-popover {
    border-radius: 16px !important;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.14) !important;
    border: 1px solid #e2e8f0 !important;
    background: #ffffff;
}

.notion-date-popover .form-select,
.notion-date-popover .form-control {
    border-radius: 10px;
    border: 1.5px solid #cbd5e1;
    font-size: 13px;
    font-weight: 500;
    color: #1e293b;
    padding: 7px 12px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.notion-date-popover .form-select:focus,
.notion-date-popover .form-control:focus {
    border-color: var(--primary, #0b5ed7);
    box-shadow: 0 0 0 3px rgba(11, 94, 215, 0.15);
    outline: none;
}

/* Article Body Clickable Hyper-Links */
.article-body-content a,
.article-content-link {
    color: #0b5ed7 !important;
    text-decoration: underline !important;
    font-weight: 500;
    word-break: break-all;
    transition: color 0.15s ease;
}
.article-body-content a:hover,
.article-content-link:hover {
    color: #04419c !important;
    text-decoration: none !important;
}