:root{
    --orange:#f15a40;
    --orange2:#ff7a5c;
    --orange-dark:#d84325;
    --dark:#071827;
    --soft:#fff7f4;
    --text:#31435a;
}

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

body{
    font-family:'Outfit',sans-serif;
    overflow-x:hidden;
    color:var(--text);
    background:#fff;
}

h1,h2,h3,h4,h5{
    font-family:'Sora',sans-serif;
}

a{
    text-decoration:none;
}

/* HEADER */
.header-main{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.top-menu{
    background:linear-gradient(90deg,var(--orange),var(--orange-dark));
}

.navbar{
    padding:0;
}

.navbar-nav .nav-link{
    color:#fff !important;
    font-weight:700;
    padding:15px 10px !important;
    font-size:14px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    background:rgba(255,255,255,.14);
}

.navbar-toggler{
    background:#fff;
    margin:8px 0;
}



.hero-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(255,255,255,.08),rgba(255,255,255,.02));
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:5;
}

/* INNER BANNER */
.inner-banner{
    position:relative;
    padding:90px 0;
    overflow:hidden;

    background:
    linear-gradient(
        rgba(5,20,40,.10),
        rgba(5,20,40,.10)
    ),
    url('../images/background-inner.png');

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
}



.inner-banner::before{
    width:430px;
    height:430px;
    top:-250px;
    right:-150px;
}

.inner-banner::after{
    width:260px;
    height:260px;
    bottom:-130px;
    left:-90px;
   
}

.banner-content{
    position:relative;
    z-index:2;
    text-align:center;
    max-width:900px;
    margin:auto;
}

.page-tag{
    display:inline-block;
    padding:8px 22px;
    background:rgba(255,255,255,.15);
    border:1px solid rgba(255,255,255,.25);
    border-radius:50px;
    color:#fff;
    font-size:13px;
    font-weight:800;
    letter-spacing:1.5px;
    text-transform:uppercase;
    margin-bottom:14px;
}

.banner-content h1{
    color:#fff;
    font-size:44px;
    font-weight:800;
    margin-bottom:10px;
}

.banner-content p{
    color:rgba(255,255,255,.88);
    font-size:18px;
    margin-bottom:0;
}

/* COMMON SECTION */
.section-padding{
    padding:90px 0;
}

.section-title,
.main-section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title small,
.main-section-title small{
    color:var(--orange);
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:2px;
}

.section-title h2,
.main-section-title h2{
    font-size:42px;
    font-weight:800;
    color:#0b2239;
}

.main-section-title h2{
    margin-top:8px;
}

/* ABOUT */
.about-card{
    background:#fff;
    border-radius:30px;
    padding:40px;
    box-shadow:0 18px 50px rgba(0,0,0,.08);
}

.about-card p{
    line-height:1.9;
    margin-bottom:20px;
}

/* FEATURES */
.feature-card{
    height:100%;
    background:#fff;
    border-radius:26px;
    padding:30px;
    box-shadow:0 12px 40px rgba(0,0,0,.08);
    transition:.4s;
}

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

.icon-box,
.committee-icon{
    background:linear-gradient(135deg,var(--orange),var(--orange2));
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
}

.icon-box{
    width:65px;
    height:65px;
    border-radius:18px;
    font-size:28px;
    margin-bottom:20px;
}

.feature-card h4{
    font-weight:800;
    margin-bottom:12px;
}

/* COMMITTEE */
.committee-section{
    padding:80px 0;
    background:
    radial-gradient(circle at top left,rgba(241,90,64,.13),transparent 30%),
    radial-gradient(circle at bottom right,rgba(255,122,92,.14),transparent 35%),
    #fff;
}

.committee-block{
    margin-bottom:58px;
}

.committee-title{
    text-align:center;
    margin-bottom:30px;
}

.committee-title h3{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 30px;
    border-radius:50px;
    background:linear-gradient(135deg,var(--orange),var(--orange2));
    color:#fff;
    font-size:23px;
    font-weight:800;
    box-shadow:0 14px 35px rgba(241,90,64,.32);
}

.committee-card{
    background:#fff;
    border-radius:26px;
    padding:32px 22px;
    text-align:center;
    height:100%;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    border:1px solid rgba(241,90,64,.10);
    position:relative;
    overflow:hidden;
    transition:.35s;
}

.committee-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:7px;
    background:linear-gradient(90deg,var(--orange),var(--orange2));
}

.committee-card:hover{
    transform:translateY(-8px);
    box-shadow:0 22px 60px rgba(0,0,0,.13);
}

.committee-card img{
    width:178px;
    height:203px;
    border-radius:10px;
    object-fit:cover;
    margin-bottom:18px;
    border:solid thin red;
}

