/*====================================================
ABOUT CONFERENCES
====================================================*/

.about-conferences{
    padding:100px 0;
    background:#ffffff;
    position:relative;
    overflow:hidden;
}

/* Decorative Background */

.about-conferences::before{
    content:"";
    position:absolute;
    top:-180px;
    left:-180px;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(0,87,184,.04);
}

.about-conferences::after{
    content:"";
    position:absolute;
    bottom:-180px;
    right:-180px;
    width:360px;
    height:360px;
    border-radius:50%;
    background:rgba(0,123,255,.03);
}

/*=====================================
Layout
======================================*/

.about-conference-grid{

    position:relative;
    z-index:2;

    display:grid;

    grid-template-columns:1fr 1.1fr;

    gap:70px;

    align-items:center;

}

/*=====================================
Image
======================================*/

.about-conference-image{

    position:relative;

}

.about-conference-image img{

    width:100%;

    border-radius:20px;

    display:block;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

    transition:.4s ease;

}

.about-conference-image:hover img{

    transform:scale(1.03);

}

/* Decorative Border */

.about-conference-image::after{

    content:"";

    position:absolute;

    width:100%;

    height:100%;

    border:3px solid rgba(0,87,184,.12);

    border-radius:20px;

    top:20px;

    left:20px;

    z-index:-1;

}

/*=====================================
Content
======================================*/

.about-conference-content .section-label{

    display:inline-block;

    margin-bottom:18px;

    color:var(--primary);

    font-size:14px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:2px;

}

.about-conference-content h2{

    font-size:42px;

    line-height:1.3;

    color:#102A43;

    margin-bottom:25px;

}

.about-conference-content p{

    color:#667085;

    line-height:1.9;

    margin-bottom:18px;

    font-size:16px;

}

/*=====================================
Features
======================================*/

.conference-features{

    margin-top:35px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.conference-features div{

    display:flex;

    align-items:center;

    gap:12px;

    padding:14px 18px;

    background:#F8FAFC;

    border:1px solid #E6ECF3;

    border-radius:10px;

    font-weight:600;

    color:#102A43;

    transition:.3s;

}

.conference-features div:hover{

    background:#EEF5FF;

    border-color:rgba(0,87,184,.25);

    transform:translateY(-4px);

}

.conference-features i{

    color:var(--primary);

    font-size:20px;

}

/*=====================================
Responsive
======================================*/

@media(max-width:1100px){

    .about-conference-grid{

        gap:50px;

    }

}

@media(max-width:992px){

    .about-conference-grid{

        grid-template-columns:1fr;

    }

    .about-conference-image{

        max-width:700px;

        margin:auto;

    }

}

@media(max-width:768px){

    .about-conferences{

        padding:70px 0;

    }

    .about-conference-content h2{

        font-size:32px;

    }

    .conference-features{

        grid-template-columns:1fr;

    }

}

@media(max-width:576px){

    .about-conference-content h2{

        font-size:28px;

    }

    .about-conference-image::after{

        display:none;

    }

    .conference-features div{

        padding:12px 15px;

        font-size:15px;

    }

}
/*====================================================
CONFERENCE HERO
====================================================*/

.conference-hero{

    position:relative;

    min-height:650px;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

    background:url("../images/conference/hero.jpg")
    center center/cover no-repeat;

}

/* Dark Overlay */

.conference-hero .overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(7,25,55,.75),
        rgba(7,25,55,.82)
    );

}

/* Decorative Shapes */

.conference-hero::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    top:-180px;

    right:-180px;

}

.conference-hero::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    background:rgba(255,255,255,.03);

    bottom:-180px;

    left:-180px;

}

/*=====================================
Content
======================================*/

.conference-hero .hero-inner{

    position:relative;

    z-index:5;

    max-width:850px;

    text-align:center;

    color:#ffffff;

}

/* Label */

.conference-hero span{

    display:inline-block;

    padding:10px 22px;

    margin-bottom:25px;

    border-radius:30px;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    color:#ffffff;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

/* Heading */

.conference-hero h1{

    font-size:58px;

    line-height:1.2;

    font-weight:800;

    margin-bottom:25px;

    color:#ffffff;

}

/* Paragraph */

.conference-hero p{

    max-width:720px;

    margin:auto;

    margin-bottom:40px;

    font-size:19px;

    line-height:1.9;

    color:rgba(255,255,255,.92);

}

/*=====================================
Buttons
======================================*/

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

}

/* Primary */

