/* ===========================================================
   BUILDXCON 2027
   Header Styles
   Version : 1.0
===========================================================*/

/* ===========================================================
   BUILDXCON 2027
   HEADER + DROPDOWN MENU
   =========================================================== */


/* ===========================================================
   RESET
=========================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-size: 16px;
    color: var(--text);
    background: var(--background);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}


/* ===========================================================
   CONTAINER
=========================================================== */

.container {

    width: 100%;

    max-width: 1320px;

    margin: auto;

    padding: 0 20px;

}

/*==================================================
   BUILDXCON GLOBAL HEADER
   White Header + Fixed on Scroll
==================================================*/

.header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:9999;

    background:#ffffff;

    box-shadow:
        0 5px 25px rgba(0,0,0,.08);

    transition:
        background .35s ease,
        box-shadow .35s ease,
        padding .35s ease;
}


/*==================================================
   SCROLLED HEADER
   Keep same white appearance
==================================================*/

.header.scrolled{

    background:#ffffff;

    box-shadow:
        0 8px 30px rgba(0,0,0,.10);

    backdrop-filter:blur(12px);
}


/*==================================================
   NAVBAR
==================================================*/

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:95px;
}


/*==================================================
   LOGO
==================================================*/

.logo{

    display:flex;

    align-items:center;
}

.logo img{

    height:55px;

    width:auto;

    display:block;

    transition:.3s;
}


/*==================================================
   DESKTOP MENU
==================================================*/

.nav-menu{

    display:flex;

    align-items:center;

    gap:38px;

    margin:0;
    padding:0;

    list-style:none;
}

.nav-menu li{

    position:relative;
}


/* Main menu links */

.nav-menu li a{

    position:relative;

    display:flex;

    align-items:center;

    gap:7px;

    color:#0E3B78;

    font-size:15px;

    font-weight:700;

    letter-spacing:.2px;

    transition:
        color .3s ease;
}


/*==================================================
   MENU HOVER
==================================================*/

.nav-menu li a:hover{

    color:#F7941D;
}


/*==================================================
   ACTIVE MENU
==================================================*/

.nav-menu li a.active{

    color:#F7941D;
}


/*==================================================
   MENU UNDERLINE
==================================================*/

.nav-menu > li > a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#F7941D;

    transition:
        width .3s ease;
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after{

    width:100%;
}


/*==================================================
   DROPDOWN ARROW
==================================================*/

.nav-menu li.has-submenu > a{

    cursor:pointer;
}

.nav-menu li.has-submenu > a .fa-chevron-down{

    font-size:10px;

    transition:
        transform .3s ease;
}


/* Arrow when submenu is open */

.nav-menu li.has-submenu:hover > a .fa-chevron-down,
.nav-menu li.submenu-open > a .fa-chevron-down{

    transform:rotate(180deg);
}


/*==================================================
   DESKTOP DROPDOWN / SUBMENU
==================================================*/

.nav-menu .submenu{

    position:absolute;

    top:calc(100% + 15px);

    left:0;

    min-width:230px;

    padding:10px 0;

    background:#ffffff;

    border-radius:10px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.14);

    border:
        1px solid #edf0f5;

    opacity:0;

    visibility:hidden;

    transform:
        translateY(8px);

    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease;

    z-index:10000;
}


/* Dropdown visible */

.nav-menu li.has-submenu:hover > .submenu{

    opacity:1;

    visibility:visible;

    transform:
        translateY(0);
}


/* Small bridge between menu and dropdown */

.nav-menu li.has-submenu::after{

    content:"";

    position:absolute;

    left:0;

    right:0;

    top:100%;

    height:15px;

    background:transparent;
}


/* Submenu item */

.nav-menu .submenu li{

    width:100%;

    position:relative;
}


/* Submenu link */

.nav-menu .submenu li a{

    display:flex;

    align-items:center;

    justify-content:space-between;

    width:100%;

    padding:12px 18px;

    color:#0E3B78;

    font-size:14px;

    font-weight:600;

    white-space:nowrap;

    transition:
        background .25s ease,
        color .25s ease;
}


/* Submenu hover */

.nav-menu .submenu li a:hover{

    background:#f5f8fc;

    color:#F7941D;
}


/* Remove main underline from submenu */

.nav-menu .submenu li a::after{

    display:none;
}


/*==================================================
   HEADER BUTTON
==================================================*/

.header-btn{

    display:flex;

    align-items:center;
}

.header-btn .btn-primary{

    white-space:nowrap;
}

.btn-primary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 15px 34px;

    background: var(--primary);

    color: #ffffff;

    border-radius: 50px;

    font-size: 15px;

    font-weight: 700;

    transition: .35s;

}


.btn-primary:hover {

    transform:
        translateY(-3px);

    background:
        var(--secondary);

}


/*==================================================
   MOBILE TOGGLE
==================================================*/

.mobile-toggle{

    display:none;

    width:42px;

    height:42px;

    align-items:center;

    justify-content:center;

    font-size:26px;

    cursor:pointer;

    color:#0E3B78;
}

.header.scrolled .nav-menu li a {
    color:#0E3B78;
}

/* Keep mobile icon blue after scroll */

.header.scrolled .mobile-toggle{

    color:#0E3B78;
}


/*==================================================
   TABLET
==================================================*/

@media(max-width:1100px){

    .nav-menu{

        gap:25px;
    }

    .nav-menu li a{

        font-size:14px;
    }

    .header-btn .btn-primary{

        padding:13px 24px;

        font-size:14px;
    }

}


/*==================================================
   MOBILE / TABLET MENU
==================================================*/

/*==================================================
  TABLET + MOBILE HEADER
==================================================*/

@media(max-width:991px){

    .navbar{

        height:85px;

        position:relative;

    }


    .logo img{

        height:48px;

    }


    /*----------------------------------------------
      Hamburger
    ----------------------------------------------*/

    .mobile-toggle{

        display:flex;

        align-items:center;

        justify-content:center;

        width:42px;

        height:42px;

        color:#0E3B78;

        font-size:25px;

        cursor:pointer;

        z-index:10002;

    }


    /*----------------------------------------------
      Hide desktop CTA
    ----------------------------------------------*/

    .header-btn{

        display:none;

    }


    /*----------------------------------------------
      MOBILE NAVIGATION
    ----------------------------------------------*/

    nav{

        display:block;

        position:absolute;

        top:85px;

        left:0;

        width:100%;

        background:#ffffff;

        box-shadow:
            0 15px 35px rgba(0,0,0,.12);

        max-height:0;

        overflow:hidden;

        opacity:0;

        visibility:hidden;

        transition:
            max-height .35s ease,
            opacity .25s ease,
            visibility .25s ease;

        z-index:10001;

    }


    /*----------------------------------------------
      OPEN MOBILE MENU
      Works when JS adds .active to nav
    ----------------------------------------------*/

    nav.active{

        max-height:80vh;

        overflow-y:auto;

        opacity:1;

        visibility:visible;

    }


    /*----------------------------------------------
      MOBILE MENU LIST
    ----------------------------------------------*/

    .nav-menu{

        display:flex;

        flex-direction:column;

        align-items:stretch;

        gap:0;

        width:100%;

        margin:0;

        padding:10px 20px 20px;

    }


    .nav-menu li{

        width:100%;

        border-bottom:1px solid #edf0f5;

    }


    .nav-menu li:last-child{

        border-bottom:none;

    }


    .nav-menu li a{

        display:flex;

        align-items:center;

        justify-content:space-between;

        width:100%;

        padding:16px 5px;

        color:#0E3B78;

        font-size:15px;

    }


    /* Remove desktop underline */

    .nav-menu li a::after{

        display:none;

    }


    /*----------------------------------------------
      MOBILE SUBMENU
    ----------------------------------------------*/

    .nav-menu .submenu{

        position:static;

        width:100%;

        min-width:0;

        display:none;

        padding:0 0 8px;

        background:#f7f9fc;

        border:none;

        border-radius:0;

        box-shadow:none;

        opacity:1;

        visibility:visible;

        transform:none;

    }


    /* JS can add active/open class */

    .nav-menu li.submenu-open > .submenu{

        display:block;

    }


    .nav-menu .submenu li{

        border-bottom:none;

    }


    .nav-menu .submenu li a{

        padding:

            12px 15px 12px 25px;

        font-size:14px;

        color:#0E3B78 !important;

    }


    .nav-menu .submenu li a:hover{

        background:#eef4fb;

        color:#F7941D !important;

    }

}


/*==================================================
   SMALL MOBILE
==================================================*/

@media(max-width:576px){

    .container{

        padding:0 18px;

    }

    .logo img{

        height:42px;

    }

    .navbar{

        height:75px;

    }

    nav{

        top:75px;

    }

}
/* ===========================================================
   HEADER
=========================================================== */




/* ===========================================================
   HEADER AFTER SCROLL
=========================================================== */





/* ===========================================================
   NAVBAR
=========================================================== */




/* ===========================================================
   LOGO
=========================================================== */




/* ===========================================================
   MAIN NAVIGATION
=========================================================== */




/* ===========================================================
   TOP LEVEL MENU
=========================================================== */




/* ===========================================================
   TOP LEVEL LI
=========================================================== */




/* ===========================================================
   TOP LEVEL LINKS
=========================================================== */




/* ===========================================================
   SCROLLED HEADER MENU
=========================================================== */




/* ===========================================================
   HOVER
=========================================================== */




/* ===========================================================
   ACTIVE
=========================================================== */




/* ===========================================================
   DROPDOWN ARROW
=========================================================== */




/* Rotate arrow on desktop hover */




/* ===========================================================
   TOP LEVEL UNDERLINE
   IMPORTANT:
   Only direct top-level links get underline.
=========================================================== */



/* ===========================================================
   TOP LEVEL HOVER UNDERLINE
=========================================================== */




/* ===========================================================
   SUBMENU
=========================================================== */




/* ===========================================================
   DESKTOP DROPDOWN SHOW
=========================================================== */




/* ===========================================================
   SUBMENU ITEMS
=========================================================== */




/* ===========================================================
   SUBMENU LINKS
=========================================================== */




/* ===========================================================
   SUBMENU HOVER
=========================================================== */




/* ===========================================================
   IMPORTANT:
   REMOVE TOP LEVEL UNDERLINE FROM SUBMENU
=========================================================== */




/* ===========================================================
   BUTTON
=========================================================== */



/* ===========================================================
   HEADER BUTTON
=========================================================== */




/* ===========================================================
   MOBILE TOGGLE
=========================================================== */




/* ===========================================================
   SCROLLED MOBILE TOGGLE
=========================================================== */




/* ===========================================================
   TABLET
=========================================================== */




/* ===========================================================
   MOBILE / TABLET MENU
=========================================================== */




/* ===========================================================
   SMALL MOBILE
=========================================================== */



/*==================================================
HERO
==================================================*/

.hero{

position:relative;

min-height:88vh;

padding-top:90px;

display:flex;

align-items:center;

background:url('../img/hero-bg.png') center center/cover no-repeat;

overflow:hidden;

}

.hero-overlay{

position:absolute;

left:0;
top:0;

width:100%;
height:100%;

background:linear-gradient(90deg,
rgba(8,27,51,.88),
rgba(8,27,51,.72),
rgba(8,27,51,.35));

}

.hero-wrapper{

display:flex;

align-items:center;

justify-content:space-between;

position:relative;

z-index:10;

gap:70px;

padding:70px 0;

}

.hero-content{

width:55%;

color:#fff;

}

.hero-tag{

display:inline-block;

padding:10px 22px;

background:rgba(255,255,255,.12);

border:1px solid rgba(255,255,255,.15);

border-radius:50px;

font-size:14px;

letter-spacing:1px;

margin-bottom:25px;

backdrop-filter:blur(15px);

}

.hero h1{

font-size:60px;

font-weight:800;

line-height:1.05;

margin-bottom:25px;

}

.hero h1 span{

color:var(--accent);

}

.hero p{

font-size:18px;

line-height:32px;

max-width:560px;

opacity:.95;

margin-bottom:30px;

}

.hero-buttons{

display:flex;

gap:18px;

margin-bottom:40px;

}

.btn-outline{

padding:15px 34px;

border:2px solid rgba(255,255,255,.3);

border-radius:50px;

color:#fff;

font-weight:700;

transition:.35s;

backdrop-filter:blur(12px);

}

.btn-outline:hover{

background:#fff;

color:var(--primary);

}

.hero-info{

display:flex;

gap:22px;

}

.info-box{

background:rgba(255,255,255,.12);

padding:22px;

border-radius:18px;

min-width:170px;

backdrop-filter:blur(18px);

}

.info-box small{

display:block;

margin-bottom:8px;

opacity:.75;

}

.info-box strong{

font-size:16px;

}

.hero-image{

width:45%;

display:flex;

justify-content:center;

}

.glass-card{

width:430px;

padding:45px;

border-radius:28px;

background:rgba(255,255,255,.14);

border:1px solid rgba(255,255,255,.2);

backdrop-filter:blur(20px);

color:#fff;

box-shadow:0 30px 60px rgba(0,0,0,.18);

}

.glass-card h3{

font-size:32px;

margin-bottom:12px;

}

.glass-card p{

margin-bottom:30px;

line-height:28px;

}

.glass-stats{

display:flex;

justify-content:space-between;

}

.glass-stats h4{

font-size:32px;

color:var(--accent);

}

.glass-stats span{

font-size:14px;

opacity:.8;

}

.scroll-down{

position:absolute;

bottom:30px;

left:50%;

transform:translateX(-50%);

}

.scroll-down span{

display:block;

width:24px;

height:42px;

border:2px solid #fff;

border-radius:30px;

position:relative;

}

.scroll-down span:before{

content:"";

position:absolute;

left:50%;

top:8px;

width:6px;

height:6px;

background:#fff;

border-radius:50%;

transform:translateX(-50%);

animation:scroll 2s infinite;

}

@keyframes scroll{

0%{top:8px;opacity:1;}

100%{top:24px;opacity:0;}

}

@media(max-width:991px){

.hero{

height:auto;

padding:160px 0 100px;

}

.hero-wrapper{

flex-direction:column;

}

.hero-content,
.hero-image{

width:100%;

}

.hero h1{

font-size:44px;

}

.hero-info{

flex-wrap:wrap;

}

.glass-card{

width:100%;

max-width:420px;

margin-top:50px;

}

}


/*==================================================
COUNTER SECTION
==================================================*/

.counter-section{

    margin-top:-60px;
    position:relative;
    z-index:100;

}

.counter-grid{

    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;

}

.counter-card{

    background:#fff;
    border-radius:24px;
    padding:40px 20px;
    text-align:center;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

    transition:.35s ease;

}

.counter-card:hover{

    transform:translateY(-10px);

}

