/* Base styles */
:root {
    --primary-color: #000000;
    --primary-hover: rgba(0, 0, 0, 0.9);
    --primary-light: rgba(0, 0, 0, 0.05);
    --text-dark: #111827;
    --text-medium: #4b5563;
    --text-light: #9ca3af;
    --text-white: #ffffff;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-dark: #111827;
    --border-light: #e5e7eb;
    --border-dark: #374151;
    --border-radius: 4px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    
    /* Conference colors */
    --collab-color: #8e1c55;
    --cloud-color: #0066a1;
    --bizapps-color: #0c6e70;
}

/* Custom media queries */
@media (max-width: 640px) {
    html {
        font-size: 14px;
    }
}
@media (min-width: 641px) {
    html {
        font-size: 16px;
    }
}

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

body {
    font-family: 'IBM Plex Sans', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6,
.hero-title, .section-title, .conference-title, .footer-heading {
    font-family: 'IBM Plex Sans Condensed', sans-serif;
}

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

/* Utility classes for accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.stats-heading, 
.partnership-heading, 
.expo-stats-heading, 
.footer-brand-heading {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1536px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Navigation */
.nav {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.collab-pill {
    background-color: var(--collab-color);
}

.collab-pill:hover {
    background-color: #a42263;
}

.cloud-pill {
    background-color: var(--cloud-color);
}

.cloud-pill:hover {
    background-color: #0078bd;
}

.bizapps-pill {
    background-color: var(--bizapps-color);
}

.bizapps-pill:hover {
    background-color: #0e7f81;
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 3rem 1rem;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.footer-logo {
    height: 2rem;
    margin-top: 0.5rem;
}

.footer-description {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    margin-top: 1rem;
    list-style: none;
}

.footer-links li {
    display: inline-block;
    margin-right: 1.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--text-white);
}

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

.social-link {
    color: var(--text-light);
    font-size: 1.25rem;
    text-decoration: none;
    transition: color 0.2s;
}

.social-link:hover {
    color: var(--text-white);
}

.footer-border {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-dark);
}

.copyright {
    font-size: 0.875rem;
    color: var(--text-light);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    height: 4rem;
    align-items: center;
}

.nav-logo {
    height: 2rem;
    width: auto;
}

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

.nav-link {
    color: var(--text-medium);
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--border-radius);
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    min-width: 120px;
}

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

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

.btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-light);
}

.btn-ml {
    margin-left: 1rem;
}

/* Specific conference buttons */
.collab-summit .btn-outline {
    border-color: var(--collab-color);
    color: var(--collab-color);
}

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

.cloud-summit .btn-outline {
    border-color: var(--cloud-color);
    color: var(--cloud-color);
}

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

.bizapps-summit .btn-outline {
    border-color: var(--bizapps-color);
    color: var(--bizapps-color);
}

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