.hero-buttons .btn-primary{

    padding:15px 34px;

    background:#ffffff;

    color:var(--primary);

    border-radius:8px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.hero-buttons .btn-primary:hover{

    background:#EEF5FF;

    transform:translateY(-3px);

}

/* Outline */

.hero-buttons .btn-outline{

    padding:15px 34px;

    border:2px solid rgba(255,255,255,.8);

    color:#ffffff;

    border-radius:8px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.hero-buttons .btn-outline:hover{

    background:#ffffff;

    color:var(--primary);

}

/*=====================================
Responsive
======================================*/

@media(max-width:992px){

    .conference-hero{

        min-height:560px;

    }

    .conference-hero h1{

        font-size:46px;

    }

}

@media(max-width:768px){

    .conference-hero{

        min-height:500px;

        padding:80px 0;

    }

    .conference-hero h1{

        font-size:36px;

    }

    .conference-hero p{

        font-size:17px;

    }

    .hero-buttons{

        flex-direction:column;

        align-items:center;

    }

    .hero-buttons a{

        width:240px;

        text-align:center;

    }

}

@media(max-width:576px){

    .conference-hero h1{

        font-size:30px;

    }

    .conference-hero p{

        font-size:16px;

    }

    .conference-hero span{

        font-size:12px;

        letter-spacing:1px;

    }

}
/*====================================================
FEATURED CONFERENCE
====================================================*/

.featured-conference{
    padding:100px 0;
    background:#F8FAFC;
    position:relative;
    overflow:hidden;
}

/* Decorative Background */

.featured-conference::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    top:-220px;
    right:-220px;
    background:rgba(0,87,184,.04);
    border-radius:50%;
}

.featured-conference::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    bottom:-180px;
    left:-180px;
    background:rgba(0,123,255,.03);
    border-radius:50%;
}

/*=====================================
Conference Card
======================================*/

.conference-card{

    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:340px 1fr;

    background:#ffffff;

    border-radius:22px;

    overflow:hidden;

    border:1px solid #E7EDF5;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    margin-top:60px;

    transition:.35s;

}

.conference-card:hover{

    transform:translateY(-8px);

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

/*=====================================
Poster
======================================*/

.conference-poster{

    background:#EEF5FF;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:40px;

}

.conference-poster img{

    width:100%;

    max-width:250px;

    border-radius:12px;

    box-shadow:0 20px 40px rgba(0,0,0,.18);

    transition:.35s;

}

.conference-card:hover .conference-poster img{

    transform:scale(1.05);

}

/*=====================================
Details
======================================*/

.conference-details{

    padding:45px;

}

/*=====================================
Badges
======================================*/

.conference-badges{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-bottom:25px;

}

.conference-badges span{

    padding:8px 16px;

    border-radius:30px;

    background:#EEF5FF;

    color:var(--primary);

    font-size:13px;

    font-weight:600;

}

/*=====================================
Heading
======================================*/

.conference-details h3{

    font-size:34px;

    color:#102A43;

    margin-bottom:18px;

    transition:.3s;

}

.conference-card:hover h3{

    color:var(--primary);

}

/*=====================================
Description
======================================*/

.conference-details p{

    color:#667085;

    line-height:1.9;

    margin-bottom:30px;

}

/*=====================================
Information Grid
======================================*/

.conference-info-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;

    margin-bottom:35px;

}

.conference-info-grid div{

    background:#F8FAFC;

    border:1px solid #E7EDF5;

    border-radius:12px;

    padding:18px;

    transition:.3s;

}

.conference-info-grid div:hover{

    border-color:rgba(0,87,184,.25);

    transform:translateY(-3px);

}

.conference-info-grid strong{

    display:block;

    color:#102A43;

    font-size:15px;

    margin-bottom:8px;

}

.conference-info-grid span{

    color:#667085;

    line-height:1.6;

    font-size:15px;

}

/*=====================================
Buttons
======================================*/

.conference-buttons{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

}

.conference-buttons a{

    text-decoration:none;

}

.conference-buttons .btn-outline{

    padding:14px 26px;

    border:2px solid var(--primary);

    border-radius:8px;

    color:var(--primary);

    font-weight:600;

    transition:.3s;

}

.conference-buttons .btn-outline:hover{

    background:var(--primary);

    color:#ffffff;

}

.conference-buttons .btn-primary{

    padding:14px 28px;

}

/*=====================================
Responsive
======================================*/

@media(max-width:1100px){

    .conference-card{

        grid-template-columns:280px 1fr;

    }

}

@media(max-width:900px){

    .conference-card{

        grid-template-columns:1fr;

    }

    .conference-poster{

        padding:40px;

    }

    .conference-poster img{

        max-width:220px;

    }

}

@media(max-width:768px){

    .featured-conference{

        padding:70px 0;

    }

    .conference-details{

        padding:30px;

    }

    .conference-details h3{

        font-size:28px;

    }

    .conference-info-grid{

        grid-template-columns:1fr;

    }

    .conference-buttons{

        flex-direction:column;

    }

    .conference-buttons a{

        width:100%;

        text-align:center;

    }

}

@media(max-width:576px){

    .conference-poster{

        padding:25px;

    }

    .conference-poster img{

        max-width:180px;

    }

    .conference-details{

        padding:25px;

    }

    .conference-details h3{

        font-size:24px;

    }

    .conference-badges span{

        font-size:12px;

        padding:7px 12px;

    }

}