@charset "utf-8";
/* CSS Document */

:root {
    --primary: #0f172a;
    --secondary: #1e293b;
    --accent: #db9314;
    --accent-alt: #06b6d4;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-light: #64748b;
    --bg-primary: #ffffff;
    --bg-secondary: #efefef;
    --border: #cfd8e2;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header - COMPLETELY REMOVED FIXED POSITIONING AND ALL SCROLL EFFECTS */
.header {
    position: static !important; /* FORCES STATIC POSITIONING */
    top: auto !important; /* OVERRIDES ANY FIXED POSITIONING */
    left: auto !important;
    right: auto !important;
    z-index: auto !important; /* REMOVES FROM STACKING CONTEXT */
    padding: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    /* NO TRANSITIONS - NO EFFECTS - NOTHING */
    transition: none !important; /* BLOCKS ALL TRANSITIONS */
    transform: none !important; /* BLOCKS ANY TRANSFORM EFFECTS */
    opacity: 1 !important; /* BLOCKS FADE EFFECTS */
    visibility: visible !important; /* BLOCKS HIDE/SHOW EFFECTS */
    margin: 0 !important;
    padding-top: 2.5rem !important;
    padding-bottom: 1rem !important;
    box-shadow: none !important; /* NO SHADOW CHANGES */
    border: none !important;
    background-color: #000 !important; /* FORCES BACKGROUND */
}

/* COMPLETELY REMOVED .header.scrolled class and all scroll-related styles */

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white !important;
    transition: none !important; /* NO LOGO TRANSITIONS */
    transform: none !important;
    opacity: 1 !important;
}

.header-actions {
    display: flex;
    align-items: center;
    transition: none !important;
}

.header-btn {
    padding: 0.5rem 1.25rem;
    background: var(--accent) !important;
    color: white !important;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: none !important; /* NO BUTTON TRANSITIONS */
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* REMOVED ALL HOVER EFFECTS FROM HEADER BUTTONS */
.header-btn.secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.header.scrolled,
.header.scrolling,
.header.fixed,
.header.sticky,
.header.active {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    z-index: auto !important;
    padding: 1rem 2rem !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin: 0 !important;
    box-shadow: none !important;
    background: #000 !important;
}

/* Banner Header - FIXED HEIGHT FOR NON-FIXED HEADER */
.banner-header {
    position: relative !important;
    min-height: calc(100vh - 80px) !important;
    background: #000000 !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    transition: none !important;
    transform: none !important;
}

.banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
    position: relative;
    z-index: 10;
}

/* Left Side - Image */
.banner-image {
    position: relative;
    height: 600px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/beard-1866984.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.banner-image-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
}

.banner-image h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--accent), var(--accent-alt));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-image p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

.banner-image-icon {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Right Side - Text */
.banner-text {
    color: white;
    padding: 2rem 0;
}

.banner-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.banner-text .highlight {
    background: linear-gradient(45deg, var(--accent), var(--accent-alt));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-text p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 500px;
}

.banner-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 1.5rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1); /* KEPT BUTTON TRANSITION */
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin-top: 15px;
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: var(--accent-alt);
} /* KEPT BUTTON HOVER TRANSITION */

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
} /* KEPT BUTTON HOVER TRANSITION */

.btn i {
    font-size: 1.1em;
}

