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

body {
    background: #fff;
    color: #282828;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: #e28847;
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 2.2;
}
ul li {
    list-style: none;
}
.site-header {
    background: #232323;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

.site-navbar {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-menu .menu-list {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
}

.menu-list>li{
    position:relative;
}
.nav-item:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e28847;
    transition: 0.5s all;
}
.nav-item:hover:before {
    width: 100%;
}

.arrow{
    font-size:11px;
    transition:.3s;
}
.submenu{
    position:absolute;
    top:120%;
    left:0;
    width:220px;
    background:#fff;
    border-radius:12px;
    padding: 0;
    opacity:0;
    visibility:hidden;
    transform:translateY(15px);
    transition:.3s;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

ul.submenu li {
    padding: 0;
}
.submenu li a{
    display:block;
    padding:12px 20px;
    color:#000;
    text-decoration:none;
    transition:.3s;
}

.submenu li a:hover{
    background:#222;
    color:#ffd700;
}

.has-submenu:hover>.submenu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.has-submenu:hover>.nav-item .arrow{
    transform:rotate(180deg);
}
.nav-item a {
    color: #fff;
}

.btn {
    border-radius: 0;
    padding: 10px 25px;
}

.nav-item {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.5s all;
    padding: 10px 0;
}

.active-link a {
    color: #ffffffb3;
    font-weight: 700;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-signin {
    border: none;
    background: transparent;
    color: #666;
    cursor: pointer;
}

.btn-signup {
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    background: #007bff;
    color: #fff;
    cursor: pointer;
}

.menu-toggle {
    display: none;
    border: none;
    background: none;
    font-size: 28px;
    cursor: pointer;
}

/* Mobile */
@media (max-width: 992px) {
    .nav-menu {
        position: absolute;
        top: 65px;
        left: -100%;
        width: 240px;
        background: #e48a42;
        flex-direction: column;
        padding: 7px;
        gap: 20px;
        transition: 0.3s;
        height: 100vh;
    }
    .nav-menu .menu-list {
        display: flex;
        align-items: self-start;
        gap: 5px;
        margin-bottom: 0;
        flex-direction: column;
        padding-left: 0;
        overflow:hidden;
    }
    .nav-item {
        width: 100%;
    }

    .nav-menu.active {
        left: 0;
    }

    .btn-signin {
        display: none;
    }
    .nav-item {
        padding: 10px;
        background: #232323;
    }

    .menu-toggle {
        display: block;
        background: #dc8e56;
        padding: 0 10px;
        border-radius: 7px;
        color: #fff;
    }
    .has-submenu.nav-item.open .submenu {
        position: relative;
    }
    .has-submenu.nav-item.open .submenu li {
        background: #fff;
    }
}

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

.social-icons a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.2);
    border-radius:50%;
    color:#fff;
    background:rgba(255,255,255,.08);
    transition:.3s ease;
}

.social-icons a svg{
    width:20px;
    height:20px;
}

.social-icons a:hover{
    transform:translateY(-4px);
}

/* Brand Colors */
.social-icons a:nth-child(1):hover{
    background:#1877F2;
    border-color:#1877F2;
}

.social-icons a:nth-child(2):hover{
    background:#E4405F;
    border-color:#E4405F;
}

.social-icons a:nth-child(3):hover{
    background:#FF0000;
    border-color:#FF0000;
}
.header-brand {
    font-weight: 800;
    letter-spacing: -0.04em;
    font-size: 1.25rem;
}
.hero-section {
    position: relative;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-section .hero-bg {
    z-index: 0;
}
.hero-section .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(245,245,247,0.94) 0%, rgba(245,245,247,0.85) 30%, rgba(245,245,247,0.01) 100%);
    z-index: 1;
}
.hero-section .hero-content {
    position: relative;
    z-index: 2;
}
.hero-section h1 {
    font-size: clamp(2.5rem, 3vw, 4rem);
    font-weight: 800;
}
.hero-section p {
    margin:auto;
    max-width: 640px;
    font-size: 1.05rem;
    color: #5f6c7b;
    margin-bottom: 30px;
}

.footer-brand {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.04em;
}
.footer-links a {
    color: rgba(255,255,255,0.72);
}
.footer-links a:hover {
    color: #ffdd6b;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
}
.ft-items li a {
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
    font-weight: 400;
}
.ft-bottom-text a {
    text-decoration: none;
    color: #838a9c;
    font-size: 14px;
    font-weight: 100;
}
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #ea8a48;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-3px);
}

.featured-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-heading {
    margin-bottom: 60px;
}

.section-label {
    color: #1072f8;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-heading h2 {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.heading-line {
    width: 80px;
    height: 4px;
    background: #1072f8;
    margin: auto;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    opacity: 0;
    transition: 0.5s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .section-heading h2 {
        font-size: 30px;
    }

}

.form-label{
    font-weight:600;
    margin-bottom:10px;
}

.input-icon{
    position:relative;
}

.input-icon .material-symbols-outlined{
    position:absolute;
    left:15px;
    top:50%;
    transform:translateY(-50%);
    color:#888;
}

.input-icon .form-control{
    padding-left:50px;
}

.form-control{
    height:54px;
    border-radius:10px;
}


.logo {
    width: 42px;
    height: 45px;
    object-fit: cover;
}

.video-main video {
    width: 100%;
    height: 100%;
}

.wd-btn-text {
    background-color: #e28847;
    border-color: #e28847;
    color: #FFFFFF;
    border: 1px solid #e28847;
    transition: 0.5s all;
}
.wd-btn-text:hover {
    background-color: #fff;
    border: 1px solid #e28847;
    color: #e28847;
}