.committee-icon{
    width:68px;
    height:68px;
    border-radius:20px;
    margin:0 auto 18px;
    font-size:30px;
    box-shadow:0 12px 28px rgba(241,90,64,.32);
}

.committee-card h4{
    font-size:22px;
    font-weight:800;
    color:#071827;
    margin-bottom:8px;
}

.committee-card p{
    margin:0;
    color:var(--orange);
    font-weight:800;
}

.member-box{
    background:#fff;
    border-radius:20px;
    padding:20px 15px;
    text-align:center;
    height:100%;
    font-size:17px;
    font-weight:800;
    color:#071827;
    box-shadow:0 12px 32px rgba(0,0,0,.07);
    border:1px solid rgba(241,90,64,.10);
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.member-box::before{
    content:"";
    width:8px;
    height:100%;
    background:linear-gradient(180deg,var(--orange),var(--orange2));
    position:absolute;
    left:0;
    top:0;
}

.member-box:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(0,0,0,.12);
}

.member-box span{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:34px;
    font-size: 20px;
}

/* VENUE */
.venue-img img{
    width:100%;
    height:430px;
    object-fit:cover;
    border-radius:30px;
}

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

.venue-content h3{
    font-size:34px;
    font-weight:800;
    margin-bottom:18px;
}

.venue-list{
    list-style:none;
    padding:0;
    margin-top:20px;
}

.venue-list li{
    margin-bottom:14px;
    font-weight:700;
}

.venue-list i{
    color:var(--orange);
    margin-right:10px;
}

