/* ==============================
   GLOBAL STYLES
   ============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
}

body {
    background: #0d0d0d;
    color: white;
}

/* ==============================
   TOP INFO BAR
   ============================== */
.top-bar {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 8px 0;
    font-size: 0.85rem;
    z-index: 10;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: flex-end;
}

.top-right span {
    margin-left: 25px;
    color: #ccc;
}

.top-right i {
    margin-right: 8px;
    color: orange;
}

/* ==============================
   MAIN NAVIGATION
   ============================== */
.main-nav {
    position: absolute;
    top: 31px; /* height of top-bar */
    width: 100%;
    z-index: 9;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-container {
    width: 90%;
    margin: auto;
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo styling */
.logo {
    font-weight: bold;
    font-size: 1.6rem;
    letter-spacing: 3px;
    color: orange;
    text-shadow: 0 0 15px rgba(255,165,0,0.7);
}

/* Nav links */
nav a {
    margin-left: 30px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    position: relative;
    transition: 0.3s ease;
    padding: 0 23px;
}

nav a:hover {
    color: orange;
}

/* Underline hover effect */
nav a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: orange;
    bottom: -6px;
    left: 0;
    transition: 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Register button */
.btn-register {
    background: linear-gradient(135deg, orange, #ff7b00);
    padding: 10px 22px;
    border-radius: 30px;
    color: white !important;
    font-weight: bold;
    transition: 0.3s ease;
}

.btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,165,0,0.4);
    cursor: pointer;
}


/* =========================
   HAMBURGER BASE STYLE
========================= */

.hamburger {
    display: none;              /* hidden on desktop */
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    transition: 0.3s ease;
}


/* =========================
   HAMBURGER ANIMATION (X)
========================= */

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


/* =========================
   MOBILE VIEW
========================= */

@media (max-width: 900px) {
.main-nav {
    position: absolute;
    top: 71px; /* height of top-bar */
    width: 100%;
    z-index: 9;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(255,255,255,0.1);
}

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #111;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 30px 0;
        display: none;
    }

    nav.show {
        display: flex;
    }

    .hamburger {
        display: flex;   /* show hamburger */
    }
}

/* ==============================
   HERO SECTION
   ============================== */

/* ==============================
   HERO SECTION WITH VIDEO
   ============================== */

.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Background Video */
.hero-video {
    position: absolute;
    top: 60%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    margin-bottom: 15px;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

/* Dark Blur Overlay */
.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1;
}

/* Content Above Video */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-top: 85px;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 5px;
}

.hero h1 span {
    color: orange;
}

.hero p {
    font-size: 0.75rem;
}

.sub-text {
    opacity: 0.85;
}

.event-card {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border-radius: 12px;
}

/* ==============================
   HERO EVENT PANEL
   ============================== */

.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* pushes content to bottom */
    height: 100vh;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-event-panel {
    position: relative; /* change from absolute */
    bottom: auto;       /* remove manual offset */
    left: auto;
    transform: none;

    width: 90%;
    max-width: 1100px;
    margin: 0 auto 0 auto; /* center horizontally, no extra spacing */
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255,255,255,0.2);
    z-index: 3;
}

/* LEFT SIDE */
.event-left h3 {
    margin-bottom: 15px;
    font-weight: 600;
}

.event-item {
    margin-bottom: 15px;
}

.event-item strong {
    display: block;
    font-weight: 600;
}

.event-item p {
    font-size: 0.7rem;
    opacity: 0.8;
}

/* RIGHT SIDE */
.event-right h3 {
    margin-bottom: 15px;
    font-weight: 600;

}

.hero-socials i {
    font-size: 14px;
    margin-right: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

.hero-socials i:hover {
    color: orange;
    transform: translateY(-5px);
}

/* EVENT ITEM PANEL  */
.event-item {
    background-color: #ccc;
    border-radius: 13px;
    height: 90px;
    width: 89%;
}

@media(max-width: 900px){
    .hero-event-panel {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 95%;
        padding: 20px;
    }
}


/* ===============================
EVENT ITEM STYLING
================================= */

.event-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: black;
    padding: 15px 20px;
    margin-bottom: 15px;
    background: rgb(248, 248, 248);
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Thumbnail */
.event-item img {
    width: 95px;
    height: 55px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

/* Title */
.event-item strong {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Date text */
.event-item p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 3px;
}

/* Hover effect */
.event-item:hover {
    background: rgba(255, 165, 0, 0.12);
    transform: translateY(-3px);
}

/* ==============================
   ABOUT SECTION
   ============================== */
/* SECTION */
.evoke-section {
    position: relative;
    padding: 100px 8%;
    background: url("https://images.unsplash.com/photo-1581090700227-1e8e03b1a8c9") center/cover no-repeat;
    overflow: hidden;
}

/* DARK OVERLAY */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

/* CONTENT CONTAINER */
.evoke-container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: auto;
}

/* HEADER */
.evoke-header {
    text-align: center;
    margin-bottom: 60px;
}

.evoke-header h1 {
    font-size: 42px;
    letter-spacing: 2px;
}

.subtitle {
    margin-top: 10px;
    font-size: 16px;
    color: #ccc;
}

.initiative {
    margin-top: 8px;
    font-size: 14px;
    color: #aaa;
}

.initiative span {
    color: orange;
    font-weight: bold;
}

/* LAYOUT */
.evoke-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

/* LEFT TEXT */
.evoke-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.8;
    color: #ddd;
}

