
    *{
        margin:0;
        padding:0;
        box-sizing:border-box;
        font-family:'Poppins',sans-serif;
    }

    html{
        scroll-behavior:smooth;
    }

    body{
        background:#f8fafc;
        color:#222;
    }

    /*=============================
        TOP BAR
    ==============================*/

    .topbar{
        background:#0b1f4d;
        color:#fff;
        font-size:14px;
        padding:8px 0;
    }

    .topbar a{
        color:#fff;
        text-decoration:none;
        margin-left:15px;
    }

    .topbar i{
        color:#ffc107;
        margin-right:5px;
    }

    /*=============================
        NAVBAR
    ==============================*/

    .navbar{
        background:rgba(221,240,255,1);
        backdrop-filter:blur(12px);
        transition:.4s;
        padding:15px 0;
    }

    .navbar-brand{
        color:#000000!important;
        font-weight:800;
        font-size:28px;
    }

    .navbar-brand span{
        color:#0b1f4d;
    }

    .nav-link{
        color:#000000!important;
        font-weight:500;
        margin-left:15px;
        position:relative;
    }

    .nav-link::after{
        content:'';
        position:absolute;
        left:0;
        bottom:-5px;
        width:0;
        height:2px;
        background:#0b1f4d;
        transition:.4s;
    }

    .nav-link:hover::after{
        width:100%;
    }

    .btn-register{
        background:linear-gradient(45deg,#ff9800,#ff5722);
        color:#fff;
        border:none;
        padding:10px 25px;
        border-radius:40px;
        font-weight:600;
        transition:.3s;
    }

    .btn-register:hover{
        transform:translateY(-3px);
        box-shadow:0 15px 30px rgba(255,152,0,.35);
        color:#fff;
    }
    /* Navbar Toggler */

.navbar-toggler{
    border:2px solid #000000;
    border-radius:10px;
    padding:8px 10px;
    box-shadow:none !important;
}

.navbar-toggler:focus{
    box-shadow:none;
}

.navbar-toggler-icon{
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23000000' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.8' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
    /*=========================
ABOUT SECTION
==========================*/

.about-section{

padding:100px 0;

background:#fff;

position:relative;

overflow:hidden;

}

.about-section::before{

content:'';

position:absolute;

width:350px;

height:350px;

background:#eef4ff;

border-radius:50%;

top:-150px;

right:-150px;

}

.about-image{

position:relative;

}

.about-image img{

border-radius:25px;

}

.experience-box{

position:absolute;

bottom:25px;

left:25px;

background:linear-gradient(45deg,#0d6efd,#6610f2);

padding:20px 30px;

color:#fff;

border-radius:20px;

text-align:center;

box-shadow:0 20px 40px rgba(13,110,253,.3);

}

.experience-box h2{

font-size:42px;

font-weight:700;

margin:0;

}

.about-tag{

display:inline-block;

padding:8px 20px;

background:#e8f1ff;

color:#0d6efd;

font-weight:600;

border-radius:30px;

}

.about-title{

font-size:42px;

font-weight:700;

color:#0b1f4d;

line-height:1.3;

}

.about-text{

color:#666;

line-height:1.9;

font-size:17px;

}

.feature-list{

list-style:none;

padding:0;

}

.feature-list li{

margin-bottom:15px;

font-size:16px;

}

.feature-list i{

color:#0d6efd;

margin-right:10px;

}

.about-small-card{

display:flex;

gap:15px;

align-items:center;

background:#fff;

padding:18px;

border-radius:18px;

box-shadow:0 12px 30px rgba(0,0,0,.08);

margin-bottom:20px;

transition:.3s;

}

.about-small-card:hover{

transform:translateY(-8px);

}

.about-small-card i{

font-size:34px;

color:#0d6efd;

}

.btn-about{

padding:14px 35px;

border-radius:50px;

background:linear-gradient(45deg,#0d6efd,#6610f2);

color:#fff;

font-weight:600;

}

.btn-about:hover{

color:#fff;

transform:translateY(-3px);

box-shadow:0 15px 35px rgba(13,110,253,.3);

}
/*==============================
      SPEAKERS
==============================*/

.speakers-section{
    background:#f8fbff;
    padding:100px 0;
}

.speaker-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    text-align:center;
    transition:.4s;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    height:100%;
}

.speaker-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 45px rgba(0,0,0,.15);
}

.speaker-image{
    position:relative;
    overflow:hidden;
}

.speaker-image img{
    width:100%;
    height:360px;
    object-fit:cover;
    transition:.4s;
}

.speaker-card:hover .speaker-image img{
    transform:scale(1.08);
}

.speaker-social{
    position:absolute;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:12px;
    opacity:0;
    transition:.4s;
}

.speaker-card:hover .speaker-social{
    opacity:1;
}

.speaker-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#0d6efd;
    text-decoration:none;
    transition:.3s;
}

.speaker-social a:hover{
    background:#0d6efd;
    color:#fff;
}

.speaker-content{
    padding:30px;
}

.speaker-country{
    display:inline-block;
    background:#eef5ff;
    color:#0d6efd;
    padding:6px 15px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:15px;
}

.speaker-role{
    color:#ff9800;
    font-weight:600;
    margin:10px 0;
}

.speaker-content h4{
    font-weight:700;
    color:#0b1f4d;
}
/*=========================
      PROGRAM
=========================*/

.program-section{
    background:#ffffff;
    padding:100px 0;
}

.program-tabs .nav-link{
    border-radius:15px;
    margin:0 8px;
    padding:18px 35px;
    font-weight:600;
    color:#0b1f4d;
    background:#eef3ff;
    transition:.3s;
}

.program-tabs .nav-link.active{
    background:linear-gradient(45deg,#0d6efd,#6610f2);
    color:#fff !important;
}

.timeline{
    position:relative;
    margin-left:25px;
}

.timeline::before{
    content:'';
    position:absolute;
    left:20px;
    top:0;
    width:3px;
    height:100%;
    background:#0d6efd;
}

.timeline-item{
    position:relative;
    padding-left:80px;
    margin-bottom:40px;
}

.timeline-item::before{
    content:'';
    position:absolute;
    left:10px;
    top:8px;
    width:22px;
    height:22px;
    border-radius:50%;
    background:#ffc107;
    border:4px solid #0d6efd;
}

.timeline-time{
    font-weight:700;
    color:#0d6efd;
    margin-bottom:10px;
}

.timeline-content{
    background:#fff;
    padding:25px;
    border-radius:18px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.3s;
}

.timeline-content:hover{
    transform:translateX(10px);
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.timeline-content h5{
    font-weight:700;
    color:#0b1f4d;
}
/*===========================
      REGISTRATION
===========================*/

.registration-section{

padding:100px 0;

background:#f8fbff;

}

.price-card{

background:#fff;

padding:40px;

border-radius:25px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.4s;

position:relative;

height:100%;

}

.price-card:hover{

transform:translateY(-15px);

}

.price-header{

text-align:center;

margin-bottom:30px;

}

.price-header h2{

font-size:48px;

font-weight:700;

color:#0d6efd;

}

.price-header p{

color:#888;

}

.price-card ul li{

padding:10px 0;

font-size:16px;

}

.price-card ul li i{

color:#0d6efd;

margin-right:10px;

}

.featured-card{

border:3px solid #ffc107;

transform:scale(1.04);

}

.popular-tag{

position:absolute;

top:-15px;

left:50%;

transform:translateX(-50%);

background:#ff9800;

color:#fff;

padding:8px 20px;

border-radius:30px;

font-weight:600;

}
/*=================================
      COMMITTEE SECTION
==================================*/

.committee-section{

padding:100px 0;

background:#ffffff;

}

.committee-card{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 12px 35px rgba(0,0,0,.08);

transition:.4s;

height:100%;

}

.committee-card:hover{

transform:translateY(-12px);

box-shadow:0 25px 45px rgba(0,0,0,.18);

}

.committee-img{

position:relative;

overflow:hidden;

}

.committee-img img{

width:100%;

height:320px;

object-fit:cover;

transition:.5s;

}

.committee-card:hover img{

transform:scale(1.08);

}

.committee-social{

position:absolute;

left:50%;

bottom:20px;

transform:translateX(-50%);

display:flex;

gap:12px;

opacity:0;

transition:.4s;

}

.committee-card:hover .committee-social{

opacity:1;

}

.committee-social a{

width:42px;

height:42px;

border-radius:50%;

background:#fff;

display:flex;

align-items:center;

justify-content:center;

color:#0d6efd;

text-decoration:none;

transition:.3s;

}

.committee-social a:hover{

background:#0d6efd;

color:#fff;

}

.committee-content{

padding:25px;

text-align:center;

}

.committee-role{

display:inline-block;

padding:6px 18px;

border-radius:30px;

background:#eef5ff;

color:#0d6efd;

font-size:14px;

font-weight:600;

margin-bottom:15px;

}

.committee-content h5{

font-weight:700;

color:#0b1f4d;

margin-bottom:10px;

}

.committee-content p{

color:#6c757d;

margin:0;

}
/*==============================
        VENUE
===============================*/

.venue-section{

padding:100px 0;

background:#f8fbff;

}

.venue-card{

background:#fff;

padding:40px;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

height:100%;

}

.venue-card h3{

font-weight:700;

color:#0b1f4d;

}

.venue-info p{

margin-bottom:15px;

}

.venue-info i{

color:#0d6efd;

margin-right:10px;

}

.map-card{

border-radius:20px;

overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.contact-card{

background:#fff;

padding:35px;

text-align:center;

border-radius:20px;

transition:.3s;

box-shadow:0 10px 30px rgba(0,0,0,.08);

height:100%;

}

.contact-card:hover{

transform:translateY(-10px);

}

.contact-icon{

width:70px;

height:70px;

margin:auto;

border-radius:50%;

background:linear-gradient(45deg,#0d6efd,#6610f2);

color:#fff;

display:flex;

align-items:center;

justify-content:center;

font-size:28px;

margin-bottom:20px;

}

.contact-form{

background:#fff;

padding:45px;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.contact-form .form-control{

border-radius:12px;

padding:14px;

}

.contact-form textarea{

resize:none;

}
/*=====================================
        PREMIUM HERO SECTION
======================================*/

.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
}

/* Hero Slider */

#heroSlider{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:1;
}

.hero-image{
    width:100%;
    height:100vh;
    object-fit:cover;
    animation:zoomHero 10s linear infinite;
}

/* Dark Overlay */

.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(5,20,55,.65);
    z-index:2;
}

/* Hero Content */

.hero-content-area{
    position:relative;
    z-index:5;
    height:100vh;
    display:flex;
    align-items:center;
}

.hero-content{
    color:#fff;
}

.hero-subtitle{

    display:inline-block;

    padding:10px 25px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.18);

    font-size:15px;

    margin-bottom:25px;

}

.hero-content h1{

    font-size:70px;

    font-weight:800;

    line-height:1.15;

    margin-bottom:25px;

}

.hero-content h1 span{

    color:#ffc107;

}

.hero-content p{

    font-size:20px;

    color:#f5f5f5;

    line-height:1.8;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.hero-btn{

    padding:15px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.btn-primary-custom{

    background:#ffc107;

    color:#111;

    border:none;

}

.btn-primary-custom:hover{

    background:#ffb300;

    transform:translateY(-4px);

}

.btn-outline-custom{

    border:2px solid #fff;

    color:#fff;

}

.btn-outline-custom:hover{

    background:#fff;

    color:#111;

}

/* Conference Card */

.hero-card{

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(18px);

    border-radius:25px;

    border:1px solid rgba(255,255,255,.18);

    padding:35px;

    color:#fff;

    box-shadow:0 20px 50px rgba(0,0,0,.35);

}

.hero-card h3{

    color:#ffc107;

    margin-bottom:20px;

}

.hero-card p{

    margin-bottom:15px;

}

/* Countdown */

.countdown{

    display:flex;

    justify-content:space-between;

    gap:12px;

    margin-top:25px;

}

.count-box{

    flex:1;

    background:rgba(255,255,255,.15);

    border-radius:18px;

    padding:20px 10px;

    text-align:center;

    transition:.35s;

}

.count-box:hover{

    background:rgba(255,255,255,.22);

    transform:translateY(-6px);

}

.count-box h2{

    font-size:34px;

    color:#ffc107;

    font-weight:700;

    margin-bottom:8px;

}

.count-box span{

    color:#fff;

    font-size:14px;

}

/* Floating Shapes */

.shape{

    position:absolute;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    animation:float 7s ease-in-out infinite;

    z-index:3;

}

.shape1{

    width:180px;

    height:180px;

    top:8%;

    left:6%;

}

.shape2{

    width:110px;

    height:110px;

    right:12%;

    bottom:12%;

    animation-delay:2s;

}

.shape3{

    width:80px;

    height:80px;

    top:40%;

    right:28%;

    animation-delay:4s;

}

/* Scroll */

.scroll-down{

    position:absolute;

    bottom:25px;

    left:50%;

    transform:translateX(-50%);

    color:#fff;

    font-size:34px;

    z-index:20;

    animation:bounce 2s infinite;

}

/* Animations */

@keyframes zoomHero{

    0%{
        transform:scale(1);
    }

    100%{
        transform:scale(1.15);
    }

}

@keyframes float{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-20px);
    }

}

@keyframes bounce{

    0%,100%{
        transform:translate(-50%,0);
    }

    50%{
        transform:translate(-50%,10px);
    }

}

/* Responsive */

@media(max-width:991px){

.hero{

height:auto;

}

.hero-content-area{

height:auto;

padding:140px 0 80px;

}

.hero-content{

text-align:center;

margin-bottom:50px;

}

.hero-content h1{

font-size:44px;

}

.hero-buttons{

justify-content:center;

}

.hero-card{

margin-top:30px;

}

.count-box{

padding:18px 8px;

}

.count-box h2{

font-size:26px;

}

.hero-image{

height:100%;

}

}/*================================
            FOOTER
================================*/

.footer{

background:#081c3a;

color:#fff;

padding:80px 0 25px;

}

.footer-logo{

font-size:34px;

font-weight:800;

text-decoration:none;

color:#fff;

}

.footer-logo span{

color:#ffc107;

}

.footer-text{

color:#d8d8d8;

line-height:1.8;

}

.footer-title{

font-weight:700;

margin-bottom:25px;

position:relative;

}

.footer-title::after{

content:'';

position:absolute;

left:0;

bottom:-10px;

width:45px;

height:3px;

background:#ffc107;

}

.footer-links{

list-style:none;

padding:0;

}

.footer-links li{

margin-bottom:12px;

}

.footer-links a{

text-decoration:none;

color:#d8d8d8;

transition:.3s;

}

.footer-links a:hover{

color:#ffc107;

padding-left:8px;

}

.footer-contact p{

margin-bottom:18px;

color:#d8d8d8;

}

.footer-contact i{

color:#ffc107;

margin-right:10px;

}

.footer-social{

margin-top:30px;

display:flex;

gap:12px;

}

.footer-social a{

width:42px;

height:42px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

background:rgba(255,255,255,.08);

color:#fff;

transition:.3s;

text-decoration:none;

}

.footer-social a:hover{

background:#ffc107;

color:#081c3a;

transform:translateY(-5px);

}

.footer-divider{

margin:45px 0 25px;

border-color:rgba(255,255,255,.15);

}

.copyright{

margin:0;

color:#bbb;

}

.developer{

margin:0;

color:#bbb;

}

/*==========================
      BACK TO TOP
==========================*/

#backTop{

position:fixed;

right:25px;

bottom:95px;

width:52px;

height:52px;

background:#0d6efd;

color:#fff;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

text-decoration:none;

font-size:26px;

box-shadow:0 10px 30px rgba(0,0,0,.2);

transition:.3s;

z-index:999;

}

#backTop:hover{

background:#ffc107;

color:#111;

}

