.elementor-6401 .elementor-element.elementor-element-e72cb04{--display:flex;--background-transition:0.3s;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-c2e5f88 */:root {
    --gold: #996633;
    --dark-blue: #1e3a5f;
    --light-gold: #c9975b;
    --lighter-blue: #2d5380;
    --white: #ffffff;
    --cream: #f8f6f1;
}

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

.conference-page {
    width: 100%;
    line-height: 1.8;
    color: var(--dark-blue);
    background: var(--white);
}

.hero-section {
    width: 100%;
    min-height: 600px;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--lighter-blue) 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(153, 102, 51, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(153, 102, 51, 0.08) 0%, transparent 50%);
    animation: bgMove 20s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 80px,
            rgba(153, 102, 51, 0.02) 80px,
            rgba(153, 102, 51, 0.02) 160px
        );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    width: 100%;
}

.academy-name {
    display: inline-block;
    padding: 16px 50px;
    background: rgba(153, 102, 51, 0.15);
    border: 2px solid var(--gold);
    border-radius: 50px;
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    animation: fadeInDown 1s ease-out;
}

.main-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.sub-title {
    font-size: 34px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 40px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.invitation-badge {
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    padding: 20px 70px;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--white);
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(153, 102, 51, 0.4);
    animation: fadeIn 1s ease-out 0.6s both, pulse 3s ease-in-out 2s infinite;
}

.main-content {
    width: 100%;
    padding: 0;
}

.intro-section {
    padding: 80px 8%;
    background: linear-gradient(to bottom, var(--cream), var(--white));
}

.intro-text {
    font-size: 21px;
    line-height: 2.2;
    color: var(--dark-blue);
    text-align: justify;
    padding: 50px 60px;
    background: var(--white);
    border-right: 8px solid var(--gold);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(30, 58, 95, 0.08);
    max-width: 1400px;
    margin: 0 auto;
}

section {
    padding: 80px 8%;
}

.section-title {
    font-size: 44px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 60px;
    padding-bottom: 25px;
    border-bottom: 4px solid var(--gold);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 200px;
    height: 4px;
    background: var(--light-gold);
}

.objectives-section {
    background: var(--white);
}

.objectives-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.objective-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 35px 40px;
    background: linear-gradient(135deg, var(--white), var(--cream));
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(30, 58, 95, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.objective-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, var(--gold), var(--light-gold));
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.objective-item:hover {
    transform: translateX(-15px);
    box-shadow: 0 15px 50px rgba(153, 102, 51, 0.2);
}

.objective-item:hover::before {
    transform: scaleY(1);
}

.objective-icon {
    color: var(--gold);
    font-size: 28px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.objective-item:hover .objective-icon {
    transform: rotate(180deg) scale(1.2);
}

.objective-item p {
    font-size: 19px;
    line-height: 2;
    color: var(--dark-blue);
    flex: 1;
}

.tracks-section {
    background: linear-gradient(to bottom, var(--cream), var(--white));
}

.tracks-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.track-item {
    display: flex;
    align-items: flex-start;
    gap: 35px;
    padding: 45px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(30, 58, 95, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.track-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 8px;
    background: linear-gradient(180deg, var(--gold), var(--light-gold));
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.track-item:hover {
    transform: translateX(-20px) scale(1.02);
    box-shadow: 0 20px 60px rgba(30, 58, 95, 0.2);
}

.track-item:hover::before {
    transform: scaleY(1);
}

.track-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(153, 102, 51, 0.3);
    transition: all 0.4s ease;
}

.track-item:hover .track-number {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(153, 102, 51, 0.5);
}

.track-content {
    flex: 1;
}

.track-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
    line-height: 1.6;
}

.track-desc {
    font-size: 18px;
    line-height: 2;
    color: #444;
}

.timeline-section {
    background: var(--white);
}

.timeline-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 35px 45px;
    background: linear-gradient(135deg, var(--cream), var(--white));
    border-radius: 15px;
    border-right: 6px solid var(--gold);
    box-shadow: 0 5px 20px rgba(30, 58, 95, 0.08);
    transition: all 0.4s ease;
}

.timeline-item:hover {
    transform: translateX(-15px) scale(1.02);
    box-shadow: 0 15px 50px rgba(153, 102, 51, 0.2);
}

.timeline-date {
    flex-shrink: 0;
    min-width: 280px;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
}

.timeline-event {
    flex: 1;
    font-size: 19px;
    color: var(--dark-blue);
}

.requirements-section {
    background: linear-gradient(to bottom, var(--cream), var(--white));
}

.requirements-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 35px 40px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(30, 58, 95, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.requirement-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, var(--gold), var(--light-gold));
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.requirement-item:hover {
    transform: translateX(-15px);
    box-shadow: 0 15px 50px rgba(153, 102, 51, 0.2);
}

.requirement-item:hover::before {
    transform: scaleY(1);
}

.requirement-check {
    color: var(--gold);
    font-size: 30px;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.requirement-item:hover .requirement-check {
    transform: scale(1.3);
}

.requirement-item p {
    font-size: 19px;
    line-height: 2;
    color: var(--dark-blue);
    flex: 1;
}

.note-section {
    max-width: 1400px;
    margin: 60px auto 80px;
    padding: 45px 60px;
    background: linear-gradient(135deg, rgba(153, 102, 51, 0.08), rgba(153, 102, 51, 0.15));
    border-right: 8px solid var(--gold);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(153, 102, 51, 0.15);
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.note-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
}

.note-section p {
    flex: 1;
    font-size: 19px;
    line-height: 2.2;
    color: var(--dark-blue);
}

.note-section strong {
    font-weight: 700;
    font-size: 21px;
    color: var(--dark-blue);
}

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

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

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes bgMove {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(30px) translateY(30px);
    }
}

@media (max-width: 968px) {
    .hero-section {
        padding: 60px 5%;
    }
    
    .main-title {
        font-size: 34px;
    }
    
    .sub-title {
        font-size: 22px;
    }
    
    .invitation-badge {
        font-size: 24px;
        padding: 15px 40px;
    }
    
    section {
        padding: 60px 5%;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .objective-item,
    .requirement-item {
        padding: 25px 30px;
        gap: 20px;
    }
    
    .track-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 35px 30px;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .timeline-date {
        min-width: auto;
    }
    
    .note-section {
        flex-direction: column;
        padding: 35px 30px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e7829c0 */:root {
    --gold: #996633;
    --dark-blue: #1e3a5f;
    --light-gold: #c9975b;
    --lighter-blue: #2d5380;
    --white: #ffffff;
}

.conference-footer {
    width: 100%;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--lighter-blue) 100%);
    padding: 100px 8%;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.conference-footer::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(153, 102, 51, 0.12), transparent 60%);
    animation: footerPulse 10s ease-in-out infinite;
}

.footer-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-title {
    font-size: 44px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 60px;
    padding-bottom: 25px;
    border-bottom: 4px solid var(--gold);
    position: relative;
    text-align: center;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.footer-card {
    text-align: center;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(153, 102, 51, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
}

.footer-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold);
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.footer-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(153, 102, 51, 0.3);
}

.footer-card:hover .footer-icon {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 15px 40px rgba(153, 102, 51, 0.5);
}

.footer-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
}

.footer-label {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-link {
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    color: var(--white) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--white) !important;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
}

@keyframes footerPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

@media (max-width: 968px) {
    .conference-footer {
        padding: 60px 5%;
    }
    
    .footer-title {
        font-size: 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}/* End custom CSS */