/* =========================
   Google Font & Reset
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7f9fc;
    color:#222;
}

/* =========================
Header
========================= */

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:35px 8%;
    background:#fff;
}

.logo-left img,
.logo-right img{
    height:70px;
    transition:.4s;
}

.logo-left img:hover,
.logo-right img:hover{
    transform:scale(1.05);
}

/* =========================
Hero
========================= */

.hero{
    text-align:center;
    padding:12px 20px 40px;
    background:white;
}

.event-logo img{
    width:180px;
    margin-bottom:30px;
}

.hero h1{

font-size:52px;
font-weight:700;
line-height:1.3;

background:linear-gradient(90deg,#ff2f2f,#ff6a00);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

margin-bottom:40px;

}

/* =========================
Details
========================= */

.details{

display:flex;
justify-content:center;
align-items:center;
flex-wrap:wrap;

gap:25px;

margin-bottom:50px;

}

.item{

background:white;

padding:18px 28px;

border-radius:15px;

box-shadow:0 8px 25px rgba(0,0,0,.08);

font-size:18px;

transition:.4s;

}

.item:hover{

transform:translateY(-8px);

}

.item i{

color:#ff6200;

margin-right:8px;

}

.location{

width:100%;
max-width:750px;

}

/* =========================
Button
========================= */

.btn{

display:inline-block;

padding:18px 45px;

background:linear-gradient(90deg,#ff3d2e,#ff7300);

color:white;

text-decoration:none;

font-size:20px;

font-weight:600;

border-radius:50px;

transition:.4s;

box-shadow:0 15px 30px rgba(255,102,0,.3);

}

.btn:hover{

transform:translateY(-5px);

box-shadow:0 25px 40px rgba(255,102,0,.4);

}


/* 
for giving brief bg */

.event-info{

    max-width:1100px;
    margin:10px auto;
    padding:50px;
    background:#fff;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.event-info h2{

    font-size:38px;
    color:#222;
    margin-bottom:20px;

}

.intro{

    font-size:20px;
    font-weight:600;
    margin-bottom:20px;

}

.bullet-list{

    margin-left:25px;
    margin-bottom:40px;

}

.bullet-list li{

    font-size:18px;
    line-height:2;

}

.event-info h3{

    font-size:30px;
    margin-bottom:30px;
    color:#ff6600;

}

.benefit{

    display:flex;
    gap:18px;
    margin-bottom:25px;

}

.benefit i{

    color:#ff6600;
    font-size:24px;
    margin-top:4px;

}

.benefit p{

    font-size:18px;
    line-height:1.8;

}

.invite-box{

    margin-top:40px;
    padding:25px;

    background:linear-gradient(90deg,#ff5b2d,#ff8b00);

    color:white;

    border-radius:15px;

    font-size:20px;

    line-height:1.7;

}

.agenda{

    max-width:1100px;
    margin:80px auto;

}

.agenda h2{

    text-align:center;
    margin-bottom:30px;
    font-size:40px;

}

.agenda table{

    width:100%;
    border-collapse:collapse;
    overflow:hidden;
    border-radius:15px;
    box-shadow:0 15px 30px rgba(0,0,0,.08);

}

.agenda th{

    background:#ff6600;
    color:white;
    padding:18px;
    font-size:20px;

}

.agenda td{

    padding:18px;
    border-bottom:1px solid #eee;
    font-size:17px;

}

.agenda tr:hover{

    background:#fff5ef;

}


/* =========================
Footer
========================= */

footer{

background:#111;

padding:25px;

text-align:center;

color:white;

font-size:16px;

}

/* =========================
Responsive
========================= */

@media(max-width:992px){

.hero h1{

font-size:40px;

}

header{

flex-direction:column;

gap:25px;

}

}

@media(max-width:768px){

.hero h1{

font-size:32px;

}

.details{

flex-direction:column;

}

.item{

width:100%;

}

.about h2,
.benefits h2,
.agenda h2{

font-size:30px;

}

.event-logo img{

width:140px;

}

.btn{

font-size:18px;

padding:15px 35px;

}

}

@media(max-width:480px){

.hero h1{

font-size:26px;

}

.logo-left img,
.logo-right img{

height:50px;

}

.about,
.benefits,
.agenda{

padding:60px 20px;

}

}



/* Powered By */

.powered-by{
    background:#fff;
    padding:30px 20px;
    text-align:center;
}

.powered-by h3{
    font-size:32px;
    margin-bottom:35px;
    color:#333;
}

.company-logos{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:40px;
    flex-wrap:wrap;
}

.company-logos img{
    width:140px;
    height:auto;
    filter:grayscale(100%);
    transition:.4s;
}

.company-logos img:hover{
    filter:none;
    transform:scale(1.08);
}


/* =========================
   Event Note
========================= */

.event-note{
    max-width:1100px;
    margin:50px auto 80px;
    padding:0 20px;
}

.note-box{
    background:linear-gradient(135deg,#fff8f3,#fff);
    border-left:6px solid #ff6a00;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.note-box p{
    font-size:18px;
    line-height:1.8;
    color:#444;
    margin-bottom:20px;
}

.note-box strong{
    color:#ff6a00;
}

.note-box h3{
    color:#222;
    font-size:28px;
    text-align:center;
    font-weight:600;
}