@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&display=swap");

:root {
    --color-primary: #1b2d79;
    --color-secondary: #3153de;
    --color-white: #fff;
    --color-black: #000;
    --text-primary: #191919;
    --brand-color-strong: #174750;
    --brandText: #034442;
    --button-primary-hover: #a00;
    --card-bg: #f5f5f5;
    --brand-weak: #0344420d;
    --font-family: "Archivo", "Space Grotesk", sans-serif;
    --sections-spacing: 60px;
    --spacing-title: 32px;
    --gray50: rgba(0, 0, 0, 0.04);
    --gray70: #f7f7f7;
    --gray100: rgba(0, 0, 0, 0.1);
    --gray: #1b1819;
    --dark-blue: #ffffff;
    --white-gr: #c4c3ca;
    --yellow: #ffeba7;
    --yellow-2: #f8ab37;
}

html {
    scroll-behavior: smooth;
}

.basket-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: var(--brand-color-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

/* Hover zoom effect */
.basket-icon:hover {
  transform: scale(1.1);
}

/* Style for the link and icon inside the basket */
.basket-icon a {
  color: var(--color-white);
  font-size: 24px;
  text-decoration: none;
}

/* Badge that shows the quantity */
.basket-count {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  background-color: #e30613;             /* Change to your desired color */
  border: 2px solid #fff;            /* Optional: white border for separation */
  border-radius: 50%;
  font-size: 12px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}



/* btn */

.button-group button {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    justify-content: center;
    background-color: var(--brand-color-strong);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 90px;
    font-size: 20px;
    font-weight: 600;
    min-width: 100px;
    padding: 8px 18px;
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow: visible;
    border: none;
    cursor: pointer;
    margin-bottom: 14px;
}

.sponsor-btn {
    border: 1px solid var(--brand-color-strong) !important;
    background: inherit !important;
    color: var(--brand-color-strong) !important;
    padding: 10px 16px !important;
}

.sponsor-btn:hover {
    background: var(--brand-weak) !important;
    /* color: var(--color-white) !important; */
}


.about-btn{      
        border: 1px solid var(--brand-color-strong) !important;
    background: inherit !important;
    border-radius: 12px;
    color: var(--brand-color-strong) !important;
    padding: 10px 16px !important;
    cursor:pointer;
     transition: background 0.3s ease, color 0.3s ease;
    width: 140px;
    
}


.about-btn:hover {
    background: #860B0B !important;
    color: #fff !important;
}

.ticket {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--color-white);
    border-radius: 20px;
    padding: 6px;
    width: 32px;
    height: 32px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.button-group button:hover .ticket {
    background-color: black;
}

.button-group button:hover .ticket svg path {
    fill: white;
    transition: fill 0.3s ease;
}

/* btn */

/* on scroll make exact on that section */
section,
div[id] {
    scroll-margin-top: 150px;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--color-white);
    color: var(--color-black);
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 600;
    line-height: 40px;
    /* letter-spacing: -1px; */
    font-size: 40px;
}

.sections-spacing {
    position: relative;
    /* Added */
    margin-top: var(--sections-spacing);
}

/* Hero section start */

.contactbutton {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    justify-content: center;
    background-color: var(--brand-color-strong);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 90px;
    font-size: 20px;
    font-weight: 600;
    min-width: 100px;
    padding: 10px 18px;
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow: visible;
    border: none;
    cursor: pointer;
    margin-bottom: 14px;
}

.ticket {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--color-white);
    border-radius: 20px;
    padding: 6px;
    width: 32px;
    height: 32px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.contactbutton button:hover .ticket {
    background-color: black;
}

.contactbutton button:hover .ticket svg path {
    fill: white;
    transition: fill 0.3s ease;
}

.hero {
    margin-top: 135px;
    position: relative;
}

.countdown-area {
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(21.3px);
    position: absolute;
    /* bottom: 100px; */
    bottom: 250px;
    /* Adjust this value as needed */
    /* left: 50%; */
    left: 80%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center the countdown items */
    padding: 10px 60px;
    /* Removed margin-right and margin-bottom */
}


.countdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}


.count {
    color: var(--color-white);
    text-align: center;
    font-size: 52.754px;
    font-style: normal;
    font-weight: 400;
    line-height: 64.294px;
    letter-spacing: 0.528px;
}

.text {
    color: var(--color-white);
    text-align: center;
    font-size: 13.189px;
    font-style: normal;
    font-weight: 400;
    line-height: 19.783px;
}

.dots {
    color: var(--color-white);
    font-size: 50px;
    transform: translateY(-15px);
    margin: 0 7px;
}

.hero img {
    width: 100%;
    /* height: 600px; */
    border-radius: 16px;
}

/* Hero section end */

.agenda-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--gray50);
    padding: 60px 40px;
    border-radius: 16px;
}

.date-tabs-selected-date {
    padding-bottom: 40px;
    display: flex;
    flex-direction: row;
}

.agenda-selected-date {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    margin: auto;
}

.bg-hero {
    background-image: url("https://bakuheartdays.az/assets/front/img/bg-hero.png");
    background-repeat: no-repeat;
}

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

.bg-gray {
    padding: 1px 20px;
    background: #f7f7f7;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Existing Styles */
/* Logo Styles */

.logo-container {
    cursor: pointer;
}

.logo {
    cursor: pointer;
    height: 40px;
}

/* Navigation Styles */
.nav {
    display: flex;
    text-align: center;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    /* gap: 16px; */
}

.nav-links li {
    position: relative;
    /* Required for dropdown positioning */
}

.nav-links a,
.nav-links li a {
    position: relative;
    text-decoration: none;
    color: var(--text-primary);
    /* Uses CSS variable for primary text color */
    font-weight: 400;
    font-size: 16px;
    padding: 8px 12px;
    display: block;
}

/* .nav-links a:hover,
.nav-links li a:hover {
  color: #007bff;
} */

.nav-links a::after,
.nav-links li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--brand-color-strong);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links li a:hover::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.language-switcher:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-switcher .dropdown {
    position: absolute;
    top: 100%;
    /* Positions the dropdown directly below the language switcher */
    left: 0;
    background-color: #fff;
    border-radius: 6px;
    min-width: 100px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1005;
    /* Ensure it's above the header's z-index */
}

.language-switcher:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-switcher .dropdown li {
    width: 100%;
}

.language-switcher .dropdown li a {
    padding: 8px 12px;
    color: #0f1a45;
    /* Dropdown text color */
    text-decoration: none;
    text-transform: capitalize;
}

.language-switcher .dropdown li a:hover {
    border-radius: 6px;
    background-color: #f1f1f1;
    /* Dropdown hover background */
}

.language-switcher>a::after,
.language-switcher .dropdown li a::after {
    content: none;
    /* Disable underline for language switcher and dropdown links */
}

/* Header and Container Styles */

.shopping-basket {
    position: relative;
    /* Ensure the badge is positioned relative to this container */
    display: inline-block;
    /* Needed for positioning */
}

.basket-page {
    padding-top: 2px;
}

.basket-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #e11615;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    font-weight: bold;
    min-width: 20px;
    text-align: center;
    line-height: 1;
}


.header {
    position: relative;
    z-index: 1000;
    padding-top: 30px;
    padding-bottom: 12px;
    transition: background-color 0.5s ease, box-shadow 0.5s ease, transform 0.5s ease;
    /* position: fixed;
  z-index: 1000;
  background-color: #fff;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 12px;
  transition: background-color 0.5s ease, box-shadow 0.5s ease,
    transform 0.5s ease; */
}

.header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.header.fixed {
    transform: translateY(-10px);
}

.header {
    transform: translateY(0);
}

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

/* Button Group Styles */
.button-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.button-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Contact Button Styles */
.contact-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    /* Center alignment for better appearance */
    justify-content: center;
    background-color: var(--brand-color-strong);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 90px;
    font-size: 20px;
    font-weight: 600;
    min-width: 100px;
    padding: 12px 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow: visible;
}

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

.contact-button:hover .ticket-span {
    background-color: var(--color-black);
    fill: var(--color-white);
    color: var(--color-white);
    transform: translateY(-50%) translateX(40px);
}

.contact-button:hover .ticket-span svg {
    fill: white;
}

.ticket-span {
    position: absolute;
    top: 50%;
    right: 7px;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    background-color: var(--color-white);
    border-radius: 20px;
    padding: 6px;
    display: flex;
    justify-content: center;
}

/* Mobile Menu Styles */
.menu-icon {
    display: none;
    /* Hidden by default */
    cursor: pointer;
}

/* Prevent scrolling when this class is applied to the body */
.body-no-scroll {
    overflow: hidden;
    height: 100%;
    width: 100%;
    position: fixed;
}