.counter-icon{

    width:70px;
    height:70px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(135deg,#0E3B78,#2054A6);

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;

    margin-bottom:25px;

}

.counter-card:nth-child(2) .counter-icon{

background:linear-gradient(135deg,#00A651,#27C56E);

}

.counter-card:nth-child(3) .counter-icon{

background:linear-gradient(135deg,#F7941D,#FFB347);

}

.counter-card:nth-child(4) .counter-icon{

background:linear-gradient(135deg,#ED1C24,#FF5E62);

}

.counter-card:nth-child(5) .counter-icon{

background:linear-gradient(135deg,#081B33,#0E3B78);

}

.counter-card h2{

font-size:48px;

font-weight:800;

color:var(--primary);

margin-bottom:12px;

}

.counter-card p{

font-size:17px;

color:#667085;

font-weight:600;

}

@media(max-width:991px){

.counter-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.counter-grid{

grid-template-columns:1fr;

}

.counter-section{

margin-top:50px;

}

}

/*==================================================
FOOTER
==================================================*/

.footer{

    background:#081B33;

    color:#ffffff;

    padding:90px 0 45px;

    text-align:center;

}

.footer-logo{
    width:170px;
}

.footer p{

    max-width:700px;

    margin:0 auto 15px;

    color:rgba(255,255,255,.75);

    line-height:30px;

}

.copyright{

    margin-top:30px;

    font-size:14px;

    opacity:.65;

}

/*==================================================
EXPLORE BUILDXCON
==================================================*/

.explore{
    padding:50px 0;
    background:#ffffff;
}

.section-top{
    text-align:center;
    margin-bottom:70px;
}

.section-tag{
    display:inline-block;
    color:#0E3B78;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:3px;
    position:relative;
    margin-bottom:18px;
}

.section-tag::after{
    content:"";
    display:block;
    width:120px;
    height:4px;
    margin:12px auto 0;
    border-radius:50px;
    background:linear-gradient(
    to right,
    #0E3B78 0%,
    #00A651 33%,
    #ED1C24 66%,
    #F7941D 100%);
}

.section-title{
    font-size:48px;
    font-weight:800;
    color:#081B33;
    line-height:1.2;
}

.section-title span{
    color:#0E3B78;
}


/*=========================
GRID
=========================*/

.explore-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:28px;

}


/*=========================
CARD
=========================*/

.explore-card{

    background:#fff;

    border:1px solid #E8EDF5;

    border-radius:24px;

    padding:45px 20px;

    text-align:center;

    transition:.35s;

    position:relative;

    overflow:hidden;

    cursor:pointer;

}

.explore-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.08);

}


/*=========================
ICON
=========================*/

.explore-icon{

    width:80px;

    height:80px;

    border-radius:50%;

    background:#F6F9FC;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto;

    font-size:34px;

    color:#0E3B78;

    transition:.35s;

}

.explore-card:hover .explore-icon{

    background:#0E3B78;

    color:#fff;

}


/*=========================
TITLE
=========================*/

.explore-card h3{

    margin-top:28px;

    font-size:22px;

    color:#081B33;

    font-weight:700;

    margin-bottom:18px;

}


/*=========================
TEXT
=========================*/

.explore-card p{

    color:#667085;

    line-height:28px;

    font-size:15px;

    margin-bottom:28px;

}


/*=========================
LINK
=========================*/

.explore-card a{

    color:#0E3B78;

    font-weight:700;

    transition:.3s;

}

.explore-card a:hover{

    color:#F7941D;

}


/*=========================
BOTTOM COLOR LINE
=========================*/

.explore-card::after{

content:"";

position:absolute;

left:0;

bottom:0;

width:100%;

height:5px;

background:#0E3B78;

}

.explore-card.green::after{

background:#00A651;

}

.explore-card.orange::after{

background:#F7941D;

}

.explore-card.red::after{

background:#ED1C24;

}

.explore-card.blue::after{

background:#0E3B78;

}


/*=========================
RESPONSIVE
=========================*/

@media(max-width:1200px){

.explore-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:768px){

.section-title{

font-size:34px;

}

.explore-grid{

grid-template-columns:repeat(2,1fr);

gap:20px;

}

}

@media(max-width:576px){

.explore{

padding:80px 0;

}

.explore-grid{

grid-template-columns:1fr;

}

.section-title{

font-size:30px;

}

.explore-card{

padding:35px 25px;

}

}



/*==================================================
WHY EXHIBIT
==================================================*/

.why-exhibit{

    padding:50px 0;
    background:#0E2E66;
    position:relative;
    overflow:hidden;

}

/* Background Shapes */

.why-exhibit::before{

    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(255,255,255,.03);
    border-radius:50%;
    top:-220px;
    right:-180px;

}

.why-exhibit::after{

    content:"";
    position:absolute;
    width:380px;
    height:380px;
    border:2px solid rgba(255,255,255,.05);
    border-radius:50%;
    bottom:-180px;
    left:-120px;

}

/*==============================*/

.why-exhibit .section-header{

    position:relative;
    z-index:2;
    max-width:700px;
    margin-bottom:70px;

}

.section-tag{

    display:inline-block;
    color:#FFC107;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:18px;

}

.section-tag::after{

    content:"";
    display:block;
    width:90px;
    height:4px;
    margin-top:12px;

    background:linear-gradient(
    to right,
    #0E3B78 25%,
    #00A651 25% 50%,
    #ED1C24 50% 75%,
    #F7941D 75%
    );

}

.why-exhibit h2{

    font-size:62px;
    color:#fff;
    line-height:1.08;
    font-weight:800;
    margin-bottom:22px;

}

.why-exhibit p{

    color:rgba(255,255,255,.82);
    font-size:20px;
    line-height:34px;

}

/*==============================*/

.why-grid{

    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;

}

/*==============================*/

.why-card{

    border-radius:24px;
    overflow:hidden;

    background:#FFC107;

    transition:.35s;

    box-shadow:0 25px 50px rgba(0,0,0,.18);

}

.why-card:hover{

    transform:translateY(-14px);

}

/*==============================*/

.why-image{

    height:270px;
    overflow:hidden;

}

.why-image img{

    width:100%;
    height:100%;
    object-fit:cover;

    transition:.6s;

}

.why-card:hover img{

    transform:scale(1.08);

}

/*==============================*/

.why-content{

    padding:38px 28px 28px;
    position:relative;

}

/* Floating Icon */

.why-icon{

    position:absolute;

    top:-34px;
    left:28px;

    width:70px;
    height:70px;

    border-radius:50%;

    background:#0E2E66;

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;

    border:4px solid #fff;

}

/*==============================*/

.why-content h3{

    font-size:34px;
    line-height:1.18;
    color:#081B33;
    margin-bottom:22px;
    font-weight:800;

}

.why-content p{

    color:#111827;
    font-size:19px;
    line-height:33px;
    margin-bottom:45px;

}

/*==============================*/

.why-content a{

    display:flex;
    align-items:center;
    justify-content:space-between;

    color:#081B33;
    font-weight:800;
    font-size:18px;

    padding-top:22px;

    border-top:2px solid rgba(8,27,51,.18);

    transition:.35s;

}

.why-content a i{

    transition:.35s;

}

.why-content a:hover{

    color:#0E3B78;

}

.why-content a:hover i{

    transform:translateX(8px);

}

/*==============================*/

@media(max-width:1200px){

.why-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.why-exhibit{

padding:80px 0;

}

.why-grid{

grid-template-columns:1fr;

}

.why-exhibit h2{

font-size:42px;

}

.why-image{

height:240px;

}

.why-content h3{

font-size:28px;

}

.why-content p{

font-size:17px;
line-height:30px;

}

}

/*==================================================
CEO SUMMIT
==================================================*/

.ceo-summit{

    padding:50px 0;
    background:#ffffff;

}

.ceo-wrapper{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

}

/*============================*/

.ceo-image{

    position:relative;

}

.ceo-image img{

    width:100%;
    border-radius:28px;
    display:block;
    box-shadow:0 25px 60px rgba(0,0,0,.08);

}

/*============================*/

.ceo-badge{

    position:absolute;

    bottom:30px;
    left:30px;

    background:#0E3B78;

    color:#fff;

    padding:22px 28px;

    border-radius:18px;

    box-shadow:0 20px 45px rgba(0,0,0,.18);

}

.ceo-badge span{

    display:block;

    font-size:42px;
    font-weight:800;
    line-height:1;

}

.ceo-badge small{

    font-size:15px;
    opacity:.9;

}

/*============================*/

.ceo-content h2{

    font-size:54px;
    color:#081B33;
    line-height:1.15;
    margin:18px 0 25px;
    font-weight:800;

}

.ceo-intro{

    font-size:18px;
    line-height:32px;
    color:#667085;
    margin-bottom:40px;

}

/*============================*/

.ceo-features{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:40px;

}

.feature{

    display:flex;
    align-items:center;
    gap:15px;

    padding:18px 20px;

    background:#F8FAFC;

    border-radius:16px;

    transition:.3s;

}

.feature:hover{

    background:#0E3B78;
    color:#fff;

}

.feature i{

    font-size:22px;
    color:#F7941D;

}

.feature:hover i{

    color:#FFC107;

}

.feature span{

    font-weight:700;
    font-size:16px;

}

/*============================*/

.ceo-content .btn-primary{

    display:inline-flex;
    gap:12px;

}

.ceo-content .btn-primary i{

    transition:.3s;

}

.ceo-content .btn-primary:hover i{

    transform:translateX(5px);

}

/*============================*/

@media(max-width:991px){

.ceo-wrapper{

grid-template-columns:1fr;

}

.ceo-content{

margin-top:40px;

}

.ceo-content h2{

font-size:40px;

}

.ceo-features{

grid-template-columns:1fr;

}

}

@media(max-width:576px){

.ceo-summit{

padding:80px 0;

}

.ceo-badge{

left:15px;
bottom:15px;

padding:18px;

}

.ceo-badge span{

font-size:32px;

}

.ceo-content h2{

font-size:34px;

}

}

/*==================================================
INDUSTRY SECTORS
==================================================*/

.industry-sectors{

    padding:50px 0;
    background:#F8FAFC;

}

.industry-sectors .section-title{

    text-align:center;
    max-width:760px;
    margin:0 auto 70px;

}

.industry-sectors .section-title h2{

    font-size:48px;
    font-weight:800;
    color:#081B33;
    margin:18px 0;

}

.industry-sectors .section-title p{

    font-size:18px;
    line-height:32px;
    color:#667085;

}

/*========================*/

.sector-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;

}

/*========================*/

.sector-card{

    background:#ffffff;

    border-radius:22px;

    padding:40px 25px;

    text-align:center;

    transition:.35s ease;

    box-shadow:0 10px 35px rgba(0,0,0,.05);

    border:1px solid #EEF2F6;

}

.sector-card:hover{

    transform:translateY(-10px);

    background:#0E3B78;

}

.sector-card i{

    font-size:48px;

    color:#F7941D;

    margin-bottom:25px;

    transition:.3s;

}

.sector-card h4{

    font-size:20px;

    font-weight:700;

    color:#081B33;

    transition:.3s;

    line-height:30px;

}

.sector-card:hover h4{

    color:#fff;

}

.sector-card:hover i{

    color:#FFC107;

}

/*========================*/

.sector-btn{

    text-align:center;

    margin-top:60px;

}

/*========================*/

@media(max-width:1100px){

.sector-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:768px){

.sector-grid{

grid-template-columns:repeat(2,1fr);

}

.industry-sectors{

padding:90px 0;

}

.industry-sectors .section-title h2{

font-size:38px;

}

}

@media(max-width:576px){

.sector-grid{

grid-template-columns:1fr;

}

.industry-sectors .section-title h2{

font-size:32px;

}

.industry-sectors .section-title p{

font-size:16px;

line-height:28px;

}

}

/*==================================================
WHY VISIT
==================================================*/

.why-visit{

padding:50px 0;
background:#fff;

}

.why-visit-wrapper{

display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;

}

.visit-image img{

width:100%;
border-radius:24px;
box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.visit-content h2{

font-size:48px;
margin:20px 0;
color:var(--primary);

}

.visit-content p{

font-size:18px;
line-height:30px;
margin-bottom:35px;
color:#555;

}

.visit-list{

display:grid;
grid-template-columns:1fr;
gap:20px;
margin-bottom:40px;

}

.visit-item{

display:flex;
align-items:flex-start;
gap:15px;
font-size:17px;
font-weight:600;
color:#222;

}

.visit-item i{

color:#00A651;
margin-top:4px;
font-size:18px;

}

@media(max-width:991px){

.why-visit-wrapper{

grid-template-columns:1fr;

}

.visit-content h2{

font-size:36px;

}

}


/*==================================================
PARTNERS
==================================================*/

.partners{

padding:50px 0;
background:#F8FAFC;

}

.partner-group{

margin-top:60px;

}

.partner-group h3{

font-size:22px;
font-weight:700;
color:var(--primary);
margin-bottom:30px;
padding-left:18px;
border-left:5px solid var(--accent);

}

.partner-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;

}

.partner-card{

height:160px;
background:#fff;

border-radius:18px;

display:flex;
align-items:center;
justify-content:center;

padding:30px;

border:1px solid #E8EDF5;

transition:.35s;

box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.partner-card:hover{

transform:translateY(-8px);

box-shadow:0 20px 40px rgba(0,0,0,.10);

}

.partner-card img{

max-width:180px;
max-height:90px;
object-fit:contain;
filter:grayscale(100%);
opacity:.85;
transition:.35s;

}

.partner-card:hover img{

filter:none;
opacity:1;

}

@media(max-width:991px){

.partner-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.partner-grid{

grid-template-columns:1fr;

}

.partner-card{

height:140px;

}

}

/*==================================================
PARTNER 2
==================================================*/

.partner2-section{

    padding:50px 0;

    background:#0B2F63;

    position:relative;

    overflow:hidden;

}

.partner2-section::before{

    content:"";

    position:absolute;

    top:-250px;
    right:-250px;

    width:650px;
    height:650px;

    border-radius:50%;

    background:rgba(255,255,255,.03);

}

.partner2-section::after{

    content:"";

    position:absolute;

    left:-220px;
    bottom:-220px;

    width:550px;
    height:550px;

    border-radius:50%;

    background:rgba(255,255,255,.02);

}

.partner2-section .section-title{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

    position:relative;

    z-index:2;

}

.partner2-section .section-title span{

    color:#F7941D;

    letter-spacing:2px;

    font-size:14px;

    font-weight:700;

}

.partner2-section h2{

    color:#fff;

    font-size:48px;

    margin:18px 0;

    font-weight:800;

}

.partner2-section h2 span{

    color:#F7941D;

}

.partner2-section p{

    color:rgba(255,255,255,.75);

    font-size:18px;

    line-height:32px;

}

.partner2-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:28px;

    position:relative;

    z-index:2;

}

.partner2-card{

    background:#ffffff;

    border-radius:18px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 20px 45px rgba(0,0,0,.18);

}

.partner2-card:hover{

    transform:translateY(-10px);

    box-shadow:0 35px 70px rgba(0,0,0,.30);

}

.partner2-type{

    background:#081B33;

    color:#ffffff;

    text-align:center;

    padding:16px;

    font-size:14px;

    font-weight:700;

    letter-spacing:.4px;

    border-bottom:4px solid #F7941D;

}

.partner2-logo{

    height:170px;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:30px;

}

.partner2-logo img{

    max-width:160px;

    max-height:90px;

    object-fit:contain;

    transition:.35s;

}

.partner2-card:hover img{

    transform:scale(1.08);

}

.partner2-card::after{

    content:"";

    display:block;

    height:5px;

    background:linear-gradient(90deg,#00A651,#0E3B78,#F7941D,#ED1C24);

}

/*==========================
Responsive
==========================*/

@media(max-width:1200px){

.partner2-grid{

grid-template-columns:repeat(4,1fr);

}

}

@media(max-width:991px){

.partner2-grid{

grid-template-columns:repeat(2,1fr);

}

.partner2-section h2{

font-size:38px;

}

}

@media(max-width:576px){

.partner2-grid{

grid-template-columns:1fr;

}

.partner2-logo{

height:150px;

}

.partner2-section{

padding:80px 0;

}

.partner2-section h2{

font-size:32px;

}

.partner2-section p{

font-size:16px;

line-height:28px;

}

}


/*=========================================
SPEAKERS
=========================================*/

.speakers-section{

padding:50px 0;
background:#ffffff;

}

.speakers-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
margin-top:60px;

}

.speaker-card{

background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:0 15px 45px rgba(0,0,0,.08);
transition:.35s;

}

.speaker-card:hover{

transform:translateY(-10px);

}

.speaker-image{

height:340px;
overflow:hidden;

}

.speaker-image img{

width:100%;
height:100%;
object-fit:cover;
transition:.5s;

}

.speaker-card:hover img{

transform:scale(1.08);

}

.speaker-content{

padding:25px;

}

.speaker-category{

display:inline-block;
padding:6px 14px;
background:#F7941D;
color:#fff;
font-size:12px;
font-weight:700;
border-radius:30px;
margin-bottom:15px;

}

.speaker-content h3{

font-size:24px;
color:#0E3B78;
margin-bottom:10px;

}

.designation{

color:#667085;
font-size:15px;

}

.speaker-bottom{

margin-top:70px;
display:grid;
grid-template-columns:repeat(4,1fr);
background:#0E3B78;
border-radius:20px;
overflow:hidden;

}

.speaker-stat{

padding:35px;
text-align:center;
border-right:1px solid rgba(255,255,255,.15);

}

.speaker-stat:last-child{

border-right:none;

}

.speaker-stat h3{

font-size:48px;
color:#F7941D;
margin-bottom:10px;

}

.speaker-stat span{

color:#fff;
font-weight:600;

}

@media(max-width:991px){

.speakers-grid{

grid-template-columns:repeat(2,1fr);

}

.speaker-bottom{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.speakers-grid{

grid-template-columns:1fr;

}

.speaker-bottom{

grid-template-columns:1fr;

}

}

/*==================================================*
* TRADE SUMMIT
*==================================================*/

.trade-summit {
    padding: 50px 0 80px;
    background: #0E3B78;
    position: relative;
    overflow: hidden;
}


/*==================================================*
* WORLD MAP
*==================================================*/

.world-map {
    position: absolute;
    left: 50%;
    top: 40px;
    transform: translateX(-50%);

    width: 1100px;
    height: 500px;

    background: url('../img/world-map.jpg') center center / contain no-repeat;

    opacity: .05;

    pointer-events: none;

    z-index: 0;
}


/*==================================================*
* TRADE WRAPPER
*==================================================*/

.trade-wrapper {
    position: relative;
    z-index: 2;

    text-align: center;

    max-width: 900px;

    margin: 0 auto;
}


/*==================================================*
* TRADE CONTENT
*==================================================*/

.trade-content h2 {
    font-size: 52px;

    color: #ffffff;

    margin: 20px 0;

    font-weight: 800;
}


.trade-content p {
    color: rgba(255,255,255,.82);

    font-size: 18px;

    line-height: 34px;

    margin-bottom: 45px;
}


/*==================================================*
* TRADE HIGHLIGHTS
*==================================================*/

.trade-highlights {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;

    margin-bottom: 45px;
}


.highlight {
    background: rgba(255,255,255,.08);

    border: 1px solid rgba(255,255,255,.10);

    border-radius: 16px;

    padding: 18px 24px;

    display: flex;

    align-items: center;

    gap: 15px;

    color: #ffffff;

    backdrop-filter: blur(10px);
}


.highlight i {
    width: 50px;

    height: 50px;

    min-width: 50px;

    border-radius: 50%;

    background: #F7941D;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 18px;
}


/*==================================================*
* COUNTRY AREA
*==================================================*/

.country-area {
    margin-top: 90px;

    position: relative;

    z-index: 2;

    width: 100%;
}


.country-area h3 {
    text-align: center;

    color: #ffffff;

    font-size: 34px;

    margin-bottom: 45px;
}


/*==================================================*
* FLAG SLIDER
*==================================================*/

.flag-slider {
    width: 100%;

    overflow: hidden;

    position: relative;
}


.flag-track {
    display: flex;

    align-items: stretch;

    gap: 22px;

    width: max-content;
    
    padding: 20px;

    animation: flagscroll 45s linear infinite;

    will-change: transform;
}


.flag-slider:hover .flag-track {
    animation-play-state: paused;
}


/*==================================================*
* FLAG CARD
*==================================================*/

.flag-card {
    flex: 0 0 180px;

    width: 180px;

    min-width: 180px;

    background: #f0f0f0;

    border-radius: 18px;

    padding: 25px;

    text-align: center;

    box-sizing: border-box;

    box-shadow: 0 15px 40px rgba(0,0,0,.18);

    transition: transform .35s ease;
}


.flag-card:hover {
    transform: translateY(-8px);
}


/*==================================================*
* FLAG IMAGE
*==================================================*/

.flag {
    width: 100%;

    height: 75px;

    margin-bottom: 15px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.country-flag {
    display: block;

    width: 90px;

    height: 60px;

    object-fit: contain;

    object-position: center;

    border-radius: 3px;

    margin: 0 auto;

    user-select: none;

    -webkit-user-drag: none;
}


/*==================================================*
* COUNTRY NAME
*==================================================*/

.country-name {
    font-size: 17px;

    font-weight: 700;

    color: #0E3B78;

    line-height: 24px;

    min-height: 24px;
}


/*==================================================*
* FLAG ANIMATION
*==================================================*/

@keyframes flagscroll {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 11px));
    }

}


/*==================================================*
* TABLET
*==================================================*/

@media (max-width: 992px) {

    .trade-content h2 {
        font-size: 40px;
    }


    .trade-highlights {
        grid-template-columns: 1fr;
    }


    .flag-card {
        flex-basis: 150px;

        width: 150px;

        min-width: 150px;

        padding: 20px;
    }


    .country-flag {
        width: 75px;

        height: 50px;
    }


    .country-area h3 {
        font-size: 28px;
    }

}


/*==================================================*
* MOBILE
*==================================================*/

@media (max-width: 576px) {

    .trade-summit {
        padding: 80px 0 60px;
    }


    .trade-content h2 {
        font-size: 30px;
    }


    .trade-content p {
        font-size: 16px;

        line-height: 28px;
    }


    .flag-card {
        flex-basis: 130px;

        width: 130px;

        min-width: 130px;

        padding: 18px;
    }


    .flag {
        height: 60px;

        margin-bottom: 10px;
    }


    .country-flag {
        width: 65px;

        height: 43px;
    }


    .country-name {
        font-size: 14px;

        line-height: 20px;
    }

}
/*==================================================
CHIEF GUESTS
==================================================*/

.chief-guests{

padding:110px 0;

background:#F8FAFD;

}

.guest-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

margin-top:60px;

}

