/*=========================
        GOOGLE FONT
==========================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    overflow-x:hidden;
    background:#fff;
    padding:100px 0px 0px 0px;
}

a{
    text-decoration:none;
}

/*=========================
        HERO
==========================*/

/* .hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80");
    background-size:cover;
    background-position:center;
}

.hero-content{
    color:#fff;
    max-width:700px;
}

.hero h4{
    color:#FFD166;
    font-size:22px;
    margin-bottom:15px;
}

.hero h1{
    font-size:70px;
    font-weight:800;
}

.hero p{
    font-size:20px;
    margin:20px 0;
}

.hero h5{
    margin-bottom:40px;
    font-weight:500;
}

.hero-btn{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
} */

.btn-register{

    padding:5px 35px;

    border-radius:50px;

    background:linear-gradient(135deg,#F59E0B,#EA580C);

    color:#fff;

    font-weight:600;

    transition:.35s;

}

.btn-register:hover{

    transform:translateY(-5px);

    color:#fff;

}

.btn-outline{

    padding:15px 35px;

    border:2px solid #fff;

    border-radius:50px;

    color:#fff;

    transition:.35s;

}

.btn-outline:hover{

    background:#fff;

    color:#111;

}

/*=========================
        NAVBAR
==========================*/

.logo-text{
    font-size:32px;
    font-weight:800;
    color:#ff7a00;
    text-decoration:none;
    letter-spacing:1px;
    text-transform:uppercase;
    transition:.3s ease;
    font-family:'Poppins',sans-serif;
}

.logo-text span{
    color:#ffffff;
    background:#ff7a00;
    padding:2px 10px;
    border-radius:6px;
    margin-left:4px;
    font-size:26px;
    display:inline-block;
}

.logo-text:hover{
    color:#ffa726;
    text-decoration:none;
}

.logo-text:hover span{
    background:#e86b00;
}

/* Tablet */
@media(max-width:991px){
    .logo-text{
        font-size:28px;
    }

    .logo-text span{
        font-size:22px;
    }
}

/* Mobile */
@media(max-width:767px){
    .logo-text{
        font-size:22px;
    }

    .logo-text span{
        font-size:18px;
        padding:2px 8px;
    }
}

/* Small Mobile */
@media(max-width:480px){
    .logo-text{
        font-size:18px;
    }

    .logo-text span{
        font-size:16px;
    }
}


.osacon-navbar{

    position:fixed;

    width:93%;

    left:50%;

    transform:translateX(-50%);

    top:18px;

    z-index:999;

    border-radius:70px;

    /*background:rgba(92, 92, 92, 0.267);*/
    
    background:white;
    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.2);

    box-shadow:
    0 20px 40px rgba(0,0,0,.20);

    padding:8px 10px;
    color:black;

}

.osacon-navbar .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.navbar-brand img{

    height:55px;

}

/*=========================
        DESKTOP MENU
==========================*/

.desktop-menu ul{

    display:flex;

    list-style:none;

    gap:1px;

    margin:0;

}

.desktop-menu a{

    /*color:#fff;*/
    color:black;

    padding:12px 2px;

    border-radius:30px;

    transition:.3s;

    font-weight:500;

    position:relative;

}

.desktop-menu a:hover{

    background:#f97316;
color:#fff;

    transform:translateY(-3px);

}

.desktop-menu a.active{

    background:#f97316;
color:#fff;

}

/* scrolled */

/*=========================
    SCROLLED NAVBAR
==========================*/

.osacon-navbar{

    transition:all .4s ease;

}

/* After Scroll */

.osacon-navbar.scrolled{

    background:#ffffff;

    backdrop-filter:blur(20px);

    box-shadow:0 15px 40px rgba(0,0,0,.12);

    border:1px solid rgba(0,0,0,.08);

}

/*=========================
      DROPDOWN MENU
==========================*/

.desktop-menu{

    display:flex;

    align-items:center;

    gap:12px;

    list-style:none;

}

.desktop-menu li{

    position:relative;

}

.desktop-menu li>a{

    display:flex;

    align-items:center;

    gap:8px;

    padding:10px 15px;

    /*color:#fff;*/
    color:black;

    text-decoration:none;

    transition:.35s;
    
    font-size:15px;

}

.desktop-menu li>a i{

    font-size:12px;

    transition:.35s;

}

/* Dropdown */

.dropdown-menu-custom{
    position:absolute;
    top:120%;
    left:50%;
    transform:translateX(-50%) translateY(15px);

    width:650px;           /* Increase width */
    max-width:90vw;
    min-width:500px;

    background:#fff;
    border-radius:18px;
    padding:20px;

    display:grid;
    grid-template-columns:repeat(3,1fr); /* 3 equal columns */
    gap:15px;

    list-style:none;

    opacity:0;
    visibility:hidden;

    transition:.35s ease;

    box-shadow:0 20px 45px rgba(0,0,0,.15);
    border-top:4px solid #ff7a00;
    z-index:9999;
}