.wave-top{
    position:absolute;
    left:0;
    top:0;
    width:100%;
    line-height:0;
}

.wave-top svg{
    width:100%;
    height:80px;
}

.wave-bottom{
    position:absolute;
    left:0;
    bottom:-2px;
    width:100%;
    line-height:0;
}

.wave-bottom svg{
    width:100%;
    height:80px;
}
.banner-mobile {
        display: none !important;
    }
@media(max-width:576px){
    .video-card iframe{
        height:210px;
    }
    .banner-mobile {
        display: block !important;
    }
    .banner-web {
        display: none !important;
    }

}

.ft-list-item a {
    color: #fff;
}
.woodmart-title {
    font-size: 22px;
    font-weight: 400;
    color: #e28847;
}

.slick-prev, .slick-next {
    width: 50px;
    height: 50px;
    background: #ea8a48;
    border: 1px solid #ea8a48;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    font-size: 0;
    transform: translateY(-50%);
}

.slick-prev:hover,
.slick-next:hover {
    background: #ac4e0f;
}

/* Left Arrow Position */
.slick-prev {
    left: -60px;
}

/* Right Arrow Position */
.slick-next {
    right: -60px;
}

/* Default Icon Color */
.slick-prev:before,
.slick-next:before {
    font-size: 24px;
    color: #fff;
    opacity: 1;
}

/* Hover Icon */
.slick-prev:hover:before,
.slick-next:hover:before {
    color: #fff;
}
.slick-prev:before {
    content: "❮";
}

.slick-next:before {
    content: "❯";
}
.slick-prev:before,
.slick-next:before {
     font-family: inherit;
    font-size: 28px;
    color: #fff;
    opacity: 1;
}
.slick-prev {
    left: 15px;
}

.slick-next {
    right: 15px;
}


.video-main {
    margin: 12px;
}
.video-card {
    cursor: pointer;
    margin: 12px;
}

.artist-video img {
    width: 241px;
    display: block;
    height: 450px;
    border-radius: 15px;
    object-fit: cover;
    margin: auto;
    /* position: relative; */
    /* overflow: hidden; */
    border-radius: 20px;
    background: #fff;
    transition: .4s;
    margin: 12px auto;
    cursor: pointer;
    border: 1px solid #ee8c4a;
    padding: 10px;
}

.play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 70px;
    height: 70px;
    background: #000;
    color: #ea8a4e;
    border: 1px solid #ea8a4e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: .3s;
}

.artist-video:hover .play-btn{
    transform:translate(-50%,-50%) scale(1.1);
}

.video-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.8);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}
.video-popup.active{
    display: flex;
}
.popup-content {
    width: 80%;
    max-width: 700px;
    position: relative;
    margin: auto;
}
.popup-content video {
    width: 100%;
    border-radius: 10px;
    height: 400px;
    width: 100%;
    border: 1px solid #fff;
    padding: 10px;
    background: #000;
}

.close-video{
    position:absolute;
    right:-10px;
    top:-40px;
    color:#fff;
    font-size:35px;
    cursor:pointer;
}

.youtube-card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    margin: 12px;
}

.youtube-card iframe{
    width:100%;
    height:380px;
    border:none;
    display:block;
}


.slick-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.slick-dots li button {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 30px;
    font-size: 0;
    transition: all .3s ease;
    border: 1px solid #ff5722;
}

.slick-dots li button:before {
    display: none;
}

.slick-dots li.slick-active button {
    width: 40px;
    background: #ff5722;
}
.hero-content p {
    margin-bottom: 0px;
}
.event-box{
    max-width:850px;
    margin:40px auto;
    padding:35px;
    background:#fff;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border-top:5px solid #d62828;
}

.event-box p{
    position:relative;
    margin-bottom:18px;
    padding:15px 20px 15px 55px;
    background:#f8f9fa;
    border-radius:12px;
    line-height:1.8;
    font-size:17px;
    color:#444;
    transition:.3s;
}

.event-box p::before{
    content:"✓";
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    width:26px;
    height:26px;
    border-radius:50%;
    background:#28a745;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:700;
}

.event-box p:hover{
    background:#fff7ec;
    transform:translateX(5px);
}
.hero-content {
    background: #f9f9f9;
}

.section-title p{
    color:#666;
    margin-top:10px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    cursor:pointer;
}

.gallery-item img{
    width:100%;
    height:350px;
    object-fit:cover;
    transition:.5s;
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,.85),transparent);
    display:flex;
    align-items:flex-end;
    padding:25px;
    opacity:1;
    transition:.4s;
}