.guest-card{

background:#fff;

border-radius:24px;

overflow:hidden;

box-shadow:0 15px 45px rgba(0,0,0,.08);

transition:.35s;

}

.guest-card:hover{

transform:translateY(-10px);

box-shadow:0 30px 70px rgba(0,0,0,.15);

}

.guest-image{

height:340px;

overflow:hidden;

}

.guest-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.5s;

}

.guest-card:hover img{

transform:scale(1.08);

}

.guest-content{

padding:28px;

text-align:center;

}

.guest-content h3{

font-size:24px;

color:#0E3B78;

margin-bottom:10px;

font-weight:800;

}

.designation{

display:block;

color:#666;

font-size:15px;

line-height:24px;

margin-bottom:25px;

min-height:48px;

}

.company-logo{

height:55px;

display:flex;

justify-content:center;

align-items:center;

}

.company-logo img{

max-width:130px;

max-height:45px;

object-fit:contain;

filter:grayscale(100%);

opacity:.85;

transition:.35s;

}

.guest-card:hover .company-logo img{

filter:none;

opacity:1;

}

@media(max-width:992px){

.guest-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.guest-grid{

grid-template-columns:1fr;

}

.guest-image{

height:300px;

}

}


/*======================================
INDUSTRY GUESTS
======================================*/

.industry-guests{

padding:110px 0;

background:#ffffff;

}

.industry-grid{

margin-top:60px;

display:grid;

grid-template-columns:repeat(5,1fr);

gap:24px;

}

.industry-card{

background:#fff;

border-radius:20px;

overflow:hidden;

border:1px solid #E6ECF5;

transition:.35s;

box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.industry-card:hover{

transform:translateY(-8px);

box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.industry-image{

height:250px;

overflow:hidden;

}

.industry-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.5s;

}

.industry-card:hover img{

transform:scale(1.08);

}

.industry-info{

padding:22px;

text-align:center;

}

.industry-info h3{

font-size:20px;

color:#0E3B78;

margin-bottom:8px;

font-weight:700;

}

.industry-designation{

font-size:14px;

color:#667085;

margin-bottom:20px;

min-height:40px;

}

.industry-logo{

max-width:110px;

max-height:42px;

object-fit:contain;

filter:grayscale(100%);

opacity:.85;

transition:.35s;

}

.industry-card:hover .industry-logo{

filter:none;

opacity:1;

}

@media(max-width:1200px){

.industry-grid{

grid-template-columns:repeat(4,1fr);

}

}

@media(max-width:991px){

.industry-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.industry-grid{

grid-template-columns:1fr;

}

.industry-image{

height:280px;

}

}

/*==================================
BOOTH BOOKING
==================================*/

.booth-booking{

    padding:100px 0;

    background:#f7f9fc;

}

.booking-grid{

    display:grid;

    grid-template-columns:1.4fr .9fr;

    gap:50px;

    align-items:start;

}

.booking-form{

    background:#fff;

    padding:45px;

    border-radius:20px;

    box-shadow:0 15px 50px rgba(0,0,0,.06);

}

.booking-form .section-title{

    margin-bottom:35px;

}

.booking-form .section-title span{

    color:#F7941D;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.booking-form .section-title h2{

    margin:10px 0;

    font-size:38px;

    color:#0E3B78;

}

.form-group{

    margin-bottom:22px;

}

.form-group label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

    color:#0E3B78;

}

.form-group input,
.form-group select,
.form-group textarea{

    width:100%;

    padding:15px 18px;

    border:1px solid #dfe5ef;

    border-radius:10px;

    font-size:15px;

    transition:.3s;

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{

    outline:none;

    border-color:#0E3B78;

}

.form-heading{

    margin:35px 0 20px;

    color:#0E3B78;

}

.booth-types{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:15px;

}

.booth-card{

    border:2px solid #dfe5ef;

    border-radius:14px;

    padding:20px;

    cursor:pointer;

    transition:.3s;

}

.booth-card input{

    display:none;

}

.booth-card.active,
.booth-card:hover{

    border-color:#0E3B78;

    background:#edf4ff;

}

.booth-card h5{

    margin-bottom:10px;

    font-size:18px;

}

.booth-card span{

    color:#F7941D;

    font-weight:700;

}

.size-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-bottom:30px;

}

.size-btn{

    width:70px;

    height:60px;

    border:2px solid #dfe5ef;

    border-radius:12px;

    background:#fff;

    font-size:18px;

    font-weight:700;

    cursor:pointer;

}

.size-btn.active{

    background:#0E3B78;

    color:#fff;

    border-color:#0E3B78;

}

.booking-btn{

    width:100%;

    margin-top:20px;

}

.booking-summary{

    position:sticky;

    top:120px;

}

.summary-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 15px 50px rgba(0,0,0,.08);

}

.summary-card h3{

    margin-bottom:30px;

    color:#0E3B78;

    font-size:28px;

}

.summary-row{

    display:flex;

    justify-content:space-between;

    margin-bottom:18px;

    color:#555;

}

.summary-row strong{

    color:#0E3B78;

}

.summary-row.total{

    font-size:20px;

    font-weight:700;

}

.token-box{

    margin-top:30px;

    background:#fff8df;

    border:2px dashed #f7b500;

    padding:25px;

    border-radius:15px;

    text-align:center;

}

.token-box small{

    display:block;

    color:#777;

    margin-bottom:8px;

}

.token-box h2{

    color:#0E3B78;

    font-size:38px;

}

.summary-note{

    margin-top:25px;

    background:#eef8ef;

    border-left:4px solid #2cb34a;

    padding:18px;

    font-size:15px;

    line-height:1.6;

}

.size-btn{
    transition:.3s;
}

.size-btn:hover{
    background:#0E3B78;
    color:#fff;
    border-color:#0E3B78;
}

.booth-card{
    transition:.3s ease;
}

.booth-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(14,59,120,.15);
}

.booth-card.active{
    border-color:#0E3B78;
    background:#edf4ff;
    box-shadow:0 15px 35px rgba(14,59,120,.15);
}

@media(max-width:991px){

.booking-grid{

grid-template-columns:1fr;

}

.booking-summary{

position:relative;

top:auto;

}

.booth-types{

grid-template-columns:1fr;

}

}

/*==================================================
BOOTH BOOKING HERO
==================================================*/

.booth-hero{
    position:relative;
    min-height:720px;
    display:flex;
    align-items:center;
    overflow:hidden;
    padding:180px 0 110px;
    background:#0B2F67;
}

.booth-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:url('../img/booth-hero.png') center center/cover no-repeat;
    z-index:1;
}

.booth-hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(8,27,51,.92) 0%,
        rgba(8,27,51,.82) 38%,
        rgba(8,27,51,.55) 70%,
        rgba(8,27,51,.35) 100%
    );
    z-index:2;
}

.booth-hero .container{
    position:relative;
    z-index:5;
}

/*==================================================
LAYOUT
==================================================*/

.booth-wrapper{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:80px;
    align-items:center;
}

/*==================================================
LEFT CONTENT
==================================================*/

.booth-tag{
    display:inline-flex;
    align-items:center;
    padding:12px 22px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.15);
    border-radius:50px;
    backdrop-filter:blur(12px);
    color:#fff;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:28px;
}

.booth-title{
    color:#fff;
    font-size:72px;
    line-height:1.08;
    font-weight:800;
    margin-bottom:28px;
    max-width:760px;
}

.booth-title span{
    color:#F7941D;
}

.booth-description{
    color:rgba(255,255,255,.92);
    font-size:22px;
    line-height:38px;
    max-width:700px;
    margin-bottom:45px;
}

/*==================================================
BUTTONS
==================================================*/

.booth-buttons{
    display:flex;
    gap:18px;
    margin-bottom:35px;
}

.booth-buttons .btn-primary{
    padding:18px 40px;
}

.booth-buttons .btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 40px;
    border:2px solid rgba(255,255,255,.30);
    border-radius:50px;
    color:#fff;
    font-weight:700;
    transition:.35s;
}

.booth-buttons .btn-outline:hover{
    background:#fff;
    color:#0E3B78;
}

/*==================================================
HERO STATS
==================================================*/

.hero-stats{
    display:flex;
    gap:35px;
    margin-top:20px;
}

.hero-stat{
    color:#fff;
}

.hero-stat h3{
    font-size:38px;
    font-weight:800;
    color:#F7941D;
    margin-bottom:6px;
}

.hero-stat p{
    font-size:15px;
    color:rgba(255,255,255,.82);
}

/*==================================================
RIGHT GLASS CARD
==================================================*/

.booking-card{
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(20px);
    border-radius:30px;
    padding:45px;
    box-shadow:0 30px 70px rgba(0,0,0,.20);
    transition:.35s ease;
}

.booking-card:hover{
    transform:translateY(-8px);
}

.booking-badge{
    display:inline-block;
    padding:8px 18px;
    background:#F7941D;
    color:#fff;
    border-radius:40px;
    font-size:13px;
    font-weight:700;
    letter-spacing:.5px;
    margin-bottom:20px;
}

.booking-card h3{
    font-size:42px;
    color:#0E3B78;
    font-weight:800;
    margin-bottom:30px;
}

/*==================================================
BENEFITS
==================================================*/

.booking-card ul{
    margin:0;
    padding:0;
    list-style:none;
    margin-bottom:35px;
}

.booking-card li{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:20px;
    font-size:21px;
    color:#253858;
    font-weight:600;
}

.booking-card li i{
    color:#0E3B78;
    font-size:18px;
}

/*==================================================
PRICE BOX
==================================================*/

.price-box{
    background:#F7F9FC;
    border:1px solid #E5EBF4;
    border-radius:22px;
    padding:35px;
    text-align:center;
}

.price-box small{
    display:block;
    color:#667085;
    font-size:16px;
    margin-bottom:15px;
}