/*==========================
      WHATSAPP
==========================*/

.whatsapp{

position:fixed;

right:25px;

bottom:25px;

width:58px;

height:58px;

border-radius:50%;

background:#25D366;

color:#fff;

display:flex;

justify-content:center;

align-items:center;

font-size:30px;

text-decoration:none;

box-shadow:0 10px 30px rgba(0,0,0,.25);

z-index:999;

transition:.3s;

}

.whatsapp:hover{

transform:scale(1.1);

color:#fff;

}
.section-padding{
    padding:90px 0;
}

.section-subtitle{
    color:#0d6efd;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}

.section-title{
    font-size:42px;
    font-weight:700;
    color:#0b1f4d;
}

.section-desc{
    color:#6c757d;
    max-width:750px;
    margin:auto;
}

.highlight-card{

    background:#fff;

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    transition:.4s;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    height:100%;

    position:relative;

    overflow:hidden;

}

.highlight-card::before{

content:'';

position:absolute;

left:0;

top:0;

width:100%;

height:4px;

background:linear-gradient(90deg,#0d6efd,#6610f2,#ff9800);

transform:scaleX(0);

transition:.4s;

}

.highlight-card:hover::before{

transform:scaleX(1);

}

.highlight-card:hover{

transform:translateY(-12px);

box-shadow:0 25px 50px rgba(0,0,0,.18);

}

.highlight-icon{

width:90px;

height:90px;

margin:auto;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:36px;

background:linear-gradient(135deg,#0d6efd,#6610f2);

color:#fff;

margin-bottom:25px;

transition:.4s;

}

.highlight-card:hover .highlight-icon{

transform:rotateY(180deg);

background:linear-gradient(135deg,#ff9800,#ff5722);

}

.highlight-card h4{

font-weight:700;

color:#0b1f4d;

margin-bottom:15px;

}

.highlight-card p{

color:#6c757d;

font-size:15px;

line-height:1.7;

}

/* Statistics Strip */

.stats-strip{

margin-top:70px;

background:linear-gradient(135deg,#0b1f4d,#0d6efd);

border-radius:25px;

padding:40px 20px;

color:#fff;

box-shadow:0 20px 40px rgba(13,110,253,.25);

}

.stat-box{

text-align:center;

}

.stat-box h2{

font-size:46px;

font-weight:800;

margin-bottom:5px;

color:#ffc107;

}

.stat-box p{

margin:0;

font-size:17px;

letter-spacing:.5px;

}

@media(max-width:768px){

.section-title{

font-size:32px;

}

.stats-strip{

padding:30px 15px;

}

.stat-box{

margin-bottom:25px;

}

}
.navbar-brand{
    padding: 0;
}

/* ===========================
   Desktop Large (1400px+)
=========================== */

.navbar-brand .logo{
    height:120px;
    width:auto;
    transition:0.3s ease;
}

/* ===========================
   Laptop (1200px)
=========================== */

@media (max-width:1200px){

    .navbar-brand .logo{
        height:100px;
    }

}

/* ===========================
   Tablet Landscape
=========================== */

@media (max-width:992px){

    .navbar-brand .logo{
        height:100px;
    }

}

/* ===========================
   Tablet Portrait
=========================== */

@media (max-width:768px){

    .navbar-brand .logo{
        height:85px;
    }

}

/* ===========================
   Mobile Large
=========================== */

@media (max-width:576px){

    .navbar-brand .logo{
        height:85px;
    }

}

/* ===========================
   Small Mobile
=========================== */

@media (max-width:400px){

    .navbar-brand .logo{
        height:85px;
    }

}

.navbar-brand .logo:hover{
    transform:scale(1.08);
}
a:hover ~ .cursor,
button:hover ~ .cursor{
    transform:translate(-50%,-50%) scale(1.8);
}
#cursor{
    position:fixed;
    width:20px;
    height:20px;
    background:#ffc107;
    border-radius:50%;
    pointer-events:none;
    z-index:999999;
    left:0;
    top:0;
    transform:translate(-50%,-50%);
    transition:width .2s,height .2s;
}