.gallery-overlay h5{
    color:#fff;
    font-size:22px;
    margin:0;
    transform:translateY(20px);
    transition:.4s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-item:hover .gallery-overlay{
    opacity:0;
}

.gallery-item:hover .gallery-overlay h5{
    transform:translateY(0);
}

.history-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.history-title{
    font-size:34px;
    font-weight:700;
    color:#ea8a48;
    margin-bottom:25px;
    text-align:center;
}

.history-card p{
    font-size:18px;
    line-height:1.9;
    color:#555;
    text-align:justify;
    margin-bottom:18px;
}

.section-heading h3{
    font-size:32px;
    font-weight:700;
    color:#222;
}

.timeline{
    position:relative;
    padding-left:40px;
    border-left:4px solid #ea8a48;
}

.timeline-item{
    position:relative;
    margin-bottom:35px;
}

.timeline-item::before{
    content:"";
    position:absolute;
    left:-51px;
    top:6px;
    width:18px;
    height:18px;
    background:#ea8a48;
    border:4px solid #fff;
    border-radius:50%;
    box-shadow:0 0 0 4px #ea8a48;
}

.timeline-item .year{
    display:inline-block;
    background:#ea8a48;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    font-weight:700;
    margin-bottom:12px;
}

.timeline-item .content{
    background:#fff;
    padding:20px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    line-height:1.8;
    color:#444;
}

.our-video-section{
    position:relative;
    padding:90px 0;
    background:linear-gradient(135deg,#fff7f2,#fde6f4);
    overflow:hidden;
}

.artist-video {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    /* background: #fff; */
    transition: .4s;
    margin: 12px;
    cursor: pointer;
    /* border: 1px solid #ee8c4a;
    padding: 10px; */
    transition: 0.5s all;
}

.artist-video:hover {
    transform: translateY(-10px);
}

.video-card iframe{
    width:100%;
    height:380px;
    display:block;
    border:0;
    transition:.4s;
}

.video-card:hover{
    transform:translateY(-10px);
}


.wd-btn-text{
    background:#e28847;
    color:#fff;
    padding:14px 40px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
    text-decoration:none;
}

.wd-btn-text:hover{
    background:#99470d;
    color:#fff;
    transform:translateY(-3px);
}

.wave-top,
.wave-bottom{
    line-height:0;
}

.wave-top svg,
.wave-bottom svg{
    display:block;
    width:100%;
}

.wd-footer{
    background:linear-gradient(135deg,#1b1b2f,#121212);
    color:#fff;
    padding:70px 0 0;
    position:relative;
}

.ft-item{
    margin-bottom:35px;
}

.ft-subtitle,
.woodmart-title{
    font-size:22px;
    font-weight:700;
    margin-bottom:25px;
    color:#fff;
    position:relative;
    padding-bottom:10px;
}

.ft-subtitle::after,
.woodmart-title::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:60px;
    height:3px;
    background:#e28847;
    border-radius:30px;
}

.ft-list{
    list-style:none;
    padding:0;
    margin:0;
}

.ft-list-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:15px;
    color:#d6d6d6;
    transition:.3s;
}

.ft-list-item svg{
    color:#e28847;
    min-width:18px;
    margin-top:4px;
}

.ft-list-item a{
    color:#d6d6d6;
    text-decoration:none;
    transition:.3s;
}

.ft-list-item:hover{
    transform:translateX(6px);
}

.ft-list-item:hover a,
.ft-list-item:hover{
    color:#e28847;
}

.ft-list-item:hover svg{
    transform:rotate(15deg);
}

.ft-item p{
    color:#cfcfcf;
    line-height:1.8;
}

.subscribe-box{
    display:flex;
    margin-top:20px;
}

.subscribe-box input{
    flex:1;
    border:none;
    padding:14px;
    border-radius:40px 0 0 40px;
    outline:none;
}

.subscribe-box button{
    border:none;
    background:#e28847;
    color:#fff;
    padding:0 25px;
    border-radius:0 40px 40px 0;
    transition:.3s;
}

.subscribe-box button:hover{
    background:#c96f2f;
}

.wd-copyrights{
    margin-top:40px;
    padding:18px 0;
    border-top:1px solid rgba(255,255,255,.1);
    background:#0d0d0d;
}

.wd-grid-g{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}

.wd-copyrights a{
    color:#e28847;
    text-decoration:none;
}

.wd-copyrights a:hover{
    color:#fff;
}

.rules-section{
    background:#f6f7fb;
    padding:80px 0;
}

.rules-header{
    margin-bottom:25px;
    text-align:center;
}

.rules-header .sub-title{
    display:inline-block;
    font-size:15px;
    letter-spacing:1px;
    text-transform:uppercase;
    opacity:.9;
}

.rules-header h2{
    margin:15px 0 0;
    font-size:42px;
    font-weight:700;
}

.rules-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    margin-bottom: 25px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}

.rules-card .card-title{
    display:flex;
    align-items:center;
    gap:15px;
    padding:30px;
    border-bottom:1px solid #eee;
}

.rules-card .card-title span{
    width:3px;
    height:40px;
    border-radius:30px;
    background:#f08942;
}

.rules-card .card-title h3{
    margin:0;
    font-size:30px;
    color:#222;
}

.rules-table{
    width:100%;
    border-collapse:collapse;
}

.rules-table thead{
    background:linear-gradient(135deg,#f08942,#ff5f6d);
}

.rules-table thead th{
    color:#fff;
    padding:18px;
    font-size:16px;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.rules-table tbody tr{
    transition:.3s;
}

.rules-table tbody tr:nth-child(even){
    background:#fafafa;
}

.rules-table tbody tr:hover{
    background:#fff4f9;
}

.rules-table td{
    padding:22px;
    border-bottom:1px solid #ececec;
    vertical-align:middle;
    font-size:17px;
    line-height:1.8;
}

.rules-table td .number{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,#f08942,#ff5f6d);
    color:#fff;
    font-weight:700;
}

@media(max-width:768px){

/*.rules-header{*/
/*    padding:30px 20px;*/
/*}*/

.rules-header h2{
    font-size:30px;
}

.card-title{
    padding:20px;
}

.card-title h3{
    font-size:24px;
}

.rules-table td,
.rules-table th{
    padding:15px;
    font-size:15px;
}

.rules-table td .number{
    width:36px;
    height:36px;
}

}


.award-heading{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:35px;
}

.award-heading .heading-line{
    width:3px;
    height:45px;
    border-radius:30px;
    margin:0;
    background:#f08942;
}

.award-heading h2{
    margin:0;
    font-size:24px;
    color:#000;
    font-weight:700;
}

.award-card{
    position:relative;
    display:flex;
    gap:35px;
    align-items:center;
    background:#fff;
    border-radius:22px;
    padding:25px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    border:2px solid #ffe1ee;
}

.award-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:8px;
    height:100%;
    background:#f08942;
}
.award-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f08942;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 15px 35px rgba(212,20,114,.35);
}
.award-content{
    flex:1;
}
.award-content h3 {
    font-size: 28px;
    color: #f08942;
    margin-bottom: 0;
}
.prize-box {
    display: inline-block;
    margin: 0px 0;
    padding: 9px 20px;
    border-radius: 18px;
    background: linear-gradient(135deg,#f08942,#ff5f6d);
    color: #fff;
    box-shadow: 0 15px 30px rgba(212,20,114,.35);
}
.prize-box span{
    display:block;
    font-size:14px;
    letter-spacing:1px;
    text-transform:uppercase;
    opacity:.9;
}
.prize-box h2{
    margin-top:8px;
    font-size:28px;
    font-weight:700;
}
.award-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}
.award-card:hover{
    transform:translateY(-8px);
    transition:.4s;
    box-shadow:0 30px 60px rgba(0,0,0,.12);
}
@media(max-width:768px){
.award-card{
    flex-direction:column;
    text-align:center;
    padding:30px 25px;
}
.award-heading h2{
    font-size:30px;
}
.award-icon{
    width:90px;
    height:90px;
    min-width:90px;
    font-size:45px;
}

.award-content h3{
    font-size:28px;
}

.award-content p{

    font-size:17px;

}

.prize-box{

    width:100%;

}

.prize-box h2{

    font-size:34px;

}
 .hero-bg img {
    height: auto !important;
}


}