/* Hover */
.dropdown-menu-item:hover .dropdown-menu-custom{
    opacity:1;
    visibility:visible;
    top:100%;
    transform:translateX(-50%) translateY(8px);
}

/* Rotate Arrow */
.dropdown-menu-item:hover>a i{
    transform:rotate(180deg);
}

/* Links */
.dropdown-menu-custom li{
    width:100%;
}

.dropdown-menu-custom li a{
    display:block;
    padding:15px;
    color:#222;
    text-decoration:none;
    transition:.3s;
    font-weight:500;
    border-radius:12px;
}

.dropdown-menu-custom li a:hover{
    background:#fff3e8;
    color:#ff7a00;
}


/*==========================
      MOBILE DROPDOWN
===========================*/

.mobile-dropdown{
    width:100%;
}

.mobile-dropdown-btn{

    display:flex;
    justify-content:space-between;
    align-items:center;

    width:100%;
    padding:14px 18px;

    background:#16352c;
    color:#fff !important;

    border-radius:8px;

    cursor:pointer;
}

.mobile-dropdown-btn i{

    transition:.35s;
}

.mobile-submenu{

    list-style:none;

    padding:0;
    margin:8px 0 0;

    max-height:0;

    overflow:hidden;

    transition:max-height .45s ease;

    background:#f8f8f8;

    border-radius:8px;

}

.mobile-submenu li{

    margin:0 !important;
}

.mobile-submenu li a{

    display:block;

    padding:12px 20px;

    color:#333;

    border-bottom:1px solid #ececec;
}

.mobile-submenu li:last-child a{

    border-bottom:none;
}

.mobile-submenu li a:hover{

    background:#ff7a00;
    color:#fff;
}

.mobile-dropdown.active .mobile-submenu{

    max-height:500px;
}

.mobile-dropdown.active .mobile-dropdown-btn i{

    transform:rotate(180deg);
}

/* Menu Color */

.osacon-navbar.scrolled .desktop-menu a{

    color:#222;

}


/* Active Menu */

.osacon-navbar.scrolled .desktop-menu a.active{

    color:#ff7a00;

}

/* Hover */

.osacon-navbar.scrolled .desktop-menu a:hover{

    color:#ff7a00;

}

/* Logo (optional if using text logo) */

.osacon-navbar.scrolled .navbar-brand{

    color:#222;

}

/* Mobile Icon */

.osacon-navbar.scrolled .menu-btn{

    color:#222;

}

.osacon-navbar.scrolled .menu-btn i{

    color:#222;

}

/* .desktop-menu a::after{

    content:"";

    position:absolute;

    left:20px;

    bottom:8px;

    width:0;

    height:3px;

    border-radius:20px;

    background:#FFD166;

    transition:.3s;

} */

.desktop-menu a:hover::after,
.desktop-menu a.active::after{

    width:40%;

}

/*=========================
    REGISTER BUTTON
==========================*/

.register-btn{

    padding:14px 30px;

    border-radius:40px;

    background:linear-gradient(135deg,#F59E0B,#EA580C);

    color:#fff;

    font-weight:600;

    transition:.35s;

}

.register-btn:hover{

    color:#fff;

    transform:translateY(-4px);

}

/*=========================
      MOBILE BUTTON
==========================*/

.menu-btn{

    display:none;

    border:none;

    background:none;

    /*color:#fff;*/
    color:black;

    font-size:28px;

}

/*=========================
      MOBILE MENU
==========================*/

.mobile-menu{

    position:fixed;

    top:0;

    right:-340px;

    width:320px;

    height:100vh;

    background:#fff;

    z-index:99999;

    transition:.45s ease;

    overflow-y:auto;

    box-shadow:-10px 0 40px rgba(0,0,0,.2);

}

.mobile-menu.active{

    right:0;

}

.mobile-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:25px;

    border-bottom:1px solid #eee;

}

.mobile-top img{

    height:45px;

}

.close-menu{

    border:none;

    background:none;

    font-size:28px;
    
    color:black;

}

.mobile-menu ul{

    list-style:none;

    /* padding:25px; */

}

.mobile-menu li{

    margin-bottom:8px;

}

.mobile-menu a{

    display:block;

    padding:14px 18px;

    color:#222;

    border-radius:12px;

    transition:.3s;

}

.mobile-menu a:hover{

    background:#123524;

    color:#fff;

    transform:translateX(8px);

}