/* BUTTON */
.btn-orange{
    display:inline-block;
    background:linear-gradient(135deg,var(--orange),var(--orange2));
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.btn-orange:hover{
    color:#fff;
    transform:translateY(-5px);
}

/* CTA */
.cta-box{
    background:linear-gradient(135deg,var(--orange),var(--orange-dark));
    border-radius:35px;
    padding:45px;
    color:#fff;
    margin-top:20px;
}

/* FOOTER */
.footer{
    background:#071827;
    color:#dbe8f1;
    padding:70px 0 25px;
}

.footer h5{
    color:#fff;
    font-weight:800;
    margin-bottom:20px;
}

.footer a{
    color:#dbe8f1;
    display:block;
    
}

.footer a:hover{
    color:var(--orange2);
}

/* SOCIAL ICONS */
.social-icons{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

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

.social-icons a:hover{
    background:linear-gradient(135deg,var(--orange),var(--orange2));
    color:#fff;
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(241,90,64,.35);
}

/* RESPONSIVE */
@media(min-width:1400px){
    .hero-section{
        min-height:550px;
    }
}

@media(max-width:1199px){
    .hero-section{
        min-height:320px;
    }
}

@media(max-width:991px){
    .hero-section{
        min-height:520px;
    }

    .banner-content h1{
        font-size:34px;
    }

    .section-title h2,
    .main-section-title h2{
        font-size:34px;
    }

    .venue-img img{
        height:320px;
    }
}

@media(max-width:767px){
    .hero-section{
        min-height:207px;
        background-size:contain;
        background-position:center top;
        background-color:#f8d7cf;
        margin-top:45px;
    }
}

@media(max-width:576px){
    .hero-section{
        min-height:149px;
        background-size:contain;
        background-position:center top;
    }

    .inner-banner{
        margin-top:45px;
        padding:45px 0;
    }

    .banner-content h1{
        font-size:28px;
    }

    .banner-content p{
        font-size:15px;
    }

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

    .committee-section{
        padding:60px 0;
    }

    .about-card{
        padding:28px;
    }

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

    .committee-title h3{
        font-size:19px;
        padding:10px 22px;
    }

    .venue-img img{
        height:250px;
    }

    .cta-box{
        padding:30px;
    }
}

.faculty-card{
    height:100%;
    background:#fff;
    border-radius:18px;
    padding:18px 18px 18px 52px;
    box-shadow:0 12px 32px rgba(0,0,0,.07);
    border:1px solid rgba(241,90,64,.10);
    position:relative;
    overflow:hidden;
    transition:.35s;
}

.faculty-card::before{
    content:"";
    width:8px;
    height:100%;
    background:linear-gradient(180deg,var(--orange),var(--orange2));
    position:absolute;
    left:0;
    top:0;
}

.faculty-card::after{
    content:"\F4D7";
    font-family:"bootstrap-icons";
    position:absolute;
    left:18px;
    top:18px;
    color:var(--orange);
    font-size:20px;
}

.faculty-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(0,0,0,.12);
}

.faculty-card h4{
    font-size:17px;
    font-weight:800;
    color:#071827;
    margin-bottom:4px;
}

.faculty-card p{
    margin:0;
    color:var(--orange);
    font-size:14px;
    font-weight:700;
}

    .banner-content{
    text-align:center;
    position:relative;
    z-index:2;
}

.banner-content h1{
    color:#fff;
    font-size:42px;
    font-weight:800;
    margin-bottom:8px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.banner-content h3{
    color:#fff;
    font-size:24px;
    font-weight:600;
    margin-bottom:10px;
}

.banner-content p{
    color:rgba(255,255,255,.92);
    font-size:18px;
    font-weight:500;
    margin-bottom:0;
}

@media(max-width:768px){

    .banner-content h1{
        font-size:24px;
        line-height:1.3;
    }

    .banner-content h3{
        font-size:16px;
    }

    .banner-content p{
        font-size:13px;
    }

}

.registration-section{
    padding:80px 0;
    background:
    radial-gradient(circle at top left,rgba(241,90,64,.13),transparent 30%),
    radial-gradient(circle at bottom right,rgba(255,122,92,.14),transparent 35%),
    #fff;
}

.main-section-title{
    text-align:center;
    margin-bottom:45px;
}

.main-section-title small{
    color:var(--orange);
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:2px;
}

.main-section-title h2{
    font-size:42px;
    font-weight:800;
    color:#0b2239;
    margin-top:8px;
}

.reg-card{
    background:#fff;
    border-radius:26px;
    padding:30px;
    box-shadow:0 16px 45px rgba(0,0,0,.08);
    border:1px solid rgba(241,90,64,.10);
    margin-bottom:40px;
}

.reg-heading{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 28px;
    border-radius:50px;
    background:linear-gradient(135deg,var(--orange),var(--orange2));
    color:#fff;
    font-size:23px;
    font-weight:800;
    margin-bottom:25px;
    box-shadow:0 14px 35px rgba(241,90,64,.32);
}

.reg-table{
    margin-bottom:0;
    vertical-align:middle;
}

.reg-table thead th{
    background:#071827;
    color:#fff;
    text-align:center;
    font-size:15px;
    padding:15px;
    vertical-align:middle;
}

.reg-table tbody td{
    padding:15px;
    font-size:15px;
    vertical-align:middle;
}

.reg-table tbody tr:hover{
    background:#fff7f4;
}

.info-box{
    background:#fff7f4;
    border-left:7px solid var(--orange);
    border-radius:18px;
    padding:22px;
    margin-top:24px;
    font-size:16px;
    box-shadow:0 10px 28px rgba(0,0,0,.06);
}

.workshop-card{
    background:#fff;
    border-radius:22px;
    padding:26px;
    height:100%;
    box-shadow:0 14px 35px rgba(0,0,0,.07);
    border:1px solid rgba(241,90,64,.10);
}

.workshop-card h5{
    color:#071827;
    font-weight:800;
    margin-bottom:18px;
}

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

.workshop-list li{
    position:relative;
    padding:12px 12px 12px 34px;
    border-bottom:1px dashed rgba(0,0,0,.12);
    font-weight:600;
}

.workshop-list li:last-child{
    border-bottom:0;
}

.workshop-list li::before{
    content:"\F26A";
    font-family:"bootstrap-icons";
    position:absolute;
    left:0;
    top:12px;
    color:var(--orange);
}

.account-box{
    background:#071827;
    color:#fff;
    border-radius:26px;
    padding:32px;
    box-shadow:0 16px 45px rgba(0,0,0,.12);
}

.account-box h3{
    font-weight:800;
    margin-bottom:20px;
    color:#fff;
}

.account-box p{
    margin-bottom:8px;
}

.policy-list{
    background:#fff;
    border-radius:22px;
    padding:28px;
    box-shadow:0 14px 35px rgba(0,0,0,.07);
    border:1px solid rgba(241,90,64,.10);
}

.policy-list li{
    margin-bottom:12px;
    font-weight:600;
}

.reg-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:linear-gradient(135deg,var(--orange),var(--orange2));
    color:#fff;
    padding:15px 34px;
    border-radius:50px;
    font-weight:800;
    transition:.35s;
    min-width:240px;
    box-shadow:0 14px 35px rgba(241,90,64,.30);
}

.reg-btn:hover{
    color:#fff;
    transform:translateY(-5px);
}


/* ABSTRACT PAGE */
.abstract-section{
    padding:80px 0;
    background:
    radial-gradient(circle at top left,rgba(241,90,64,.13),transparent 30%),
    radial-gradient(circle at bottom right,rgba(255,122,92,.14),transparent 35%),
    #fff;
}

.abstract-card{
    background:#fff;
    border-radius:28px;
    padding:42px;
    box-shadow:0 16px 45px rgba(0,0,0,.08);
    border:1px solid rgba(241,90,64,.10);
}

.abstract-card h1{
    color:#0b2239;
    font-size:38px;
    font-weight:800;
}

.abstract-card h2{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 26px;
    border-radius:50px;
    background:linear-gradient(135deg,var(--orange),var(--orange2));
    color:#fff;
    font-size:22px !important;
    font-weight:800;
    margin-bottom:20px;
    box-shadow:0 14px 35px rgba(241,90,64,.30);
}

.abstract-card h2::before{
    content:"\F26A";
    font-family:"bootstrap-icons";
    font-size:18px;
}

.abstract-card p{
    font-size:16px;
    line-height:1.85;
    margin-bottom:18px;
}

.abstract-card ul{
    padding-left:0;
    list-style:none;
    margin-bottom:24px;
}

.abstract-card ul li{
    position:relative;
    padding:11px 12px 11px 36px;
    border-bottom:1px dashed rgba(0,0,0,.12);
    font-weight:500;
    line-height:1.7;
}

.abstract-card ul li:last-child{
    border-bottom:0;
}

.abstract-card ul li::before{
    content:"\F633";
    font-family:"bootstrap-icons";
    position:absolute;
    left:0;
    top:12px;
    color:var(--orange);
}

.abstract-card a{
    color:var(--orange) !important;
}

.abstract-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:linear-gradient(135deg,var(--orange),var(--orange2));
    color:#fff !important;
    padding:15px 30px;
    border-radius:50px;
    font-weight:800;
    transition:.35s;
    min-width:280px;
    box-shadow:0 14px 35px rgba(241,90,64,.30);
}