/* Section Styles */
.section {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.section-dark {
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 6rem;
}

.section-title {
    font-size: clamp(1.875rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Stats Section - 4 COLUMN LAYOUT WITH HALF-IN/HALF-OUT ICONS */
.stats-section {
    padding: 8rem 0 6rem;
    background: #efefef;
    overflow: visible;
}

.stats-section p strong {color: #db9314;}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
}

.stat-card {
    background: var(--bg-primary);
    padding: 3rem 1.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border);
    position: relative;
    overflow: visible;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* KEPT CARD TRANSITION */
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-top: -1rem;
}

/* HALF-IN/HALF-OUT ICON EFFECT */
.stat-icon {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 60px;
    background: #efefef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    z-index: 20;
    transition: all 0.3s ease; /* KEPT ICON TRANSITION */
    border: 3px solid var(--bg-secondary);
    pointer-events: none;
}

.stat-card:hover .stat-icon {
    transform: translateX(-50%) scale(1.1);
    top: -38px;
} /* KEPT ICON HOVER ANIMATION */

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #db9314;
    transform: scaleX(0);
    transition: transform 0.3s ease; /* KEPT CARD TRANSITION */
    z-index: 1;
}

.stat-card:hover::before {
    transform: scaleX(1);
} /* KEPT CARD HOVER TRANSITION */

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
} /* KEPT CARD HOVER TRANSITION */

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: #db9314;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0.5rem 0 0.5rem 0;
    line-height: 1;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.stat-description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.speaker-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1rem 0;
}

.speaker {
    text-align: center;
    transition: transform 0.3s ease;
}

.speaker:hover {
    transform: scale(1.05);
}

.speaker-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 0.5rem;
    box-shadow: var(--shadow-sm);
}

.sponsor-image {
    width: 120px;
    height: 120px;
    border-radius: 10%;
    object-fit: cover;
    margin: 0 auto 0.5rem;
    box-shadow: var(--shadow-sm);
}

.speaker-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.speaker-name a {text-decoration: none;}
.speaker-designation {
    font-size: 0.65rem;
    color: var(--text-light);
    margin: 0;
}

/* ICONS FOR EACH STAT */
.stress-icon { }
.depression-icon i { color: var(--accent-alt); }
.lonely-icon i { color: var(--accent); }
.suicide-icon i { color: #ef4444; }

/* Beyond Section */
.beyond-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.beyond-card {
    background: var(--bg-primary);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* KEPT CARD TRANSITION */
    position: relative;
    overflow: hidden;
}

.beyond-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-alt));
    transform: translateX(-100%);
    transition: transform 0.4s ease; /* KEPT CARD TRANSITION */
}

.beyond-card:hover::before {
    transform: translateX(100%);
} /* KEPT CARD HOVER TRANSITION */

.beyond-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: #db9314;
} /* KEPT CARD HOVER TRANSITION */

.beyond-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--accent-alt));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease; /* KEPT ICON TRANSITION */
}

.beyond-card:hover .beyond-icon {
    transform: scale(1.1) rotate(5deg);
} /* KEPT ICON HOVER ANIMATION */

.beyond-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0rem;
    text-align: center;
}

.beyond-text {
    color: var(--text-light);
    line-height: 1.6;
    text-align: center;
}

/* India Section - UPDATED WITH IMAGE LEFT, CONTENT RIGHT */
.india-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.india-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.india-section .section-header h2 {
    font-size: clamp(1.875rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.india-section .section-header p {
    font-size: 1.125rem;
    color: #fff;
    line-height: 1.6;
}

.india-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Left Side - Image */
.india-image {
    position: relative;
    height: 680px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(6, 182, 212, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
}

.india-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("images/Picture1.png");
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.india-image-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
}

.india-image h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--accent), var(--accent-alt));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.india-image p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 250px;
    margin: 0 auto;
}

.india-image-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
    animation: pulse 2s infinite;
}

/* Right Side - Content */
.india-text-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.india-text {
    margin-bottom: 2rem;
}

.india-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.india-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 500px;
}

.india-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.india-stat {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease; /* KEPT CARD TRANSITION */
}

.india-stat:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
} /* KEPT CARD HOVER TRANSITION */

.india-stat strong {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--accent);
}

.india-stat span {
    font-size: 1.25rem;
    line-height: 1.5;
}