.mobile-btn{

    display:block;

    margin:25px;

    text-align:center;

}

/*=========================
        OVERLAY
==========================*/

.menu-overlay{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.55);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:9999;

}

.menu-overlay.active{

    opacity:1;

    visibility:visible;

}

/*=========================
        RESPONSIVE
==========================*/

@media(max-width:991px){

.osacon-navbar{

    width:100%;

    top:0;

    left:0;

    transform:none;

    border-radius:0;

    padding:12px 15px;

}

.desktop-menu{

    display:none;

}

.desktop-btn{

    display:none;

}

.menu-btn{

    display:block;

}

.hero{

    text-align:center;

}

.hero h1{

    font-size:45px;

}

.hero p{

    font-size:18px;

}

.hero-btn{

    justify-content:center;

}

}

@media(max-width:576px){

.hero h1{

    font-size:36px;

}

.hero h4{

    font-size:18px;

}

.hero p{

    font-size:16px;

}

.mobile-menu{

    width:100%;

    right:-100%;

}

}

/* *******************************
slider******
**************************** */

/*==============================
        HERO SECTION
==============================*/

/*==================================================
                HERO SECTION
==================================================*/

.hero{
    position:relative;
    width:100%;
    overflow:hidden;
}

#heroSlider,
#heroSlider .carousel-item{
    height:100vh;
}







#heroSlider img{
    width:100%;
    height:100vh;
    object-fit:cover;
    object-position:center;
    transition:transform 8s ease;
}

#heroSlider img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    transition:none;
    transform:none;
}

/* Overlay */

/*.hero-overlay{*/
/*    position:absolute;*/
/*    inset:0;*/
/*    background:linear-gradient(*/
/*        rgba(0,0,0,.75),*/
/*        rgba(0,0,0,.10)*/
/*    );*/
/*    z-index:1;*/
/*}*/

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,0.45) 0%,
        rgba(0,0,0,0.35) 35%,
        rgba(0,0,0,0.20) 70%,
        rgba(0,0,0,0.08) 100%
    );
    z-index:1;
}
/* Caption */

.carousel-caption{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    text-align:left;
    z-index:2;
}

.hero-content{
    max-width:650px;
    animation:fadeUp .8s ease;
}

.hero-tag{
    display:inline-block;
    padding:10px 22px;
    border-radius:30px;
    background:rgba(255,255,255,.15);
    color:#FFD54F;
    font-weight:600;
    letter-spacing:.5px;
    margin-bottom:18px;
}

.hero-content h1{
    color:#fff;
    font-size:62px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:20px;
}

.hero-content .slideh1{
    font-size:32px;
}



@media (max-width:991px){
    .hero-content .slideh1{
        font-size:26px;
    }
}

@media (max-width:767px){
    .hero-content .slideh1{
        font-size:18px;
    }
}

@media (max-width:480px){
    .hero-content .slideh1{
        font-size:14px;
    }
}

.hero-content p{
    color:#fff;
    font-size:22px;
    line-height:1.7;
    margin-bottom:20px;
}

.hero-content h5{
    color:#fff;
    font-size:22px;
    margin-bottom:30px;
}

.hero-content h5 i{
    color:#ff8c00;
    margin-right:8px;
}

/* Button */

.hero-btn{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-register{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:15px 38px;

    background:#ff7a00;
    color:#fff;

    border-radius:50px;
    text-decoration:none;
    font-weight:600;

    transition:.35s;

}

.btn-register:hover{

    background:#e76800;
    color:#fff;
    transform:translateY(-3px);

}

/* Controls */

.carousel-control-prev,
.carousel-control-next{

    width:55px;
    height:55px;

    top:50%;
    transform:translateY(-50%);

    background:rgba(255,255,255,.15);

    border-radius:50%;

    backdrop-filter:blur(10px);

}

.carousel-control-prev{
    left:20px;
}

.carousel-control-next{
    right:20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover{

    background:#ff7a00;

}

.carousel-indicators{
    bottom:25px;
}

.carousel-indicators button{

    width:12px!important;
    height:12px!important;

    border-radius:50%;

}

/* Animation */

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

/*======================*/
/*logo*/
/*======================*/

.conference-logo-section{
    background:#fff;
    padding:60px 0;
    text-align:center;
}

.conference-logo{
    width:180px;
    max-width:100%;
    height:auto;
    margin-bottom:20px;
    transition:.3s ease;
}

.conference-logo:hover{
    transform:scale(1.05);
}

.conference-title{
    font-size:36px;
    font-weight:700;
    color:#ff7a00;
    margin-bottom:10px;
}

.conference-subtitle{
    font-size:18px;
    color:#555;
    margin:0;
}

/* Tablet */
@media(max-width:991px){

.conference-logo{
    width:150px;
}

.conference-title{
    font-size:30px;
}

.conference-subtitle{
    font-size:16px;
}

}

/* Mobile */
@media(max-width:767px){

.conference-logo{
    width:120px;
}

.conference-title{
    font-size:24px;
}

.conference-subtitle{
    font-size:15px;
}

}

/* Small Mobile */
@media(max-width:480px){

.conference-logo{
    width:100px;
}

.conference-title{
    font-size:20px;
}

.conference-subtitle{
    font-size:14px;
}

}

/*=========================================
            Tablet
=========================================*/

@media(max-width:991px){

#heroSlider,
#heroSlider .carousel-item,
#heroSlider img{

    height:80vh;

}

.hero-content{

    max-width:100%;
    text-align:center;

}

.carousel-caption{

    justify-content:center;

}

.hero-content h1{

    font-size:52px;

}

.hero-content p{

    font-size:18px;

}

.hero-content h5{

    font-size:18px;

}

.hero-btn{

    justify-content:center;

}

}

/*=========================================
            Mobile
=========================================*/

@media(max-width:768px){

.hero{

    margin-top:0;

}

#heroSlider,
#heroSlider .carousel-item{

    height:60vh;

}

#heroSlider img{

    height:60vh;
    object-fit:cover;
    object-position:center;

}