.abstract-btn:hover{
    color:#fff !important;
    transform:translateY(-5px);
}



@media(max-width:991px){
    .banner-content h1{
        font-size:30px;
    }

    .banner-content h3{
        font-size:20px;
    }

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

@media(max-width:576px){
    .inner-banner{
        margin-top:45px;
        padding:45px 0;
    }

    .banner-content h1{
        font-size:24px;
    }

    .banner-content h3{
        font-size:16px;
    }

    .banner-content p{
        font-size:13px;
    }

    .abstract-section{
        padding:60px 0;
    }

    .abstract-card{
        padding:24px;
    }

    .abstract-card h1{
        font-size:25px;
    }

    .abstract-card h2{
        font-size:18px !important;
        padding:10px 20px;
    }

    .abstract-btn{
        min-width:100%;
    }
}



.grand-section{
    padding:80px 0;
    background:
    radial-gradient(circle at top left,rgba(241,90,64,.13),transparent 30%),
    radial-gradient(circle at bottom right,rgba(255,122,92,.14),transparent 35%),
    #fff;
}

.grand-card{
    background:#fff;
    border-radius:28px;
    padding:42px;
    box-shadow:0 16px 45px rgba(0,0,0,.08);
    border:1px solid rgba(241,90,64,.10);
}

.grand-img{
    border-radius:24px;
    box-shadow:0 16px 45px rgba(0,0,0,.12);
    overflow:hidden;
    margin-bottom:35px;
}

.grand-img img{
    width:100%;
    display:block;
}

.grand-card h2{
    color:#0b2239;
    font-size:38px;
    font-weight:800;
    text-align:center;
    margin-bottom:30px;
}

.grand-card p{
    font-size:16px;
    line-height:1.85;
    margin-bottom:18px;
}

.grand-card strong{
    color:#071827;
}

.grand-card ul{
    list-style:none;
    padding-left:0;
    margin:18px 0 25px;
}

.grand-card ul li{
    position:relative;
    padding:10px 12px 10px 36px;
    border-bottom:1px dashed rgba(0,0,0,.12);
    line-height:1.65;
    font-weight:500;
}

.grand-card ul li:last-child{
    border-bottom:0;
}

.grand-card ul li::before{
    content:"\F633";
    font-family:"bootstrap-icons";
    position:absolute;
    left:0;
    top:10px;
    color:var(--orange);
}

.grand-card ul ul{
    margin:10px 0 0;
}

.grand-card a{
    color:var(--orange);
    font-weight:800;
}

.main-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:linear-gradient(135deg,var(--orange),var(--orange2));
    color:#fff !important;
    padding:15px 30px;
    border-radius:50px;
    font-weight:800;
    transition:.35s;
    min-width:280px;
    box-shadow:0 14px 35px rgba(241,90,64,.30);
}

.main-btn:hover{
    color:#fff !important;
    transform:translateY(-5px);
}

@media(max-width:991px){
    .banner-content h1{font-size:30px;}
    .banner-content h3{font-size:20px;}
    .grand-card h2{font-size:30px;}
}

@media(max-width:576px){
    .inner-banner{
        margin-top:45px;
        padding:45px 0;
    }

    .banner-content h1{font-size:24px;}
    .banner-content h3{font-size:16px;}
    .banner-content p{font-size:13px;}

    .grand-section{padding:60px 0;}
    .grand-card{padding:24px;}
    .grand-card h2{font-size:25px;}
    .main-btn{min-width:100%;}
}