/* Hero Section */
.hero {
    position: relative;
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.hero-bg {
    position: absolute;
    inset: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(17, 24, 39, 0.7);
    mix-blend-mode: multiply;
}

.hero-content {
    position: relative;
    padding: 6rem 1rem;
}

.hero-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.hero-left {
    width: 100%;
}

.hero-right {
    width: 100%;
}

@media (min-width: 1024px) {
    .hero-layout {
        flex-direction: row;
        gap: 3rem;
        align-items: flex-start;
        justify-content: space-between;
    }

    .hero-left {
        flex: 1 1 auto;
        width: auto;
    }

    .hero-right {
        flex: 0 0 380px;
        width: 380px;
    }
}

.ms-logo {
    margin-bottom: 0rem;
    margin-top: 1rem;
}

.ms-logo img {
    height: 2.5rem;
}

@media (min-width: 640px) {
    .hero-content {
        padding: 8rem 1.5rem;
    }
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-subtitle {
    margin-top: 1.5rem;
    font-size: 1.25rem;
    max-width: 48rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-date {
    margin-top: 1rem;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.event-date-heading {
    font-size: 2rem;
    font-weight: 500;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.hero-inpartnership {
    margin-top: 3rem;
    font-size: 51.125rem;
    color: rgba(255, 255, 255, 0.9);
}

.in-partnership {
    margin-top: 3rem;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Stat Cards */
.stats {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-white);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-logo {
    margin-top: 2rem;
    height: 3rem;
}

/* Conferences Section */
.conferences {
    padding: 4rem 0;
    text-align: center;
    background-color: var(--bg-white);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto 3rem auto;
    font-weight: 100;
}

.summit-heading {
    font-size: 1.5rem;
    margin: 0rem auto 2rem auto;
    color: var(--text-medium);
}

.conference-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.conference-card {
    flex: 1 1 300px;
    max-width: 350px;
    background-color: #fcfcfc;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.conference-logo {
    height: 100px;
    margin-bottom: 1.5rem;
}

.conference-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.conference-focus {
    font-size: 1rem;
    color: var(--text-medium);
    margin: -0.5rem 0 1rem 0;
    font-weight: 500;
}

.conference-description {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.conference-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.conference-actions .btn {
    margin-bottom: 0.5rem;
}

.collab-summit .conference-title {
    color: var(--collab-color);
}

.cloud-summit .conference-title {
    color: var(--cloud-color);
}

.bizapps-summit .conference-title {
    color: var(--bizapps-color);
}

/* New Expo Section */
.expo-section {
    padding: 2rem 0 4rem;
    margin-top: 4rem;
}

.expo-main-title {
    margin-bottom: 2rem;
}

.expo-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.expo-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 2/1; /* Makes it 50% of the width in height */
    object-fit: cover;
}

.expo-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(17, 24, 39, 0.3);
    mix-blend-mode: multiply;
}

.expo-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-white);
    width: 100%;
}

.expo-title {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1.2;
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    display: inline-block;
    margin: 0 auto 1.5rem;
    max-width: 90%;
}

.expo-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 0 1rem;
}

.expo-stat-card {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    text-align: center;
    min-width: 140px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.expo-stat-card:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.3);
}

.expo-stat-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    font-family: 'IBM Plex Sans Condensed', sans-serif;
}

.expo-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Medium screens (tablets) */
@media (max-width: 768px) {
    .expo-title {
        font-size: 2rem;
        padding: 0.75rem 1.25rem;
        max-width: 95%;
    }
    
    .expo-stats {
        gap: 1rem;
    }
    
    .expo-stat-card {
        min-width: 110px;
        padding: 0.75rem 1rem;
    }
    
    .expo-stat-number {
        font-size: 1.25rem;
    }
    
    .expo-stat-label {
        font-size: 0.8rem;
    }
    
    .conference-card {
        flex: 1 1 250px;
        padding: 1.5rem;
    }
    
    .conference-logo {
        height: 80px;
    }
    
    .event-date-heading {
        font-size: 1.5rem;
    }
    
    .stats {
        justify-content: center;
    }
}