.carousel-caption{

    padding:20px;
    justify-content:center;
    align-items:center;
    text-align:center;

}

.hero-content{

    width:100%;
    max-width:100%;

}

.hero-tag{

    font-size:12px;
    padding:8px 18px;

}

.hero-content h1{

    font-size:36px;
    margin-bottom:12px;

}

.hero-content p{

    font-size:15px;
    margin-bottom:15px;

}

.hero-content h5{

    font-size:16px;
    margin-bottom:20px;

}

.hero-btn{

    justify-content:center;

}

.btn-register{

    width:220px;
    padding:13px;

}

.carousel-control-prev,
.carousel-control-next{

    display:none;

}

.carousel-indicators{

    bottom:12px;

}

}

/*=========================================
        Small Mobile
=========================================*/

@media(max-width:480px){

#heroSlider,
#heroSlider .carousel-item{

    height:30vh;

}

#heroSlider img{

    height:30vh;

}

.hero-content h1{

    font-size:18px;

}

.hero-content p{

    font-size:14px;

}

.hero-content h5{

    font-size:15px;

}

.hero-tag{

    font-size:11px;
    display:none;

}

.btn-register{

    width:150px;
    font-size:12px;

}

.carousel-indicators{

    bottom:12px;
    display:none;

}

.slideh1 {
    font-size: 12px;
}

}


.slideh1 {
    font-size: 32px;
}

/* Tablet */
@media (max-width: 991px) {
    .slideh1 {
        font-size: 26px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .slideh1 {
        font-size: 18px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .slideh1 {
        font-size: 16px;
    }
}

/*====================================
        COUNTER SECTION
=====================================*/

/* .counter-section{

    padding:40px 0;

    background:linear-gradient(135deg,#0f766e,#134e4a);

    position:relative;

}

.counter-box{

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:25px;

    text-align:center;

    padding:20px 25px;

    transition:.4s;

    color:#fff;

}

.counter-box:hover{

    transform:translateY(-12px);

    background:rgba(255,255,255,.18);

}

.counter-icon{

    width:85px;

    height:85px;

    border-radius:50%;

    margin:0 auto 25px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#ff9d00,#ff7300);

    font-size:34px;

    color:#fff;

    box-shadow:0 10px 25px rgba(255,115,0,.35);

}

.counter-box h2{

    font-size:52px;

    font-weight:800;

    margin-bottom:10px;

}

.counter-box p{

    margin:0;

    font-size:18px;

    opacity:.95;

} */

/* timer counterr */

/*====================================
        COUNTDOWN SECTION
====================================*/

.countdown-section{

    padding:30px 0;

    background:linear-gradient(135deg,#fff8f2,#fff2e7,#ffffff);

    position:relative;

    overflow:hidden;

}

/* Background Glow */

.countdown-section::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    left:-150px;

    top:-150px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(255,122,0,.18),
    transparent 70%);

}

.countdown-section::after{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    right:-100px;

    bottom:-100px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(255,180,80,.18),
    transparent 70%);

}

/* Main Card */

.countdown-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;

    flex-wrap:wrap;

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(18px);

    border-radius:35px;

    padding:70px;

    box-shadow:

    0 25px 60px rgba(255,122,0,.12);

    border:1px solid rgba(255,255,255,.8);

    position:relative;

    z-index:2;

}

/* Left */

.count-left{

    flex:1;

    min-width:280px;

}