.tour-section{
    padding:80px 0;
    background:
    radial-gradient(circle at top left,rgba(241,90,64,.13),transparent 30%),
    radial-gradient(circle at bottom right,rgba(255,122,92,.14),transparent 35%),
    #fff;
}

.main-section-title{
    text-align:center;
    margin-bottom:45px;
}

.main-section-title small{
    color:var(--orange);
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:2px;
}

.main-section-title h2{
    font-size:42px;
    font-weight:800;
    color:#0b2239;
    margin-top:8px;
}

.tour-card{
    background:#fff;
    border-radius:28px;
    padding:30px;
    box-shadow:0 16px 45px rgba(0,0,0,.08);
    border:1px solid rgba(241,90,64,.10);
    margin-bottom:35px;
    transition:.35s;
}

.tour-card:hover{
    transform:translateY(-7px);
    box-shadow:0 24px 60px rgba(0,0,0,.13);
}

.tour-card h3{
    color:#071827;
    font-size:24px;
    font-weight:800;
    margin-bottom:14px;
}

.tour-card p{
    font-size:16px;
    line-height:1.8;
    margin-bottom:20px;
}

.tour-img{
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 14px 35px rgba(0,0,0,.12);
}

.tour-img img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.tour-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    background:linear-gradient(135deg,var(--orange),var(--orange2));
    color:#fff !important;
    padding:12px 26px;
    border-radius:50px;
    font-weight:800;
    transition:.35s;
    box-shadow:0 12px 30px rgba(241,90,64,.28);
}

.tour-btn:hover{
    color:#fff !important;
    transform:translateY(-4px);
}

.contact-box{
    background:#071827;
    color:#fff;
    border-radius:28px;
    padding:35px;
    box-shadow:0 16px 45px rgba(0,0,0,.12);
}

.contact-box strong,
.contact-box p{
    color:#fff;
}

.contact-box a{
    color:#ffb39f;
    font-weight:800;
}



@media(max-width:991px){
    .banner-content h1{font-size:30px;}
    .banner-content h3{font-size:20px;}
    .main-section-title h2{font-size:34px;}
    .tour-img img{height:260px;}
}

@media(max-width:576px){
    .inner-banner{
        margin-top:45px;
        padding:45px 0;
    }

    .banner-content h1{font-size:24px;}
    .banner-content h3{font-size:16px;}
    .banner-content p{font-size:13px;}

    .tour-section{padding:60px 0;}
    .main-section-title h2{font-size:28px;}
    .tour-card{padding:22px;}
    .tour-img img{height:210px;}
}



.city-tour-section{
    padding:80px 0;
    background:
    radial-gradient(circle at top left,rgba(241,90,64,.13),transparent 30%),
    radial-gradient(circle at bottom right,rgba(255,122,92,.14),transparent 35%),
    #fff;
}

.main-section-title{
    text-align:center;
    margin-bottom:45px;
}

.main-section-title small{
    color:var(--orange);
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:2px;
}

.main-section-title h2{
    font-size:42px;
    font-weight:800;
    color:#0b2239;
    margin-top:8px;
}

.city-card{
    background:#fff;
    border-radius:28px;
    padding:30px;
    box-shadow:0 16px 45px rgba(0,0,0,.08);
    border:1px solid rgba(241,90,64,.10);
    margin-bottom:35px;
    transition:.35s;
    overflow:hidden;
    position:relative;
}

.city-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:7px;
    background:linear-gradient(90deg,var(--orange),var(--orange2));
}

.city-card:hover{
    transform:translateY(-7px);
    box-shadow:0 24px 60px rgba(0,0,0,.13);
}

.city-card h3{
    color:#071827;
    font-size:24px;
    font-weight:800;
    margin-bottom:6px;
}

.city-card h4{
    color:var(--orange);
    font-size:17px;
    font-weight:800;
    margin-bottom:18px;
}

.city-card p{
    font-size:16px;
    line-height:1.8;
    margin-bottom:15px;
    text-align:justify;
}

.city-img{
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 14px 35px rgba(0,0,0,.12);
}

.city-img img{
    width:100%;
    height:230px;
    object-fit:cover;
    display:block;
}

.note{
    color:#071827;
    font-weight:700;
}



@media(max-width:991px){
    .banner-content h1{font-size:30px;}
    .banner-content h3{font-size:20px;}
    .main-section-title h2{font-size:34px;}
    .city-img img{height:260px;}
}

@media(max-width:576px){
    .inner-banner{
        margin-top:45px;
        padding:45px 0;
    }

    .banner-content h1{font-size:24px;}
    .banner-content h3{font-size:16px;}
    .banner-content p{font-size:13px;}

    .city-tour-section{padding:60px 0;}
    .main-section-title h2{font-size:28px;}
    .city-card{padding:22px;}
    .city-img img{height:210px;}
}