.register-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 25px;
    padding: 35px 15px;
    text-align: center;
    border: 2px solid #ffe1ee;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
    margin-bottom: 20px;
}

.register-card::before{
    content:"";
    position:absolute;
    left:-120px;
    top:-120px;
    width:250px;
    height:250px;
    background:rgba(212,20,114,.05);
    border-radius:50%;
}

.register-card::after{
    content:"";
    position:absolute;
    right:-80px;
    bottom:-80px;
    width:180px;
    height:180px;
    background:rgba(212,20,114,.05);
    border-radius:50%;
}

.register-icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    color:#fff;
    background:linear-gradient(135deg,#f08942,#ff5f6d);
    box-shadow:0 15px 35px rgba(212, 129, 20, 0.35);
    margin-bottom:25px;
}

.register-card h2 {
    font-size: 42px;
    /* color: #f08942; */
    margin-bottom: 10px;
    font-weight: 700;
}

.register-card p{

    max-width:700px;

    margin:0 auto 40px;

    color:#555;

    font-size:20px;

    line-height:1.8;

}

.register-btn{

    display:inline-flex;

    align-items:center;

    gap:15px;

    padding:20px 45px;

    border-radius:60px;

    text-decoration:none;

    background:#f08942;

    color:#fff;

    font-size:22px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.5px;

    transition:.35s;

    box-shadow:0 15px 35px rgba(212, 129, 20, 0.35);

}

.register-btn svg{

    transition:.35s;

}

.register-btn:hover{

    transform:translateY(-6px);

    color:#fff;

    box-shadow:0 25px 45px rgba(212, 135, 20, 0.45);

}

.register-btn:hover svg{

    transform:translateX(8px);

}

@media(max-width:768px){
.register-card{
    padding:40px 20px;
}

.register-card h2{
  font-size:30px;
}
.register-card p{
    font-size:17px;
}

.register-btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 10px;
}
.register-icon{
    width:70px;
    height:70px;
    font-size:32px;
}
}

.fee-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 24px;
    text-align: center;
    padding: 25px 30px;
    border: 2px solid #ffd4e8;
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
    width: fit-content;
    margin: 34px auto;
}

.fee-card::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 180px;
    background: rgba(212,20,114,.05);
    border-radius: 50%;
    top: -88px;
    left: -58px;
}
.fee-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(212,20,114,.05);
    border-radius: 50%;
    right: -70px;
    bottom: -70px;
}

.fee-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    background: linear-gradient(135deg, #f08948, #813504);
    box-shadow: 0 12px 30px rgba(212,20,114,.35);
    margin-bottom: 15px;
}

