/*=========================
RESET
==========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8f8f8;
    color:#222;
}

/*=========================
HEADER
==========================*/

header{
    background:#fff;
    padding:10px 5%;
}

.logo img{
    width:120px;
}

/*=========================
HERO
==========================*/

.hero{

    position:relative;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;

    background:#ff6124;

    min-height:100vh;

    padding:70px 8%;

    overflow:hidden;

}

/* LEFT */

.left{

    width:50%;

    color:white;

    z-index:2;

}

.left h1{

    font-size:72px;

    line-height:1.05;

    font-weight:700;

    margin-bottom:20px;

}

.left p{

    font-size:30px;

    margin-bottom:35px;

}

.left strong{

    color:#ffe600;

}

/* BADGES */

.badges{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-bottom:40px;

}

.badge{

    background:#222;

    color:#fff;

    padding:15px 22px;

    border-radius:50px;

    font-size:18px;

}

.badge i{

    margin-right:8px;

}

/* BUTTON */

.btn{

    display:inline-block;

    margin-top:-20px;

    padding:18px 40px;

    border-radius:50px;

    background:#fff;

    color:#ff6124;

    text-decoration:none;

    font-weight:700;

    transition:.4s;

}

.btn:hover{

    transform:translateY(-5px);

    background:#111;

    color:white;

}

/* PARTNER LOGO */

.partner img{

    width:280px;

    margin-top:20px;

}

/*=========================
RIGHT
==========================*/