.count-tag{

    display:inline-block;

    padding:10px 24px;

    border-radius:50px;

    background:linear-gradient(135deg,#ffb347,#ff7a00);

    color:#fff;

    font-weight:600;

    margin-bottom:25px;

}

.count-title{

    font-size:52px;

    font-weight:800;

    color:#222;

    line-height:1.2;

    margin-bottom:20px;

}

.count-text{

    color:#666;

    font-size:18px;

    line-height:32px;

}

/* Right */

.count-right{

    flex:1;

    display:flex;

    justify-content:center;

    gap:25px;

    flex-wrap:wrap;

}

/* Counter */

.count-box{

    text-align:center;

}

.counter-circle{

    width:135px;

    height:135px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    position:relative;

    background:
    conic-gradient(
    #ff7a00 0deg,
    #ffb347 280deg,
    #ffe6cf 280deg);

    box-shadow:
    0 12px 35px rgba(255,122,0,.25);

}

.counter-circle::before{

    content:"";

    position:absolute;

    width:105px;

    height:105px;

    background:#fff;

    border-radius:50%;

}

.counter-circle span{

    position:relative;

    z-index:2;

    font-size:40px;

    font-weight:800;

    color:#222;

}

.count-box h6{

    margin-top:18px;

    letter-spacing:3px;

    font-size:14px;

    color:#555;

    font-weight:600;

}

.count-box:hover .counter-circle{

    transform:translateY(-10px) rotate(8deg);

    transition:.4s;

}

/* Responsive */

@media(max-width:992px){

.countdown-wrapper{

    flex-direction:column;

    text-align:center;

    padding:50px 35px;

}

.count-left{

    width:100%;

}

.count-right{

    width:100%;

    justify-content:center;

}

.count-title{

    font-size:40px;

}

}

@media(max-width:576px){

.countdown-section{

    padding:60px 0;

}

.countdown-wrapper{

    padding:35px 20px;

    border-radius:25px;

}

.count-title{

    font-size:30px;

}

.count-text{

    font-size:16px;

    line-height:28px;

}

.counter-circle{

    width:95px;

    height:95px;

}

.counter-circle::before{

    width:72px;

    height:72px;

}

.counter-circle span{

    font-size:26px;

}

.count-box h6{

    font-size:12px;

    letter-spacing:1px;

}

.count-right{

    gap:18px;

}

}


/*====================================
        WELCOME MESSAGE
=====================================*/

.welcome-section{

    padding:100px 0;

    background:linear-gradient(135deg,#fff8f3,#ffffff);

}

.welcome-card{

    background:#fff;

    border-radius:30px;

    padding:60px;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

    position:relative;

    overflow:hidden;

}

.welcome-card::before{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    background:linear-gradient(135deg,#ff7a00,#ffb347);

    opacity:.08;

    border-radius:50%;

    top:-120px;

    right:-100px;

}

.section-heading{

    margin-bottom:40px;

}

.section-badge{

    display:inline-block;

    background:linear-gradient(135deg,#ff7a00,#ffb347);

    color:#fff;

    padding:10px 25px;

    border-radius:50px;

    font-weight:600;

    margin-bottom:18px;

}

.section-heading h2{

    font-size:35px;

    font-weight:800;

    color:#222;

}

.section-heading h2 span{

    color:#ff7a00;

}

.heading-text{

    color:#666;

    margin-top:12px;

}

.welcome-content{

    color:#555;

    line-height:34px;

    font-size:17px;

}

.welcome-content p{

    margin-bottom:22px;

}

.welcome-highlight{

    margin:35px 0;

    padding:30px;

    border-left:5px solid #ff7a00;

    background:#fff7f1;

    border-radius:15px;

    display:flex;

    gap:20px;

    align-items:flex-start;

}

.welcome-highlight i{

    color:#ff7a00;

    font-size:40px;

}

.welcome-highlight p{

    margin:0;

    color:#333;

    font-size:19px;

}

.welcome-signature{

    margin-top:50px;

    padding-top:30px;

    border-top:1px solid #eee;

}

.welcome-signature h4{

    color:#666;

    margin-bottom:10px;

}

.welcome-signature h3{

    color:#ff7a00;

    font-weight:700;

    margin-bottom:8px;

}

.welcome-signature span{

    font-weight:600;

    color:#222;

}

.welcome-signature p{

    color:#777;

    margin-top:8px;

}

@media(max-width:768px){

.welcome-card{

    padding:35px 25px;

}

.section-heading h2{

    font-size:32px;

}

.welcome-content{

    font-size:16px;

    line-height:30px;

}

.welcome-highlight{

    flex-direction:column;

}

}


/*====================================
        ORGANISING COMMITTEE
=====================================*/

.committee-section{

    padding:30px 0;

    background:linear-gradient(180deg,#ffffff,#f7fafc);

}

/*==============================
        COMMITTEE IMAGE
==============================*/

.committee-img{

    width:170px;

    height:170px;

    margin:0 auto 25px;

    border-radius:50%;

    overflow:hidden;

    border:4px solid #ff7a00;

    box-shadow:0 15px 35px rgba(255,122,0,.25);

    position:relative;

    z-index:2;

}

.committee-img{
    width:130px;
    height:130px;
    margin:0 auto 25px;
    border-radius:50%;
    overflow:hidden;
    border:4px solid #ff7a00;
    box-shadow:0 15px 35px rgba(255,122,0,.25);
}

.committee-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:top center;
    display:block;
}

.committee-card:hover .committee-img img{

    transform:scale(1.08);

}

.section-heading{

    max-width:700px;

    margin:0 auto 60px;

}

.section-heading span{

    display:inline-block;

    padding:10px 24px;

    background:#fff3e5;

    color:#ff7a00;

    border-radius:50px;

    font-weight:600;

    margin-bottom:15px;

}

.section-heading h2{

    font-size:34px;

    font-weight:800;

    color:#16352c;

    margin-bottom:15px;

}

.section-heading p{

    color:#666;

    font-size:17px;

}

.committee-card{

    background:#fff;

    border-radius:25px;

    padding:40px 25px;

    text-align:center;

    transition:.4s;

    border:1px solid #eee;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    position:relative;

    overflow:hidden;

}

.committee-card::before{

    content:"";

    position:absolute;

    width:120px;

    height:120px;

    background:linear-gradient(135deg,#ff7a00,#ffb347);

    border-radius:50%;

    top:-60px;

    right:-60px;

    opacity:.12;

}

.committee-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.committee-icon{

    width:90px;

    height:90px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#ff7a00,#ffb347);

    color:#fff;

    font-size:34px;

    box-shadow:0 15px 30px rgba(255,122,0,.35);

}

.committee-card h4{

    font-size:20px;

    font-weight:700;

    margin-bottom:10px;

    color:#16352c;

}

.committee-card span{

    color:#ff7a00;

    font-weight:600;

    letter-spacing:.5px;

}

@media(max-width:768px){

.section-heading h2{

    font-size:34px;

}

.committee-card{

    padding:30px 20px;

}

}

/*==============================
      MAGNETIC CARD
==============================*/

.wave-card{

    position:relative;

    overflow:hidden;

    background:#fff;

    border-radius:20px;

    padding:35px;

    transition:.35s;

    cursor:pointer;

}

.wave-bg{

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    background:radial-gradient(circle,
        rgba(255,122,0,.45),
        rgba(255,122,0,0));

    transform:translate(-50%,-50%) scale(0);

    pointer-events:none;

    transition:
        transform .35s ease,
        opacity .35s;

    opacity:0;

}

.wave-card:hover .wave-bg{

    transform:translate(-50%,-50%) scale(1);

    opacity:1;

}

.wave-card:hover{

    transform:translateY(-8px);

}


/*================================
      CONFERENCE SCHEDULE
================================*/

.schedule-section{

    padding:110px 0;

    background:linear-gradient(180deg,#ffffff,#fff8f2);

}

.schedule-wrapper{

    position:relative;

}

/* Heading */

.section-tag{

    display:inline-block;

    background:#fff3e5;

    color:#ff7a00;

    padding:10px 24px;

    border-radius:40px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:18px;

}

.section-title{

    font-size:48px;

    font-weight:800;

    color:#16352c;

    margin-bottom:15px;

}

/* Timeline */

.timeline{

    width:70%;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:60px;

}

.timeline-line{

    flex:1;

    height:5px;

    background:linear-gradient(90deg,#ff7a00,#ffb347);

    border-radius:20px;

}

.timeline-dot{

    width:28px;

    height:28px;

    border-radius:50%;

    background:#fff;

    border:6px solid #ff7a00;

    box-shadow:0 0 20px rgba(255,122,0,.35);

}

.timeline-dot.active{

    animation:pulse 1.8s infinite;

}

@keyframes pulse{

0%{

transform:scale(1);

}

50%{

transform:scale(1.3);

}

100%{

transform:scale(1);

}

}

/* Cards */

.schedule-card{

    background:#fff;

    border-radius:30px;

    padding:45px;

    text-align:center;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

    transition:.4s;

    border:1px solid #f1f1f1;

    position:relative;

    overflow:hidden;

}

.schedule-card::before{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    background:linear-gradient(135deg,#ff7a00,#ffb347);

    border-radius:50%;

    top:-140px;

    right:-120px;

    opacity:.08;

}

.schedule-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.date-badge{

    display:inline-block;

    background:linear-gradient(135deg,#ff7a00,#ffb347);

    color:#fff;

    padding:12px 28px;

    border-radius:40px;

    font-size:22px;

    font-weight:700;

    margin-bottom:25px;

}

.schedule-card h3{

    font-size:34px;

    font-weight:700;

    color:#16352c;

}

.schedule-card h5{

    color:#ff7a00;

    margin:15px 0 25px;

    font-size:20px;

}

.schedule-card ul{

    list-style:none;

    padding:0;

    margin:0;

}

.schedule-card li{

    padding:12px 0;

    border-bottom:1px dashed #ececec;

    color:#555;

    font-size:17px;

}

.schedule-card li:last-child{

    border:none;

}

/* Responsive */

@media(max-width:991px){

.timeline{

    width:100%;

}

.schedule-card{

    margin-bottom:30px;

}

}

@media(max-width:576px){

.section-title{

    font-size:34px;

}

.timeline{

    display:none;

}

.schedule-card{

    padding:30px;

}

.date-badge{

    font-size:18px;

}

}

/* ========================================
travel section
==========================================  */

.gt-slider-section{
    background:#f5f5f5;
}

.gt-title{
    font-size:36px;
    font-weight:700;
}

.gt-title span{
    color:#ff7a00;
}



.gt-card{

    background:#fff;
    padding:45px;
    border-radius:25px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.gt-subtitle{

    color:#ff7a00;
    font-size:13px;
    font-weight:bold;
    letter-spacing:2px;
    display:block;
    margin-bottom:15px;

}

.gt-card h2{

    font-size:40px;
    font-weight:700;
    margin-bottom:20px;

}

.gt-card p{

    color:#666;
    line-height:1.9;

}

.gt-img{

    width:100%;
    height:420px;
    object-fit:cover;
    border-radius:8px;

}

/* ONLY affects this slider */

/* Parent */
#gtDestinationSlider{
    position: relative;
}

/* Prev / Next Buttons */
#gtDestinationSlider .carousel-control-prev,
#gtDestinationSlider .carousel-control-next{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 50%;
    opacity: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,.2);
    z-index: 100;
}

/* Left Button */
#gtDestinationSlider .carousel-control-prev{
    left: -28px;
}

/* Right Button */
#gtDestinationSlider .carousel-control-next{
    right: -28px;
}

/* Icons */
#gtDestinationSlider .carousel-control-prev-icon,
#gtDestinationSlider .carousel-control-next-icon{
    filter: invert(1);
}

/* Mobile */
@media (max-width:767px){
    #gtDestinationSlider .carousel-control-prev,
    #gtDestinationSlider .carousel-control-next{
        display: none;
    }
}

@media(max-width:991px){

.gt-card{

padding:25px;

}

.gt-img{

height:300px;
margin-top:20px;

}

#gtDestinationSlider .gt-prev{

left:10px;

}

#gtDestinationSlider .gt-next{

right:10px;

}

}

@media(max-width:767px){

.gt-title{

font-size:24px;

}

.gt-card{

padding:20px;

}

.gt-card h2{

font-size:28px;

}

.gt-img{

height:220px;

}

#gtDestinationSlider .gt-prev,
#gtDestinationSlider .gt-next{

width:45px;
height:45px;

}

}

/* Hide slider buttons on mobile */
@media (max-width: 767.98px) {
    #gtDestinationSlider .gt-prev,
    #gtDestinationSlider .gt-next {
        display: none;
    }
}