/* Themes Section - UPDATED WITH 2 ROWS OF 4 COLUMNS */
.themes-section {
    padding: 6rem 0;
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.themes-row {
    display: contents; /* Allows grid items to flow naturally */
}

.theme-card {
    background: var(--bg-primary);
    padding: 2rem 1rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* KEPT CARD TRANSITION */
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.theme-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
} /* KEPT CARD HOVER TRANSITION */

.theme-icon {
    font-size: 2.25rem;
    color: var(--accent);
    margin-bottom: 1rem;
    transition: transform 0.3s ease; /* KEPT ICON TRANSITION */
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #efefef;
    border-radius: 50%;
}

.theme-card:hover .theme-icon {
    transform: scale(1.1);
} /* KEPT ICON HOVER ANIMATION */

.theme-text {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Schedule Section */
.schedule-wrapper {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    overflow-x: auto; /* Enable horizontal scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    margin: 0 15px;
    -ms-overflow-style: auto; /* Ensure scrollbar visibility on IE/Edge */
    scrollbar-width: thick; /* Firefox: prominent scrollbar */
    scrollbar-color: var(--accent) var(--bg-secondary); /* Firefox: custom scrollbar colors */
}


/* Webkit browsers (Chrome, Safari) */
.schedule-wrapper::-webkit-scrollbar {
    height: 12px; /* Prominent horizontal scrollbar */
    opacity: 1 !important; /* Prevent fading */
}

.schedule-wrapper::-webkit-scrollbar-track {
    background: var(--bg-secondary); /* Track color */
    border-radius: var(--radius-sm);
    opacity: 1 !important; /* Prevent fading */
}

.schedule-wrapper::-webkit-scrollbar-thumb {
    background: var(--accent); /* Scrollbar thumb color */
    border-radius: var(--radius-sm);
    border: 2px solid var(--bg-secondary); /* Border for better contrast */
    opacity: 1 !important; /* Prevent fading */
}

.schedule-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--accent-alt); /* Hover effect for scrollbar */
}

.schedule-table {
    width: 100%;
    min-width: 800px; /* Increased min-width to ensure horizontal scroll */
    border-collapse: collapse;
}

.schedule-table thead {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.schedule-table th {
    padding: 1.25rem 1rem;
    text-align: left;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.schedule-table td {
    padding: 1.5rem 1rem;
    border-bottom: 2px solid var(--border);
    vertical-align: top;
}

.schedule-table tbody tr {
    transition: all 0.2s ease; /* KEPT TABLE ROW TRANSITION */
}

.schedule-table tbody tr:hover {
    background: var(--bg-secondary);
} /* KEPT TABLE ROW HOVER EFFECT */

.schedule-week {
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: bold;
    font-size: 0.875rem;
	width: 9.5em;
}

.schedule-themes {
    font-size: 0.875rem;
}

.heading-ques {
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: bold;
}

.question {
    font-weight: normal;
    color: var(--primary);
    font-style: normal;
}

.focus {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    width: 31em;
}

.toggle-focus {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.toggle-focus:hover {
    color: var(--accent-alt);
}

.outcomes {
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 500;
}

.schedule-format {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.5;
	width: 31em;
}

.schedule-cost {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.1rem;
    text-align: right;
}

/* Corporate Section */
.corporate-section {
    background: var(--bg-secondary);
    color: white;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}

.program-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease; /* KEPT CARD TRANSITION */
}

.program-card:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    transform: translateY(-4px);
    box-shadow: 0 20px 25px rgba(0,0,0,0.15);
} /* KEPT CARD HOVER TRANSITION */

.program-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.program-list {
    list-style: none;
    padding: 0;
}

.program-list li {
    padding: 0.5rem 0;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
    transition: color 0.2s ease; /* KEPT LIST ITEM TRANSITION */
}

.program-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.program-list li:hover {
    color: white;
    padding-left: 2rem;
} /* KEPT LIST ITEM HOVER EFFECT */

/* Footer */
.footer {
    background: var(--primary);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    line-height: 1.6;
    font-size: 0.95rem;
    transition: color 0.2s ease; /* KEPT FOOTER LINK TRANSITION */
}

.footer-section a:hover {
    color: var(--accent);
} /* KEPT FOOTER LINK HOVER EFFECT */

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.2s ease; /* KEPT SOCIAL LINK TRANSITION */
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--accent);
    transform: translateY(-2px);
} /* KEPT SOCIAL LINK HOVER EFFECT */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}
.message-phone{display: none;}