.tour-card{
    background:#fff;
    border-radius:28px;
    padding:30px;
    box-shadow:0 16px 45px rgba(0,0,0,.08);
    border:1px solid rgba(241,90,64,.10);
    margin-bottom:35px;
    transition:.35s;
    overflow:hidden;
    position:relative;
}

.tour-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:7px;
    background:linear-gradient(90deg,var(--orange),var(--orange2));
}

.tour-card:hover{
    transform:translateY(-7px);
    box-shadow:0 24px 60px rgba(0,0,0,.13);
}

.tour-card h3{
    color:#071827;
    font-size:24px;
    font-weight:800;
    margin-bottom:14px;
}

.tour-card h3 span{
    color:var(--orange);
}

.tour-card p{
    font-size:16px;
    line-height:1.8;
    margin-bottom:20px;
}

.tour-img{
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 14px 35px rgba(0,0,0,.12);
}

.tour-img img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.tour-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    background:linear-gradient(135deg,var(--orange),var(--orange2));
    color:#fff !important;
    padding:12px 26px;
    border-radius:50px;
    font-weight:800;
    transition:.35s;
    box-shadow:0 12px 30px rgba(241,90,64,.28);
}

.tour-btn:hover{
    color:#fff !important;
    transform:translateY(-4px);
}



@media(max-width:991px){
    .banner-content h1{font-size:30px;}
    .banner-content h3{font-size:20px;}
    .main-section-title h2{font-size:34px;}
    .tour-img img{height:260px;}
}

@media(max-width:576px){
    .inner-banner{
        margin-top:45px;
        padding:45px 0;
    }

    .banner-content h1{font-size:24px;}
    .banner-content h3{font-size:16px;}
    .banner-content p{font-size:13px;}

    .prepost-section{padding:60px 0;}
    .main-section-title h2{font-size:28px;}
    .tour-card{padding:22px;}
    .tour-img img{height:210px;}
}

.excursion-section{
    padding:80px 0;
    background:
    radial-gradient(circle at top left,rgba(241,90,64,.13),transparent 30%),
    radial-gradient(circle at bottom right,rgba(255,122,92,.14),transparent 35%),
    #fff;
}

.main-section-title{
    text-align:center;
    margin-bottom:45px;
}

.main-section-title h2{
    font-size:42px;
    font-weight:800;
    color:#0b2239;
    margin-top:8px;
}

.excursion-card{
    background:#fff;
    border-radius:28px;
    padding:30px;
    box-shadow:0 16px 45px rgba(0,0,0,.08);
    border:1px solid rgba(241,90,64,.10);
    margin-bottom:35px;
    transition:.35s;
    overflow:hidden;
    position:relative;
}

.excursion-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:7px;
    background:linear-gradient(90deg,#f15a40,#ff7a5c);
}

.excursion-card:hover{
    transform:translateY(-7px);
    box-shadow:0 24px 60px rgba(0,0,0,.13);
}

.excursion-card h3{
    color:#071827;
    font-size:24px;
    font-weight:800;
    margin-bottom:6px;
}

.excursion-card h4{
    color:#f15a40;
    font-size:17px;
    font-weight:800;
    margin-bottom:18px;
}

.excursion-card p{
    font-size:16px;
}

.visa-section{
    padding:80px 0;
    background:
    radial-gradient(circle at top left,rgba(241,90,64,.13),transparent 30%),
    radial-gradient(circle at bottom right,rgba(255,122,92,.14),transparent 35%),
    #fff;
}

.main-section-title{
    text-align:center;
    margin-bottom:40px;
}

.main-section-title h2{
    font-size:42px;
    font-weight:800;
    color:#0b2239;
}

.visa-card{
    background:#fff;
    border-radius:28px;
    padding:36px;
    box-shadow:0 16px 45px rgba(0,0,0,.08);
    border:1px solid rgba(241,90,64,.10);
}

.visa-card p{
    font-size:16px;
    line-height:1.85;
    color:#31435a;
}

.visa-card strong{
    color:#071827;
}

.visa-card ul,
.visa-card ol{
    margin:16px 0 26px;
    padding-left:0;
    list-style:none;
}

.visa-card ul li,
.visa-card ol li{
    position:relative;
    padding:10px 12px 10px 36px;
    border-bottom:1px dashed rgba(0,0,0,.12);
    line-height:1.6;
}

.visa-card ul li::before,
.visa-card ol li::before{
    content:"\F633";
    font-family:"bootstrap-icons";
    position:absolute;
    left:0;
    top:10px;
    color:#f15a40;
}

.visa-card a{
    color:#1a2c92;
    font-weight:bold;
}