/*====================================
        VENUE SECTION
=====================================*/

.venue-section{

    padding:100px 0;

    background:#fff;

}

.venue-tag{

    display:inline-block;

    color:#ff7a00;

    font-weight:600;

    letter-spacing:2px;

    margin-bottom:18px;

}

.venue-section h2{

    font-size:48px;

    font-weight:800;

    color:#16352c;

    line-height:1.2;

    margin-bottom:25px;

}

.wave-line{

    display:flex;

    gap:8px;

    margin-bottom:35px;

}

.wave-line span{

    width:20px;

    height:6px;

    background:#ff7a00;

    border-radius:50px;

    transform:rotate(-35deg);

}

.venue-tabs{

    display:flex;

    gap:40px;

    margin-bottom:35px;

    border-bottom:1px solid #eee;

}

.venue-tabs button{

    border:none;

    background:none;

    padding:15px 0;

    font-size:18px;

    font-weight:600;

    color:#777;

    position:relative;

}

.venue-tabs button.active{

    color:#ff7a00;

}

.venue-tabs button.active::after{

    content:"";

    position:absolute;

    width:100%;

    height:3px;

    background:#ff7a00;

    left:0;

    bottom:-2px;

}

.venue-info h4{

    font-size:34px;

    font-weight:700;

    color:#222;

    margin-bottom:20px;

}