/* Responsive */
@media (max-width: 1024px) {
	.message-phone{display: block; 
		color: white;
		text-align: center;	
		margin-bottom: 5px;
		font-size: 1.125rem;
	}
    .banner-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .banner-image {
        height: 900px;
        order: 2;
    }
    .banner-actions {display: inline!important;}
    .banner-text {
        order: 1;
    }

    .header {
        padding: 1rem;
    }

    .banner-text p {max-width: 900px!important;}
    .india-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .india-image {
        height: 350px;
        order: 2;
    }

    .india-text-content {
        order: 1;
    }

    /* Themes responsive - 2 columns on tablet */
    .themes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .theme-card {
        padding: 1.75rem 1rem;
    }
	.schedule-week {
	width: 16.5em !important;
}
	.schedule-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; /* Smooth iOS scrolling */
        touch-action: pan-x; /* Prioritize horizontal scroll */
        box-shadow: inset -10px 0 10px -10px rgba(0, 0, 0, 0.2); /* Scroll hint */
        margin: 0 5px;
        -ms-overflow-style: auto; /* Ensure scrollbar visibility on IE/Edge */
        scrollbar-width: thick; /* Firefox: prominent scrollbar */
        scrollbar-color: var(--accent) var(--bg-secondary); /* Firefox: custom scrollbar colors */
    }

    .schedule-wrapper::-webkit-scrollbar {
        height: 12px; /* Prominent horizontal scrollbar */
        opacity: 1 !important; /* Prevent fading */
    }

    .schedule-wrapper::-webkit-scrollbar-track {
        background: var(--bg-secondary); /* Track color */
        border-radius: var(--radius-sm);
        opacity: 1 !important; /* Prevent fading */
    }

    .schedule-wrapper::-webkit-scrollbar-thumb {
        background: var(--accent); /* Scrollbar thumb color */
        border-radius: var(--radius-sm);
        border: 5px solid var(--bg-secondary); /* Border for better contrast */
        opacity: 1 !important; /* Prevent fading */
    }

    .schedule-wrapper::-webkit-scrollbar-thumb:hover {
        background: var(--accent-alt); /* Hover effect for scrollbar */
    }

    .schedule-table {
        min-width: 800px; /* Force horizontal scroll */
    }
}

/* Ensure prompt doesn't interfere with desktop scrolling */
@media (min-width: 769px) {
    .main-content.dimmed {
        opacity: 1 !important;
        pointer-events: auto !important;
    }
}