.price-box h2{
    font-size:60px;
    font-weight:800;
    color:#F7941D;
    margin-bottom:12px;
}

.price-box span{
    color:#0E3B78;
    font-size:18px;
    font-weight:700;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px){

.booth-title{
    font-size:62px;
}

.booth-wrapper{
    gap:60px;
}

}

@media(max-width:991px){

.booth-hero{
    padding:150px 0 90px;
    min-height:auto;
}

.booth-wrapper{
    grid-template-columns:1fr;
    gap:50px;
}

.booth-title{
    font-size:48px;
}

.booth-description{
    font-size:18px;
    line-height:30px;
}

.booking-card{
    padding:35px;
}

.hero-stats{
    flex-wrap:wrap;
    gap:25px;
}

.hero-stat h3{
    font-size:32px;
}

}

@media(max-width:768px){

.booth-buttons{
    flex-direction:column;
}

.booth-buttons a{
    width:100%;
}

.booth-title{
    font-size:40px;
}

.booth-tag{
    font-size:12px;
}

.booking-card h3{
    font-size:32px;
}

.booking-card li{
    font-size:18px;
}

.price-box h2{
    font-size:48px;
}

}

@media(max-width:576px){

.booth-hero{
    padding:130px 0 70px;
}

.booth-title{
    font-size:34px;
}

.booth-description{
    font-size:17px;
    line-height:28px;
}

.booking-card{
    padding:28px;
    border-radius:22px;
}

.price-box{
    padding:25px;
}

.price-box h2{
    font-size:42px;
}

.hero-stats{
    justify-content:space-between;
}

.hero-stat h3{
    font-size:28px;
}

}

.quotation-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 35px 0;
    flex-wrap: wrap;
}

.quotation-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.25s ease;
}

.btn-download {
    background: #ffffff;
    color: #17457e;
    border: 2px solid #17457e;
}

.btn-download:hover {
    background: #17457e;
    color: #ffffff;
}

.btn-payment {
    background: #17457e;
    color: #ffffff;
    border: 2px solid #17457e;
}

.btn-payment:hover {
    background: #0d315d;
    transform: translateY(-2px);
}

/* =========================================================
   QUOTATION ACTION BUTTONS
========================================================= */

.quotation-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 25px auto 40px;
    max-width: 1000px;
}

.quotation-btn {
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
}

/* PRINT */

.print-btn {
    background: #ffffff;
    color: #17457e;
    border: 2px solid #17457e;
}

.print-btn:hover {
    background: #17457e;
    color: #ffffff;
}


/* EMAIL */

.email-btn {
    background: #eef5ff;
    color: #17457e;
    border: 2px solid #17457e;
}

.email-btn:hover {
    background: #17457e;
    color: #ffffff;
}


/* PAYMENT */

.payment-btn {
    background: #f7941d;
    color: #ffffff;
    border: 2px solid #f7941d;
    min-width: 240px;
}

.payment-btn:hover {
    background: #d97900;
    border-color: #d97900;
    transform: translateY(-2px);
}


/* MOBILE */

@media (max-width: 768px) {

    .quotation-actions {
        flex-direction: column;
        padding: 0 20px;
    }

    .quotation-btn {
        width: 100%;
        max-width: 400px;
    }

}

@media print {

    body {
        background: #ffffff !important;
    }

    .quotation-actions,
    header,
    nav,
    footer {
        display: none !important;
    }

    .quotation-container {
        box-shadow: none !important;
        width: 100% !important;
        max-width: 100% !important;
    }

}


/* enquiry result css */

/* =========================================================
   ENQUIRY RESULT PAGE
   BuildXcon 2027
   Scoped CSS - Does not affect Header / Footer
========================================================= */

.enquiry-result-page {
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f7fb;
    padding: 40px 20px 60px;
    width: 100%;
    box-sizing: border-box;
}

.enquiry-result-page *,
.enquiry-result-page *::before,
.enquiry-result-page *::after {
    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
========================================================= */

.enquiry-result-page .enquiry-container {

    width: 100%;
    max-width: 900px;

    margin: 0 auto;
}


/* =========================================================
   MAIN CARD
========================================================= */

.enquiry-result-page .enquiry-card {

    background: #ffffff;

    border-radius: 16px;

    padding: 40px;

    box-shadow:
        0 10px 40px
        rgba(0, 0, 0, 0.08);
}


/* =========================================================
   SUCCESS SECTION
========================================================= */

.enquiry-result-page .success {

    text-align: center;

    margin-bottom: 35px;
}


.enquiry-result-page .success-icon {

    width: 70px;
    height: 70px;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: #16a34a;

    color: #ffffff;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 36px;
}


/* =========================================================
   HEADINGS
========================================================= */

.enquiry-result-page h1 {

    color: #0E3B78;

}


/* =========================================================
   ENQUIRY NUMBER
========================================================= */

.enquiry-result-page .enquiry {

    display: inline-block;

    background: #eef4ff;

    color: #0E3B78;

    padding: 12px 20px;

    border-radius: 8px;

    font-weight: bold;

    font-size: 20px;
}


/* =========================================================
   INFORMATION GRID
========================================================= */

.enquiry-result-page .result-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;
}


/* =========================================================
   INFORMATION ITEM
========================================================= */

.enquiry-result-page .result-item {

    background: #f8fafc;

    padding: 18px;

    border-radius: 10px;
}


.enquiry-result-page .result-item label {

    display: block;

    color: #667085;

    font-size: 13px;

    margin-bottom: 6px;
}


.enquiry-result-page .result-item strong {

    color: #0E3B78;
}


/* =========================================================
   AMOUNT SECTION
========================================================= */

.enquiry-result-page .amount {

    margin-top: 30px;

    background: #0E3B78;

    color: #ffffff;

    padding: 25px;

    border-radius: 12px;
}


.enquiry-result-page .amount-row {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 8px 0;
}


.enquiry-result-page .grand {

    border-top:
        1px solid
        rgba(255, 255, 255, 0.25);

    margin-top: 10px;

    padding-top: 15px;

    font-size: 22px;

    font-weight: bold;
}


/* =========================================================
   ADVANCE PAYMENT BOX
========================================================= */

.enquiry-result-page .advance {

    margin-top: 20px;

    padding: 20px;

    border-radius: 10px;

    background: #fff7e8;

    border:
        1px solid
        #F7941D;
}


.enquiry-result-page .advance strong {

    color: #F7941D;

    font-size: 24px;
}


/* =========================================================
   ACTION BUTTONS
========================================================= */

.enquiry-result-page .quotation-actions {

    
}


/* ===========================================================
   WHY EXHIBIT PAGE
=========================================================== */


/* ===========================================================
   HERO
=========================================================== */

.exhibit-hero {

    position: relative;

    min-height: 620px;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            110deg,
            #071f42 0%,
            #0E3B78 55%,
            #123f7b 100%
        );

    overflow: hidden;

    padding:
        150px 0 100px;

}


/* decorative glow */

.exhibit-hero::before {

    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -180px;
    top: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(247,148,29,.25),
            transparent 65%
        );

}


.exhibit-hero::after {

    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    left: -200px;
    bottom: -200px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,.08),
            transparent 70%
        );

}


.exhibit-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7,31,66,.95),
            rgba(14,59,120,.75)
        );

}


.exhibit-hero-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

}


.exhibit-hero h1 {

    color: #ffffff;

    font-size: clamp(44px, 6vw, 76px);

    line-height: 1.05;

    font-weight: 800;

    margin:
        25px 0;

}


.exhibit-hero h1 span {

    display: block;

    color: #F7941D;

}


.exhibit-hero p {

    max-width: 720px;

    color:
        rgba(255,255,255,.82);

    font-size: 19px;

    line-height: 1.8;

}


.hero-actions {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 35px;

}


.hero-actions .btn-primary {

    display: inline-flex;

    gap: 12px;

}


.btn-outline-light {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding:
        15px 30px;

    border:
        1px solid
        rgba(255,255,255,.5);

    color: #ffffff;

    border-radius: 50px;

    font-weight: 700;

    transition: .3s;

}


.btn-outline-light:hover {

    background: #ffffff;

    color: #0E3B78;

}


/* ===========================================================
   INTRO
=========================================================== */

.exhibit-intro {

    padding:
        100px 0;

    background: #ffffff;

}


.exhibit-intro-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;

}


.section-tag {

    display: inline-block;

    color: #F7941D;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1.8px;

    text-transform: uppercase;

}


.exhibit-intro h2,
.section-heading h2 {

    color: #0E3B78;

    font-size:
        clamp(36px, 4vw, 52px);

    line-height: 1.15;

    margin-top: 18px;

}


.exhibit-intro h2 span,
.section-heading h2 span {

    color: #F7941D;

}


.exhibit-intro-text p {

    color: #667085;

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 18px;

}


/* ===========================================================
   STATS
=========================================================== */

.exhibit-stats {

    padding:
        0 0 100px;

    background: #ffffff;

}


.stats-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 20px;

}


.stat-card {

    padding: 30px;

    background: #f5f8fc;

    border-radius: 16px;

    border:
        1px solid #e7edf5;

    text-align: center;

    transition: .3s;

}


.stat-card:hover {

    transform:
        translateY(-7px);

    box-shadow:
        0 15px 40px
        rgba(14,59,120,.1);

}


.stat-icon {

    width: 58px;
    height: 58px;

    margin:
        0 auto 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #0E3B78;

    color: #ffffff;

    border-radius: 50%;

    font-size: 21px;

}


.stat-card strong {

    display: block;

    color: #0E3B78;

    font-size: 34px;

    font-weight: 800;

}


.stat-card span {

    display: block;

    color: #667085;

    margin-top: 5px;

}


/* ===========================================================
   SECTION HEADING
=========================================================== */

.section-heading {

    max-width: 760px;

}


.section-heading.center {

    margin:
        0 auto 55px;

    text-align: center;

}


.section-heading p {

    margin-top: 18px;

    color: #667085;

    line-height: 1.8;

}


/* ===========================================================
   BENEFITS
=========================================================== */

.exhibit-benefits {

    padding:
        100px 0;

    background: #f5f8fc;

}


.benefits-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 24px;

}


.benefit-card {

    position: relative;

    background: #ffffff;

    padding: 35px;

    border-radius: 18px;

    border:
        1px solid #e7edf5;

    overflow: hidden;

    transition: .35s;

}


.benefit-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 20px 45px
        rgba(14,59,120,.12);

}


.benefit-number {

    position: absolute;

    top: 20px;
    right: 25px;

    color: #edf1f7;

    font-size: 50px;

    font-weight: 800;

}


.benefit-icon {

    width: 60px;
    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background:
        rgba(247,148,29,.12);

    color: #F7941D;

    font-size: 23px;

    margin-bottom: 25px;

}


.benefit-card h3 {

    color: #0E3B78;

    font-size: 20px;

    margin-bottom: 12px;

}


.benefit-card p {

    color: #667085;

    line-height: 1.7;

    font-size: 15px;

}


/* ===========================================================
   AUDIENCE
=========================================================== */

.meet-section {

    padding:
        110px 0;

    background: #ffffff;

}


.audience-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 20px;

}


.audience-card {

    padding: 30px;

    border:
        1px solid #e5eaf1;

    border-radius: 16px;

    background: #ffffff;

    transition: .3s;

}


.audience-card:hover {

    border-color: #F7941D;

    transform:
        translateY(-5px);

}


.audience-card > i {

    font-size: 30px;

    color: #F7941D;

    margin-bottom: 18px;

}


.audience-card h3 {

    color: #0E3B78;

    font-size: 18px;

    margin-bottom: 9px;

}


.audience-card p {

    color: #667085;

    line-height: 1.6;

    font-size: 14px;

}


/* ===========================================================
   BUSINESS OUTCOMES
=========================================================== */

.business-outcomes {

    padding:
        100px 0;

    background: #0E3B78;

}


.outcome-grid {

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 90px;

    align-items: center;

}


.outcome-content h2 {

    color: #ffffff;

    font-size:
        clamp(40px, 5vw, 60px);

    line-height: 1.1;

    margin:
        18px 0;

}


.outcome-content h2 span {

    color: #F7941D;

}


.outcome-content p {

    color:
        rgba(255,255,255,.78);

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 30px;

}


.outcome-list {

    display: flex;

    flex-direction: column;

    gap: 18px;

}


.outcome-item {

    display: flex;

    gap: 20px;

    padding: 22px;

    border:
        1px solid
        rgba(255,255,255,.12);

    border-radius: 14px;

    background:
        rgba(255,255,255,.06);

}


.outcome-icon {

    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #F7941D;

    color: #ffffff;

    border-radius: 12px;

}


.outcome-item h3 {

    color: #ffffff;

    font-size: 18px;

    margin-bottom: 5px;

}


.outcome-item p {

    color:
        rgba(255,255,255,.65);

    font-size: 14px;

    line-height: 1.6;

}


/* ===========================================================
   CATEGORIES
=========================================================== */

.categories-section {

    padding:
        110px 0;

    background: #f5f8fc;

}


.category-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 15px;

}


.category-item {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 20px;

    background: #ffffff;

    border-radius: 12px;

    border:
        1px solid #e4eaf2;

    color: #0E3B78;

    font-weight: 700;

    transition: .3s;

}


.category-item i {

    color: #F7941D;

    font-size: 20px;

}


.category-item:hover {

    transform:
        translateY(-4px);

    border-color:
        #F7941D;

}


/* ===========================================================
   FINAL CTA
=========================================================== */

.exhibit-cta {

    padding:
        80px 0;

    background: #ffffff;

}


.cta-box {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding:
        55px;

    border-radius: 22px;

    background:
        linear-gradient(
            120deg,
            #0E3B78,
            #123f7b
        );

    position: relative;

    overflow: hidden;

}


.cta-box::after {

    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -100px;
    top: -100px;

    border-radius: 50%;

    background:
        rgba(247,148,29,.15);

}


.cta-box h2 {

    max-width: 700px;

    color: #ffffff;

    font-size:
        clamp(30px,4vw,48px);

    line-height: 1.15;

    margin:
        15px 0;

}


.cta-box p {

    color:
        rgba(255,255,255,.75);

    line-height: 1.7;

}


.cta-action {

    position: relative;

    z-index: 2;

    flex-shrink: 0;

}


/* ===========================================================
   RESPONSIVE
=========================================================== */

@media (max-width: 992px) {

    .exhibit-intro-grid,
    .outcome-grid {

        grid-template-columns: 1fr;

        gap: 40px;

    }


    .stats-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .benefits-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .audience-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .category-grid {

        grid-template-columns:
            repeat(3,1fr);

    }


    .cta-box {

        flex-direction: column;

        align-items: flex-start;

    }

}


@media (max-width: 600px) {

    .exhibit-hero {

        min-height:
            650px;

        padding:
            130px 0 80px;

    }


    .exhibit-hero h1 {

        font-size:
            42px;

    }


    .exhibit-hero p {

        font-size:
            16px;

    }


    .hero-actions {

        flex-direction:
            column;

        align-items:
            flex-start;

    }


    .stats-grid,
    .benefits-grid,
    .audience-grid,
    .category-grid {

        grid-template-columns:
            1fr;

    }


    .exhibit-intro,
    .exhibit-benefits,
    .meet-section,
    .business-outcomes,
    .categories-section {

        padding:
            75px 0;

    }


    .cta-box {

        padding:
            35px 25px;

    }

}

/* ===========================================================
   EXHIBITOR CATEGORIES PAGE
=========================================================== */


/* ===========================================================
   HERO
=========================================================== */

.categories-hero {

    position: relative;

    min-height: 580px;

    display: flex;

    align-items: center;

    padding: 150px 0 100px;

    background:
        linear-gradient(
            115deg,
            #071f42,
            #0E3B78
        );

    overflow: hidden;

}