.evoke-text p {
    margin-bottom: 25px;
}

.highlight {
    color: orange;
    font-weight: bold;
}

/* VIDEO */
.evoke-video {
    flex: 1;
    text-align: center;
}

.video-box {
    width: 100%;
    height: 260px;
    background: #666;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.video-box i {
    font-size: 40px;
    color: white;
    background: rgba(255,255,255,0.2);
    padding: 20px;
    border-radius: 50%;
}

/* AUTHOR */
.author {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 15px;
}

/* BUTTONS */
.buttons {
    margin-top: 30px;
}

.btn-outline {
    padding: 10px 25px;
    border: 2px solid orange;
    border-radius: 30px;
    color: orange;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline:hover {
    background: orange;
    color: black;
}

.btn-solid {
    display: inline-block;
    padding: 10px 30px;
    background: orange;
    color: black;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-solid:hover {
    background: #4c3002;
    border: 2px solid orange;
    color: white;
}

/* RESPONSIVE */
@media(max-width: 900px){
    .evoke-content {
        flex-direction: column;
    }

    .video-box {
        height: 220px;
    }
}

/* ===============================
FOCUS SECTION
================================= */

.focus {
    margin-top: -65px;
    padding: 140px 5%;
   /* background-color: #d2d2d2;*/
    background-image: url(assets/img/bgg.png);
    color: #222;
    text-align: center;
}

.focus-header h2 {
    font-size: 2.2rem;
    font-weight: 600;
}

.section-line {
    width: 70px;
    height: 4px;
    background: orange;
    margin: 15px auto 60px;
}

/* Wrapper */
.focus-wrapper {
    position: relative;
    width: 800px;
    height: 600px;
    margin: auto;
}

/* Center Circle */
.focus-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 200px;
    height: 200px;
    background: white;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 25px 40px rgba(0,0,0,0.15);
}

.focus-center h3 {
    font-size: 1.8rem;
    letter-spacing: 3px;
}

/* Focus Cards */
.focus-item {
    position: absolute;
    width: 220px;
    padding: 25px;

    background: white;
    border-radius: 25px;

    box-shadow: 0 20px 35px rgba(0,0,0,0.12);
    transition: 0.3s ease;
}

.focus-item i {
    font-size: 28px;
    margin-bottom: 10px;
}

.focus-item h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.focus-item p {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Hover */
.focus-item:hover {
    transform: translateY(-8px);
}

.item-4:hover {
    transform: none;
}


/* Positioning Around Circle */

.item-1 { top: 0; left: 80px; }
.item-2 { top: 0; right: 80px; }
.item-3 { bottom: 60px; right: 20px; }
.item-4 { bottom: -60px; left: 50%; transform: translateX(-50%); }
.item-5 { bottom: 60px; left: 20px; }

/* Color Classes */
.orange { color: #f7931e; }
.purple { color: #6a4bc3; }
.pink { color: #e94e77; }
.blue { color: #3b82f6; }
.teal { color: #14b8a6; }

/* ===============================
FOCUS RESPONSIVE
================================= */

@media(max-width: 900px){

    .focus-wrapper {
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .focus-center {
        position: relative;
        transform: none;
        margin: 0 auto 40px;
    }

    .focus-item {
        position: relative;
        width: 100%;
    }
}
 
/* ===============================
INDUSTRY VOICES SECTION
================================= */

.voices {
    padding: 140px 0;
    background: #000;
    color: white;
    text-align: center;
    overflow: hidden;
}

.voices-header h2 {
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.red-line {
    width: 80px;
    height: 3px;
    background: rgb(201, 125, 2);
    margin: 15px auto 60px;
}

/* Carousel Layout */
.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    align-items: center;
    transition: transform 0.6s ease;
}

/* Testimonial Cards */
.testimonial {
    min-width: 300px;
    margin: 0 30px;
    opacity: 0.4;
    transform: scale(0.85);
    transition: all 0.6s ease;
}

.testimonial img {
    width: 200px;
    height: 260px;
    object-fit: cover;
    margin-bottom: 20px;
    filter: grayscale(100%);
}

.testimonial .quote {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 10px;
}

.testimonial h4 {
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Active (center) */
.testimonial.active {
    opacity: 1;
    transform: scale(1.1);
}

.testimonial.active img {
    filter: grayscale(0%);
}

/* Navigation Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 5;
}

.prev { left: 30px; }
.next { right: 30px; }

.nav-btn:hover {
    color: orange;
}

/* Responsive */
@media(max-width: 768px){
    .testimonial {
        min-width: 250px;
    }

    .testimonial img {
        width: 150px;
        height: 200px;
    }
}

/* ==============================
   CTA
   ============================== */
.cta {
    padding: 80px;
    text-align: center;
    /*background: #111;*/
    background-image: url(assets/img/bgk.png);
}

/* ==============================
   FOOTER
   ============================== */
footer {
    padding: 60px;
    text-align: center;
    background: #000;
}

.socials i {
    font-size: 24px;
    margin: 20px;
    cursor: pointer;
}

/* ==============================
   RESPONSIVE DESIGN
   ============================== */
@media(max-width: 900px) {

    .about-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .video-box {
        width: 100%;
    }

    .voice-grid {
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 3rem;
    }
}

@media(max-width: 768px) {
    .top-container {
        justify-content: center;
        text-align: center;
    }

    .top-right span {
        display: block;
        margin: 5px 0;
    }
}

/* =========================
   FLAG STRIP SECTION
========================= */

.flag-strip {
    width: 100%;
    overflow: hidden;
    background: #000;
    padding: 30px 0;
    position: relative;
}

.flag-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scrollFlags 25s linear infinite;
}

.flag-track img {
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s ease;
}

.flag-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}


/*INNOVATOR PAGE **/
/* =========================================
   INNOVATORS HERO
========================================= */

.innovators-hero{

    background:
    linear-gradient(
    rgba(0,0,0,0.75),
    rgba(0, 0, 0, 0)
    ),
    url('assets/img/innovators-bg.jpg');

    background-size:cover;
    background-position:center;

}

.innovators-hero h1{

    font-size:5rem;
    letter-spacing:3px;

}

.innovators-hero h1 span{

    color:orange;

}

@media(max-width:768px){

    .innovators-hero h1{

        font-size:3rem;

    }

}



/*INNOVATORS PORTFOLIO SECTOIN */


/* =========================================
   PORTFOLIO SECTION
========================================= */

.portfolio-section{

    padding:120px 8%;

    background:#111;

}

.portfolio-header{

    text-align:center;

    margin-bottom:50px;

}

.portfolio-header h2{

    font-size:2.5rem;

    margin-bottom:15px;

}

.portfolio-header p{

    color:#aaa;

    max-width:700px;

    margin:auto;

}

/* FILTERS */

.portfolio-filters{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

    margin-bottom:60px;

}

.filter-btn{

    border:none;

    padding:12px 22px;

    border-radius:30px;

    background:#222;

    color:white;

    cursor:pointer;

    transition:0.3s;

}

.filter-btn:hover{

    background:orange;

    color:black;

}

.filter-btn.active{

    background:orange;

    color:black;

}

/* GRID */

.portfolio-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

/* CARD */

.innovator-card{

    background:#1a1a1a;

    border-radius:20px;

    overflow:hidden;

    transition:0.35s;

    border:1px solid rgba(255,255,255,0.05);

}

.innovator-card:hover{

    transform:translateY(-8px);

    border-color:orange;

}

.innovator-card img{

    width:100%;

    height:240px;

    object-fit:cover;

}

.innovator-body{

    padding:25px;

}

.track-tag{

    display:inline-block;

    padding:6px 14px;

    border-radius:20px;

    background:rgba(255,165,0,0.15);

    color:orange;

    font-size:12px;

    margin-bottom:15px;

}

.innovator-body h3{

    margin-bottom:5px;

}

.institution{

    color:#999;

    margin-bottom:18px;

}

.innovator-body h4{

    color:orange;

    margin-bottom:10px;

}

.innovator-body p{

    color:#bbb;

    line-height:1.7;

}

/* META */

.project-meta{

    display:flex;

    gap:10px;

    margin-top:20px;

    margin-bottom:20px;

}

.project-meta span{

    background:#222;

    padding:8px 12px;

    border-radius:20px;

    font-size:12px;

}

/* BUTTON */

.project-btn{

    display:inline-block;

    text-decoration:none;

    background:orange;

    color:black;

    padding:12px 18px;

    border-radius:30px;

    font-weight:600;

    transition:0.3s;

}

.project-btn:hover{

    background:white;

}

/* MOBILE */

@media(max-width:768px){

    .portfolio-header h2{

        font-size:2rem;

    }

}