.mobile-menu {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    z-index: 1000;
    flex-direction: column;
    animation: fadeIn 0.3s ease;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.close-icon {
    cursor: pointer;
}

.mobile-nav {
    background: white;
    flex: 1;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    padding-top: 24px;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 56.25rem;
    /* text-align: center; */
}

.mobile-nav-links li a,
.language-toggle {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

/* Language Menu Styles */
.language-menu {
    position: relative;
}

.language-dropdown {
    display: none;
    /* Hidden by default */
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-white);
    list-style: none;
    padding: 10px 0;
    margin: 0;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    flex-direction: column;
    min-width: 100px;
    z-index: 1001;
    /* Ensure it appears above other elements */
}

.language-dropdown li {
    padding: 8px 20px;
}

.language-dropdown li a {
    color: var(--text-primary);
    font-size: 18px;
    text-decoration: none;
    display: block;
}

.language-dropdown li a:hover {
    background-color: var(--color-light-gray);
}

/* Show dropdown when active */
.language-menu.active .language-dropdown {
    display: flex;
    animation: slideDown 0.3s ease;
}
.flag_img{
    width: 20px;
    height: 20px;
}

.flex_flag_lang{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
}
/* Animation for dropdown */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .nav-links {
        display: none;
        /* Hide navigation links */
    }

    .menu-icon {
        display: block;
        /* Show menu icon */
    }

    .button-group {
        gap: 8px;
    }

    /* Adjust contact-button for mobile if needed */
    .contact-button {
        font-size: 16px;
        padding: 10px 16px;
    }

    /* Adjust language dropdown for smaller screens if necessary */
    .language-dropdown {
        min-width: 80px;
    }
}

/* speakers start */

.speakers {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.speakers-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: var(--sections-spacing) 0;
}

.speakers-section h5 {
    padding-bottom: var(--spacing-title);
}