.categories-hero::before {

    content: "";

    position: absolute;

    width: 650px;

    height: 650px;

    right: -220px;

    top: -220px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(247,148,29,.25),
            transparent 68%
        );

}


.categories-hero::after {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    left: -170px;

    bottom: -170px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.05);

}


.categories-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7,31,66,.9),
            rgba(14,59,120,.65)
        );

}


.categories-hero-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

}


.categories-hero h1 {

    color: #ffffff;

    font-size:
        clamp(44px,6vw,72px);

    line-height: 1.05;

    font-weight: 800;

    margin:
        25px 0;

}


.categories-hero h1 span {

    display: block;

    color: #F7941D;

}


.categories-hero p {

    max-width: 750px;

    color:
        rgba(255,255,255,.82);

    font-size: 19px;

    line-height: 1.8;

}


.categories-hero .hero-actions {

    display: flex;

    gap: 18px;

    margin-top: 35px;

}


.categories-hero .btn-primary {

    display: inline-flex;

    align-items: center;

    gap: 12px;

}


.categories-hero .btn-outline-light {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 15px 30px;

    border:
        1px solid
        rgba(255,255,255,.5);

    color: #ffffff;

    border-radius: 50px;

    font-weight: 700;

    transition: .3s;

}


.categories-hero .btn-outline-light:hover {

    background: #ffffff;

    color: #0E3B78;

}


/* ===========================================================
   INTRO
=========================================================== */

.categories-intro {

    padding: 100px 0;

    background: #ffffff;

}


.categories-intro-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;

}


.categories-intro h2 {

    color: #0E3B78;

    font-size:
        clamp(36px,4vw,52px);

    line-height: 1.15;

    margin-top: 18px;

}


.categories-intro h2 span {

    color: #F7941D;

}


.categories-intro-grid p {

    color: #667085;

    font-size: 17px;

    line-height: 1.8;

}


/* ===========================================================
   CATEGORY SECTION
=========================================================== */

.exhibitor-category-section {

    padding: 110px 0;

    background: #f5f8fc;

}


.exhibitor-category-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 24px;

}


/* ===========================================================
   CATEGORY CARD
=========================================================== */

.exhibitor-category-card {

    position: relative;

    background: #ffffff;

    border:
        1px solid #e5eaf1;

    border-radius: 18px;

    padding: 30px;

    overflow: hidden;

    transition: .35s;

}


.exhibitor-category-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(247,148,29,.45);

    box-shadow:
        0 20px 50px
        rgba(14,59,120,.12);

}


.category-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 25px;

}


.category-icon {

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background:
        rgba(247,148,29,.12);

    color: #F7941D;

    font-size: 24px;

}


.category-number {

    color: #e9edf3;

    font-size: 42px;

    font-weight: 800;

}


.exhibitor-category-card h3 {

    color: #0E3B78;

    font-size: 21px;

    margin-bottom: 12px;

}


.exhibitor-category-card > p {

    color: #667085;

    font-size: 15px;

    line-height: 1.7;

    min-height: 76px;

}


/* ===========================================================
   PRODUCT TAGS
=========================================================== */

.category-products {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 22px;

    padding-top: 20px;

    border-top:
        1px solid #edf0f5;

}


.category-products span {

    display: inline-block;

    padding:
        7px 11px;

    border-radius: 30px;

    background: #f4f7fb;

    color: #526071;

    font-size: 12px;

    font-weight: 600;

}


/* ===========================================================
   WHO SHOULD EXHIBIT
=========================================================== */

.who-exhibit-section {

    padding: 110px 0;

    background: #0E3B78;

}


.who-exhibit-grid {

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 90px;

    align-items: center;

}


.who-exhibit-content h2 {

    color: #ffffff;

    font-size:
        clamp(40px,5vw,58px);

    line-height: 1.1;

    margin:
        18px 0 22px;

}


.who-exhibit-content h2 span {

    color: #F7941D;

}


.who-exhibit-content p {

    color:
        rgba(255,255,255,.75);

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 30px;

}


.who-exhibit-list {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 16px;

}


.who-item {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 22px;

    border:
        1px solid
        rgba(255,255,255,.12);

    background:
        rgba(255,255,255,.06);

    border-radius: 14px;

    color: #ffffff;

    transition: .3s;

}


.who-item:hover {

    background:
        rgba(247,148,29,.15);

    border-color:
        rgba(247,148,29,.4);

}


.who-item i {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #F7941D;

    border-radius: 10px;

    color: #ffffff;

}


.who-item span {

    font-size: 14px;

    font-weight: 700;

}


/* ===========================================================
   CTA
=========================================================== */

.categories-cta {

    padding: 80px 0;

    background: #ffffff;

}


.categories-cta-box {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding: 55px;

    border-radius: 22px;

    background:
        linear-gradient(
            120deg,
            #0E3B78,
            #123f7b
        );

    position: relative;

    overflow: hidden;

}


.categories-cta-box::after {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    right: -130px;

    top: -130px;

    border-radius: 50%;

    background:
        rgba(247,148,29,.14);

}


.categories-cta-box h2 {

    color: #ffffff;

    font-size:
        clamp(30px,4vw,48px);

    line-height: 1.15;

    margin:
        15px 0;

}


.categories-cta-box p {

    color:
        rgba(255,255,255,.72);

}


.categories-cta-box .btn-primary {

    position: relative;

    z-index: 2;

    white-space: nowrap;

}


/* ===========================================================
   RESPONSIVE
=========================================================== */

@media (max-width: 992px) {

    .categories-intro-grid {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .exhibitor-category-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .who-exhibit-grid {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .categories-cta-box {

        flex-direction: column;

        align-items: flex-start;

    }

}


@media (max-width: 600px) {

    .categories-hero {

        min-height: 620px;

        padding:
            130px 0 80px;

    }


    .categories-hero h1 {

        font-size: 42px;

    }


    .categories-hero p {

        font-size: 16px;

    }


    .categories-hero .hero-actions {

        flex-direction: column;

        align-items: flex-start;

    }


    .exhibitor-category-grid {

        grid-template-columns: 1fr;

    }


    .who-exhibit-list {

        grid-template-columns: 1fr;

    }


    .categories-intro,
    .exhibitor-category-section,
    .who-exhibit-section {

        padding: 75px 0;

    }


    .categories-cta-box {

        padding: 35px 25px;

    }

}

/* ============================================================
   BUILDXCON 2027
   PARTNERSHIP OPPORTUNITIES PAGE
============================================================ */


/* ============================================================
   SECTION 1 — HERO
============================================================ */

.partnership-hero {

    position: relative;

    min-height: 580px;

    display: flex;

    align-items: center;

    padding: 150px 0 100px;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            #071f42,
            #0E3B78
        );

}


.partnership-hero::before {

    content: "";

    position: absolute;

    width: 700px;

    height: 700px;

    right: -250px;

    top: -280px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(247,148,29,.25),
            transparent 68%
        );

}


.partnership-hero::after {

    content: "";

    position: absolute;

    width: 400px;

    height: 400px;

    left: -220px;

    bottom: -230px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.05);

}


.partnership-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7,31,66,.94),
            rgba(14,59,120,.70)
        );

}


.partnership-hero-content {

    position: relative;

    z-index: 2;

    max-width: 900px;

}


.partnership-hero h1 {

    color: #ffffff;

    font-size:
        clamp(44px,6vw,72px);

    line-height: 1.05;

    font-weight: 800;

    margin: 25px 0;

}


.partnership-hero h1 span {

    display: block;

    color: #F7941D;

}


.partnership-hero p {

    max-width: 780px;

    color:
        rgba(255,255,255,.82);

    font-size: 19px;

    line-height: 1.8;

}


.partnership-hero-actions {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 35px;

}


.partnership-outline-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 15px 30px;

    border:
        1px solid
        rgba(255,255,255,.45);

    border-radius: 50px;

    color: #ffffff;

    font-weight: 700;

    transition: .3s;

}


.partnership-outline-btn:hover {

    background: #ffffff;

    color: #0E3B78;

}


/* ============================================================
   SECTION 2 — WHY PARTNER
============================================================ */

.why-partner-section {

    padding: 110px 0;

    background: #ffffff;

}


.why-partner-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 22px;

    margin-top: 55px;

}


.why-partner-card {

    padding: 32px 26px;

    border:
        1px solid #e7ebf1;

    border-radius: 18px;

    background: #ffffff;

    transition: .35s;

}


.why-partner-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(247,148,29,.4);

    box-shadow:
        0 20px 45px
        rgba(14,59,120,.10);

}


.why-icon {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 22px;

    border-radius: 14px;

    background:
        rgba(247,148,29,.12);

    color: #F7941D;

    font-size: 22px;

}


.why-partner-card h3 {

    color: #0E3B78;

    font-size: 19px;

    margin-bottom: 12px;

}


.why-partner-card p {

    color: #667085;

    font-size: 14px;

    line-height: 1.7;

}


/* ============================================================
   SECTION 3 — PARTNERSHIP PLATFORMS
============================================================ */

.partnership-platforms-section {

    padding: 110px 0;

    background: #f5f8fc;

}


.partnership-platform-card {

    position: relative;

    display: grid;

    grid-template-columns:
        80px 100px 1fr;

    gap: 30px;

    align-items: start;

    padding: 45px;

    margin-top: 28px;

    border-radius: 20px;

    background: #ffffff;

    border:
        1px solid #e5eaf1;

    transition: .35s;

}


.partnership-platform-card:hover {

    transform:
        translateY(-5px);

    box-shadow:
        0 20px 55px
        rgba(14,59,120,.10);

}


.platform-number {

    font-size: 42px;

    font-weight: 800;

    color: #e6ebf2;

}


.platform-icon {

    width: 78px;

    height: 78px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 18px;

    background:
        rgba(247,148,29,.12);

    color: #F7941D;

    font-size: 28px;

}


.platform-label {

    display: inline-block;

    color: #F7941D;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.platform-content h3 {

    color: #0E3B78;

    font-size: 30px;

    margin: 8px 0 12px;

}


.platform-content > p {

    max-width: 850px;

    color: #667085;

    line-height: 1.8;

    font-size: 16px;

}


/* Platform Features */

.platform-features {

    display: flex;

    flex-wrap: wrap;

    gap: 10px 18px;

    margin-top: 22px;

}


.platform-features span {

    color: #425466;

    font-size: 13px;

    font-weight: 600;

}


.platform-features i {

    color: #F7941D;

    margin-right: 6px;

}


/* Suitable For */

.platform-suitable {

    margin-top: 25px;

    padding-top: 20px;

    border-top:
        1px solid #edf0f4;

    color: #667085;

    font-size: 13px;

    line-height: 1.7;

}


.platform-suitable strong {

    color: #0E3B78;

}


/* ============================================================
   SECTION 4 — PARTNERSHIP EXPERIENCE
============================================================ */

.partnership-includes-section {

    padding: 110px 0;

    background: #ffffff;

}


.partnership-includes-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 22px;

    margin-top: 55px;

}


.include-card {

    padding: 30px;

    border-radius: 18px;

    background: #f7f9fc;

    border:
        1px solid #e9edf3;

    transition: .3s;

}


.include-card:hover {

    background: #ffffff;

    transform:
        translateY(-6px);

    box-shadow:
        0 18px 40px
        rgba(14,59,120,.09);

}


.include-card > i {

    display: inline-flex;

    width: 52px;

    height: 52px;

    align-items: center;

    justify-content: center;

    border-radius: 13px;

    background:
        #0E3B78;

    color: #ffffff;

    font-size: 20px;

    margin-bottom: 20px;

}


.include-card h3 {

    color: #0E3B78;

    font-size: 18px;

    margin-bottom: 10px;

}


.include-card p {

    color: #667085;

    font-size: 14px;

    line-height: 1.7;

}


/* ============================================================
   SECTION 5 — WHO CAN PARTNER
============================================================ */

.partner-types-section {

    padding: 110px 0;

    background: #0E3B78;

}


.partner-types-wrapper {

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 80px;

    align-items: center;

}


.partner-types-content h2 {

    color: #ffffff;

    font-size:
        clamp(38px,5vw,58px);

    line-height: 1.1;

    margin: 18px 0;

}


.partner-types-content h2 span {

    color: #F7941D;

}


.partner-types-content p {

    color:
        rgba(255,255,255,.75);

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 30px;

}


.partner-types-list {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 14px;

}


.partner-type {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 20px;

    border:
        1px solid
        rgba(255,255,255,.12);

    background:
        rgba(255,255,255,.06);

    border-radius: 14px;

    color: #ffffff;

    transition: .3s;

}


.partner-type:hover {

    background:
        rgba(247,148,29,.14);

    border-color:
        rgba(247,148,29,.4);

}


.partner-type i {

    width: 42px;

    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background: #F7941D;

}


.partner-type span {

    font-size: 13px;

    font-weight: 700;

}


/* ============================================================
   SECTION 6 — PARTNERSHIP MODELS
============================================================ */

.partnership-model-section {

    padding: 110px 0;

    background: #f5f8fc;

}


.partnership-model-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 24px;

    margin-top: 55px;

}


.model-card {

    position: relative;

    padding: 35px;

    background: #ffffff;

    border:
        1px solid #e5eaf1;

    border-radius: 18px;

    transition: .35s;

}


.model-card:hover {

    transform:
        translateY(-7px);

    box-shadow:
        0 20px 45px
        rgba(14,59,120,.10);

}


.model-card.featured {

    border:
        2px solid #F7941D;

}


.model-number {

    color: #dfe5ed;

    font-size: 40px;

    font-weight: 800;

}


.model-card h3 {

    color: #0E3B78;

    font-size: 22px;

    margin: 15px 0;

}


.model-card p {

    color: #667085;

    font-size: 14px;

    line-height: 1.7;

    min-height: 75px;

}


.model-card a {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 20px;

    color: #F7941D;

    font-size: 13px;

    font-weight: 800;

}


/* ============================================================
   SECTION 7 — CONTRIBUTION
============================================================ */

.partner-contribution-section {

    padding: 100px 0;

    background: #ffffff;

}


.partner-contribution-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 25px;

}


.contribution-box {

    padding: 45px;

    border-radius: 20px;

    background: #f5f8fc;

}


.contribution-box.dark {

    background: #0E3B78;

}


.contribution-box h2 {

    color: #0E3B78;

    font-size: 32px;

    margin: 15px 0 25px;

}


.contribution-box.dark h2 {

    color: #ffffff;

}


.contribution-box ul {

    list-style: none;

    padding: 0;

    margin: 0;

}


.contribution-box li {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    padding: 11px 0;

    color: #526071;

    font-size: 14px;

    border-bottom:
        1px solid #e4e9ef;

}


.contribution-box.dark li {

    color:
        rgba(255,255,255,.75);

    border-color:
        rgba(255,255,255,.10);

}


.contribution-box li i {

    color: #F7941D;

    margin-top: 3px;

}


/* ============================================================
   SECTION 8 — FINAL CTA
============================================================ */

.partnership-final-cta {

    padding: 80px 0;

    background: #ffffff;

}


.partnership-final-cta-box {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding: 60px;

    overflow: hidden;

    border-radius: 24px;

    background:
        linear-gradient(
            120deg,
            #0E3B78,
            #123f7b
        );

}


.partnership-final-cta-box::after {

    content: "";

    position: absolute;

    width: 400px;

    height: 400px;

    right: -150px;

    top: -180px;

    border-radius: 50%;

    background:
        rgba(247,148,29,.14);

}


.partnership-final-cta-box h2 {

    position: relative;

    z-index: 2;

    color: #ffffff;

    font-size:
        clamp(32px,4vw,50px);

    line-height: 1.1;

    margin: 15px 0;

}


.partnership-final-cta-box h2 span {

    color: #F7941D;

    display: block;

}


.partnership-final-cta-box p {

    position: relative;

    z-index: 2;

    max-width: 700px;

    color:
        rgba(255,255,255,.72);

    line-height: 1.7;

}