.visa-table{
    width:100%;
    border-collapse:collapse;
    margin:25px 0;
    background:#fff;
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(0,0,0,.06);
}

.visa-table td{
    border:1px solid #e8e8e8;
    padding:12px 15px;
    font-weight:600;
    color:#31435a;
}

.visa-table .table-title{
    text-align:center;
    background:linear-gradient(135deg,#f15a40,#ff7a5c);
    color:#fff;
    font-weight:800;
    font-size:18px;
}

@media(max-width:768px){
    .visa-card{
        padding:24px;
    }

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

    .visa-table td{
        display:block;
        width:100%;
    }
}



.venue-page-section{
    padding:80px 0;
    background:
    radial-gradient(circle at top left,rgba(241,90,64,.13),transparent 30%),
    radial-gradient(circle at bottom right,rgba(255,122,92,.14),transparent 35%),
    #fff;
}

.main-section-title{
    text-align:center;
    margin-bottom:40px;
}

.main-section-title h2{
    font-size:42px;
    font-weight:800;
    color:#0b2239;
    margin-top:8px;
}

.venue-heading-box{
    background:#fff;
    border-radius:26px;
    padding:30px;
    text-align:center;
    box-shadow:0 16px 45px rgba(0,0,0,.08);
    border:1px solid rgba(241,90,64,.10);
    margin-bottom:35px;
}

.venue-heading-box h1{
    font-size:22px;
    line-height:1.6;
    color:#071827;
    font-weight:700;
    margin:0;
}

.venue-heading-box h1 span.hyatt-text{
    font-size:34px;
    font-weight:800;
    color:#f15a40;
}

.venue-heading-box h1 span.address-text{
    font-weight:600;
    color:#31435a;
}

.venue-img-card{
    background:#fff;
    border-radius:24px;
    padding:12px;
    height:100%;
    box-shadow:0 16px 45px rgba(0,0,0,.08);
    border:1px solid rgba(241,90,64,.10);
    overflow:hidden;
    transition:.35s;
}

.venue-img-card:hover{
    transform:translateY(-7px);
    box-shadow:0 24px 60px rgba(0,0,0,.13);
}

.venue-img-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:18px;
    display:block;
}

.map-box{
    background:#fff;
    border-radius:28px;
    padding:14px;
    box-shadow:0 16px 45px rgba(0,0,0,.08);
    border:1px solid rgba(241,90,64,.10);
    overflow:hidden;
}

.map-box iframe{
    width:100%;
    height:450px;
    border:0;
    border-radius:22px;
    display:block;
}

@media(max-width:991px){
    .main-section-title h2{
        font-size:34px;
    }

    .venue-img-card img{
        height:300px;
    }
}

@media(max-width:576px){
    .venue-page-section{
        padding:60px 0;
    }

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

    .venue-heading-box{
        padding:22px;
    }

    .venue-heading-box h1{
        font-size:18px;
    }

    .venue-heading-box h1 span.hyatt-text{
        font-size:28px;
    }

    .venue-img-card img{
        height:220px;
    }

    .map-box iframe{
        height:360px;
    }
}


.contact-page-section{
    padding:80px 0;
    background:
    radial-gradient(circle at top left,rgba(241,90,64,.13),transparent 30%),
    radial-gradient(circle at bottom right,rgba(255,122,92,.14),transparent 35%),
    #fff;
}

.main-section-title{
    text-align:center;
    margin-bottom:45px;
}

.main-section-title h2{
    font-size:42px;
    font-weight:800;
    color:#0b2239;
}