.right{

    width:45%;

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

/* GIRL IMAGE */

.girl{

    width:100%;

    max-width:500px;

    border-radius:180px;

    position:relative;

    z-index:2;

    box-shadow:0 20px 50px rgba(0,0,0,.25);

}

/* SEARCH BAR */

.search{

    position:absolute;

    top:100px;

    left:-40px;

    background:white;

    padding:15px 25px;

    border-radius:40px;

    font-size:16px;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

    z-index:5;

}

/* CHAT */

.chat{

    position:absolute;

    bottom:20px;

    right:-20px;

    background:#eef3ff;

    color:#222;

    padding:20px;

    width:320px;

    border-radius:25px;

    box-shadow:0 15px 35px rgba(0,0,0,.18);

    z-index:5;

    line-height:1.6;

}

/*=========================
SHAPES
==========================*/

.circle{

    position:absolute;

    border-radius:30px;

    opacity:.8;

}

.one{

    width:100px;

    height:100px;

    background:#b893ff;

    top:50px;

    right:150px;

}

.two{

    width:80px;

    height:80px;

    background:white;

    left:45%;

    bottom:120px;

}

.three{

    width:120px;

    height:120px;

    background:#93a8ff;

    right:40%;

    bottom:-20px;

}

/*=========================
ABOUT
==========================*/

.about{

    padding:90px 10%;

    text-align:center;

    background:white;

}

.about h2{

    font-size:42px;

    margin-bottom:20px;

}

.about p{

    max-width:850px;

    margin:auto;

    font-size:20px;

    color:#555;

    line-height:1.8;

}

/*=========================
FEATURES
==========================*/

.features{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

    padding:80px 10%;

    background:#f5f7fb;

}

.card{

    background:white;

    padding:40px;

    border-radius:20px;

    text-align:center;

    transition:.4s;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.card:hover{

    transform:translateY(-10px);

}

.card i{

    font-size:50px;

    color:#ff6124;

    margin-bottom:20px;

}

.card h3{

    margin-bottom:15px;

}

/*=========================
FOOTER
==========================*/

footer{

    background:#111;

    color:white;

    text-align:center;

    padding:40px;

}

footer img{

    width:120px;

    margin:15px;

}

/*=========================
RESPONSIVE
==========================*/

@media(max-width:992px){

.hero{

flex-direction:column;

text-align:center;

}

.left,
.right{

width:100%;

}

.left h1{

font-size:52px;

}

.search{

position:static;

margin:20px auto;

}

.chat{

position:static;

margin:20px auto;

}

}

@media(max-width:576px){

.left h1{

font-size:40px;

}

.left p{

font-size:22px;

}

.badge{

width:100%;

text-align:center;

}

.partner img{

width:220px;
margin-top: 0px;

}

}

/* Animation Classes */

.left,
.right,
.card,
.about,
.partner,
.badge{
    opacity:0;
    transform:translateY(40px);
    transition:0.8s ease;
}

.show,
.active{
    opacity:1 !important;
    transform:translateY(0) !important;
}


/*==============================
Event Details
==============================*/

.event-details{

    padding:80px 8%;
    background:#fff;

}

.container{

    max-width:1100px;
    margin:auto;

}

.event-details h2{

    font-size:34px;
    font-weight:600;
    margin-bottom:30px;
    color:#222;

}

.event-details h2 span{

    color:#ff5a1f;

}

.topics{

    margin-left:25px;
    margin-bottom:50px;

}

.topics li{

    font-size:22px;
    margin-bottom:18px;
    line-height:1.7;

}

.topics li::marker{

    color:#ff5a1f;
    font-size:24px;

}

.event-details h3{

    font-size:34px;
    color:#ff5a1f;
    margin-bottom:25px;

}




/*==========================
About Session
==========================*/

.intro-section{

    padding:80px 8%;
    background:#f8fafc;

}

.intro-card{

    max-width:1100px;
    margin:auto;

    background:#fff;

    padding:45px 50px;

    border-radius:18px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    border-top:5px solid #ff5a1f;

}

.intro-card h2{

    font-size:34px;

    margin-bottom:30px;

    color:#ff5a1f;

    font-weight:700;

}

.intro-card p{

    font-size:19px;

    color:#444;

    line-height:1.9;

    margin-bottom:25px;

    text-align:justify;

}

.intro-card span{

    color:#ff5a1f;

    font-weight:600;

}







/*==========================
Session Covering
==========================*/

.covering{
    padding:80px 8%;
    background:#fff;
}

.covering .container{
    max-width:1200px;
    margin:auto;
}

.heading h2{
    font-size:36px;
    font-weight:700;
    color:#222;
    margin-bottom:50px;
    text-align:center;
    line-height:1.4;
}

.heading span{
    color:#ff5a1f;
}

.cover-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.cover-card{
    background:#fff;
    border-radius:18px;
    padding:35px;
    text-align:center;
    border-top:5px solid #ff5a1f;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.cover-card:hover{
    transform:translateY(-8px);
}

.cover-card i{
    font-size:42px;
    color:#ff5a1f;
    margin-bottom:20px;
}

.cover-card p{
    font-size:20px;
    line-height:1.7;
    color:#444;
}





/*==============================
Agenda Section
==============================*/

.agenda-section{
    padding:20px 8%;
    background:#fff;
}

.agenda-section .container{
    max-width:1100px;
    margin:auto;
}

.agenda-section h2{
    font-size:34px;
    color:#ff5a1f;
    margin-bottom:30px;
    font-weight:600;
}

/* Table */

.agenda-table{
    width:100%;
    border-collapse:collapse;
    border:1px solid #ddd;
    background:#fff;
}

.agenda-table th{
    background:#fff8f4;
    color:#ff5a1f;
    font-size:22px;
    padding:16px;
    border:1px solid #ddd;
    text-align:center;
}

.agenda-table td{
    padding:18px;
    border:1px solid #ddd;
    font-size:17px;
    color:#444;
    line-height:1.7;
    vertical-align:top;
}

.agenda-table tbody tr:nth-child(even){
    background:#fcfcfc;
}

.agenda-table tbody tr:hover{
    background:#fff5ef;
    transition:.3s;
}




.attendees{
    margin-top:60px;
}

.attendees h2{
    color:#ff5a1f;
    font-size:34px;
    margin-bottom:20px;
}

.attendees p{
    font-size:20px;
    line-height:1.8;
    color:#444;
    max-width:1000px;
}



#register{
    background:#fffaf4;
    padding:80px 0;
}

#register .shadow{
    box-shadow:0 15px 40px rgba(0,0,0,.08)!important;
}

#register .form-control{
    height:60px;
    border-radius:10px;
    border:1px solid #ddd;
    font-size:17px;
}

#register .form-control:focus{
    border-color:#ff5722;
    box-shadow:0 0 0 0.15rem rgba(255,87,34,.15);
}

#register button{
    font-size:20px;
    transition:.3s;
}

#register button:hover{
    transform:translateY(-2px);
}