.venue-info p{

    color:#666;

    font-size:18px;

    line-height:32px;

}

.venue-btn{

    display:inline-block;

    margin-top:25px;

    padding:15px 38px;

    background:linear-gradient(135deg,#ff7a00,#ff9d00);

    color:#fff;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.venue-btn:hover{

    color:#fff;

    transform:translateY(-5px);

    box-shadow:0 15px 30px rgba(255,122,0,.3);

}

.venue-map{

    overflow:hidden;

    border-radius:50%;

    width:520px;

    height:520px;

    margin:auto;

    box-shadow:0 30px 70px rgba(0,0,0,.12);

    border:12px solid #fff;

}

.venue-map iframe{

    width:100%;

    height:100%;

    border:none;

}

@media(max-width:991px){

.venue-map{

    width:100%;

    height:420px;

    border-radius:30px;

}

.venue-section{

    text-align:center;

}

.wave-line{

    justify-content:center;

}

.venue-tabs{

    justify-content:center;

}

}

@media(max-width:576px){

.venue-section h2{

    font-size:34px;

}

.venue-tabs{

    gap:20px;

    flex-wrap:wrap;

}

.venue-info h4{

    font-size:26px;

}

}





/*==================================
            FOOTER
===================================*/

.footer{

    position:relative;

    /* background:linear-gradient(135deg,#ffffff 0%,#fff1e5 50%,#ffe2cb 100%); */
        background:

    url("https://www.transparenttextures.com/patterns/hexellence.png"),

    linear-gradient(135deg,#ffffff,#fff4ea,#ffe5d1);
         background-size:auto,cover;

    padding:100px 0 0;

    overflow:hidden;

    border-top:1px solid rgba(255,122,0,.12);

}

/* Orange Glow */

.footer::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    top:-180px;

    right:-150px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(255,122,0,.15),
    transparent 70%);

}