.fee-card h2 {
    margin-bottom: 18px;
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.fee-card h2 span {
    color: #ef8948;
    font-size: 40px;
    margin: 0 8px;
}

.fee-card p {
    margin: 0;
    font-size: 22px;
    color: #666;
}

.fee-card p strong{
    color:#ef8948;
}

.fee-card:hover{
    transform:translateY(-8px);
    transition:.4s;
    box-shadow:0 28px 60px rgba(0,0,0,.12);
}

@media(max-width:768px){
.fee-card{
    padding:25px 13px;
}

.fee-card h2{
    font-size:28px;
    line-height:1.5;
}

.fee-card h2 span{
    display:block;
    font-size:38px;
    margin:10px 0;
}

.fee-card p{
    font-size:17px;
}

.fee-icon{
    width:70px;
    height:70px;
    font-size:30px;
}

}

.process-wrapper{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    position:relative;
}

.process-wrapper::before{
    content:"";
    position:absolute;
    left:15%;
    right:15%;
    top:85px;
    height:3px;
    background:linear-gradient(to right,#ef8948,#92400e);
    z-index:0;
}

.process-card {
    position: relative;
    background: #fff;
    padding: 25px 20px;
    border-radius: 20px;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    transition: .35s;
    border: 1px solid #f1d7e4;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.process-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(212, 90, 20, 0.18);
}

.step-number{
    position:absolute;
    right:20px;
    top:18px;
    font-size:70px;
    font-weight:800;
    color:rgba(212, 145, 20, 0.08);
    line-height:1;
}

.step-icon{
    width:90px;
    height:90px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    background:linear-gradient(135deg,#ef8948,#92400e);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    box-shadow:0 12px 30px rgba(212, 122, 20, 0.3);
}

.process-card h3{
    font-size:30px;
    color:#ef8948;
    margin-bottom:18px;
}

.process-card p{
    margin:0;
    color:#555;
    font-size:18px;
    line-height:1.8;
}

.process-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#ef8948,#943e09);
}

.section-title span{
    display:inline-block;
    color:#ef8948;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
}

.section-title h2{
    margin-top:10px;
    font-size:42px;
    font-weight:700;
    line-height:1.2;
}

@media(max-width:991px){

.process-wrapper{
    grid-template-columns:repeat(2,1fr);
}

.process-wrapper::before{
    display:none;
}

.process-card{
    margin-bottom:20px;
}

.section-title h2{
    font-size:34px;
}
.registration-form-card {
    padding: 15px !important;
}
.event-poster {
    display: none;
}
}

@media(max-width:576px){

.process-card{
    padding:35px 20px;
}

.step-icon{
    width:75px;
    height:75px;
    font-size:28px;
}

.process-card h3{
    font-size:26px;
}

.process-card p{
    font-size:16px;
}
.info-card {
    grid-template-columns: repeat(1,1fr) !important;
}
.registration-form {
    padding: 20px !important;
}

}

.legend-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
}

.legend-card:hover{
    transform:translateY(-10px);
}

.legend-card img{
    width:100%;
    height:320px;
    object-fit:cover;
}

.legend-content{
    padding:25px;
    text-align:center;
}

.legend-content h4{
    margin-bottom:8px;
    font-size:26px;
    font-weight:700;
}

.legend-content span{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:#ffe7f4;
    color:#ef8948;
    font-weight:600;
}

.legend-list{
    margin-top:70px;
    background:#fff;
    border-radius:20px;
    padding:45px;
    box-shadow:0 10px 35px rgba(0,0,0,.07);
}

.legend-list ul{
    list-style:none;
    margin:0;
    padding:0;
}

.legend-list li{
    position:relative;
    padding:10px 0 10px 28px;
    font-size:20px;
    border-bottom:1px dashed #ececec;
    transition:.3s;
}

.legend-list li:last-child{
    border:none;
}

.legend-list li::before{
    content:"★";
    position:absolute;
    left:0;
    top:10px;
    color:#ef8948;
    font-size:14px;
}

.legend-list li:hover{
    color:#ef8948;
    transform:translateX(6px);
}

@media(max-width:768px){

.legend-card img{
    height:250px;
}

.legend-list{
    padding:25px;
}

.legend-list li{
    font-size:18px;
}

.section-heading h2{
    font-size:30px;
}
.process-wrapper{
    grid-template-columns:repeat(1fr);
}

}
.guest-card {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 16px;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.guest-card:hover {
  transform: translateY(-8px);
  border-color: #d97706;
  box-shadow: 0 20px 25px -5px rgba(217, 119, 6, 0.15);
}

/* Guest Avatar Container */
.guest-avatar-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  border: 2px solid #334155;
  transition: border-color 0.3s ease;
}

.guest-card:hover .guest-avatar-wrapper {
  border-color: #f59e0b;
}

.guest-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.guest-card:hover .guest-avatar {
  transform: scale(1.05);
}

/* Guest Typography */
.guest-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #f8fafc;
  margin-bottom: 0.5rem;
}

.guest-affiliation {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

.guest-affiliation .at-symbol {
  color: #f59e0b;
  font-weight: 700;
}


.gallery-grid{
     border-radius:20px;
     padding:30px;
    background:#fff;
    transition:.4s;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(1,1fr));
    gap:30px;
}

.gallery-items:hover{
    transform:translateY(-8px);
}

.gallery-items{
    transition:.5s;
}
.gallery-items img{
    width:100%;
    cursor:pointer;
    transition:.4s;
}
.gallery-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.gallery-modal.active{
    display:flex;
}

.gallery-close{
    position:absolute;
    top:20px;
    right:35px;
    font-size:55px;
    color:#fff;
    cursor:pointer;
}

.gallery-prev,
.gallery-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:65px;
    height:65px;
    border:none;
    border-radius:50%;
    background:#fff;
    font-size:32px;
    cursor:pointer;
    transition:.3s;
}

.gallery-prev{
    left:40px;
}
.gallery-next{
    right:40px;
}

.gallery-prev:hover,
.gallery-next:hover{
    background:#ef8948;
    color:#fff;
}

.gallery-counter{
    position:absolute;
    bottom:35px;
    color:#fff;
    font-size:20px;
    font-weight:600;
}

@media(max-width:992px){

.gallery-grid{
grid-template-columns:repeat(2,1fr);
}

.gallery-modal img {
    width: 100%;
}
}

@media(max-width:576px){

.gallery-grid{
grid-template-columns:1fr;
}

.gallery-prev,
.gallery-next{

width:50px;
height:50px;
font-size:24px;

}

}
.about-gallery{
    position:relative;
    padding:20px;
}

.img-main {
    width: 84%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
}

.img-small {
    position: absolute;
    right: 0;
    bottom: -69px;
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    border: 8px solid #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,.2);
}

@media(max-width:768px){
    .img-main{
        width: 100%;
        height:300px;
    }

    .img-small{
        position:static;
        width:100%;
        height:220px;
        margin-top:20px;
        border:0;
    }
}
.terms-card ul li {
    list-style: disc;
    padding-bottom: 10px;
}

.contact-section{
    background:#faf8fc;
}

.section-title .sub-title{
    color:#ef8948;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-title h2{
    font-size:48px;
    font-weight:700;
    margin:10px 0;
}