.final-cta-actions {

    position: relative;

    z-index: 3;

    flex-shrink: 0;

}


/* ============================================================
   RESPONSIVE — TABLET
============================================================ */

@media (max-width: 992px) {

    .why-partner-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .partnership-platform-card {

        grid-template-columns:
            60px 80px 1fr;

    }


    .partnership-includes-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .partner-types-wrapper {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .partnership-model-grid {

        grid-template-columns: 1fr;

    }

}


/* ============================================================
   RESPONSIVE — MOBILE
============================================================ */

@media (max-width: 600px) {

    .partnership-hero {

        min-height: 620px;

        padding:
            130px 0 80px;

    }


    .partnership-hero h1 {

        font-size: 42px;

    }


    .partnership-hero p {

        font-size: 16px;

    }


    .partnership-hero-actions {

        flex-direction: column;

        align-items: flex-start;

    }


    .why-partner-section,
    .partnership-platforms-section,
    .partnership-includes-section,
    .partner-types-section,
    .partnership-model-section {

        padding: 75px 0;

    }


    .why-partner-grid {

        grid-template-columns: 1fr;

    }


    .partnership-platform-card {

        grid-template-columns: 1fr;

        padding: 28px;

    }


    .platform-number {

        display: none;

    }


    .platform-content h3 {

        font-size: 25px;

    }


    .partnership-includes-grid {

        grid-template-columns: 1fr;

    }


    .partner-types-list {

        grid-template-columns: 1fr;

    }


    .partner-contribution-grid {

        grid-template-columns: 1fr;

    }


    .contribution-box {

        padding: 30px;

    }


    .partnership-final-cta {

        padding: 60px 0;

    }


    .partnership-final-cta-box {

        flex-direction: column;

        align-items: flex-start;

        padding: 35px 25px;

    }

}

/* ============================================================
   WHY ATTEND PAGE
   BuildXcon 2027
   ============================================================ */


/* ============================================================
   WHY ATTEND HERO
   ============================================================ */

.why-attend-hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0 110px;
    background: #0E3B78;
}

.why-attend-hero-bg {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(247, 148, 29, .18),
            transparent 35%
        );

    pointer-events: none;
}

.why-attend-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.why-attend-hero h1 {
    margin: 22px 0;

    font-size: 64px;
    line-height: 1.08;

    color: #ffffff;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.why-attend-hero h1 span {
    color: #F7941D;
}

.why-attend-hero p {
    max-width: 760px;

    color: rgba(255,255,255,.82);

    font-size: 19px;
    line-height: 32px;

    margin-bottom: 38px;
}

.why-attend-hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.why-attend-hero .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 25px;

    border: 1px solid rgba(255,255,255,.5);
    border-radius: 7px;

    color: #ffffff;

    text-decoration: none;

    font-weight: 700;

    transition: .3s;
}

.why-attend-hero .btn-outline:hover {
    background: #ffffff;
    color: #0E3B78;
}



/* ============================================================
   INTRODUCTION
   ============================================================ */

.why-attend-intro {
    padding: 100px 0;
    background: #ffffff;
}

.why-attend-intro-grid {
    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 80px;

    align-items: start;
}

.why-attend-intro-title h2 {
    margin-top: 18px;

    font-size: 45px;
    line-height: 1.15;

    color: #0E3B78;
}

.why-attend-intro-title h2 span {
    color: #F7941D;
}

.why-attend-intro-content {
    padding-top: 8px;
}

.why-attend-intro-content p {
    color: #667085;

    font-size: 17px;
    line-height: 31px;

    margin: 0 0 20px;
}



/* ============================================================
   SECTION HEADING
   ============================================================ */

.section-heading-center {
    max-width: 750px;

    margin: 0 auto 55px;

    text-align: center;
}

.section-heading-center h2 {
    margin: 18px 0 15px;

    font-size: 44px;
    line-height: 1.15;

    color: #0E3B78;
}

.section-heading-center p {
    color: #667085;

    font-size: 17px;
    line-height: 29px;

    margin: 0;
}



/* ============================================================
   KEY REASONS
   ============================================================ */

.why-attend-reasons {
    padding: 100px 0;

    background: #f5f8fc;
}

.why-attend-reasons-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;
}

.why-attend-card {
    position: relative;

    background: #ffffff;

    padding: 32px 28px;

    border-radius: 16px;

    border: 1px solid #e7edf5;

    overflow: hidden;

    transition: .35s;
}

.why-attend-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 45px rgba(14,59,120,.12);
}

.why-attend-card-number {
    position: absolute;

    top: 15px;
    right: 18px;

    font-size: 42px;

    font-weight: 800;

    color: rgba(14,59,120,.06);
}

.why-attend-icon {
    width: 55px;
    height: 55px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff2df;

    color: #F7941D;

    font-size: 21px;

    margin-bottom: 25px;
}

.why-attend-card h3 {
    color: #0E3B78;

    font-size: 20px;

    margin-bottom: 13px;
}

.why-attend-card p {
    color: #667085;

    font-size: 14px;

    line-height: 24px;

    margin: 0;
}



/* ============================================================
   WHO SHOULD ATTEND
   ============================================================ */

.who-attend-section {
    padding: 100px 0;

    background: #ffffff;
}

.who-attend-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.who-attend-item {
    padding: 30px;

    background: #f7f9fc;

    border-radius: 14px;

    border-left: 4px solid #F7941D;

    transition: .3s;
}

.who-attend-item:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(0,0,0,.08);
}

.who-attend-item > i {
    color: #0E3B78;

    font-size: 28px;

    margin-bottom: 20px;
}

.who-attend-item h3 {
    color: #0E3B78;

    font-size: 19px;

    margin-bottom: 10px;
}

.who-attend-item p {
    color: #667085;

    font-size: 14px;

    line-height: 24px;

    margin: 0;
}



/* ============================================================
   BUSINESS OPPORTUNITY
   ============================================================ */

.business-opportunity-section {
    padding: 100px 0;

    background: #0E3B78;

    overflow: hidden;
}

.business-opportunity-grid {
    display: grid;

    grid-template-columns:
        1.15fr .85fr;

    gap: 80px;

    align-items: center;
}

.business-opportunity-content h2 {
    margin: 18px 0;

    color: #ffffff;

    font-size: 45px;

    line-height: 1.15;
}

.business-opportunity-content h2 span {
    color: #F7941D;
}

.business-opportunity-content > p {
    color: rgba(255,255,255,.78);

    font-size: 17px;

    line-height: 30px;

    max-width: 700px;
}

.business-points {
    margin-top: 30px;
}

.business-points div {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 16px;

    color: #ffffff;

    font-size: 15px;
}

.business-points i {
    width: 24px;
    height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #F7941D;

    color: #ffffff;

    font-size: 11px;
}

.business-stat-card {
    padding: 35px;

    border-radius: 18px;

    background:
        rgba(255,255,255,.08);

    border:
        1px solid rgba(255,255,255,.12);

    backdrop-filter: blur(10px);
}

.business-stat {
    padding: 25px 0;

    border-bottom:
        1px solid rgba(255,255,255,.12);
}

.business-stat:last-child {
    border-bottom: none;
}

.business-stat strong {
    display: block;

    color: #F7941D;

    font-size: 42px;

    line-height: 1;

    margin-bottom: 8px;
}

.business-stat span {
    color: rgba(255,255,255,.8);

    font-size: 15px;
}



/* ============================================================
   KNOWLEDGE SECTION
   ============================================================ */

.knowledge-section {
    padding: 100px 0;

    background: #f5f8fc;
}

.knowledge-heading {
    max-width: 800px;

    margin-bottom: 50px;
}

.knowledge-heading h2 {
    color: #0E3B78;

    font-size: 44px;

    line-height: 1.15;

    margin: 18px 0;
}

.knowledge-heading h2 span {
    color: #F7941D;
}

.knowledge-heading p {
    color: #667085;

    font-size: 17px;

    line-height: 29px;

    margin: 0;
}

.knowledge-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}

.knowledge-card {
    background: #ffffff;

    padding: 35px;

    border-radius: 16px;

    border: 1px solid #e5eaf1;

    transition: .3s;
}

.knowledge-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(14,59,120,.10);
}

.knowledge-card > i {
    color: #F7941D;

    font-size: 30px;

    margin-bottom: 25px;
}

.knowledge-card h3 {
    color: #0E3B78;

    font-size: 20px;

    margin-bottom: 12px;
}

.knowledge-card p {
    color: #667085;

    font-size: 14px;

    line-height: 24px;

    margin: 0;
}



/* ============================================================
   FINAL CTA
   ============================================================ */

.why-attend-cta {
    padding: 90px 0;

    background: #ffffff;
}

.why-attend-cta-inner {
    padding: 70px 60px;

    border-radius: 22px;

    text-align: center;

    background: #0E3B78;

    position: relative;

    overflow: hidden;
}

.why-attend-cta-inner::before {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    right: -120px;
    top: -150px;

    background:
        rgba(247,148,29,.12);
}

.why-attend-cta-inner h2 {
    position: relative;

    color: #ffffff;

    font-size: 42px;

    line-height: 1.2;

    max-width: 800px;

    margin: 18px auto;
}

.why-attend-cta-inner p {
    position: relative;

    color: rgba(255,255,255,.78);

    font-size: 17px;

    line-height: 29px;

    max-width: 700px;

    margin: 0 auto 30px;
}

.why-attend-cta-buttons {
    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;
}

.why-attend-cta .btn-outline {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 14px 25px;

    border: 1px solid rgba(255,255,255,.5);

    border-radius: 7px;

    color: #ffffff;

    text-decoration: none;

    font-weight: 700;

    transition: .3s;
}

.why-attend-cta .btn-outline:hover {
    background: #ffffff;

    color: #0E3B78;
}



/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {

    .why-attend-reasons-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .why-attend-intro-grid {
        gap: 45px;
    }

    .business-opportunity-grid {
        gap: 45px;
    }

}


@media (max-width: 992px) {

    .why-attend-hero h1 {
        font-size: 50px;
    }

    .why-attend-intro-grid {
        grid-template-columns: 1fr;
    }

    .who-attend-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .business-opportunity-grid {
        grid-template-columns: 1fr;
    }

    .knowledge-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 700px) {

    .why-attend-hero {
        padding: 85px 0 75px;
    }

    .why-attend-hero h1 {
        font-size: 38px;

        letter-spacing: -.5px;
    }

    .why-attend-hero p {
        font-size: 16px;

        line-height: 27px;
    }

    .why-attend-intro,
    .why-attend-reasons,
    .who-attend-section,
    .business-opportunity-section,
    .knowledge-section {
        padding: 70px 0;
    }

    .why-attend-intro-title h2,
    .section-heading-center h2,
    .business-opportunity-content h2,
    .knowledge-heading h2 {
        font-size: 34px;
    }

    .why-attend-reasons-grid {
        grid-template-columns: 1fr;
    }

    .who-attend-grid {
        grid-template-columns: 1fr;
    }

    .knowledge-grid {
        grid-template-columns: 1fr;
    }

    .why-attend-cta {
        padding: 60px 0;
    }

    .why-attend-cta-inner {
        padding: 50px 25px;
    }

    .why-attend-cta-inner h2 {
        font-size: 31px;
    }

}


@media (max-width: 480px) {

    .why-attend-hero h1 {
        font-size: 32px;
    }

    .why-attend-hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .why-attend-hero-buttons a {
        width: 100%;
        text-align: center;
    }

    .why-attend-card {
        padding: 27px 22px;
    }

    .business-stat-card {
        padding: 25px;
    }

    .business-stat strong {
        font-size: 35px;
    }

    .why-attend-cta-buttons {
        flex-direction: column;
    }

    .why-attend-cta-buttons a {
        width: 100%;
    }

}


/* ============================================================
   FINAL HEADER FIX
   ============================================================ */

.header {
    background: #ffffff;
}

.header.scrolled {
    background: #ffffff;
}


/* Desktop menu */

.nav-menu > .nav-item > .nav-link {
    color: #0E3B78;
}


/* Mobile icon */

.mobile-toggle {
    color: #0E3B78;
}


/* Mobile navigation must sit above page content */

@media (max-width: 991px) {

    .main-navigation {
        z-index: 10000;
    }

    .main-navigation.mobile-open {
        display: block;

        max-height: 85vh;

        opacity: 1;

        visibility: visible;

        overflow-y: auto;
    }

}

/* ============================================================
   PRIVACY POLICY / LEGAL PAGES
   ============================================================ */


/* ============================================================
   LEGAL HERO
   ============================================================ */

.legal-hero {

    padding: 110px 0 90px;

    background: #0E3B78;

    position: relative;

    overflow: hidden;
}

.legal-hero::after {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    right: -140px;
    top: -180px;

    background:
        rgba(247,148,29,.12);

    pointer-events: none;
}

.legal-hero-content {

    position: relative;

    z-index: 2;

    max-width: 850px;
}

.legal-hero h1 {

    margin: 20px 0 15px;

    color: #ffffff;

    font-size: 56px;

    line-height: 1.1;

    font-weight: 800;
}

.legal-hero p {

    max-width: 760px;

    margin: 0;

    color:
        rgba(255,255,255,.78);

    font-size: 17px;

    line-height: 30px;
}


/* ============================================================
   LEGAL CONTENT
   ============================================================ */

.legal-content-section {

    padding: 90px 0;

    background: #f6f8fb;
}

.legal-layout {

    display: grid;

    grid-template-columns: 250px 1fr;

    gap: 50px;

    align-items: start;
}


/* ============================================================
   SIDEBAR
   ============================================================ */

.legal-sidebar {

    position: sticky;

    top: 120px;
}

.legal-sidebar-card {

    background: #ffffff;

    border: 1px solid #e5eaf1;

    border-radius: 12px;

    overflow: hidden;

    box-shadow:
        0 8px 25px rgba(14,59,120,.06);
}

.legal-sidebar-card strong {

    display: block;

    padding: 20px;

    color: #0E3B78;

    font-size: 17px;

    border-bottom:
        1px solid #edf0f4;
}

.legal-sidebar-card span {

    display: block;

    padding: 12px 20px 18px;

    color: #98a2b3;

    font-size: 12px;
}

.legal-sidebar-card a {

    display: block;

    padding: 11px 20px;

    color: #475467;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none;

    border-top:
        1px solid #f1f3f6;

    transition:
        .25s;
}

.legal-sidebar-card a:hover {

    color: #F7941D;

    background: #fff8ef;

    padding-left: 24px;
}


/* ============================================================
   DOCUMENT
   ============================================================ */

.legal-document {

    background: #ffffff;

    padding: 50px 55px;

    border-radius: 16px;

    border: 1px solid #e5eaf1;

    box-shadow:
        0 10px 35px rgba(14,59,120,.06);
}

.legal-section {

    padding-bottom: 35px;

    margin-bottom: 35px;

    border-bottom:
        1px solid #edf0f4;
}

.legal-section:last-child {

    border-bottom: none;

    margin-bottom: 0;

    padding-bottom: 0;
}

.legal-section h2 {

    margin: 0 0 17px;

    color: #0E3B78;

    font-size: 25px;

    line-height: 1.3;

    font-weight: 800;
}

.legal-section p {

    margin: 0 0 15px;

    color: #667085;

    font-size: 15px;

    line-height: 28px;
}

.legal-section p:last-child {

    margin-bottom: 0;
}

.legal-section ul {

    margin: 15px 0 0;

    padding-left: 22px;
}

.legal-section li {

    margin-bottom: 11px;

    color: #667085;

    font-size: 15px;

    line-height: 27px;

    padding-left: 5px;
}

.legal-section li::marker {

    color: #F7941D;
}


/* ============================================================
   CONTACT BOX
   ============================================================ */