.speaker-position {
    color: rgba(0, 0, 0, 0.60);

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.speaker-details {
    display: flex;
    align-items: center;
    gap: 8px;
}

.company-speaker {

    color: var(--text-primary) !important;
    font-size: 16px !important;
    font-style: normal;
    font-weight: 400 !important;
    line-height: 24px !important;
    /* 150% */
}

.about-speaker {
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.speaker-card {
    cursor: pointer;
    position: relative;
    width: 23.8%;
    display: flex;
    flex-direction: column;
    padding: 16px;
    border-radius: 16px;
    background: var(--card-bg);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.speaker-card-image {
    position: relative;
    width: 100%;
    /* height: 260px; */
    overflow: hidden;
    border-radius: 8px;
}

.speaker-card-image img {
    width: 100%;
    /* height: 100%; */
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.speaker-card-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.5s ease;
    pointer-events: none;
    z-index: 2;
}

.overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.speaker-more {
    background-color: var(--card-bg);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 20px;
    color: var(--brand-color-strong);
    font-weight: 500;
    display: flex;
    gap: 4px;
    align-items: center;
}

.speaker-card:hover .speaker-card-image img {
    transform: scale(1.1);
}

.speaker-card:hover .speaker-card-image::before {
    background-color: rgba(0, 0, 0, 0.3);
}

.speaker-card:hover .overlay {
    opacity: 1;
}

.speaker-card h6 {
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
    line-height: normal;
    align-self: stretch;
}

.speaker-details-card {
    background-color: var(--brand-weak);
    display: inline-flex;
    justify-content: center;
    align-self: flex-start;
    align-items: center;
    gap: 8px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    color: var(--text-primary);
    margin-top: 4px;
}

/* speakers end */
@media (max-width: 1380px) {
    .speaker-card {
        width: 23.5%;
    }
}

@media (max-width: 1200px) {
    .speaker-card {
        width: 23.5%;
    }
}

/* For screens larger than 640px (sm) */
@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

/* For screens larger than 768px (md) */
@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

/* For screens larger than 1024px (lg) */
@media (min-width: 1024px) and (max-width: 1100px) {
    .speaker-card {
        width: 23.4% !important;
    }

    .container {
        max-width: 1024px;
    }
}

@media (min-width: 1100px) {
    .container {
        max-width: 1100px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

/* For screens larger than 1380px (xl) */
@media (min-width: 1380px) {
    .container {
        max-width: 1380px;
    }
}

/* For screens larger than 1536px (2xl) */
@media (min-width: 1536px) {
    .container {
        max-width: 1450px;
        /* Max width matches your original requirement */
    }
}

@media (min-width: 768px) {
    .contact-img {
        height: 400px;
    }
}

.hidden {
    display: none;
}

/* --- Modal Styles --- */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    border-radius: 16px;
    background: #f5f5f5;
    padding: 32px;
    max-width: 785px;
    width: 90%;
    /* display: flex; */
    gap: 24px;
    position: relative;
    max-height: 800px;
    overflow-y: auto;
}

.speakers-modal {
    display: flex;
    gap: 24px;
}

.close-button {
    font-size: 32px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
    color: #000;
}

.speakers-modal img {
    width: 221px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.modal-detail {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.speaker-title {
    display: flex;
    align-items: center;
    gap: 16px;
}

.speaker-title h2 {
    margin: 0;
    padding: 0;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

.speaker-title h4 {
    font-size: 14px;
    /* background-color: var(--brand-weak); */
    font-weight: 500;
    padding: 10px;
    letter-spacing: normal;
    color: var(--color-third);
}

.modal-detail p {
    color: #888;
    line-height: 24px;
}

.spiker-modal-social ul {
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
}

.spiker-modal-social ul li a i {
    font-size: 28px;
    color: #09102b;
    transition: color 0.3s;
}

.spiker-modal-social ul li a:hover i {
    color: var(--color-primary);
}

.logo-modal {
    display: flex;
    justify-content: flex-end;
    float: right;
    width: 60px !important;
    height: 60px !important;
    object-fit: contain;
    
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-content {
        flex-direction: column;
        align-items: center;
    }

    .speakers-modal {
        flex-direction: column;
    }

    .speakers-modal img {
        width: 100%;
        height: 300px;
        object-fit: contain;
    }

    .modal-detail {
        align-items: center;
        text-align: center;
    }
}

/* confrance agenda */
.confrance-date-tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-white);
    border-radius: 29px;
    padding: 8px 24px;
    font-size: 20px;
}

.confrance-date-tabs h6 {
    font-weight: 600 !important;
    font-size: 20px;
}

.confrance-tab {
    background-color: var(--color-white);
    padding: 8px 16px;
    border-radius: 32px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.confrance-tab.selected-tab {
    color: var(--color-white);
    background-color: var(--brand-color-strong);
}

.confrance-tab:hover {
    color: var(--color-black);
    background-color: var(--brand-weak);
}

.confrance-date-tabs h6 {
    font-weight: 600 !important;
    font-size: 20px;
    margin: 0;
    /* Remove default margin */
}

.confrance-tab {
    background-color: var(--color-white);
    padding: 8px 16px;
    border-radius: 32px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    margin: 4px 0;
    /* Add vertical spacing on smaller screens */
}

.confrance-tab.selected-tab {
    color: var(--color-white);
    background-color: var(--brand-color-strong);
}

.confrance-tab:hover {
    color: var(--color-black);
    background-color: var(--brand-weak);
}

.date-tabs-selected-date {
    margin-top: 16px;
    /* Space between tabs and selected date */
}

.agenda-selected-date {
    font-size: 24px;
    margin: 0;
    padding-left: 20px;
    text-align: center;
    display: flex;
    align-items: center;
}

.dates-agenda {
    display: flex;
    flex-direction: row;
}

/* Medium Screens (Tablets) */
@media (max-width: 992px) {
    .confrance-date-tabs {
        padding: 8px 16px;
        font-size: 18px;
    }

    .item-details {
        gap: 15px;
    }

    .confrance-date-tabs h6 {
        font-size: 18px;
    }

    .confrance-tab {
        padding: 6px 12px;
        font-size: 16px;
    }

    .agenda-selected-date {
        font-size: 20px;
    }
}

/* Small Screens (Mobile) */
@media (max-width: 576px) {
    .button-group button {
        font-size: 18px !important;
    }

    .ticket {
        display: none !important;
    }

    .sponsor-btn {
        display: none !important;
    }

    .dates-agenda {
        display: flex;
        flex-direction: row;
        gap: 6px;
    }

    .agenda-section {
        padding: 60px 10px;
        border-radius: 16px;
    }

    .date-tabs-selected-date {
        flex-direction: column !important;
    }

    .confrance-date-tabs {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px;
        font-size: 16px;
    }

    .confrance-date-tabs h6 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .confrance-tab {
        /* width: 100%; */

        text-align: center;
        padding: 4px;
        font-size: 14px;
        border-radius: 24px;
    }

    .agenda-selected-date {
        font-size: 18px;
        text-align: center;
        margin-top: 12px;
    }
}

/* program */

/* .container-site-2 {
  max-width: 1076px !important;
  margin: auto;
} */
.program-area {
    display: none;
    /* Hide all by default */
}

#program-17-may {
    display: block;
    /* Show the default day (17 May) by default */
}

.program-title {
    color: var(--text-primary);
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 24px;
}

.schedule-item {
    color: var(--text-primary);
    margin: 10px 0;
    transition: max-height 0.2s linear;
    border-bottom: 1px solid var(--gray100);
}

.item-header {
    /* border-top: 1px solid var(--gray100); */
    /* border-bottom: 1px solid var(--gray100); */

    padding: 20px;
    overflow: hidden;

    display: flex;
    justify-content: space-between;
    cursor: pointer;
    align-items: center;
}

.item-info {
    display: flex;
    align-items: center;
    gap: 67px;
}

.item-time {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-left: 16px;
    position: relative;
    /* padding: 20px; */
    width: 180px;
    display: inline-block;
}

.item-time::before {
    content: "";
    display: inline-block;
    width: 2px;
    height: 40px;
    background-color: var(--color-white);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
}

.item-title {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    padding-right: 100px;
}

.item-header button {
    background: none;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
    color: var(--text-primary);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.item-details {
    max-height: 0;
    overflow: hidden;
    background: var(--color-third);
    padding: 15px;
    transition: max-height 0.2s linear;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* margin-top: 19px; */
    padding: 30px;
}

.item-details-time {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 6px;
    border-radius: 12px;
}

.item-details-left {
    display: flex;
    align-items: center;
    gap: 104px;
}

.item-speaker-data {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 32%;
}

.item-speaker-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
}

.item-speaker-image img {
    width: 100%;
    border-radius: 8px;
}

.item-speaker-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.item-speaker-name {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.item-speaker-role {
    color: #b7b7b7;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.item-topic {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 40%;
}

.item-list {
    padding-left: 230px;
    max-height: 0;
    overflow: hidden;
    background: var(--color-third);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 19px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    /* padding: 0; */
}

.item-details {
    width: 100%;
}

.item-list .item-details:not(:last-child) {
    border-bottom: 1px solid var(--gray100);
}

.schedule-item.open .item-details {
    padding: 40px;
    max-height: 500px;
}

.item-button i {
    color: var(--text-primary);
    transition: transform 0.3s ease;
}

.schedule-item.open .item-button i {
    transform: rotate(180deg);
}

/* Media section  */

.media-photos {
    display: flex;
    /* flex-wrap: wrap; */
    /* gap: 40px; */
    /* justify-content: center; */
}

.media-section {
    /*padding-top: 40px;*/
    position: relative;
    /* width: 22%; */
    /* height: 314px; */
    border-radius: 25px;
    overflow: hidden;
}

.media-img {
    width: 100%;
    /* height: 100%; */
    height: 314px;
    object-fit: cover;
    display: block;
    border-radius: 25px;
    cursor: pointer;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(248, 248, 248, 0) 22.93%,
            rgba(19, 66, 150, 0.4) 57.77%,
            rgba(19, 66, 150, 0.8) 100%);
    pointer-events: none;
    z-index: 1;
    border-radius: 16px;
}

.media-title {
    display: flex;
    justify-content: space-between;
}

.media-title a{ 
    text-decoration: none;
    
    color:#434343;
}


.media-title button {
    border: none;
    background-color: inherit;
    font-size: 14px;
    display: flex;
    gap: 8px;
    align-items: center;
    cursor: pointer;
}

/* Sponsors section  */

.sponsor-list {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 20px 40px;
    position: relative;
}

@media(max-width: 500px) {
    .sponsor-list {
        padding: 20px 0px;
    }
}

.sponsors-section {

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}

.sponsors-section h5 {
    color: var(--brandText);
}

.sponsor-logo-section img {
    width: 140px;
    height: 49px;
    object-fit: contain;
    cursor: pointer;
}

.project-logo-section img {
    width: 175px;
    height: 179px;
    object-fit: contain;
    cursor: pointer;
    border-radius: 12px;
}

.sponsors-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    align-self: center;
}

.sponsor-logo-section {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    z-index: 1;
}

/* .project-logo-section {
  background-color: green;
  padding: 30px;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
} */

/* Hover effect */
.sponsor-logo-section:hover {
    transform: scale(1.05);
}

.sponsor-logo-section:focus {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    outline: none;
}

.project-logo-section {
    /* background-color: var(--color-white); */
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    /* padding: 30px; */
    padding: 7px;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    /* width: 23.7%; */
    width: 14.7%;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hover effect */
.project-logo-section:hover {
    transform: scale(1.05);
}

.project-logo-section:focus {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    outline: none;
}

.sponsors-left {
    position: absolute;
    left: -20px;
    top: 6%;
    flex: 0 0 auto;
}

.group2 {
    position: absolute;
    left: -220px;
    top: 49%;
    flex: 0 0 auto;
}

.group2-img {
    width: 360px;
    height: auto;
    z-index: 99;
}

.group1 {
    position: absolute;
    right: -160px;
    top: 8%;
    flex: 0 0 auto;
}

.group1-img {
    width: 360px;
    height: auto;
    z-index: 99;
}

.half-heart-image {
    width: 49px;
    height: auto;
    z-index: 99;
}

/* About form  */
.about-section {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-radius: 16px;
    padding: 30px 72px;
    background-color: var(--gray70);
}

.about-desc {
    display: flex;
    flex-direction: column;
    gap: 36px;
    width: 52%;
}

.about-desc p {
    font-weight: 400;
    line-height: 32px;
    font-size: 20px;
}


.about_desc_div{
   font-weight: 400;
    line-height: 32px;
    font-size: 20px;   
}


.about-desc h4 {
    font-size: 32px;
    color: var(--color-black);
    font-weight: 600;
    line-height: 40px;
}

.about-img img {
    width: 400px;
    height: 400px;
}

.highlight {
    color: var(--brandText);
    font-feature-settings: "liga" off, "clig" off;
    font-size: 32px;
    font-style: italic;
    font-weight: 200;
    line-height: 32px;
}


@media (max-width: 1536px) {
    .project-logo-section img {
        width: 156px;
        /* height: 49px; */
        object-fit: contain !important;
        cursor: pointer;
    }
}

@media (max-width: 1379px) {
    .project-logo-section img {
        width: 152px;
        /* height: 49px; */
        object-fit: contain !important;
        cursor: pointer;
    }
}

@media (max-width: 1199px) {
    .project-logo-section {
        width: 23%;
    }

    .project-logo-section img {
        width: 180px;
        /* height: 49px; */
        object-fit: contain;
        cursor: pointer;
    }
}


@media (max-width: 1024px) {
    .about-section {
        flex-direction: column;
        padding: 20px 40px;
        align-items: center;
        text-align: center;
    }

    .about-desc {
        width: 100%;
    }

    .about-img img {
        width: 100%;
        height: auto;
    }

    .highlight {
        font-size: 26px;
    }
}

@media (max-width: 700px) {
    .about-section {
        flex-direction: column;
        padding: 20px 40px;
        align-items: center;
        text-align: center;
    }

    .about-desc {
        width: 100%;
        gap: 20px;
        padding-bottom: 20px;
    }

    .about-img img {
        width: 100%;
        height: auto;
    }

    .highlight {
        font-size: 26px;
    }
}

@media (max-width: 500px) {
    .about-section {
        padding: 15px 20px;
    }

    .about-desc p {
        font-size: 16px;
        line-height: 24px;
    }
    .about_desc_div{
       font-size: 16px;
        line-height: 24px;  
}


    .about-desc h4 {
        font-size: 24px;
        line-height: 32px;
    }

    .about-img img {
        width: 100%;
        height: auto;
    }

    .highlight {
        font-size: 24px;
    }
}

/* about form end  */

/* Contact section   */

/* Contact Section Styles */
.contact-section {
    padding: 40px 0;
    background-color: var(--gray70);
}

.container.contact {
    display: flex;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-img,
.map {
    flex: 1;
    min-width: 300px;
}

.contact-img {
    /* background-image: url('/assets/front/img/contact-img.png'); */
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    position: relative;
}

.contact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

/* Map Styling */
.map iframe {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

/* Responsive Styles */
@media (max-width: 700px) {
    .container.contact {
        flex-direction: column;
        gap: 20px;
        /* Maintains the gap between stacked elements */
    }

    .contact-img,
    .map {
        min-width: 100%;
        /* Full width on small screens */
    }

    .map iframe {
        height: 300px;
        /* Adjust height for better visibility on smaller screens */
    }
}

/* Contact end  */

/* Footer  */

.footer-basket {
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 32px 40px;
    margin-bottom: 40px;
}

.footer {
    border-radius: 16px;
    padding: 32px 40px;
    margin-bottom: 40px;
    background-color: var(--gray70);
}

.footer-main-section {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-logo img {
    width: 106px;
    height: 50px;
    object-fit: contain;
}

.footer-info h6 {
    color: var(--gray);
    font-feature-settings: "liga" off, "clig" off;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    padding-bottom: 16px;
}

.footer-info a {
    color: #1b1819;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    position: relative;
    /* Necessary for the ::after positioning */
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

.footer-info a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    /* Adjust to sit slightly below the text */
    left: 0;
    width: 0;
    height: 2px;
    background-color: #1b1819;
    /* Set to the underline color */
    transition: width 0.3s ease-in-out;
}

.footer-info p:hover::after {
    width: 100%;
    /* Expand the underline fully */
}

.footer-address h6 {
    color: var(--gray);
    font-feature-settings: "liga" off, "clig" off;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    padding-bottom: 16px;
}

.footer-address p {
    color: #1b1819;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.footer-contact button {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    justify-content: center;
    background-color: var(--brand-color-strong);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 90px;
    font-size: 20px;
    font-weight: 600;
    min-width: 100px;
    padding: 10px 18px;
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow: visible;
    border: none;
    cursor: pointer;
    margin-bottom: 14px;
}

.ticket {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--color-white);
    border-radius: 20px;
    padding: 6px;
    width: 32px;
    height: 32px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-contact button:hover .ticket {
    background-color: black;
}

.footer-contact button:hover .ticket svg path {
    fill: white;
    transition: fill 0.3s ease;
}

.footer-contact p {
    color: #1b1819;
    text-align: right;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
}

.footer-social-medias {
    /* margin-top: 60px; */
    /* width: 100%; */
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}


/* hidden powered by:  */
/* .powered-by-markup{
    display: none;
} */
.powered-by-markup a {
    color: rgba(0, 0, 0, 0.90);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
    margin: 0;
    position: relative;
    /* Establishes a positioning context for the pseudo-element */
    cursor: pointer;
    display: inline-block;
    /* Allows the pseudo-element to position correctly */
}

/* Underline Effect */
.powered-by-markup a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    /* Positions the underline slightly below the text */
    width: 0;
    height: 2px;
    /* Thickness of the underline */
    background-color: rgba(0, 0, 0, 0.90);
    /* Underline color */
    transition: width 0.3s ease-in-out;
    /* Smooth transition for the width */
}

.powered-by-markup a:hover::after {
    width: 100%;
    /* Underline expands to full width */
}

.footer-bottom-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 20px;
    width: 100%;
}

.powered-by-markup {
    /* flex: 1; */
    /* Takes up available space on the left */
}

.footer-social {
    display: flex;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    background: #1b1819;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.footer-social img {
    width: 18px;
    height: 14px;
    flex-shrink: 0;
    fill: var(--color-white);
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-social:hover {
    transform: scale(1.1);
    /* Slight zoom effect */
    background: linear-gradient(45deg, #034442, #b11b1b);
    /* Gradient effect */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    /* Subtle shadow */
}

.footer-social:hover img {
    transform: scale(1.2);
    /* Slight zoom on the icon */
}

/* 1024px and below */
@media (max-width: 1024px) {
    .footer {
        padding: 20px;
    }

    .footer-main-section {
        gap: 15px;
    }

    .footer-info,
    .footer-address,
    .footer-contact {
        flex: 1 1 100px;
        /* Further adjust flex-basis */
    }

    .footer-contact p {
        text-align: left;
    }

    .footer-social-medias {
        justify-content: center;
        margin-top: 30px;
    }
}

/* 700px and below */
@media (max-width: 700px) {

    /* .hero img {
    height: 200px;
    object-fit: cover;
  } */
    .dots {
        color: var(--color-white);
        font-size: 14px;
        transform: translateY(-12px);
        margin: 0 7px;
    }

    .text {
        font-size: 16.189px;
    }

    .countdown-area {
        bottom: 70px;
        /* Adjust this value as needed */
        left: 80%;
        transform: translateX(-50%);

        padding: 10px 20px;
        /* Removed margin-right and margin-bottom */
    }

    .count {
        color: var(--color-white);
        text-align: center;
        font-size: 22.754px;
        font-style: normal;
        font-weight: 400;
        line-height: 64.294px;
        letter-spacing: 0.528px;
    }

    .footer {
        padding: 16px 20px;
    }

    .footer-logo img {
        width: 80px;
        height: auto;
    }

    .footer-info h6,
    .footer-address h6 {
        font-size: 14px;
        padding-bottom: 12px;
    }

    .footer-info a,
    .footer-address a,
    .footer-contact p {
        font-size: 14px;
    }

    .footer-contact button {
        font-size: 18px;
        padding: 8px 16px;
    }

    .ticket {
        width: 28px;
        height: 28px;
        padding: 5px;
    }

    .footer-social-medias {
        margin-top: 30px;
    }

    .footer-social {
        width: 35px;
        height: 35px;
    }

    .footer-social img {
        width: 16px;
        height: 12px;
    }
}


@media (max-width: 600px) {

    .countdown-area {
        bottom: 40px;
    }
}

/* 500px and below */
@media (max-width: 500px) {
    .hero img {
        height: 200px;
        object-fit: contain;
    }

    .dots {
        color: var(--color-white);
        font-size: 14px;
        transform: translateY(-1px);
        margin: 0 7px;
    }

    .text {
        font-size: 16.189px;
    }

    .countdown-area {
        background: rgba(128, 7, 6, 0.30);
    }

    .countdown-area {
        bottom: 45px;
        /* Adjust this value as needed */
        left: 75%;
        transform: translateX(-50%);

        padding: 10px 20px;
        /* Removed margin-right and margin-bottom */
    }

    .countdown {
        display: flex;
        flex-direction: column;
        gap: 7px;
    }



    .count {
        color: var(--color-white);
        text-align: center;
        font-size: 16.754px;
        font-style: normal;
        font-weight: 400;
        line-height: 42.294px;
        letter-spacing: 0.528px;
    }

    .footer {
        padding: 12px 15px;
    }

    .footer-main-section {
        gap: 20px;
    }

    .footer-logo img {
        width: 70px;
        height: auto;
    }

    .footer-info h6,
    .footer-address h6 {
        font-size: 13px;
        padding-bottom: 10px;
    }

    .footer-info a,
    .footer-address a,
    .footer-contact p {
        font-size: 13px;
    }

    .footer-contact button {
        font-size: 16px;
        padding: 6px 14px;
    }

    .ticket {
        width: 24px;
        height: 24px;
        padding: 4px;
    }

    .footer-social-medias {
        flex-wrap: wrap;
        gap: 6px;
    }

    .footer-social {
        width: 35px;
        height: 35px;
    }

    .footer-social img {
        width: 16px;
        height: 12px;
    }

    .footer-main-section {
        flex-wrap: wrap;
    }
}

/* @media(max-width: 450px) {
  .countdown-area {
    bottom: -40px;

  }
} */

@media(max-width: 400px) {
    .countdown-area {
        /* bottom: -30px; */
        padding: 10px;

    }

    .count {
        font-size: 12.754px;
    }

    .text {
        font-size: 12.189px;
    }
}

@media (min-width: 1000px) and (max-width: 1300px) {
    .countdown-area {
        bottom: 190px;
    }
}

@media (min-width: 1300px) and (max-width: 1500px) {
    .countdown-area {
        bottom: 200px;
    }
}

@media (min-width: 700px) and (max-width: 1024px) {
    .countdown-area {
        bottom: 100px;
        left: 75%;
        padding: 10px 16px;
    }

    .dots {
        color: var(--color-white);
        font-size: 20px;
    }

    .count {
        font-size: 26.754px;
    }
}

/* Responsive Styles */

/* 1100px and below */
@media (max-width: 1100px) {
    .footer {
        padding: 24px 30px;
    }

    .footer-main-section {
        gap: 20px;
    }

    .footer-info,
    .footer-address,
    .footer-contact {
        flex: 1 1 150px;
        /* Adjust flex-basis to allow wrapping */
    }

    .footer-social-medias {
        justify-content: center;
        margin-top: 40px;
    }
}

/* Footer end */

@media (max-width: 1100px) {
    .media-section {
        /* width: 30%; */
    }

    .media-photos {
        gap: 16px;
    }

    .sponsors-logos {
        align-items: center;
        justify-content: center;
        gap: 24px;
    }
}

@media (max-width: 1024px) {
    .basket-section {
        display: flex;
        flex-direction: column !important;
        gap: 13px;
        /* width: 100%; */
    }

    .sponsor-logo-section img {
        width: 140px;
        /* height: 49px; */
    }

    .sponsor-logo-section {
        /* padding: 22px; */
        z-index: 1;
    }

    .project-logo-section {
        width: 31%;
    }

    .project-logo-section img {
        width: 140px;
        /* height: 49px; */
    }

    .project-logo-section {
        padding: 22px;
    }

    .sponsors-logos {
        align-items: center;
        justify-content: center;
        gap: 14px;
    }

    .media-photos {

        gap: 12px;
    }

    .media-section {
        /* width: 29%; */
        /* height: 250px; */
    }

    .sections-spacing {
        margin-top: 40px;
    }

    .speaker-card {
        width: 48%;
    }

    .item-list {
        padding-left: 0px !important;
    }

    .item-details {
        gap: 15px;
    }

    .item-title {
        padding-right: 10px;
    }

    .item-header {
        padding: 10px;
    }

    .schedule-item.open .item-details {
        padding: 10px;
    }

    .item-topic {
        /* padding-left: 10px; */
    }

    .item-speaker-image {
        width: 50px;
        height: 50px;
    }

    .agenda-section {
        padding: 10px;
    }
}

@media (max-width: 700px) {
    .basket {
        padding: 20px;
    }

    .basket-section {
        display: flex;
        flex-direction: column !important;
        gap: 13px;
        width: 100%;
    }

    .sponsor-logo-section img {
        /* width: 90px; */
        /* height: 49px; */
    }

    .sponsor-logo-section {
        /* padding: 12px; */
        z-index: 1;
    }

    .project-logo-section img {
        width: 280px;
        /* height: 49px; */
    }

    .project-logo-section {
        padding: 12px;
    }

    .sponsors-logos {
        align-items: center;
        justify-content: center;
        gap: 14px;
    }

    .sections-spacing {
        margin-top: 30px;
    }

    .speaker-card {
        width: 47%;
    }

    .agenda-section {
        padding: 10px;
    }

    .item-info {
        gap: 20px;
    }

    .item-title {
        padding-right: 10px;
    }

    .item-header {
        padding: 10px;
    }

    .item-list {
        padding-left: 0px !important;
    }

    .item-list {
        padding-left: 0 !important;
        max-height: 0;
        overflow: hidden;
    }

    .schedule-item.open .item-list {
        max-height: 1000px !important;
        /* Ensure this is sufficient */
        padding: 5px !important;
        /* Adjust as necessary */
    }

    .item-topic {
        /* padding-left: 10px; */
    }

    .item-speaker-image {
        width: 50px;
        height: 50px;
    }

    /* Make the details content stack vertically */
    .item-details {
        flex-direction: column;
        align-items: flex-start !important;
        padding: 15px 20px !important;
        /* more comfortable padding on small screens */
    }

    /* Also stack or reduce gap in .item-details-left */
    .item-details-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px !important;
        width: 25%;
        /* reduce large gaps */
    }

    /* If you need to shorten the times' container width on smaller devices */
    .item-time {
        width: auto !important;
        padding-left: 0 !important;
    }

    /* Similarly, adjust speaker data layout */
    .item-speaker-data {
        flex-direction: row;
        gap: 10px;
        margin-top: 8px;

    }
}

@media (max-width: 763px) {

    .project-logo-section {
        width: 30%;
    }

    .project-logo-section img {
        width: 120px;

    }

    .sponsors-left {
        /* top: 32%; */
        display: none;
    }
}

@media (max-width: 638px) {
    .project-logo-section {
        width: 47%;
    }

    .project-logo-section img {
        width: 200px;

    }
}

@media (max-width: 600px) {
    .project-logo-section {}

    .project-logo-section img {
        width: 170px;
        height: 140px;

    }

    .marquee-item {
        height: 30px;
    }

}

@media (max-width: 579px) {
    .project-logo-section img {
        width: 180px;

    }
}

@media (max-width: 557px) {
    .project-logo-section img {
        width: 180px;

    }
}

@media (max-width: 532px) {
    .project-logo-section img {
        width: 180px;

    }
}

@media (max-width: 520px) {
    .project-logo-section img {
        width: 180px;

    }
}

@media (max-width: 500px) {
    .basket {
        padding: 20px;
    }

    .basket-section {
        display: flex;
        flex-direction: column;
        gap: 13px;
        width: 100%;
    }



    .half-heart-image {
        width: 40px;
    }

    .sponsor-logo-section {
        padding: 20px;
        z-index: 1;
    }

    .sponsor-logo-section img {
        width: 120px;
        height: 49px;
    }

    .project-logo-section {
        padding: 12px;
    }

    .project-logo-section img {
        width: 180px;
        /* height: 49px; */
    }

    .projects-logos {
        justify-content: center;

    }

    .sponsors-logos {
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .sponsors-section {
        padding: 20px 15px;
    }

    .media-photos {
        gap: 10px;
    }

    .media-section {
        /* width: 31%; */
        /* height: 175px; */
    }

    .speaker-card {
        width: 100%;
        height: 410px;
    }

    .speaker-position {
        line-height: normal;
        font-size: 12px;
    }

    .item-details {
        padding: 15px 16px !important;
        gap: 10px;
    }

    .item-info {
        gap: 10px;
    }

    .item-header {
        padding: 10px;
    }

    .item-speaker-image {
        width: 50px;
        height: 50px;
    }

    .item-list {
        padding-left: 0px !important;
        margin-top: 4px;
    }

    .item-title {
        padding-right: 10px;
    }

    /* Make sure titles/time fit on one line or stack if needed */
    .item-title,
    .item-time {
        font-size: 12px !important;
        /* or whatever you prefer */
    }

    .item-header button {
        font-size: 12px;
    }

    /* Make sure speaker name doesn't overflow */
    .item-speaker-name {
        font-size: 14px !important;
    }

    /* Ensure the topic text remains readable */
    .item-topic {
        font-size: 14px !important;
    }

    /* If you want to further reduce the gap or align everything to the left */
    .item-details-left {
        gap: 6px !important;
    }

    .sections-spacing {
        margin-top: 20px;
    }
}

@media (max-width: 453px) {
    .project-logo-section img {
        width: 150px;

    }
}

@media (max-width: 433px) {
    .project-logo-section img {
        width: 140px;


    }

    .projects-logos {
        justify-content: center;
    }
}

@media (max-width: 402px) {
    .project-logo-section img {
        width: 131px;

    }
}

@media (max-width: 378px) {

    .project-logo-section {
        width: 45%;

    }

    .project-logo-section img {
        width: 120px;

    }
}

@media (max-width: 365px) {
    .project-logo-section img {
        width: 120px;

    }
}

@media (max-width: 365px) {
    .project-logo-section img {
        /* width: 270px; */

    }

    .projects-logos {

        align-items: center;
        justify-content: center;

    }

}

@media (max-width: 366px) {
    /* .speaker-card {
    width: 46%;
    height: 270px;
  } */

    .company-speaker {
        font-size: 10px !important;
    }

    .speaker-position {
        line-height: normal;
        font-size: 10px;
    }
}

/* Tickets section  */

/* Tickets section (existing styles) ... */

/* Footer: place the button here */
.ticket-simple .ticket-footer {
    text-align: center;
    margin-top: auto;
    /* keeps button pinned to the bottom if body content is tall */
}

/* The new “Init” button style */
.init-ticket-btn {
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    background-color: var(--red);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.init-ticket-btn:hover {
    /* Example hover state */
    background-color: #cc3e3c;
    /* or var(--button-primary-hover) if you prefer */
    transform: scale(1.05);
}

/* Other existing CSS can remain unchanged */
/* ... */

.tickets-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.tickets-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--brandText);
    margin-bottom: var(--sections-spacing);
    margin-left: 0;
}




.tickets-section {
    display: flex;
    flex-direction: row;
    gap: 40px;
    flex-wrap: wrap;
    width: 100%;
}


.ticket-card {
    width: 31%;
    /* width: 100%; */
    background-color: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); */
    position: relative;
    text-align: center;
    color: var(--color-secondary);
}



.ticket-card::before,
.ticket-card::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.ticket-card::before {
    left: -15px;
}

.ticket-card::after {
    right: -15px;
}

.ticket-header {
    background-color: var(--brandText);
    color: #ffffff;
    padding: 20px;
    font-size: 1.6em;
    font-weight: 500;
}

.ticket-body {
    padding: 20px;
}

.details {
    margin: 15px 0;
    font-size: 1.1em;
    color: #333;
}

.details .title {
    color: var(--color-black);
    font-size: 1.4em;
    height: 75px;
}

.details .date,
.details .price {
    margin: 5px 0;
    font-weight: 400;
}

.details .date {
    color: var(--color-black);
}

.price {
    color: var(--color-black);
    font-size: 1.4em;
}

.ticket-footer {
    background-color: var(--brand-weak);
    padding: 10px;
    font-size: 0.9em;
    color: #aaaaaa;
}

.qr-code {
    margin: 25px 0px;
}

.qr-code a {
    padding: 12px 50px;
    background: var(--brand-color-strong);
    color: var(--color-white);
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
}


.qr-code a:hover {
    background: var(--button-primary-hover);

}

@media (max-width: 1100px) {
    .ticket-card {
        width: 30.5% !important;
    }
}

@media (max-width: 1000px) {
    .ticket-card {
        width: 46.5% !important;
    }
}

@media (max-width: 700px) {
    .ticket-card {
        width: 100% !important;
    }
}

/* Basket page  */
.basket {
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    background: var(--color-white);
}

.img-increase {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.img-increase img {
    width: 90px;
    height: 82px;
    object-fit: contain;
    border-radius: 8px;
    background: #b01b1b;
}

.increase-or-decrease {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: var(--color-white);
    box-shadow: 0px 4px 8px 5px rgba(93, 97, 114, 0.08);
    padding: 4px 12px;
    width: fit-content;
    max-width: 150px;
}

.increase-or-decrease span {
    cursor: pointer;
}

.increase-or-decrease p {
    color: rgba(0, 6, 38, 0.9);
    text-align: center;
    font-feature-settings: "liga" off, "clig" off;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.basket h1 {
    color: var(--color-black);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding-bottom: 40px;
}

.body-basket {
    background: var(--gray70);
    /* background: var(--color-white); */
}

.date-amount {
    display: flex;
    justify-content: space-between;
    /* background: #593939; */
    width: 100%;
}

.ticket-date-address {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ticket-date-address h6 {
    color: #333;
    font-family: Archivo;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

.ticket-date-address p {
    color: var(--color-black);
    font-family: Archivo;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 10px;
}

.about-ticket {
    /* width: 50%; */
    display: flex;
    /* background: #b7b5b5; */
    /* background: #b7b5b5; */
    border-bottom: 1px solid #b7b5b5 !important;
    padding-bottom: 24px;
    gap: 20px;
}

.amount-delete {
    display: flex;
    gap: 10px;
    align-items: center;
    align-self: center;
}

.tickets {
    display: flex;
    flex-direction: column;
    gap: 46px;
}

.basket {
    margin-top: 114px;
}

.basket-section {
    display: flex;
    justify-content: space-between;
    /* gap: 73px; */
    width: 100%;
}

.ticket-input {
    display: flex;
    flex-direction: column;
}

.ticket-info-section {
    padding: 20px;
    width: 350px;
    display: flex;
    justify-content: space-between;
    border-radius: 16px;
    box-shadow: 0px 4px 8px 0px rgba(93, 97, 114, 0.08);
    background-color: var(--card-bg);
}

.ticket-info-section h3 {
    color: var(--color-black);
    font-feature-settings: "liga" off, "clig" off;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.ticket-info-section h3 .highlight {
    color: var(--brandText);
    font-feature-settings: "liga" off, "clig" off;
    font-family: var(--Font-family-Heading, Archivo);
    font-size: var(--Font-size-Heading-3, 24px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--Line-height-Heading-3, 32px);
}

.ticket-info-section p {
    color: var(--brandText);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.tickets-tab-groups {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 40px 0px;
    width: 450px;
}

.increase-or-decrease button {
    border: none;
    background-color: inherit;
}

.tickets-tab-selected {
    cursor: pointer;
    display: flex;
    height: 32px;
    color: var(--color-white) !important;
    font-size: 14px;
    padding: 8px 10px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background-color: var(--brandText);
}

.tickets-tab {
    cursor: pointer;
    display: flex;
    height: 32px;
    color: var(--brand-color-strong);
    font-size: 14px;
    padding: 8px 10px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid var(--brand-color-strong);
}

.ticket-form h6 {
    color: var(--color-black);
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding-bottom: 20px;
}

.form-container {
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.36px;
    font-family: var(--font-family);
}

.input-form {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    background-color: var(--card-bg);
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.input-form:hover {
    background-color: #e8e8e8;
    /* Change this to your desired hover background color */
    border-color: #aaa;
    /* Change this to your desired hover border color */
}

.input-form:focus {
    border-color: #555555;
    outline: none;
}

.input-form::placeholder {
    font-family: var(--font-family);
    color: #79797a;
    font-size: 14px;
}

.payment {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: bold;
}

.payment span {
    color: #79797a;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.amount {
    color: var(--color-black) !important;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.payment-btn {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    background-color: var(--brand-color-strong);
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

@media (max-width: 700px) {
    .basket {
        padding: 20px;
    }

    .basket-section {
        display: flex;
        flex-direction: column !important;
        gap: 13px;
        width: 100%;
    }
}

@media (max-width: 500px) {
    .basket {
        padding: 20px;
    }

    .basket-section {
        display: flex;
        flex-direction: column;
        gap: 13px;
        width: 100%;
    }
}

/* Register Body */
.register-body {
    background: var(--card-bg);
    margin: 0;
    font-family: sans-serif;
}

/* Register Area */

/* Styles for invalid inputs */
.invalid {
    border: 1px solid #b01b1b !important;
}

/* Styles for helper text messages */
.error-message {
    color: #b01b1b;
    font-size: 0.8em;
    display: none;
    /* Hidden by default */
    margin-top: 4px;
}

.error-message.active {
    display: block;
    /* Show when active */
}

/* Styles for toast messages */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #ffffff;
    border: 1px solid var(--text-primary);
    border-left: 5px solid var(--brandText);
    color: #333333;
    padding: 15px 20px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateY(-20px);
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}



.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.register-page {
    padding-top: 34px;
}

.register-area {
    border-radius: 16px;
    background: var(--color-white);
    box-shadow: 0px 4px 8px 0px rgba(93, 97, 114, 0.08);
    padding: 50px 100px;
    max-width: 700px;
    margin: auto;
    margin-top: 100px;
    /* padding-top: 100px !important; */
    /* margin-bottom: var(--sections-spacing); */
}

/* Heading */
.register-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 18px;
}

.register-heading-title {
    color: var(--text-primary);
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.register-heading img {
    width: 128px;
    object-fit: contain;
}

/* Form */
.register-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--text-secondary);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.36px;
}

/*
        Inputs & Select:
        - Updated background to #f5f5f5
        - Added hover effect to change background & border color
        - Removed default select arrow and replaced with custom arrow
      */
.form-group input,
.form-group select {
    width: 100%;
    height: 48px;
    border-radius: 8px;
    border: 1px solid #c1c1c1;
    background: #f5f5f5;
    /* Updated */
    padding-left: 10px;
    color: #79797a;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    -webkit-appearance: none;
    /* Remove default arrow from some browsers */
    -moz-appearance: none;
    /* Remove default arrow from Firefox */
    appearance: none;
    /* Remove default arrow overall */
}

.checkbox-container input {
    padding-left: 0px !important;
}

/*
        Hover state for inputs & select
      */
.form-group input:hover,
.form-group select:hover {
    border-color: #979797;
    background: #ececec;
    /* Or a gray shade you prefer */
}

.form-group select {
    /* background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23888888' stroke-width='1.5'/%3E%3C/svg%3E"); */
    background-repeat: no-repeat;
    background-position: 95% center;
    /* Moves arrow away from right edge */
    background-size: 16px;
    padding-right: 35px;
    /* Make room for the arrow */
}

/* Form Button */
.form-group-button {
    width: 100%;
    display: flex;
    justify-content: center;
}

.form-group-button button {
    color: var(--color-white);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    border-radius: 8px;
    background: var(--brand-color-strong);
    border: none;
    width: 100%;
    cursor: pointer;
    height: 48px;
    transition: all 0.3s ease-in-out;
}

.form-group-button button:hover {
    background: var(--button-primary-hover);
}

/* Media queries as before */
@media (max-width: 800px) {
    .register-area {
        margin: 40px;
        /* max-width: 600px;  */
        padding: 50px 50px;
    }
}

@media (max-width: 650px) {
    .register-area {
        margin: 30px;
        /* max-width: 500px; */
        padding: 50px 30px;
    }
}

@media (max-width: 550px) {
    .register-area {
        margin: 30px;
        /* max-width: 450px; */
        padding: 50px 20px;
    }

    .register-heading-title {
        font-size: 22px;
    }

    .form-group label {
        font-size: 16px;
    }

    .form-group-button button {
        font-size: 16px;
    }
}

@media (max-width: 460px) {
    .register-area {
        margin: 30px;
        /* max-width: 300px; */
        padding: 50px 20px;
    }
}



/* -------------------------- */
/* Terms and Conditions Block */
/* -------------------------- */

.terms-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

/* Remove accent-color so the default checkmark appears */
.terms-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.terms-label {
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
}

/* Instead of styling only the anchor on hover,
   style the anchor when the entire terms-group is hovered */
.terms-label a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.terms-group:hover .terms-label a {
    color: blue;
    text-decoration: underline;
}

/* Error styling when checkbox is not checked */
.terms-group.error .terms-label,
.terms-group.error input[type="checkbox"] {
    color: #b01b1b;
}

/* Modal styles */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* overflow: auto; */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black with opacity */
}

.modal-content {
    background-color: #fff;
    margin: 6% auto;
    padding: 32px;
    border-radius: 1.5rem;
    max-width: 650px;
    
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.modal-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    font-family: var(--font-family);
    /*padding: 0 50px;*/
    padding: 0 25px;
    color: #79797A;
    max-height: 490px;
    overflow-y: auto;
}

.modal-content h2 {
    color: var(--text-primary);
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    font-family: var(--font-family);
    padding-bottom: 20px;
    text-align: center;

}

.modal-info {
    padding: 12px;
    border: 1px solid #2952CC;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 8px;
  background-color: rgb(243 246 255 / 0.3);
  margin-top: 12px;
  margin-left: 20px;
  margin-right: 20px;
}
.modal-info i{  

    fill: #2952CC ;
    color: #2952CC;
}
.modal-info p{  

    fill: #2952CC ;
    color: #2952CC;
}

.checkbox-container input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    /* or use your variable: var(--card-bg) */
    background: #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}

.checkbox-container input[type="checkbox"]:checked {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

.checkbox-container input[type="checkbox"]:checked::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    margin: 4px auto;
    background-color: white;
    border-radius: 2px;
}


/* Responsive adjustments (if needed) */
@media (max-width: 800px) {
    .register-area {
        margin: 40px;
        padding: 50px 50px;
    }
}

@media (max-width: 650px) {
    .register-area {
        margin: 30px;
        padding: 50px 30px;
    }
}

@media (max-width: 550px) {
    .register-area {
        margin: 30px;
        padding: 50px 20px;
    }

    .register-heading-title {
        font-size: 22px;
    }

    .form-group label {
        font-size: 16px;
    }

    .form-group-button button {
        font-size: 16px;
    }
}

@media (max-width: 460px) {
    .register-area {
        margin: 30px;
        padding: 50px 20px;
    }
}


@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

.embla {
    margin-top: var(--sections-spacing) !important;
    max-width: 100%;
    margin: auto;
    --slide-height: 19rem;
    --slide-spacing: 1rem;
    --slide-size: 45%;
    margin-top: 0 !important;
}

.embla__viewport {
    overflow: hidden;
}

.embla__container {
    display: flex;
    gap: 50px;
    touch-action: pan-y pinch-zoom;
    margin-left: calc(var(--slide-spacing) * -1);
}

.embla__slide {
    transform: translate3d(0, 0, 0);
    flex: 0 0 140px;
    height: 100px;
    align-items: center;
    justify-content: center;
    /* min-width: 0; */
    padding-left: var(--slide-spacing);
    /* background: #b5afaf; */
    /* width: 140px !important; */
}

.embla__slide__number {
    box-shadow: inset 0 0 0 0.2rem var(--detail-medium-contrast);
    border-radius: 1.8rem;
    font-size: 4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;

    /* height: var(--slide-height); */
    user-select: none;
}

.embla__slide__number img {
    width: 140px !important;
    object-fit: contain !important;
}

.embla__controls {
    display: grid;
    grid-template-columns: auto 1fr;
    justify-content: space-between;
    gap: 1.2rem;
    margin-top: 1.8rem;
}

.embla__buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    align-items: center;
}

.embla__button {
    -webkit-tap-highlight-color: rgba(var(--text-high-contrast-rgb-value), 0.5);
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    touch-action: manipulation;
    display: inline-flex;
    text-decoration: none;
    cursor: pointer;
    border: 0;
    padding: 0;
    margin: 0;
    box-shadow: inset 0 0 0 0.2rem var(--detail-medium-contrast);
    width: 3.6rem;
    height: 3.6rem;
    z-index: 1;
    border-radius: 50%;
    color: var(--text-body);
    display: flex;
    align-items: center;
    justify-content: center;
}

.embla__button:disabled {
    color: var(--detail-high-contrast);
}

.embla__button__svg {
    width: 35%;
    height: 35%;
}

.embla__play {
    -webkit-tap-highlight-color: rgba(var(--text-high-contrast-rgb-value), 0.5);
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    touch-action: manipulation;
    display: inline-flex;
    text-decoration: none;
    cursor: pointer;
    border: 0;
    padding: 0;
    margin: 0;
    box-shadow: inset 0 0 0 0.2rem var(--detail-medium-contrast);
    border-radius: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: flex-end;
    color: var(--text-body);
    font-weight: 700;
    font-size: 1.4rem;
    padding: 0 2.4rem;
    min-width: 8.4rem;
}

.embla__progress {
    border-radius: 1.8rem;
    box-shadow: inset 0 0 0 0.2rem var(--detail-medium-contrast);
    background-color: var(--background-site);
    position: relative;
    height: 0.6rem;
    justify-self: flex-end;
    align-self: center;
    width: 13rem;
    max-width: 90%;
    overflow: hidden;
}

.embla__progress__bar {
    background-color: var(--text-body);
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    left: -100%;
}

.embla__controls {
    grid-template-columns: auto 1fr auto;
}

.embla__progress {
    justify-self: center;
    transition: opacity 0.3s ease-in-out;
    width: 8rem;
}

.embla__progress--hidden {
    opacity: 0;
}

.embla__progress__bar {
    animation-name: autoplay-progress;
    animation-timing-function: linear;
    animation-iteration-count: 1;
}

.embla__progress--hidden .embla__progress__bar {
    animation-play-state: paused;
}

@keyframes autoplay-progress {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(100%, 0, 0);
    }
}


/* Modal Styles */
.modalMedia {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Fixed position */
    z-index: 1000;
    /* Sit on top */
    padding-top: 60px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.8);
    /* Black with opacity */
}

.modal-content-media {
    position: relative;
    margin: auto;
    padding: 0;
    width: 80%;
    max-width: 800px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image-media {
    width: 850px !important;
    max-width: 800px;
    height: 600px;
    object-fit: cover !important;
    border-radius: 8px !important;
    /* Optional */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Optional */
    object-fit: contain;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: #ffffff;
    font-weight: bold;
    font-size: 30px;
    transition: 0.3s;
    user-select: none;
    background: none;
    border: none;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.prev:hover,
.next:hover,
.close:hover {
    color: #bbbbbb;
}

.modal-thumbnails {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    overflow-x: auto;
}

.modal-thumbnails .thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin: 0 5px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s, border 0.3s;
}

.modal-thumbnails .thumbnail.active,
.modal-thumbnails .thumbnail:hover {
    opacity: 1;
    border: 2px solid #ffffff;
}


/* Medium Screens (Tablets) */
@media (max-width: 1024px) {
    .modal-content-media {
        width: 90%;
        height: 450px;
    }

    .modal-image-media {
        height: 450px;
        max-width: 90%;
    }
}

/* Small Screens (Mobile Devices) */
@media (max-width: 768px) {
    .modal-content-media {
        width: 95%;
        height: auto;
        /* Allow height to adjust based on image */
        flex-direction: column;
        /* Stack elements vertically */
    }

    .modal-image-media {
        height: 350px;
        /* Adjust height based on image aspect ratio */
        max-width: 100%;
    }

    /* Adjust navigation buttons for smaller screens */
    .prev,
    .next {
        font-size: 24px;
        padding: 12px;
    }

    .close {
        font-size: 30px;
        top: 15px;
        right: 25px;
    }
}


.sponsor-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1000;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.5);
    /* Black with opacity */
    transition: opacity 0.3s ease;
}

/* Sponsor Modal Content */
.sponsor-modal-content {
    background-color: #fefefe;
    margin: 12% auto;
    padding: 32px;
    border: 1px solid #888;
    width: 700px;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s;
}

/* Close Button */
.sponsor-close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.sponsor-close-button:hover,
.sponsor-close-button:focus {
    color: black;
    text-decoration: none;
}

/* Sponsor Modal Body */
.sponsor-modal-body {
    display: flex;
    flex-direction: row;
    align-items: center;
}

/* Sponsor Image */
.modal-sponsor-image {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 50%;
    margin-right: 20px;
}

/* Sponsor Modal Detail */
.sponsor-modal-detail {
    flex: 1;
    gap: 16px;
    display: flex;
    flex-direction: column;
}

/* Sponsor Modal Title */
.sponsor-modal-title h2 {
    margin: 0;
    font-size: 24px;
}

/* Sponsor Modal Details */
.sponsor-modal-details {
    display: flex;
    align-items: center;
    /* margin: 10px 0; */
}

.sponsor-modal-details p {
    margin: 0;
    font-weight: bold;
}

.sponsor-modal-details h4 {
    color: rgba(0, 0, 0, 0.60);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.sponsor-modal-desc {
    color: #888;
    line-height: 24px;
}

/* Sponsor Modal Social Links */
.sponsor-modal-social ul {
    list-style: none;
    padding: 0;
    display: flex;
}

.sponsor-modal-social li {
    margin-right: 10px;
}

.sponsor-modal-social a {
    font-size: 28px;
    color: #09102b;
    transition: color 0.3s;
}

.sponsor-modal-social .project-link {
    font-size: 15px !important;
}


.sponsor-modal-social a:hover {
    color: #000;
}

/* Sponsor Modal Logo */
.sponsor-modal-logo {
    position: absolute;
    bottom: 10px;
    right: 30px;
    width: 60px;
    height: 60px;
    opacity: 0.7;
    object-fit: contain;
}

/* Animation for Modal Content */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .sponsor-modal-content {
        width: 90%;
        margin: 20% auto;
    }

    .sponsor-modal-body {
        flex-direction: column;
        align-items: center;
    }

    .modal-sponsor-image {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

.contact-img-details {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    padding: 60px 30px 60px 27px;
}

/* Responsive adjustments for contact-img-details */
@media (max-width: 768px) {
    .contact-img-details {
        padding: 40px 20px;
    }

    .contact-img {
        height: 400px !important;
    }
}

.contact-adress-details {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

/* Stack address details vertically on smaller screens */
@media (max-width: 768px) {
    .contact-adress-details {
        flex-direction: column;
        align-items: center;
    }
}

.adress-contact-img {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-img-numbers {
    display: flex;
    align-items: center;
    gap: 20px;
}

.dot {
    padding: 4px;
    background: var(--color-white);
    border-radius: 50%;
}

.adress {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid white;
    padding-bottom: 15px;
    width: 100%;
}

.adress p {
    color: #FFF;
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    /* 133.333% */
}

/* Adjust font size for smaller screens */
@media (max-width: 768px) {
    .adress p {
        font-size: 20px;
        line-height: 28px;
    }
}

.adress-text p {
    color: #FFF;
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    /* 140% */
    width: 60%;
}

/* Make adress-text width 100% on smaller screens */
@media (max-width: 768px) {
    .adress-text p {
        width: 100%;
        text-align: center;
    }
}

.phone-number {
    display: flex;
    gap: 12px;
}

.phone-number p {
    color: #FFF;
    text-align: right;
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

/* Stack phone numbers vertically on very small screens */
@media (max-width: 480px) {
    .phone-number {
        flex-direction: column;
        align-items: center;
    }

    .phone-number p {
        text-align: center;
    }
}


/* Container that holds the scrolling items */
.marquee-items {
    width: 100%;
    height: 120px;
    overflow: hidden;
    /* background: #555; */
    display: flex;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    margin-bottom: 20px;
}

@media(max-width: 600px) {
    .marquee-items {
        margin-top: 50px;
    }
}

/* Each item in the marquee */
.marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: #0f0; */
    height: 50px;
    width: auto;
    margin: 0 20px;
    box-sizing: border-box;
    cursor: pointer;
}




/* Example styling for images inside .marquee-item */
.marquee-item img {
    height: 100%;
    object-fit: contain;
}



/* project  */

.projects-logos {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
}


.project-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1000;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    /* overflow: auto; */
    /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.5);
    /* Black with opacity */
    transition: opacity 0.3s ease;
}

/* Sponsor Modal Content */
.project-modal-content {
    background-color: #fefefe;
    margin: 12% auto;
    padding: 32px;
    border: 1px solid #888;
    width: 850px;
    height: 450px;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s;
}

/* Close Button */
.project-close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.project-close-button:hover,
.project-close-button:focus {
    color: black;
    text-decoration: none;
}

/* Sponsor Modal Body */
.project-modal-body {
    display: flex;
    flex-direction: row;
    align-items: center;
}

/* Sponsor Image */
.modal-project-image {
    width: 150px !important;
    height: 150px;
    object-fit: contain;
    border-radius: 8px !important;
    margin-right: 20px;
}

/* Sponsor Modal Detail */
.project-modal-detail {
    flex: 1;
    gap: 16px;
    display: flex;
    height: 350px;
    overflow-y: auto;
    flex-direction: column;
}

/* Sponsor Modal Title */
.project-modal-title h2 {
    margin: 0;
    font-size: 24px;
}

/* Sponsor Modal Details */
.project-modal-details {
    display: flex;
    align-items: center;
    /* margin: 10px 0; */
}

.project-modal-details p {
    margin: 0;
    font-weight: bold;
}

.project-modal-details h4 {
    color: rgba(0, 0, 0, 0.60);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.project-modal-desc {
    color: #888;
    line-height: 24px;
}

/* Sponsor Modal Social Links */
.project-modal-social ul {
    list-style: none;
    padding: 0;
    display: flex;
}

.project-modal-social li {
    margin-right: 10px;
}

.project-modal-social a {
    font-size: 28px;
    color: #09102b;
    transition: color 0.3s;
}

.project-modal-social a:hover {
    color: #000;
}

/* Sponsor Modal Logo */
.project-modal-logo {
    position: absolute;
    bottom: 10px;
    right: 30px;
    width: 60px;
    height: 60px;
    opacity: 0.7;
    object-fit: contain;
}

/* Animation for Modal Content */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-modal-content {
        width: 90%;
        margin: 20% auto;
    }

    .project-modal-body {
        flex-direction: column;
        align-items: center;
    }

    .modal-project-image {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

.project-link {
    font-size: 12px;
}

.project-modal-social a {
    font-size: 16px;
}


.basket-tabs {
    /* width: 40%; */
}

.new-tickets {
    /* width: 55%; */
    display: flex;
    flex-direction: column;
}

.new-ticket-card {
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    padding-bottom: 40px;
    padding-top: 40px;
    width: 100%;
    width: 600px;
}

.new-ticket-card:last-child {
    border-bottom: none;
}

.new-ticket {
    display: flex;
    border-radius: 8px;
    position: relative;
    background: #0344420d;
    margin-bottom: 20px;
}

.new-ticket-left {
    border-radius: 16px 0px 0px 16px;
    background: #034442;
    display: flex;
    width: 71px;
    height: 131px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* .new-ticket-img {
    transform: rotate(-90deg);
} */
.new-ticket-right {
    margin-top: 24px;
    margin-left: 12px;
}

.new-ticket-title {
    color: #000000e6;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 6px;
}

.new-ticket-price {
    color: #000000e6;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 6px;
}

.new-ticket-date {
    color: rgba(0, 0, 0, 0.60);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.new-ticket-shadow {
    width: 62px;
    height: 59px;
    position: absolute;
    right: -26px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border-radius: 50%;
}



.divider-border {
    width: 1px;
    background: rgba(0, 0, 0, 0.10);
    margin: 0 50px;
}


@media(max-width: 1400px) {
    .tickets-tab-groups {
        width: 400px;
    }
}

@media(max-width: 1200px) {
    .new-ticket-card {
        width: 450px;
    }

    .tickets-tab-groups {
        width: 350px;
    }
}

@media(max-width: 1000px) {
    .new-ticket-card {
        width: 100%;
    }

    .new-ticket-shadow {
        right: -19px;
    }


}


@media(max-width: 400px) {
    .new-ticket-card {
        width: 100%;
    }

    .new-ticket-shadow {
        display: none;
    }


}



.file-upload-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 130px;
    border: 1px solid #ddd;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    transition: border-color 0.3s ease;
    background-color: var(--card-bg);
}

.file-upload-container:hover {
    border-color: #666;
}

.file-upload-container .material-icons {
    font-size: 48px;
    color: #888;
    transition: color 0.3s ease;
}

.file-upload-container:hover .material-icons {
    color: #333;
}

.file-upload-container input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-label {
    margin-top: 8px;
    font-size: 14px;
    color: #555;
}


.preview-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}

.preview-container img {
    max-width: 200px;
    max-height: 200px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #ccc;
}

.preview-container p {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 12px;
    /* margin-top: 20px; */
}

.checkbox-container input[type="checkbox"] {
    /* appearance: none; */
    width: 20px;
    height: 20px;
    border: 2px solid var(--card-bg);
    background: #ddd;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}

.checkbox-container input[type="checkbox"]:checked {
    background-color: inherit;
    border-color: #808080;
}

.checkbox-container input[type="checkbox"]:checked::after {
    content: '✔';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10px;
    height: 10px;
    margin: 4px auto;
    /* background-color: white; */
    /* border-radius: 2px; */
}

.checkbox-container label {
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transform: translateY(4px);
}

.checkbox-container input[type="checkbox"]:focus {
    box-shadow: 0 0 3px 2px rgba(76, 175, 80, 0.5);
}

@media (max-width: 700px) {

    .item-details-left,
    .item-topic,
    .item-speaker-data {
        width: 100% !important;
    }
}




.media-container .embla {
    overflow: hidden;
    position: relative;
    max-width: 100%;
}

.media-container .embla__viewport {
    overflow: hidden;
    width: 100%;
}

.media-container .embla__container {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.media-container .embla__slide {
    flex: 0 0 25%;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 360px;
}

@media (max-width: 1024px) {
    .media-container .embla__slide {
        flex: 0 0 33.33%;
    }
}

@media (max-width: 768px) {
    .media-container .embla__slide {
        flex: 0 0 50%;
    }
}

@media (max-width: 480px) {
    .media-container .embla__slide {
        flex: 0 0 100%;
    }
}

.media-container .media-section {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.media-container .media-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.media-container .gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 10px;
}


@media (max-width: 450px) {
    .sponsor-logo-section {
        padding: 12px;
    }

    .sponsor-logo-section img {
        width: 130px;
        height: 49px;
    }
}

@media (max-width: 350px) {


    .sponsor-logo-section img {
        width: 110px;
    }
}



.media-photos-area {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    width: 100%;
    margin-top: 50px;
}

.media-section-item-single {
    width: 30%;
    cursor: pointer;
    margin-bottom: 40px;
}

.media-section-item {
    width: 33.7%;
    cursor: pointer;
    margin-bottom: 40px;
}

.media-item-img {
    width: 100%;
  /*  height: 314px; */  
    object-fit: cover;
    border-radius: 25px;
}

@media (max-width: 1200px) {
    .media-section-item {
        width: 32%;
    }
}

@media (max-width: 1100px) {
    .media-section-item {
        width: 31.7%;
    }
}

@media (max-width: 1024px) {
    .media-section-item {
        width: 31%;
    }
}

@media (max-width: 900px) {
    .media-section-item {
        width: 48%;
    }
}

@media (max-width: 540px) {
    .media-section-item {
        width: 47.5%;
    }
}

@media (max-width: 500px) {
    .media-section-item {
        width: 100%;
    }
}





/* Default styles for the centered container */
.responsive-centering {
    display: none; /* hidden by default */
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* allows multiple rows if needed */
    gap: 20px;       /* optional: space between logos */
    padding: 20px;
}

.sponsor-logo img {
    max-width: 150px; /* adjust as needed */
    height: auto;
}

/* Default styles for the marquee container */
.responsive-marquee {
  /*   display: block; */
}

/* On screens wider than 1045px:
   - Show the centered logos
   - Hide the marquee */
@media (min-width: 1045px) {
    .responsive-centering {
        display: flex !important;
    }
    .responsive-marquee {
        display: none !important;
    }
}

.language-item-lang{
    
list-style: none;
}