.contact-card{
    background:#fff;
    border-radius:28px;
    padding:40px 30px;
    text-align:center;
    height:100%;
    box-shadow:0 16px 45px rgba(0,0,0,.08);
    border:1px solid rgba(241,90,64,.10);
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.contact-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:7px;
    background:linear-gradient(90deg,#f15a40,#ff7a5c);
}

.contact-card:hover{
    transform:translateY(-8px);
    box-shadow:0 24px 60px rgba(0,0,0,.13);
}

.contact-card h3{
    font-size:24px;
    font-weight:800;
    color:#071827;
    margin-bottom:20px;
}

.contact-card h4{
    font-size:22px;
    font-weight:800;
    color:#f15a40;
    margin-bottom:12px;
}

.contact-card p{
    font-size:16px;
    line-height:1.9;
    color:#31435a;
    margin-bottom:0;
}

.contact-card a{
    color:#071827;
    font-weight:700;
    text-decoration:none;
}

.contact-card a:hover{
    color:#f15a40;
}

.manager-logo{
    width:250px;
    max-width:100%;
    margin:15px auto;
    display:block;
}

.contact-icon{
    width:75px;
    height:75px;
    border-radius:50%;
    background:linear-gradient(135deg,#f15a40,#ff7a5c);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    font-size:30px;
    box-shadow:0 10px 30px rgba(241,90,64,.30);
}

@media(max-width:768px){

    .contact-page-section{
        padding:60px 0;
    }

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

    .contact-card{
        margin-bottom:25px;
        padding:30px 20px;
    }

    .contact-card h3{
        font-size:22px;
    }
}

.coming-soon-section{
    min-height:calc(100vh - 120px);
    display:flex;
    align-items:center;
    justify-content:center;
    background:
    radial-gradient(circle at top left,rgba(241,90,64,.15),transparent 30%),
    radial-gradient(circle at bottom right,rgba(255,122,92,.18),transparent 35%),
    #fff;
    padding:40px 0;
}



.coming-soon-section .container{
    display:flex;
    justify-content:center;
    align-items:center;
}

.coming-card{
    width:100%;
    max-width:800px;
    margin:auto;
}


.coming-card {
    max-width:850px;
    width:100%;
    text-align:center;
    background:#fff;
    padding:60px 40px;
    border-radius:30px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    border:1px solid rgba(241,90,64,.10);
    position:relative;
    overflow:hidden;
}

.coming-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:8px;
    background:linear-gradient(90deg,#f15a40,#ff7a5c);
}

.coming-icon{
    width:120px;
    height:120px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,#f15a40,#ff7a5c);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:50px;
    box-shadow:0 15px 40px rgba(241,90,64,.35);
}

.coming-card h1{
    font-size:56px;
    font-weight:900;
    color:#071827;
    margin:30px 0 15px;
}

.coming-card h2{
    font-size:26px;
    font-weight:700;
    color:#f15a40;
    margin-bottom:20px;
}

.coming-card p{
    font-size:18px;
    line-height:1.8;
    color:#555;
    max-width:650px;
    margin:auto;
}

@media(max-width:768px){

    .coming-card{
        padding:40px 25px;
    }

    .coming-card h1{
        font-size:40px;
    }

    .coming-card h2{
        font-size:22px;
    }

    .coming-card p{
        font-size:16px;
    }

    .coming-icon{
        width:90px;
        height:90px;
        font-size:38px;
    }
}

.faculty-section{
    padding:80px 0;
    background:
    radial-gradient(circle at top left,rgba(241,90,64,.13),transparent 30%),
    radial-gradient(circle at bottom right,rgba(255,122,92,.14),transparent 35%),
    #fff;
}

.main-section-title{
    text-align:center;
    margin-bottom:45px;
}

.main-section-title h2{
    font-size:42px;
    font-weight:800;
    color:#0b2239;
}

.faculty-card{
    height:100%;
    background:#fff;
    border-radius:18px;
    padding:18px 18px 18px 52px;
    box-shadow:0 12px 32px rgba(0,0,0,.07);
    border:1px solid rgba(241,90,64,.10);
    position:relative;
    overflow:hidden;
    transition:.35s;
}

.faculty-card::before{
    content:"";
    width:8px;
    height:100%;
    background:linear-gradient(180deg,#f15a40,#ff7a5c);
    position:absolute;
    left:0;
    top:0;
}

.faculty-card::after{
    content:"\F4D7";
    font-family:"bootstrap-icons";
    position:absolute;
    left:18px;
    top:18px;
    color:#f15a40;
    font-size:20px;
}

.faculty-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(0,0,0,.12);
}

.faculty-card h4{
    font-size:17px;
    font-weight:800;
    color:#071827;
    margin-bottom:4px;
}

.faculty-card p{
    margin:0;
    color:#f15a40;
    font-size:14px;
    font-weight:700;
}

@media(max-width:768px){
    .faculty-section{
        padding:60px 0;
    }

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

.registration-card{
    background:#fff;
    border-radius:25px;
    padding:35px;
    box-shadow:0 10px 40px rgba(0,0,0,.08);
    border:1px solid rgba(241,90,64,.10);
}

.section-heading{
    color:#f15a40;
    font-size:28px;
    font-weight:800;
    margin-bottom:20px;
}

.quiz-list{
    margin:0;
    padding-left:22px;
}

.quiz-list li{
    margin-bottom:12px;
    line-height:1.8;
    color:#333;
}

.quiz-list li::marker{
    color:#f15a40;
}

.section-pill-title{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:linear-gradient(135deg,#ff5c3a,#ff7a59);
    color:#fff;
    font-size:20px;
    font-weight:800;
    padding:10px 30px;
    border-radius:50px;
    box-shadow:0 10px 30px rgba(255,102,71,.20);

}

.section-pill-title i{
    width:24px;
    height:24px;
    background:#fff;
    color:#ff6a45;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
}

.registration-card{
    background:#fff;
    border-radius:25px;
    padding:35px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

@media(max-width:768px){

    .section-pill-title{
        font-size:18px;
        padding:12px 22px;
    }
}