.legal-contact-box {

    display: flex;

    flex-direction: column;

    gap: 8px;

    margin-top: 25px;

    padding: 22px 25px;

    background: #f7f9fc;

    border-left:
        4px solid #F7941D;

    border-radius: 8px;
}

.legal-contact-box strong {

    color: #0E3B78;

    font-size: 18px;
}

.legal-contact-box span {

    color: #667085;

    font-size: 14px;
}

/* ============================================================
   LEGAL DOCUMENT LINKS
   ============================================================ */

.legal-document a {
    color: #0E3B78;
    font-weight: 700;
    text-decoration: none;
}

.legal-document a:hover {
    color: #F7941D;
}

/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 991px) {

    .legal-layout {

        grid-template-columns: 1fr;

        gap: 30px;
    }

    .legal-sidebar {

        position: static;
    }

    .legal-sidebar-card {

        display: grid;

        grid-template-columns:
            repeat(2, 1fr);
    }

    .legal-sidebar-card strong {

        grid-column: 1 / -1;
    }

    .legal-sidebar-card span {

        grid-column: 1 / -1;
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 700px) {

    .legal-hero {

        padding: 85px 0 70px;
    }

    .legal-hero h1 {

        font-size: 38px;
    }

    .legal-hero p {

        font-size: 15px;

        line-height: 26px;
    }

    .legal-content-section {

        padding: 55px 0;
    }

    .legal-sidebar-card {

        display: block;
    }

    .legal-sidebar-card a {

        display: none;
    }

    .legal-document {

        padding: 30px 22px;

        border-radius: 12px;
    }

    .legal-section h2 {

        font-size: 21px;
    }

    .legal-section p,
    .legal-section li {

        font-size: 14px;

        line-height: 25px;
    }

}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 480px) {

    .legal-hero h1 {

        font-size: 32px;
    }

    .legal-document {

        padding: 25px 18px;
    }

}


/* ============================================================
   HEAVY MACHINERY SHOWCASE
   BuildXcon 2027
   ============================================================ */


/* ============================================================
   HERO
   ============================================================ */

.heavy-machines-hero {

    position: relative;

    min-height: 620px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            #081f40 0%,
            #0E3B78 55%,
            #123f75 100%
        );
}

.heavy-machines-overlay {

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 80% 45%,
            rgba(247,148,29,.22),
            transparent 35%
        );

    pointer-events: none;
}

.heavy-machines-hero-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

    padding: 90px 0;
}

.heavy-machines-hero h1 {

    margin: 22px 0;

    color: #ffffff;

    font-size: 64px;

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1.5px;
}

.heavy-machines-hero h1 span {

    color: #F7941D;
}

.heavy-machines-hero p {

    max-width: 760px;

    color:
        rgba(255,255,255,.82);

    font-size: 19px;

    line-height: 32px;

    margin-bottom: 35px;
}

.heavy-machines-hero-buttons {

    display: flex;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;
}

.heavy-outline-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 14px 25px;

    border:
        1px solid rgba(255,255,255,.5);

    border-radius: 7px;

    color: #ffffff;

    text-decoration: none;

    font-weight: 700;

    transition: .3s;
}

.heavy-outline-btn:hover {

    background: #ffffff;

    color: #0E3B78;
}



/* ============================================================
   INTRO
   ============================================================ */

.heavy-machines-intro {

    padding: 100px 0;

    background: #ffffff;
}

.heavy-intro-grid {

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 80px;
}

.heavy-intro-heading h2 {

    margin-top: 18px;

    color: #0E3B78;

    font-size: 45px;

    line-height: 1.15;
}

.heavy-intro-heading h2 span {

    color: #F7941D;
}

.heavy-intro-content p {

    color: #667085;

    font-size: 17px;

    line-height: 31px;

    margin: 0 0 20px;
}



/* ============================================================
   MACHINE CATEGORIES
   ============================================================ */

.heavy-machine-categories {

    padding: 100px 0;

    background: #f5f8fc;
}

.section-heading-center {

    max-width: 750px;

    margin:
        0 auto 55px;

    text-align: center;
}

.section-heading-center h2 {

    margin: 18px 0 15px;

    color: #0E3B78;

    font-size: 44px;

    line-height: 1.15;
}

.section-heading-center h2 span {

    color: #F7941D;
}

.section-heading-center p {

    color: #667085;

    font-size: 17px;

    line-height: 29px;
}

.heavy-category-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;
}

.heavy-category-card {

    position: relative;

    padding: 32px 28px;

    background: #ffffff;

    border:
        1px solid #e4e9f0;

    border-radius: 16px;

    overflow: hidden;

    transition: .35s;
}

.heavy-category-card:hover {

    transform:
        translateY(-7px);

    box-shadow:
        0 18px 45px
        rgba(14,59,120,.12);
}

.heavy-category-icon {

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #fff2df;

    color: #F7941D;

    font-size: 23px;

    margin-bottom: 25px;
}

.category-number {

    position: absolute;

    right: 18px;

    top: 15px;

    color:
        rgba(14,59,120,.06);

    font-size: 40px;

    font-weight: 800;
}

.heavy-category-card h3 {

    color: #0E3B78;

    font-size: 20px;

    margin-bottom: 12px;
}

.heavy-category-card p {

    color: #667085;

    font-size: 14px;

    line-height: 24px;

    margin-bottom: 22px;
}

.heavy-category-card a {

    color: #0E3B78;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;
}

.heavy-category-card a i {

    margin-left: 6px;

    color: #F7941D;

    transition: .3s;
}

.heavy-category-card:hover a i {

    transform:
        translateX(5px);
}



/* ============================================================
   LIVE SHOWCASE
   ============================================================ */

.machine-live-showcase {

    padding: 100px 0;

    background: #ffffff;
}

.machine-showcase-header {

    display: grid;

    grid-template-columns:
        1fr .8fr;

    gap: 70px;

    align-items: end;

    margin-bottom: 50px;
}

.machine-showcase-header h2 {

    margin: 18px 0 0;

    color: #0E3B78;

    font-size: 45px;

    line-height: 1.15;
}

.machine-showcase-header h2 span {

    color: #F7941D;
}

.machine-showcase-header p {

    color: #667085;

    font-size: 17px;

    line-height: 29px;

    margin: 0;
}

.machine-showcase-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;
}

.machine-showcase-card {

    overflow: hidden;

    background: #ffffff;

    border-radius: 16px;

    border:
        1px solid #e5eaf1;

    box-shadow:
        0 10px 35px
        rgba(14,59,120,.06);

    transition: .35s;
}

.machine-showcase-card:hover {

    transform:
        translateY(-7px);

    box-shadow:
        0 20px 45px
        rgba(14,59,120,.13);
}

.machine-image-placeholder {

    height: 250px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 15px;

    background:
        linear-gradient(
            135deg,
            #102f54,
            #0E3B78
        );

    color: #ffffff;

    position: relative;
}

.machine-image-placeholder::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(247,148,29,.18),
            transparent 55%
        );
}

.machine-image-placeholder i {

    position: relative;

    font-size: 58px;

    color: #F7941D;
}

.machine-image-placeholder span {

    position: relative;

    font-size: 11px;

    letter-spacing: 2px;

    font-weight: 800;

    color:
        rgba(255,255,255,.75);
}

.machine-showcase-content {

    padding: 27px;
}

.machine-showcase-content > span {

    color: #F7941D;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.2px;
}

.machine-showcase-content h3 {

    margin: 9px 0 10px;

    color: #0E3B78;

    font-size: 21px;
}

.machine-showcase-content p {

    margin: 0;

    color: #667085;

    font-size: 14px;

    line-height: 24px;
}



/* ============================================================
   BENEFITS
   ============================================================ */

.machine-benefits {

    padding: 100px 0;

    background: #0E3B78;
}

.machine-benefits-grid {

    display: grid;

    grid-template-columns:
        1.15fr .85fr;

    gap: 80px;

    align-items: center;
}

.machine-benefits-content h2 {

    margin: 18px 0;

    color: #ffffff;

    font-size: 45px;

    line-height: 1.15;
}

.machine-benefits-content h2 span {

    color: #F7941D;
}

.machine-benefits-content > p {

    max-width: 700px;

    color:
        rgba(255,255,255,.78);

    font-size: 17px;

    line-height: 30px;
}

.machine-benefit-list {

    margin-top: 30px;
}

.machine-benefit-list div {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 16px;

    color: #ffffff;

    font-size: 15px;
}

.machine-benefit-list i {

    width: 24px;
    height: 24px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #F7941D;

    font-size: 11px;
}

.machine-benefits-stat {

    padding: 35px;

    background:
        rgba(255,255,255,.08);

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: 18px;
}

.machine-stat {

    padding: 25px 0;

    border-bottom:
        1px solid rgba(255,255,255,.12);
}

.machine-stat:last-child {

    border-bottom: none;
}

.machine-stat strong {

    display: block;

    color: #F7941D;

    font-size: 40px;

    line-height: 1;

    margin-bottom: 8px;
}

.machine-stat span {

    color:
        rgba(255,255,255,.78);

    font-size: 15px;
}



/* ============================================================
   MANUFACTURER CTA
   ============================================================ */

.machine-manufacturer-cta {

    padding: 90px 0;

    background: #ffffff;
}

.machine-cta-inner {

    position: relative;

    overflow: hidden;

    padding: 70px 60px;

    border-radius: 22px;

    text-align: center;

    background: #f5f8fc;

    border:
        1px solid #e3e9f1;
}

.machine-cta-inner::after {

    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -100px;
    top: -150px;

    border-radius: 50%;

    background:
        rgba(247,148,29,.12);
}

.machine-cta-inner h2 {

    position: relative;

    z-index: 2;

    margin: 18px auto;

    max-width: 800px;

    color: #0E3B78;

    font-size: 43px;

    line-height: 1.15;
}

.machine-cta-inner h2 span {

    color: #F7941D;
}

.machine-cta-inner p {

    position: relative;

    z-index: 2;

    max-width: 720px;

    margin: 0 auto 30px;

    color: #667085;

    font-size: 17px;

    line-height: 29px;
}

.machine-cta-buttons {

    position: relative;

    z-index: 2;

    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;
}

.machine-outline-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 14px 25px;

    border:
        1px solid #0E3B78;

    border-radius: 7px;

    color: #0E3B78;

    text-decoration: none;

    font-weight: 700;

    transition: .3s;
}

.machine-outline-btn:hover {

    background: #0E3B78;

    color: #ffffff;
}



/* ============================================================
   RESPONSIVE
   ============================================================ */

@media(max-width:1100px) {

    .heavy-category-grid {

        grid-template-columns:
            repeat(2,1fr);
    }

}


@media(max-width:991px) {

    .heavy-machines-hero h1 {

        font-size: 50px;
    }

    .heavy-intro-grid {

        grid-template-columns: 1fr;

        gap: 35px;
    }

    .machine-showcase-header {

        grid-template-columns: 1fr;

        gap: 20px;
    }

    .machine-benefits-grid {

        grid-template-columns: 1fr;

        gap: 45px;
    }

    .machine-showcase-grid {

        grid-template-columns:
            repeat(2,1fr);
    }

}


@media(max-width:700px) {

    .heavy-machines-hero {

        min-height: auto;
    }

    .heavy-machines-hero-content {

        padding: 80px 0 70px;
    }

    .heavy-machines-hero h1 {

        font-size: 38px;
    }

    .heavy-machines-hero p {

        font-size: 16px;

        line-height: 27px;
    }

    .heavy-machines-hero-buttons {

        flex-direction: column;

        align-items: stretch;
    }

    .heavy-machines-hero-buttons a {

        width: 100%;
    }

    .heavy-machines-intro,
    .heavy-machine-categories,
    .machine-live-showcase,
    .machine-benefits {

        padding: 70px 0;
    }

    .heavy-intro-heading h2,
    .section-heading-center h2,
    .machine-showcase-header h2,
    .machine-benefits-content h2 {

        font-size: 34px;
    }

    .heavy-category-grid,
    .machine-showcase-grid {

        grid-template-columns: 1fr;
    }

    .machine-manufacturer-cta {

        padding: 60px 0;
    }

    .machine-cta-inner {

        padding: 50px 25px;
    }

    .machine-cta-inner h2 {

        font-size: 32px;
    }

}


@media(max-width:480px) {

    .heavy-machines-hero h1 {

        font-size: 32px;
    }

    .heavy-category-card {

        padding: 27px 22px;
    }

    .machine-image-placeholder {

        height: 220px;
    }

    .machine-benefits-stat {

        padding: 25px;
    }

    .machine-stat strong {

        font-size: 34px;
    }

    .machine-cta-buttons {

        flex-direction: column;
    }

    .machine-cta-buttons a {

        width: 100%;
    }

}


/* ============================================================
   CEO LEADERSHIP FORUM
   ============================================================ */


/* ============================================================
   HERO
   ============================================================ */

.ceo-talk-hero {

    position: relative;

    min-height: 620px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            110deg,
            #081f40 0%,
            #0E3B78 60%,
            #123f75 100%
        );
}

.ceo-talk-hero::after {

    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -180px;
    top: -180px;

    border-radius: 50%;

    background:
        rgba(247,148,29,.10);

    border:
        1px solid rgba(247,148,29,.12);
}

.ceo-talk-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 75% 55%,
            rgba(247,148,29,.18),
            transparent 32%
        );

    pointer-events: none;
}

.ceo-talk-hero-content {

    position: relative;

    z-index: 2;

    max-width: 900px;

    padding: 90px 0;
}

.ceo-talk-hero h1 {

    margin: 22px 0;

    color: #ffffff;

    font-size: 62px;

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1.5px;
}

.ceo-talk-hero h1 span {

    display: block;

    color: #F7941D;
}

.ceo-talk-hero p {

    max-width: 780px;

    color:
        rgba(255,255,255,.82);

    font-size: 18px;

    line-height: 31px;

    margin-bottom: 35px;
}

.ceo-hero-buttons {

    display: flex;

    gap: 15px;

    align-items: center;

    flex-wrap: wrap;
}

.ceo-outline-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 14px 25px;

    border:
        1px solid rgba(255,255,255,.5);

    border-radius: 7px;

    color: #ffffff;

    text-decoration: none;

    font-weight: 700;

    transition: .3s;
}

.ceo-outline-btn:hover {

    background: #ffffff;

    color: #0E3B78;
}



/* ============================================================
   INTRO
   ============================================================ */

.ceo-talk-intro {

    padding: 100px 0;

    background: #ffffff;
}

.ceo-intro-grid {

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 80px;
}

.ceo-intro-heading h2 {

    margin-top: 18px;

    color: #0E3B78;

    font-size: 45px;

    line-height: 1.15;
}

.ceo-intro-heading h2 span {

    color: #F7941D;
}

.ceo-intro-content p {

    color: #667085;

    font-size: 17px;

    line-height: 30px;

    margin: 0 0 20px;
}



/* ============================================================
   THEMES
   ============================================================ */

.ceo-themes {

    padding: 100px 0;

    background: #f5f8fc;
}

.ceo-theme-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}

.ceo-theme-card {

    position: relative;

    padding: 32px;

    background: #ffffff;

    border:
        1px solid #e4e9f0;

    border-radius: 16px;

    overflow: hidden;

    transition: .35s;
}

.ceo-theme-card:hover {

    transform:
        translateY(-7px);

    box-shadow:
        0 18px 45px
        rgba(14,59,120,.10);
}

.ceo-theme-number {

    position: absolute;

    right: 18px;
    top: 10px;

    color:
        rgba(14,59,120,.055);

    font-size: 55px;

    font-weight: 800;
}

.ceo-theme-icon {

    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 50%;

    background: #fff2df;

    color: #F7941D;

    font-size: 20px;
}

.ceo-theme-card h3 {

    color: #0E3B78;

    font-size: 19px;

    margin-bottom: 10px;
}