@media (max-width: 768px) {
	.schedule-week {
	width: 16.5em !important;
}
	
    .speaker-content {
        grid-template-columns: 1fr;
    }
    .header {
        text-align: left !important; /* Align header content to left */
        flex-direction: column; /* Stack header items vertically */
        gap: 1rem;
        padding: 0.75rem 1rem !important;
        transition: none !important;
        transform: none !important;
    }

    .logo {
        justify-content: flex-start; /* Align logo to the left */
        width: 100%; /* Ensure logo takes full width for alignment */
    }

    .header-actions {
        order: -1;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 4rem 0;
    }

    .stats-section {
        padding: 4rem 0 4rem;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 4rem; /* Increased from 3.5rem to 4rem for more space between cards */
    }

    .stat-card {
        padding: 3.5rem 1.5rem 2rem;
        margin-top: -1.5rem;
        margin-bottom: 1rem; /* Added margin-bottom for extra space below each card */
    }

    .stat-icon {
        top: -30px;
        width: 55px;
        height: 55px;
        font-size: 1.1rem;
    }

    .stat-card:hover .stat-icon {
        top: -30px;
    } /* KEPT ICON HOVER ANIMATION */

    .india-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }

    .india-image {
        height: 300px;
    }

    .india-text h2 {
        font-size: 2rem;
    }

    /* Themes responsive - 2 columns on tablet/mobile */
    .themes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .theme-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }

    .theme-card {
        padding: 1.5rem 0.75rem;
    }

    .schedule-table {
        font-size: 0.875rem;
    }

    .schedule-table th,
    .schedule-table td {
        padding: 1rem 0.75rem;
    }

    .program-grid {
        grid-template-columns: 1fr;
    }

    .banner-actions {
        justify-content: center;
    }

    .logo-text {
        font-size: 1.125rem;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 1.125rem;
    }

    .header {
        flex-direction: column;
        gap: 1rem;
        padding: 0.75rem 1rem !important;
        transition: none !important;
        transform: none !important;
    }
    .header-actions {
        order: -1;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        transition: none !important;
    }
    .header-btn {
        padding: 0.375rem 1rem;
        font-size: 0.8rem;
    }

    .banner-image {
        height: 300px;
    }

    .banner-image h3 {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }
    
    .landscape-content {
        padding: 1.5rem 1rem;
        max-width: 260px;
    }
    
    .landscape-icon {
        font-size: 3rem;
    }
    
    .landscape-content h2 {
        font-size: 1.2rem;
    }
    
    .landscape-content p {
        font-size: 0.9rem;
    }

    .schedule-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; /* Smooth iOS scrolling */
        touch-action: pan-x; /* Prioritize horizontal scroll */
        box-shadow: inset -10px 0 10px -10px rgba(0, 0, 0, 0.2); /* Scroll hint */
        margin: 0 15px;
        -ms-overflow-style: auto; /* Ensure scrollbar visibility on IE/Edge */
        scrollbar-width: thick; /* Firefox: prominent scrollbar */
        scrollbar-color: var(--accent) var(--bg-secondary); /* Firefox: custom scrollbar colors */
    }

    .schedule-wrapper::-webkit-scrollbar {
        height: 12px; /* Prominent horizontal scrollbar */
        opacity: 1 !important; /* Prevent fading */
    }

    .schedule-wrapper::-webkit-scrollbar-track {
        background: var(--bg-secondary); /* Track color */
        border-radius: var(--radius-sm);
        opacity: 1 !important; /* Prevent fading */
    }

    .schedule-wrapper::-webkit-scrollbar-thumb {
        background: var(--accent); /* Scrollbar thumb color */
        border-radius: var(--radius-sm);
        border: 5px solid var(--bg-secondary); /* Border for better contrast */
        opacity: 1 !important; /* Prevent fading */
    }

    .schedule-wrapper::-webkit-scrollbar-thumb:hover {
        background: var(--accent-alt); /* Hover effect for scrollbar */
    }

    .schedule-table {
        min-width: 800px; /* Force horizontal scroll */
    }

    .dummy-content {
        max-height: 0px;
    }
}

/* HIDE PROMPT AUTOMATICALLY IN LANDSCAPE MODE */
@media (orientation: landscape) {
    .main-content.dimmed {
        opacity: 1 !important; /* Restore full opacity */
        pointer-events: auto !important; /* Restore interactions */
    }
}