.section-title p{
    color:#777;
    font-size:17px;
}

.contact-wrapper{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.contact-info{
    background:linear-gradient(135deg,#ef8948,#804e03);
    color:#fff;
    padding:60px 40px;
    height:100%;
}

.contact-info h3{
    font-size:34px;
    margin-bottom:20px;
    font-weight:700;
}

.contact-desc{
    opacity:.9;
    margin-bottom:35px;
}

.contact-box{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:30px;
}

.contact-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.contact-box h5{
    color:#fff;
    margin-bottom:8px;
    font-weight:600;
}

.contact-box p,
.contact-box a{
    color:#fff;
    text-decoration:none;
}

.contact-form{
    padding:60px;
}

.contact-form h3{
    margin-bottom:30px;
    font-size:34px;
    font-weight:700;
}

.contact-form label{
    font-weight:600;
    margin-bottom:10px;
    display:block;
}

.contact-form .form-control{
    height:56px;
    border-radius:12px;
    border:1px solid #ddd;
    box-shadow:none;
}

.contact-form textarea.form-control{
    height:auto;
    resize:none;
}

.contact-form .form-control:focus{
    border-color:#ef8948;
    box-shadow:0 0 0 .2rem rgba(211, 132, 29, 0.15);
}

.btn-contact{
    background:#ef8948;
    color:#fff;
    border:none;
    padding:15px 40px;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.btn-contact:hover{
    background:#ef8948;
    transform:translateY(-3px);
}

@media(max-width:991px){

.contact-info,
.contact-form{
    padding:35px;
}

.section-title h2{
    font-size:28px;
}

.contact-form h3,
.contact-info h3{
    font-size:28px;
}

}

.faq-heading{
    max-width:700px;
    margin:auto;
}

.faq-subtitle{
    color:#ef8948;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.faq-heading h2{
    font-size:46px;
    font-weight:700;
    margin:10px 0 15px;
}

.faq-heading p{
    color:#666;
}

.faq-wrapper{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#fff;
    border-radius:18px;
    margin-bottom:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    overflow:hidden;
    transition:.3s;
}

.faq-item summary{
    list-style:none;
    cursor:pointer;
    padding:24px 30px;
    font-size:19px;
    font-weight:600;
    position:relative;
    padding-right:70px;
}

.faq-item summary::-webkit-details-marker{
    display:none;
}

.faq-item summary::after{
    content:"+";
    position:absolute;
    right:25px;
    top:50%;
    transform:translateY(-50%);
    width:34px;
    height:34px;
    border-radius:50%;
    background:#ef8948;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    transition:.3s;
}

.faq-item[open] summary::after{
    content:"−";
    transform:translateY(-50%) rotate(180deg);
}

.faq-content{
    padding:0 30px 30px;
    color:#666;
    line-height:1.9;
}

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

.faq-content a{
    color:#ef8948;
    font-weight:600;
    text-decoration:none;
}

@media(max-width:768px){

.faq-heading h2{
    font-size:34px;
}

.faq-item summary{
    font-size:17px;
    padding:18px 20px;
    padding-right:60px;
}

.faq-content{
    padding:0 20px 20px;
}

}

.result-page{
    background:#f7f8fc;
    padding:90px 0;
}

.result-header{
    text-align:center;
    margin-bottom:50px;
}

.badge-title{
    display:inline-block;
    background:#ef8948;
    color:#fff;
    padding:10px 24px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.result-header h1{
    font-size:48px;
    font-weight:700;
    color:#222;
}

.result-header p{
    max-width:700px;
    margin:auto;
    color:#666;
}

.result-actions{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:45px;
}

.theme-btn{
    background:#ef8948;
    color:#fff;
    padding:15px 38px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.theme-btn:hover{
    background:#804a04;
    color:#fff;
    transform:translateY(-3px);
}

.notice-card{
    display:flex;
    gap:25px;
    padding:30px;
    border-radius:18px;
    margin-bottom:25px;
    background:#fff;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.notice-icon{
    width:65px;
    height:65px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
    flex-shrink:0;
}

.notice-orange .notice-icon{background:#ff9800;}
.notice-pink .notice-icon{background:#ef8948;}
.notice-green .notice-icon{background:#00b894;}
.notice-blue .notice-icon{background:#2196f3;}

.notice-content h5{
    font-size:24px;
    margin-bottom:10px;
}

.notice-content p{
    color:#555;
    margin-bottom:10px;
}

.event-card{
    background:#fff;
    padding:50px;
    border-radius:20px;
    text-align:center;
    margin:60px 0;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.event-card h2{
    color:#ef8948;
    font-size:42px;
}

.event-card h4{
    margin:20px 0 40px;
}

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

.time-box{
    width:130px;
    height:130px;
    border-radius:20px;
    background:#ef8948;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.time-box span{
    font-size:46px;
    font-weight:700;
}

.time-box small{
    font-size:18px;
    color: #fff;
}

.event-information{
    background:#fff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.event-information h3{
    color:#ef8948;
    margin-bottom:25px;
}

.event-information ul{
    padding-left:20px;
}

.event-information li{
    margin-bottom:18px;
    line-height:1.8;
}

@media(max-width:768px){

.notice-card{
    flex-direction:column;
    text-align:center;
}

.result-header h1{
    font-size:34px;
}

.event-card{
    padding:30px 20px;
}

.time-box{
    width:90px;
    height:90px;
}

.time-box span{
    font-size:30px;
}

}

.partners-section{
    padding:80px 0;
    background:#fbf8f3;
    position:relative;
}

.partners-heading{
    text-align:center;
    max-width:760px;
    margin:auto auto 70px;
}

.heading-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    color:#c89a46;
    margin-bottom:18px;
}

.heading-icon span{
    width:90px;
    height:1px;
    background:#d8b67a;
}

.partners-heading h6{
    color:#b6843d;
    letter-spacing:4px;
    font-weight:700;
    margin-bottom:20px;
}

.partners-heading h2{
    font-size:34px;
    line-height:1.2;
    color:#222;
    margin-bottom:25px;
}

.partners-heading p{
    color:#666;
    font-size:18px;
    line-height:1.8;
}

.partner-card {
    background: #fff;
    border-radius: 24px;
    padding: 18px 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .4s;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    margin: 12px;
}

.partner-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.partner-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #222;
    /* font-family: Georgia,serif; */
}

.partner-card span {
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #c28d35;
    font-weight: 600;
    font-size: 14px;
}

@media(max-width:991px){

.partners-grid{

grid-template-columns:repeat(2,1fr);

}

.partners-heading h2{

font-size:32px;

}

}

@media(max-width:576px){

.partners-grid{

grid-template-columns:1fr;

}

.partners-heading h2{

font-size:28px;

}

.partner-card{

padding:35px 20px;

}

.partner-card img{

width:150px;

}

}

.registration-section{
    padding:70px 0;
}

.container{
    max-width:1400px;
}

/*==========================
    LEFT PANEL
==========================*/

.left-panel{
    position:sticky;
    top:30px;
}

.founder-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    /* border: 4px solid #d8ab38; */
    /* box-shadow: 0 15px 40px rgba(0,0,0,.15); */
    text-align: center;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff7e6;
    padding: 17px;
    flex-wrap: wrap;
    flex-direction: column;
}

.founder-card img {
    width: 200px;
    height: auto;
    border-radius: 10px;
    background: #fff;
    padding: 15px;
}
.founder-name{
    padding:18px;
    background:#d86d17;
    color:#fff;
}

.founder-name h3{
    font-size:24px;
    margin-bottom:8px;
}

.left-panel .event-box-reg{
    margin-top:35px;
}

.logo-event{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo-event i{
    color:#b88718;
    font-size:45px;
}

.logo h2{
    font-size:40px;
    font-weight:700;
}

.logo-event span{
    color:#b88718;
}

.event-box-reg p{
    margin-top:15px;
    color:#666;
    line-height:1.8;
}

/*==========================*/

.info-list{
    margin-top:35px;
}

.info-item {
    display: flex;
    gap: 18px;
    align-items: center;
    padding-bottom: 20px;
    /* background: #fff; */
    border-radius: 0;
    margin-bottom: 18px;
    /* box-shadow: 0 8px 20px rgba(0,0,0,.06); */
    border-bottom: 1px solid #ccc;
}
.info-item p {
    margin-bottom: 0;
}

.info-item .icon{
    width:58px;
    height:58px;
    border-radius:16px;
    background:#fff7e5;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#b88718;
    font-size:22px;
}

.info-item span{
    color:#999;
    font-size:13px;
}

.info-item h4 {
    margin: 5px 0;
    font-size: 18px;
    margin-bottom: 0;
}

.left-panel .contact-box{
    margin-top:35px;
    background:#d86d17;
    color:#fff;
    border-radius:22px;
    padding:28px;
    display:block;
}

.contact-box h5{
    margin-bottom:15px;
}

.contact-box p{
    margin:8px 0;
}

/*==========================
    FORM CARD
==========================*/

.form-card{
    background:#fff;
    border-radius:30px;
    padding:50px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}

.badge-title{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#ffefe3;
    color:#d86d00;
    padding:10px 25px;
    border-radius:40px;
    font-weight:600;
    margin-bottom:20px;
}

.form-card h1{
    font-size:48px;
    font-weight:700;
    color:#d86d17;
}

.subtitle{
    color:#777;
    margin-bottom:35px;
}

/*==========================
EVENT GRID
==========================*/

.event-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:35px;
}

.event-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
    background:#fffdf8;
    border:1px solid #f2e4c6;
    border-radius:16px;
    padding:15px;
}

.event-item h6 {
    color: #b88718;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.event-item p {
    margin-top: 0;
    font-weight: 600;
    margin-bottom: 0;
}
/*==========================*/

.required{
    padding:15px 20px;
    background:#fff2f2;
    color:#ff6a00;
    border-left:5px solid #ff8a00;
    border-radius:10px;
    margin-bottom:30px;
}

/*==========================
FORM
==========================*/
.input-group-icon{
    position: relative;
}
.input-group-icon svg {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #64676a;
    font-size: 16px;
    z-index: 2;
}
label {
    margin-bottom: 5px;
    font-weight: 600;
}
.input-group-icon .form-control{
    padding-left: 48px;
    border-radius: 12px;
    border: 1px solid #ddd;
}

.input-group-icon .form-control:focus{
    border-color: #b8860b;
    box-shadow: 0 0 0 0.15rem rgba(184,134,11,.15);
}
.radio-group{
    display:flex;
    gap:25px;
    margin-top:15px;
}

.radio-group label{
    font-weight:500;
}

small{
    color:#888;
}

/*==========================*/

.declaration{
    background:#fafafa;
    border-radius:20px;
    padding:25px;
    margin-top:20px;
}

.declaration h4{
    margin-bottom:15px;
}

.agree{
    display:block;
    margin-top:12px;
}

/*==========================
BUTTON
==========================*/

.submit-btn{
    border:none;
    background:linear-gradient(90deg,#ff7f24,#d89c0d);
    color:#fff;
    padding:18px 45px;
    border-radius:40px;
    font-size:18px;
    font-weight:600;
    transition:.35s;
}

.submit-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:1200px){

.form-card{
padding:35px;
}

.form-card h1{
font-size:38px;
}

}

@media(max-width:992px){

.left-panel{
position:relative;
margin-bottom:40px;
}

.event-grid{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

.registration-section{
padding:40px 0;
}

.form-card{
padding:25px;
}

.form-card h1{
font-size:30px;
}

.logo h2{
font-size:30px;
}

.info-item{
padding:18px;
}
.partner-card img {
    width: 160px;
}
}

@media(max-width:576px){

.form-card{
padding:18px;
}

.badge-title{
font-size:13px;
padding:8px 15px;
}

.submit-btn{
width:100%;
}

.radio-group{
flex-direction:column;
gap:10px;
}

}

.event-icon{
    width:55px;
    height:55px;
    min-width:55px;
    border-radius:10px;
    background:linear-gradient(135deg,#d86d23,#d4a017);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}


/*=========================
    Preview Modal
=========================*/

#previewModal .modal-dialog{
    max-width:900px;
}

#previewModal .modal-content{
    border:0;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.15);
}

/* Header */
.tncModal-content ol li {
    list-style: disc;
}
.tncModal-content p {
    line-height: 1.3;
}
#previewModal .modal-header{
    background:linear-gradient(135deg,#e2884c,#833704);
    color:#fff;
    border:0;
    padding:18px 30px;
}

#previewModal .modal-title{
    font-size:26px;
    font-weight:700;
}

#previewModal .btn-close{
    filter:invert(1);
}

/* Body */

#previewModal .modal-body{
    padding:30px;
    background:#faf9f6;
}

/* Section Heading */

.preview-heading{
    font-size:18px;
    font-weight:700;
    color:#e2884c;
    margin-bottom:20px;
    border-left:5px solid #d8ab38;
    padding-left:12px;
}

/* Preview Box */

.preview-box{
    background:#fff;
    border-radius:15px;
    padding:20px;
    border:1px solid #ececec;
    margin-bottom:20px;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
}

/* Table */

.preview-table{
    width:100%;
}

.preview-table tr{
    border-bottom:1px solid #eee;
}

.preview-table th{
    width:35%;
    padding:14px;
    background:#fff8ea;
    color:#b8860b;
    font-weight:600;
}

.preview-table td{
    padding:14px;
    color:#333;
}

/* Images */

.preview-image {
    width: 190px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid #d8ab38;
}

/* Audio */

.preview-audio{
    width:100%;
}

/* Footer */

#previewModal .modal-footer{
    border:0;
    padding:20px 30px;
    background:#fff;
}

.preview-btn{
    border:none;
    padding:12px 30px;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
}

.preview-btn-close{
    background:#ddd;
}

.preview-btn-submit{
    background:linear-gradient(135deg,#ff8c32,#d89c0d);
    color:#fff;
}

.preview-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(0,0,0,.15);
}

.registration-popup {
    border: none;
    border-radius: 25px;
    overflow: hidden;
    /* padding: 45px; */
    text-align: center;
    /* position: relative; */
    /* background: #fff; */
    box-shadow: 0 25px 60px rgba(0,0,0,.15);
}
.registration-popup-body {
    padding: 20px;
}
.popup-header {
    background: linear-gradient(135deg,#e2884c,#813705);
    color: #fff;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 25px 25px 0 0;
}
.popup-title{
    flex:1;
    margin-left:15px;
}

.popup-title h2{
    margin:0;
    font-size:28px;
    font-weight:700;
    color:#fff;
}
.popup-logo img{
    width:70px;
    height:70px;
    object-fit:contain;
    background:#fff;
    border-radius:50%;
    padding:8px;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #f5f5f5;
    cursor: pointer;
    transition: .3s;
}

.popup-close:hover {
    background: #d33;
    color: #fff;
}

.registration-popup .registration-title {
    color: #e2884c;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 28px;
}

.registration-popup p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0;
}
.popup-contact {
    margin-top: 12px;
    background: #f8f8f8;
    border-radius: 15px;
    padding: 20px;
}
.popup-buttons {
    margin-top: 30px;
}
.popup-btn {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(90deg, #e28847, #c16c39);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.popup-btn:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .18);
}
 .registration-date-box{
    display:flex;
    gap:20px;
    margin:30px 0;
}

.date-card{
    flex:1;
    text-align:center;
    padding:25px 20px;
    border-radius:18px;
    color:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.date-card i{
    font-size:32px;
    margin-bottom:12px;
}

.date-card h6 {
    margin-bottom: 5px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 7px;
}
.date-card h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
}

.start-date{
    background:linear-gradient(135deg,#0d8b43,#28a745);
}

.end-date{
    background:linear-gradient(135deg,#ff7b00,#d9534f);
}
.passport-size {
    width: 150px;
    height: 150px;
    object-fit: cover;
}
#tncModal .modal-dialog {
    max-width: 900px;
}

@media(max-width:768px){
    .registration-date-box{
        flex-direction:column;
    }
    .registration-popup-body {
        padding: 25px;
    }
    .popup-title h2 {
        font-size: 18px;
    }
    .popup-header {
        padding: 10px 15px;
        justify-content: left;
    }
    .popup-close {
        top: 38px;
        right: 5px;
        width: 35px;
        height: 35px;
    }
    .registration-popup .registration-title {
        font-size: 18px;
    }
    .date-card {
        padding: 15px 20px;
    }
    .date-card h3 {
        font-size: 20px;
    }
    #previewModal .modal-title {
        font-size: 18px;
    }
     #previewModal .modal-body {
        padding: 10px;
    }
    .submit-btn{
        padding:18px 25px;
    }

}