/* Small screens (mobile) */
@media (max-width: 480px) {
    .expo-title {
        font-size: 1.5rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
        max-width: 100%;
    }
    
    .expo-stats {
        gap: 0.75rem;
    }
    
    .expo-stat-card {
        min-width: 85px;
        padding: 0.5rem 0.75rem;
        flex: 1 1 calc(33% - 0.75rem);
    }
    
    .expo-image {
        aspect-ratio: 16/9; /* Slightly taller on mobile for better visibility */
    }
    
    .expo-stat-number {
        font-size: 1.1rem;
    }
    
    .expo-stat-label {
        font-size: 0.7rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-text {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stat-card {
        padding: 0.75rem 1rem;
    }
    
    .conference-grid {
        gap: a.25rem;
    }
    
    .conference-card {
        flex: 1 1 100%;
        max-width: 100%;
        margin: 0 1rem 1.5rem;
    }
    
    .btn {
        min-width: 100%;
    }
}

/* Very small screens */
@media (max-width: 320px) {
    .expo-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .expo-stat-card {
        min-width: 140px;
        width: 80%;
    }
    
    .stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-card {
        width: 80%;
    }
}

/* Pill links in section subtitle */
.pill-link {
    display: inline-block;
    padding: 0.15rem 0.6rem;
    border-radius: 1rem;
    text-decoration: none;
    color: var(--text-white);
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-size: 0.95rem;
}

.pill-link:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.stats-heading, .partnership-heading, .expo-stats-heading, .footer-brand-heading {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.event-date-heading {
    font-size: 2rem;
    font-weight: 500;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.expo-main-title {
    margin-bottom: 2rem;
}

.conference-focus {
    font-size: 1rem;
    color: var(--text-medium);
    margin: -0.5rem 0 1rem 0;
    font-weight: 500;
}

.summit-heading {
    font-size: 1.5rem;
    margin: 0rem auto 2rem auto;
    color: var(--text-medium);
}

.business-pass-grid {
  grid-template-columns: 1fr;
}

.business-pass-card {
  width: 100%;
  margin-bottom:20px !important;
}
.business-pass-card {
	margin-bottom: 20px;
}


.run-events-notifications {
    border-radius: 14px 14px 14px 14px;
    overflow: hidden;
    background-color: #ee255a;
    color: #ffffff;
    padding: 20px;
    display: flex;
     gap: 15px;
}
.run-events-notifications.warning {
    background-color: #fdd600;
    color: #000000;
}
.run-events-notifications .img-container {
     width: 120px;
     max-height: 120px;
     border: 8px solid #ffffff;
     border-radius: 100%; 
}
.run-events-notifications.warning  .img-container {
     border: none;
}
.run-events-notifications img {
    max-height: 100%;
    height: auto;
}
.run-events-notifications p {
    font-size: 20px;
    line-height: 1.4;
}
@media (max-width: 980px){
.run-events-notifications {
    flex-direction: column;
}
}

/* Styling the widget*/
.re-tickets {
    padding: 20px 20px 20px 20px !important;
    background-color: #ededed;
    border-radius: 14px !important;
  font-family: IBM Plex Sans, Verdana, Helvetica;
   /*  .side:last-child  */
}
.re-tickets .btn {
    background-color: #a5416f !important;
    color: #fff;
    border: 2px solid #a5416f !important;
    font-size: 16px;
    line-height: 24px;
    padding: 11px 15px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: .3s all;
  border-radius: 6px !important;
}

.section h2 {
    font-size: 24px;
    font-weight: 700;
}

/* Countdown Box */
.countdown-box {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2.5rem 3rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    box-sizing: border-box;
}

.countdown-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-family: 'IBM Plex Sans Condensed', sans-serif;
}

.countdown-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    margin-top: 0.5rem;
    padding: 0 1rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #a6426f;
    border-radius: var(--border-radius);
    padding: 0.75rem 0.5rem;
    min-width: 70px;
}

.countdown-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-white);
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    line-height: 1;
}

.countdown-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.countdown-separator {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
    margin: 0 0.25rem;
}

.countdown-cta {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-white);
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Responsive countdown adjustments */
@media (max-width: 1023px) {
    .hero-layout {
        flex-direction: column;
    }

    .hero-right {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .countdown-box {
        padding: 1.5rem;
    }

    .countdown-title {
        font-size: 1.25rem;
    }

    .countdown-subtitle {
        font-size: 0.9rem;
    }

    .countdown-timer {
        gap: 0.25rem;
    }

    .countdown-item {
        min-width: 60px;
        padding: 0.5rem 0.25rem;
    }

    .countdown-value {
        font-size: 1.5rem;
    }

    .countdown-label {
        font-size: 0.65rem;
    }

    .countdown-separator {
        font-size: 1.25rem;
        margin: 0 0.1rem;
    }

    .countdown-cta {
        font-size: 1rem;
    }

    .hero-right {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .countdown-box {
        padding: 1.25rem;
    }

    .countdown-title {
        font-size: 1.1rem;
    }

    .countdown-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .countdown-item {
        min-width: 50px;
        padding: 0.4rem 0.2rem;
    }

    .countdown-value {
        font-size: 1.25rem;
    }

    .countdown-label {
        font-size: 0.6rem;
    }

    .countdown-separator {
        font-size: 1rem;
    }

    .countdown-cta {
        font-size: 0.9rem;
    }
}