@media (max-width: 480px) {
    .header {
        text-align: left !important; /* Align header content to left */
        flex-direction: column; /* Stack header items vertically */
        gap: 1rem;
        padding: 0.75rem 1rem !important;
        transition: none !important;
        transform: none !important;
    }
 .schedule-wrapper::-webkit-scrollbar-thumb {
        background: var(--accent); /* Scrollbar thumb color */
        border-radius: var(--radius-sm);
        border: 5px solid var(--bg-secondary); /* Border for better contrast */
        opacity: 1 !important; /* Prevent fading */
    }
    .logo {
        justify-content: flex-start; /* Align logo to the left */
        width: 100%; /* Ensure logo takes full width for alignment */
    }

    .header-actions {
        order: -1;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .stats-section {
        padding: 3rem 0 3rem;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 4rem; /* Increased from 3.5rem to 4rem for more space between cards */
    }

    .stat-card {
        padding: 3.5rem 1.5rem 2rem;
        margin-top: -1.5rem;
        margin-bottom: 1rem; /* Added margin-bottom for extra space below each card */
    }

    .stat-icon {
        top: -25px;
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .stat-card:hover .stat-icon {
        top: -48px;
    } /* KEPT ICON HOVER ANIMATION */

    .stat-number {
        font-size: 1.75rem;
    }

    .india-content {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .india-image {
        height: 250px;
    }

    .india-text h2 {
        font-size: 1.75rem;
    }

    .india-text p {
        font-size: 1rem;
    }

    /* Themes responsive - single column on mobile */
    .themes-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .theme-icon {
        font-size: 1.75rem;
        width: 45px;
        height: 45px;
    }

    .theme-text {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
        margin-bottom: 5px;
    }

    .themes-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .header {
        flex-direction: column;
        gap: 1rem;
        padding: 0.75rem 1rem !important;
        transition: none !important;
        transform: none !important;
    }
    
    .banner-header {
        min-height: calc(100vh - 80px) !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        transition: none !important;
    }

    .header-actions {
        order: -1;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .logo-slogan {
        display: none;
    }

    .banner-content {
        padding: 0 1rem 2rem;
        gap: 2rem;
    }

    .banner-image {
        height: 490px;
    }

    .banner-text h1 {
        font-size: 2rem;
    }

    .banner-text p {
        font-size: 1.1rem;
    }
    
    .dummy-content {
        max-height: 30px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in-up:nth-child(2) { animation-delay: 0.1s; }
.fade-in-up:nth-child(3) { animation-delay: 0.2s; }
.fade-in-up:nth-child(4) { animation-delay: 0.3s; }
.fade-in-up:nth-child(5) { animation-delay: 0.4s; }
.fade-in-up:nth-child(6) { animation-delay: 0.5s; }
.fade-in-up:nth-child(7) { animation-delay: 0.6s; }
.fade-in-up:nth-child(8) { animation-delay: 0.7s; }

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.bluepart {background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);}

/* Ripple animation */
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.btn:active, .header-btn:active {
    transform: scale(0.98);
}













/* Mobile Schedule Styles */
.mobile-schedule {
    display: none; /* Hidden by default */
}

.schedule-item {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.schedule-date {
    margin-bottom: 1rem;
}

.schedule-date p {
    color: var(--primary);
    font-weight: bold;
    font-size: 0.875rem;
}

.schedule-date span {
    font-weight: 600;
}

.schedule-description {
    margin-bottom: 1rem;
}

.schedule-description .heading-ques {
    color: var(--primary);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.schedule-description p {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.5;
}

.schedule-description i {
    font-style: italic;
}

.schedule-speakers {
    margin-bottom: 1rem;
}

.schedule-speakers .speaker-content {
    grid-template-columns: 1fr; /* Single column for mobile */
}

.schedule-sponsor {
    text-align: center;
    margin-bottom: 1rem;
}

.schedule-sponsor .sponsor-image {
    max-width: 120px;
}

.schedule-register {
    text-align: center;
}

.schedule-register .btn {
    width: 100%;
    justify-content: center;
}

/* Responsive Visibility */
@media (max-width: 768px) {
    .desktop-schedule {
        display: none; /* Hide table on mobile */
    }
    .mobile-schedule {
        display: block; /* Show div structure on mobile */
    }
    .message-phone {
        display: none; /* Hide rotate phone message since table is not shown */
    }
}

@media (min-width: 769px) {
    .mobile-schedule {
        display: none; /* Hide div structure on desktop/tablet */
    }
    .desktop-schedule {
        display: block; /* Show table on desktop/tablet */
    }
}