@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/helvetica-neue-5/HelveticaNeueLight.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}



.speakers-carousel,
.moderators-carousel {
    position: relative;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.speakers-carousel .owl-stage,
.moderators-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.speakers-carousel .owl-item,
.moderators-carousel .owl-item {
    padding: 12px;
    display: flex;
    flex: 0 0 auto;
}

.speakers-carousel .owl-item > .speaker-card,
.moderators-carousel .owl-item > .speaker-card {
    width: 100%;
}

.speakers-carousel .owl-dots,
.moderators-carousel .owl-dots {
    margin-top: 20px;
}

.speakers-carousel .owl-nav,
.moderators-carousel .owl-nav {
    position: absolute;
    top: 42%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 5;
}

.speakers-carousel .owl-nav.disabled,
.moderators-carousel .owl-nav.disabled {
    display: flex !important;
}

.speakers-carousel .owl-nav button.owl-prev,
.speakers-carousel .owl-nav button.owl-next,
.moderators-carousel .owl-nav button.owl-prev,
.moderators-carousel .owl-nav button.owl-next {
    min-width: 44px;
    height: 44px;
    background: #bc5b19;
    color: #ffffff;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
    pointer-events: all;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.speakers-carousel .owl-nav button.owl-prev,
.moderators-carousel .owl-nav button.owl-prev {
    transform: translateX(-40%);
}

.speakers-carousel .owl-nav button.owl-next,
.moderators-carousel .owl-nav button.owl-next {
    transform: translateX(40%);
}

.speakers-carousel .owl-nav button.owl-prev:hover,
.moderators-carousel .owl-nav button.owl-prev:hover {
    transform: translateX(-40%) translateY(-2px);
    background: #9a4a14;
}

.speakers-carousel .owl-nav button.owl-next:hover,
.moderators-carousel .owl-nav button.owl-next:hover {
    transform: translateX(40%) translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
    background: #9a4a14;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/helvetica-neue-5/HelveticaNeueRoman.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/helvetica-neue-5/HelveticaNeueMedium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('../fonts/helvetica-neue-5/HelveticaNeueBold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/myriad-pro/MyriadPro-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/myriad-pro/MYRIADPRO-REGULAR.OTF') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/myriad-pro/MYRIADPRO-SEMIBOLD.OTF') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/myriad-pro/MYRIADPRO-BOLD.OTF') format('opentype');
    font-weight: 700;
    font-style: normal;
}

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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 20px;
    overflow-x: hidden;
}

.header {
    background-color: #0c006c;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header .container,
.header .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 30px;
    padding-right: 30px;
}

.header .logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header .logo-section img.logo {
    height: 55px;
    width: auto;
}

.header .logo-section img.logo-mobile {
    height: 55px;
    width: auto;
    display: none;
}

@media (max-width: 575px) {
    .header .logo-section img.logo {
    max-width: 250px;
    height: auto;
    }


}

@media (max-width: 375px) {
    .header .logo-section img.logo {
   display: none;
}

.header .logo-section img.logo-mobile {
   display: block;
}
}

.header .association-text {
    color: #ffffff;
    font-size: 12px;
    font-family: 'Myriad Pro', Arial, sans-serif;
    margin: 0 15px;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    transition: color 0.3s;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.nav-menu a:hover {
    color: #bc5b19;
}

 .btn-register {
    background-color: #bc5b19;
    color: #ffffff;
    padding: 8px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-register:hover {
    background-color: #d66a20;
}

.hero-section {
    margin-top: 85px;
    height: calc(100vh - 85px);
    max-height: calc(100vh - 85px);
    position: relative;
}

@media (max-width: 575px) {


    .hero-section {
        margin-top: 60px;
   
    }
   
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -42%);
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    color: #ffffff;
}


@media (max-width: 575px) {



        .slide-content {
        
        transform: translate(-50%, -37%);

    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.slide-date {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    animation: fadeInLeft 1s ease-out 0.5s both;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.date-main {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
	line-height: 36px
}

.date-venue {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.slide-center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
	flex-direction: column;
    gap: 18px;
    text-align: center;
    
}

.slide-title {
    font-size: 64px;
    font-weight: 700;
    text-align: center;
    
    font-family: 'Helvetica Neue', Arial, sans-serif;
    
    line-height: 1.1;
    margin: 0;
    animation: fadeInUp 1.2s ease-out 0.8s both;
}

.title-conference {
    font-size: 48px;
    font-weight: 300;
    text-transform: none;
    
}

.slide-bottom {
    text-align: center;
    padding-bottom: 60px;
}

.slide-subtitle {
    font-size: 38px;
    font-weight: 700;
    margin: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    animation: fadeIn 1s ease-out 1.5s both;
    line-height: 1.2;
}

.slide-description {
    font-size: 34px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.1;
    font-family: 'Myriad Pro', Arial, sans-serif;
    font-weight: 300;
    animation: fadeIn 1s ease-out 1.8s both;
}

.content-section {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.content-title {
    font-size: 42px;
    font-weight: 700;
    color: #000ec1;
    margin-bottom: 40px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.content-text {
    font-size: 20px;
    line-height: 1.8;
    color: #000000;
    max-width: 900px;
    margin: 0 auto 25px;
    font-family: 'Myriad Pro', Arial, sans-serif;
}

.content-text:last-child {
    margin-bottom: 0;
}

.speakers-section {
    padding: 80px 0;
    background-color: #000ec1;
    color: #ffffff;
}

.moderators-section {
    padding: 80px 0;
    background-color: #1a2edc;
    color: #ffffff;
}

.sponsors-section {
    padding: 70px 0 80px;
    background-color: #f5f7fb;
}

.sponsors-section .speakers-title {
    color: #000ec1;
}

.sponsors-section .speakers-title::after {
    background-color: #bc5b19;
}

.sponsors-grid .sponsor-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 120px;
}

.sponsors-grid .sponsor-card img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.sponsors-grid .sponsor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.cta-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background-color: #bc5b19;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 10px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.cta-button:hover {
    background-color: #9a4a14;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.moderators-section .cta-button {
    background-color: #bc5b19;
}

.moderators-section .cta-button:hover {
    background-color: #9a4a14;
}

.speakers-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    position: relative;
    padding-bottom: 15px;
}

.speakers-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #bc5b19;
}

.speaker-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    background: #ffffff;
    border-radius: 14px;
    padding: 22px 20px 26px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.speaker-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
}

.speaker-image {
    width: 180px;
    height: 180px;
    overflow: hidden;
    margin: 0 auto 18px;
    background-color: #1a1a1a;
    border-radius: 50%;
    border: 6px solid #f5f5f5;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.speaker-card:hover .speaker-image img {
    filter: grayscale(0%);
}

.speaker-name {
    font-size: 20px;
    font-weight: 800;
    color: #bc5b19;
    margin-bottom: 10px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.speaker-title {
    font-size: 15px;
    color: #111111;
    line-height: 1.4;
    font-family: 'Myriad Pro', Arial, sans-serif;
    margin: 0;
    
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.modal-content {
    position: relative;
    background-color: #ffffff;
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 900px;
    border-radius: 8px;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #000000;
    font-size: 35px;
    font-weight: 300;
    cursor: pointer;
    z-index: 1;
    line-height: 1;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #bc5b19;
}

.modal-body {
    display: flex;
    gap: 40px;
    padding: 40px;
}

.modal-speaker-image {
    flex: 0 0 300px;
}

.modal-speaker-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.modal-speaker-info {
    flex: 1;
}

.modal-speaker-name {
    font-size: 32px;
    font-weight: 700;
    color: #000ec1;
    margin-bottom: 10px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.modal-speaker-title {
    font-size: 18px;
    color: #bc5b19;
    margin-bottom: 25px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
}

.modal-speaker-bio {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    font-family: 'Myriad Pro', Arial, sans-serif;
    white-space: pre-line;
}

@media (max-width: 991px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background-color: #0c006c;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        gap: 25px;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        font-size: 18px;
        width: 100%;
    }
    
    .header .btn-register {
        width: 100%;
        text-align: center;
    }

  
}

@media (max-width: 768px) {
    .header .container {
        gap: 0;
    }


    
    .slide-title {
        font-size: 36px;
    }
    
    .title-conference {
        font-size: 28px;
    }
    
    .slide-subtitle {
        font-size: 28px;
    }
    
    .slide-description {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .date-main {
        font-size: 20px;
    }
    
    .date-venue {
        font-size: 14px;
    }
    
    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .modal-body {
        flex-direction: column;
        padding: 30px 20px;
    }
    
    .modal-speaker-image {
        flex: 0 0 auto;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .modal-speaker-name {
        font-size: 24px;
    }
    
    .modal-speaker-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .speakers-grid {
        grid-template-columns: 1fr;
    }
}

.footer {
    background-color: #2f2e2e;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-left {
    flex: 1;
}

.footer-logo {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 18px;
}

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

.footer-logo .mr-logo {
    height: 48px;
}

.footer-logo .nv-logo {
    height: 60px;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.footer-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Myriad Pro', Arial, sans-serif;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #000ec1;
}

.footer-copyright {
    font-size: 14px;
    color: #cccccc;
    font-family: 'Myriad Pro', Arial, sans-serif;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-end;
    text-align: right;
    justify-content: flex-end;
}

.footer-social-wrap {
    display: flex;
    gap: 15px;
   
    width: 100%;
    justify-content: space-between;
}

.footer-social {
    flex: 1 1 240px;
}

.footer-contact h3,
.footer-social h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.footer-sponsor {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.footer-sponsor h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.footer-sponsor-line {
    font-size: 16px;
    margin: 0;
    color: #dddddd;
    font-family: 'Myriad Pro', Arial, sans-serif;
    line-height: 1.4;
}

.footer-phone,
.footer-email, .footer-phone a, .footer-email a {
    font-size: 16px;
    margin: 8px 0;
    font-family: 'Myriad Pro', Arial, sans-serif;
	color: #ffffff;
	text-decoration: none;
}

.footer-email {
    color: #ffffff;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.social-icons a {
    color: #ffffff;
    font-size: 20px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #000ec1;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-right {
        align-items: flex-start;
        text-align: left;
    }

    .footer-social-wrap {
        gap: 20px;
        justify-content: flex-start;
    }
    
    .social-icons {
        justify-content: flex-start;
    }
    .footer-logo {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .footer-logo img {
        height: auto;
        max-width: 280px;
    }
}