.ceo-theme-card p {

    color: #667085;

    font-size: 14px;

    line-height: 24px;

    margin: 0;
}



/* ============================================================
   WHY SPEAK
   ============================================================ */

.ceo-speak-section {

    padding: 100px 0;

    background: #ffffff;
}

.ceo-speak-grid {

    display: grid;

    grid-template-columns:
        1.1fr .9fr;

    gap: 80px;

    align-items: center;
}

.ceo-speak-content h2 {

    margin: 18px 0;

    color: #0E3B78;

    font-size: 45px;

    line-height: 1.15;
}

.ceo-speak-content h2 span {

    color: #F7941D;
}

.ceo-speak-content > p {

    max-width: 680px;

    color: #667085;

    font-size: 17px;

    line-height: 30px;
}

.ceo-benefits {

    margin-top: 35px;
}

.ceo-benefit {

    display: flex;

    gap: 16px;

    margin-bottom: 22px;
}

.ceo-benefit > i {

    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #0E3B78;

    color: #F7941D;
}

.ceo-benefit div {

    display: flex;

    flex-direction: column;

    gap: 5px;
}

.ceo-benefit strong {

    color: #0E3B78;

    font-size: 16px;
}

.ceo-benefit span {

    color: #667085;

    font-size: 14px;

    line-height: 23px;
}

.ceo-speak-visual {

    min-height: 430px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 35px;

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            #0E3B78,
            #071d3a
        );

    position: relative;

    overflow: hidden;
}

.ceo-speak-visual::before {

    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    right: -90px;
    top: -90px;

    border-radius: 50%;

    border:
        1px solid rgba(247,148,29,.3);
}

.ceo-quote-card {

    position: relative;

    z-index: 2;

    max-width: 450px;
}

.ceo-quote-card > i {

    color: #F7941D;

    font-size: 40px;

    margin-bottom: 25px;
}

.ceo-quote-card p {

    color: #ffffff;

    font-size: 28px;

    line-height: 1.4;

    font-weight: 700;
}

.ceo-quote-card span {

    display: block;

    margin-top: 25px;

    color:
        rgba(255,255,255,.55);

    font-size: 11px;

    letter-spacing: 2px;

    font-weight: 800;
}



/* ============================================================
   FORM SECTION
   ============================================================ */

.ceo-form-section {

    padding: 100px 0;

    background: #f5f8fc;
}

.ceo-form-wrapper {

    max-width: 1050px;

    margin: auto;
}

.ceo-form-intro {

    max-width: 800px;

    margin:
        0 auto 50px;

    text-align: center;
}

.ceo-form-intro h2 {

    margin: 18px 0;

    color: #0E3B78;

    font-size: 44px;

    line-height: 1.15;
}

.ceo-form-intro h2 span {

    color: #F7941D;
}

.ceo-form-intro p {

    color: #667085;

    font-size: 16px;

    line-height: 28px;
}

.ceo-form-note {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    max-width: 700px;

    margin: 25px auto 0;

    padding: 15px 18px;

    text-align: left;

    background: #fff8ed;

    border:
        1px solid #f7d49c;

    border-radius: 9px;
}

.ceo-form-note i {

    margin-top: 2px;

    color: #F7941D;
}

.ceo-form-note span {

    color: #7a5a27;

    font-size: 13px;

    line-height: 21px;
}



/* ============================================================
   FORM
   ============================================================ */

.ceo-leadership-form {

    padding: 45px;

    background: #ffffff;

    border:
        1px solid #e3e9f1;

    border-radius: 18px;

    box-shadow:
        0 12px 40px
        rgba(14,59,120,.07);
}

.form-block {

    padding-bottom: 38px;

    margin-bottom: 38px;

    border-bottom:
        1px solid #edf0f4;
}

.form-block h3 {

    margin: 0 0 25px;

    color: #0E3B78;

    font-size: 22px;
}

.form-grid {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 20px;
}

.form-field {

    display: flex;

    flex-direction: column;

    gap: 8px;
}

.form-field.full {

    grid-column: 1 / -1;
}

.form-field label {

    color: #344054;

    font-size: 13px;

    font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {

    width: 100%;

    box-sizing: border-box;

    padding: 14px 15px;

    border:
        1px solid #d8dee8;

    border-radius: 7px;

    background: #ffffff;

    color: #344054;

    font-family: inherit;

    font-size: 14px;

    outline: none;

    transition:
        border .25s ease,
        box-shadow .25s ease;
}

.form-field textarea {

    resize: vertical;

    min-height: 130px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {

    border-color: #0E3B78;

    box-shadow:
        0 0 0 3px rgba(14,59,120,.08);
}

.ceo-form-submit {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;
}

.ceo-consent {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    max-width: 600px;

    color: #667085;

    font-size: 13px;

    line-height: 21px;

    cursor: pointer;
}

.ceo-consent input {

    margin-top: 3px;

    accent-color: #0E3B78;
}

.ceo-form-submit .btn-primary {

    border: none;

    cursor: pointer;

    white-space: nowrap;
}



/* ============================================================
   FINAL CTA
   ============================================================ */

.ceo-final-cta {

    padding: 90px 0;

    background: #ffffff;
}

.ceo-final-inner {

    position: relative;

    overflow: hidden;

    padding: 65px 40px;

    text-align: center;

    border-radius: 20px;

    background: #0E3B78;
}

.ceo-final-inner::after {

    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    right: -100px;
    top: -170px;

    border-radius: 50%;

    background:
        rgba(247,148,29,.12);
}

.ceo-final-inner h2,
.ceo-final-inner p,
.ceo-final-inner a,
.ceo-final-inner .section-tag {

    position: relative;

    z-index: 2;
}

.ceo-final-inner h2 {

    margin: 18px 0;

    color: #ffffff;

    font-size: 43px;
}

.ceo-final-inner p {

    max-width: 700px;

    margin: 0 auto 28px;

    color:
        rgba(255,255,255,.78);

    font-size: 16px;

    line-height: 28px;
}



/* ============================================================
   RESPONSIVE
   ============================================================ */

@media(max-width:991px) {

    .ceo-talk-hero h1 {

        font-size: 50px;
    }

    .ceo-intro-grid,
    .ceo-speak-grid {

        grid-template-columns: 1fr;

        gap: 45px;
    }

    .ceo-theme-grid {

        grid-template-columns:
            repeat(2,1fr);
    }

    .ceo-speak-visual {

        min-height: 350px;
    }

    .ceo-form-submit {

        align-items: stretch;

        flex-direction: column;
    }

}


@media(max-width:700px) {

    .ceo-talk-hero {

        min-height: auto;
    }

    .ceo-talk-hero-content {

        padding: 75px 0;
    }

    .ceo-talk-hero h1 {

        font-size: 38px;
    }

    .ceo-talk-hero p {

        font-size: 16px;

        line-height: 27px;
    }

    .ceo-hero-buttons {

        flex-direction: column;

        align-items: stretch;
    }

    .ceo-hero-buttons a {

        width: 100%;
    }

    .ceo-talk-intro,
    .ceo-themes,
    .ceo-speak-section,
    .ceo-form-section {

        padding: 70px 0;
    }

    .ceo-intro-heading h2,
    .ceo-speak-content h2,
    .ceo-form-intro h2 {

        font-size: 34px;
    }

    .ceo-theme-grid {

        grid-template-columns: 1fr;
    }

    .ceo-leadership-form {

        padding: 28px 20px;
    }

    .form-grid {

        grid-template-columns: 1fr;
    }

    .form-field.full {

        grid-column: auto;
    }

    .ceo-form-submit .btn-primary {

        width: 100%;
    }

    .ceo-speak-visual {

        min-height: 300px;

        padding: 25px;
    }

    .ceo-quote-card p {

        font-size: 22px;
    }

    .ceo-final-inner {

        padding: 50px 22px;
    }

    .ceo-final-inner h2 {

        font-size: 32px;
    }

}


/* ============================================================
   CEO TALK RESULT PAGE
   ============================================================ */


/* ============================================================
   RESULT HERO
   ============================================================ */

.ceo-result-hero {

    position: relative;

    padding: 100px 0 85px;

    background:
        linear-gradient(
            120deg,
            #081f40,
            #0E3B78
        );

    overflow: hidden;
}

.ceo-result-hero::after {

    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    right: -120px;
    top: -220px;

    border-radius: 50%;

    background:
        rgba(247,148,29,.12);
}

.ceo-result-hero-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: auto;

    text-align: center;
}

.ceo-result-icon {

    width: 78px;
    height: 78px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 25px;

    border-radius: 50%;

    font-size: 30px;
}

.ceo-result-icon.success {

    background: #16a34a;

    color: #ffffff;
}

.ceo-result-icon.duplicate {

    background: #F7941D;

    color: #ffffff;
}

.ceo-result-icon.error {

    background: #dc2626;

    color: #ffffff;
}

.ceo-result-hero h1 {

    margin: 18px 0;

    color: #ffffff;

    font-size: 52px;

    line-height: 1.1;

    font-weight: 800;
}

.ceo-result-hero h1 span {

    color: #F7941D;
}

.ceo-result-hero p {

    max-width: 700px;

    margin: auto;

    color:
        rgba(255,255,255,.78);

    font-size: 17px;

    line-height: 29px;
}



/* ============================================================
   MAIN RESULT SECTION
   ============================================================ */

.ceo-result-section {

    padding: 80px 0;

    background: #f5f8fc;
}

.ceo-result-wrapper {

    max-width: 950px;

    margin: auto;
}



/* ============================================================
   APPLICATION NUMBER
   ============================================================ */

.ceo-application-number {

    padding: 28px;

    margin-bottom: 25px;

    text-align: center;

    background: #ffffff;

    border:
        1px solid #e3e9f1;

    border-radius: 14px;

    box-shadow:
        0 10px 30px
        rgba(14,59,120,.05);
}

.ceo-application-number span {

    display: block;

    margin-bottom: 8px;

    color: #667085;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}

.ceo-application-number strong {

    display: block;

    color: #0E3B78;

    font-size: 27px;

    letter-spacing: 1px;
}

.ceo-application-number small {

    display: block;

    margin-top: 8px;

    color: #98a2b3;

    font-size: 12px;
}



/* ============================================================
   SUCCESS MESSAGE
   ============================================================ */

.ceo-result-message {

    display: flex;

    align-items: flex-start;

    gap: 20px;

    padding: 30px;

    margin-bottom: 25px;

    background: #ffffff;

    border-left:
        4px solid #16a34a;

    border-radius: 12px;

    box-shadow:
        0 10px 30px
        rgba(14,59,120,.05);
}

.result-message-icon {

    flex: 0 0 50px;

    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eefaf2;

    color: #16a34a;
}

.ceo-result-message h2 {

    margin: 0 0 8px;

    color: #0E3B78;

    font-size: 22px;
}

.ceo-result-message p {

    margin: 0;

    color: #667085;

    font-size: 14px;

    line-height: 24px;
}



/* ============================================================
   RESULT CARDS
   ============================================================ */

.ceo-result-card {

    padding: 35px;

    margin-bottom: 25px;

    background: #ffffff;

    border:
        1px solid #e3e9f1;

    border-radius: 14px;

    box-shadow:
        0 10px 30px
        rgba(14,59,120,.05);
}

.ceo-result-card-header {

    margin-bottom: 28px;

    padding-bottom: 20px;

    border-bottom:
        1px solid #edf0f4;
}

.ceo-result-card-header h3 {

    margin: 8px 0 0;

    color: #0E3B78;

    font-size: 24px;
}

.ceo-result-grid {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 20px;
}

.ceo-result-item {

    padding: 18px;

    background: #f8fafc;

    border-radius: 9px;
}

.ceo-result-item.full {

    grid-column: 1 / -1;
}

.ceo-result-item label {

    display: block;

    margin-bottom: 7px;

    color: #667085;

    font-size: 12px;

    font-weight: 600;
}

.ceo-result-item strong {

    display: block;

    color: #0E3B78;

    font-size: 15px;

    line-height: 22px;

    word-break: break-word;
}

.ceo-result-item p {

    margin: 0;

    color: #475467;

    font-size: 14px;

    line-height: 25px;
}



/* ============================================================
   SESSION TOPIC
   ============================================================ */

.ceo-session-topic {

    margin-bottom: 20px;

    padding: 24px;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #eef4ff,
            #f8fafc
        );

    border-left:
        4px solid #F7941D;
}

.ceo-session-topic label {

    display: block;

    margin-bottom: 8px;

    color: #667085;

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .5px;
}

.ceo-session-topic h3 {

    margin: 0;

    color: #0E3B78;

    font-size: 21px;

    line-height: 29px;
}



/* ============================================================
   NEXT STEPS
   ============================================================ */

.ceo-next-steps {

    padding: 40px 0 20px;

    text-align: center;
}

.ceo-next-steps h2 {

    max-width: 700px;

    margin: 18px auto 40px;

    color: #0E3B78;

    font-size: 36px;

    line-height: 1.2;
}

.ceo-next-steps h2 span {

    color: #F7941D;
}

.ceo-next-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 20px;

    text-align: left;
}

.ceo-next-item {

    display: flex;

    gap: 15px;

    padding: 25px;

    background: #ffffff;

    border:
        1px solid #e3e9f1;

    border-radius: 12px;
}

.ceo-next-number {

    flex: 0 0 auto;

    color: #F7941D;

    font-size: 23px;

    font-weight: 800;
}

.ceo-next-item h3 {

    margin: 0 0 8px;

    color: #0E3B78;

    font-size: 17px;
}

.ceo-next-item p {

    margin: 0;

    color: #667085;

    font-size: 13px;

    line-height: 22px;
}



/* ============================================================
   ACTION BUTTONS
   ============================================================ */

.ceo-result-actions {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    padding-top: 35px;

    flex-wrap: wrap;
}

.ceo-result-outline-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 14px 24px;

    border:
        1px solid #0E3B78;

    border-radius: 7px;

    color: #0E3B78;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition: .3s;
}

.ceo-result-outline-btn:hover {

    background: #0E3B78;

    color: #ffffff;
}



/* ============================================================
   RESULT FOOTER CTA
   ============================================================ */

.ceo-result-footer {

    padding: 70px 0;

    background: #ffffff;
}

.ceo-result-footer-inner {

    text-align: center;
}

.ceo-result-footer-inner > i {

    color: #F7941D;

    font-size: 32px;

    margin-bottom: 18px;
}

.ceo-result-footer-inner h2 {

    margin: 0 0 10px;

    color: #0E3B78;

    font-size: 28px;
}

.ceo-result-footer-inner p {

    margin: 0;

    color: #667085;

    font-size: 15px;
}



/* ============================================================
   RESPONSIVE
   ============================================================ */

@media(max-width:800px) {

    .ceo-result-hero {

        padding: 80px 0 65px;
    }

    .ceo-result-hero h1 {

        font-size: 40px;
    }

    .ceo-next-grid {

        grid-template-columns: 1fr;
    }

}


@media(max-width:600px) {

    .ceo-result-section {

        padding: 55px 0;
    }

    .ceo-result-hero h1 {

        font-size: 33px;
    }

    .ceo-result-hero p {

        font-size: 15px;

        line-height: 25px;
    }

    .ceo-result-card {

        padding: 25px 18px;
    }

    .ceo-result-message {

        padding: 22px;

        flex-direction: column;
    }

    .ceo-result-grid {

        grid-template-columns: 1fr;
    }

    .ceo-result-item.full {

        grid-column: auto;
    }

    .ceo-application-number strong {

        font-size: 21px;
    }

    .ceo-next-steps h2 {

        font-size: 29px;
    }

    .ceo-result-actions {

        flex-direction: column;

        align-items: stretch;
    }

    .ceo-result-actions a {

        width: 100%;

        box-sizing: border-box;
    }

}