.footer::after{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    left:-120px;

    bottom:-120px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(255,180,90,.15),
    transparent 70%);

}

.footer-wave{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    line-height:0;

}

.footer-wave svg{

    display:block;

    width:100%;

}

.footer-logo{

    width:190px;

    margin-bottom:25px;

}

.footer h4{

    color:#1f2937;

    font-size:22px;

    font-weight:700;

    margin-bottom:25px;

}

.footer-text{

    color:#666;

    line-height:30px;

}

.footer ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer ul li{

    margin-bottom:14px;

}

.footer ul li a{

    color:#555;

    transition:.35s;

    font-weight:500;

}

.footer ul li a:hover{

    color:#ff7a00;

    padding-left:8px;

}

.footer-contact li{

    display:flex;

    gap:12px;

    color:#555;

    align-items:flex-start;

}

.footer-contact i{

    color:#ff7a00;

    margin-top:5px;

    width:20px;

}

.social-links{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.social-links a{

    width:50px;

    height:50px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#fff;

    color:#ff7a00;

    border:1px solid rgba(255,122,0,.15);

    box-shadow:0 10px 25px rgba(0,0,0,.06);

    transition:.4s;

}

.social-links a:hover{

    background:linear-gradient(135deg,#ff7a00,#ffb347);

    color:#fff;

    transform:translateY(-8px) rotate(360deg);

}

.newsletter{

    display:flex;

    margin-top:20px;

}

.newsletter input{

    flex:1;

    height:55px;

    border:none;

    background:#fff;

    padding:0 20px;

    border-radius:50px 0 0 50px;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

    outline:none;

}

.newsletter button{

    border:none;

    padding:0 28px;

    border-radius:0 50px 50px 0;

    color:#fff;

    font-weight:600;

    background:linear-gradient(135deg,#ff7a00,#ffb347);

}

.newsletter button:hover{

    background:linear-gradient(135deg,#ff6a00,#ff9900);

}

.footer-bottom{

    margin-top:70px;

    border-top:1px solid rgba(0,0,0,.08);

    padding:25px 0;

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

}

.footer-bottom p{

    margin:0;

    color:#666;

    font-size:15px;

}

.footer-bottom a{

    color:#ff7a00;

    font-weight:600;

}

@media(max-width:991px){

.footer{

    text-align:center;

}

.social-links{

    justify-content:center;

}

.footer-contact li{

    justify-content:center;

}

.footer-bottom{

    justify-content:center;

    gap:10px;

}

.newsletter{

    flex-direction:column;

}

.newsletter input{

    border-radius:50px;

    margin-bottom:12px;

}

.newsletter button{

    border-radius:50px;

    height:52px;

}

}