@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:#ffffff;
    color:#111111;
}

/* Header */

.header{
    background:#fff;
    border-bottom:1px solid #f1f1f1;
    padding:14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,.95);
}

.logo{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size:20px;
    font-weight:800;
    color:#111;
    text-decoration:none;
}

/* Text logo */
.logo-text {
    font-size: 22px;
    font-weight: 900;
    color: #111;
    letter-spacing: -0.5px;
    line-height: 1;
}

.logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.nav-link{
    color:#333;
    font-size:15px;
    font-weight:500;
    margin-left:25px;
}

.nav-link:hover{
    color:#000;
}

.join-btn{
    margin-left:30px;
    background:#111;
    color:#fff;
    text-decoration:none;
    padding:12px 22px;
    font-size:14px;
    font-weight:600;
    border-radius:8px;
}

.join-btn:hover{
    color:#fff;
}

/* Hero */

.hero{
    min-height:calc(100vh - 85px);
    display:flex;
    align-items:center;
    padding:80px 0;
}

.hero-tag{
    display:inline-block;
    font-size:12px;
    letter-spacing:4px;
    font-weight:600;
    color:#888;
    margin-bottom:24px;
}

.hero-title{
    font-size:clamp(3rem,7vw,6rem);
    font-weight:700;
    line-height:1.05;
    letter-spacing:-3px;
    margin-bottom:24px;
}

.hero-description{
    max-width:650px;
    margin:auto;
    color:#666;
    font-size:clamp(1rem,1.5vw,1.15rem);
    line-height:1.9;
}

.hero-buttons{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.primary-btn,
.secondary-btn{
    text-decoration:none;
    padding:14px 28px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:10px;
    border:none;
    font:inherit;
    cursor:pointer;
}

.primary-btn{
    background:#111;
    color:#fff;
    border-radius:8px;
}

.primary-btn:hover{
    color:#fff;
}

.secondary-btn{
    border:1px solid #ddd;
    color:#111;
    border-radius:8px;
}

.secondary-btn:hover{
    color:#111;
}

/* Tablet */

@media(max-width:991px){

    .navbar-nav{
        padding-top:20px;
        text-align:center;
    }

    .nav-link{
        margin:10px 0;
    }

    .join-btn{
        margin:15px 0 0;
        display:inline-block;
    }

    .hero{
        min-height:auto;
        padding:100px 0 80px;
    }
}

/* Mobile */

@media(max-width:576px){

    .logo{
        font-size:18px;
    }

    .hero{
        padding:70px 0;
    }

    .hero-title{
        letter-spacing:-1px;
        line-height:1.1;
    }

    .hero-description{
        font-size:15px;
        line-height:1.8;
    }

    .primary-btn,
    .secondary-btn{
        width:100%;
        max-width:260px;
        justify-content:center;
    }
}


/* Event CSS */
.events-section{
    padding:60px 0;
}

.section-header{
    margin-bottom:50px;
}

.section-tag{
    font-size:12px;
    letter-spacing:4px;
    text-transform:uppercase;
    font-weight:600;
    color:#777;
}

.section-title{
    font-size:clamp(2rem,5vw,3.5rem);
    font-weight:700;
    margin:15px 0;
}

.section-description{
    color:#666;
    max-width:600px;
    margin:auto;
}

/* Tabs */

.event-tabs{
    gap:10px;
    margin-bottom:50px;
}

.event-tabs .nav-link{
    border:1px solid #e5e5e5;
    background:#fff;
    color:#111;
    border-radius:50px;
    padding:10px 20px;
    font-size:14px;
}

.event-tabs .nav-link.active{
    background:#111;
    color:#fff;
}

/* Grid */

.event-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

/* Card */

.event-card{
    border:1px solid #ececec;
    border-radius:24px;
    padding:28px;
    background:#fff;
}

.hidden-event{
    display:none;
}

.live-indicator{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:18px;
    font-size:12px;
    font-weight:600;
    text-transform:uppercase;
    color:#666;
}

.live-dot{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#111;
    animation:blink 1.2s infinite;
}

@keyframes blink{
    50%{
        opacity:.2;
    }
}

.event-card h3{
    font-size:24px;
    font-weight:700;
    margin-bottom:12px;
}

.event-card p{
    color:#666;
    line-height:1.7;
    margin-bottom:20px;
}

/* Seat Layout */

.seat-visual{
    display:grid;
    grid-template-columns:repeat(8,1fr);
    gap:8px;
    max-width:240px;
    margin-bottom:12px;
}

.seat-visual span{
    width:18px;
    height:18px;
    border:1px solid #111;
    border-radius:4px;
}

.seat-visual .filled{
    background:#111;
}

.seat-count{
    font-size:13px;
    color:#666;
    margin-bottom:20px;
}

/* Meta */

.event-meta{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:20px;
}

.event-meta span{
    display:flex;
    align-items:center;
    gap:8px;
    color:#666;
    font-size:14px;
}

/* Link */

.event-link{
    color:#111;
    text-decoration:none;
    font-weight:600;
}

.event-link:hover{
    color:#111;
}

/* Load More */

.load-more-wrap{
    text-align:center;
    margin-top:40px;
}

.load-more-btn{
    border:none;
    background:none;
    font-size:15px;
    font-weight:600;
    color:#111;
}

/* Mobile */

@media(max-width:768px){

    .events-section{
        padding:40px 0;
    }

    .event-grid{
        grid-template-columns:1fr;
    }

    .event-card{
        padding:22px;
    }

    .event-card h3{
        font-size:20px;
    }

    .seat-visual{
        max-width:220px;
    }
}


/* Courses Section */

/* =========================
COURSES SECTION
========================= */

.courses-section{
    padding:60px 0;
}

.section-header{
    text-align:center;
    max-width:700px;
    margin:0 auto 50px;
}

.section-tag{
    display:inline-block;
    font-size:12px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#666;
    margin-bottom:15px;
}

.section-header h2{
    font-size:48px;
    font-weight:700;
    line-height:1.1;
    margin-bottom:15px;
    letter-spacing:-2px;
}

.section-header p{
    font-size:16px;
    color:#666;
    margin:0;
}

/* =========================
TABS
========================= */

.course-tabs{
    gap:12px;
    margin-bottom:50px;
}

.course-tabs .nav-link{
    border:none;
    background:#f5f5f5;
    color:#111;
    border-radius:50px;
    padding:12px 22px;
    font-size:14px;
    font-weight:500;
}

.course-tabs .nav-link.active{
    background:#111 !important;
    color:#fff !important;
}

/* =========================
GRID
========================= */

.course-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

/* =========================
CARD
========================= */

.course-card{
    border:1px solid #ececec;
    border-radius:24px;
    padding:24px;
    background:#fff;
    transition:.3s ease;

    display:flex;
    flex-direction:column;
}

.course-card:hover{
    transform:translateY(-5px);
    border-color:#d8d8d8;
}

/* Icon */

.course-icon{
    width:52px;
    height:52px;
    border:1px solid #e5e5e5;
    border-radius:14px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:18px;
}

.course-icon i{
    font-size:22px;
}

/* Price */

.course-price{
    display:flex;
    align-items:center;
    gap:10px;

    margin-bottom:14px;

    font-size:24px;
    font-weight:700;
    color:#111;
}

.course-price span{
    font-size:14px;
    font-weight:500;
    color:#999;
    text-decoration:line-through;
}

/* Title */

.course-card h3{
    font-size:22px;
    font-weight:600;
    line-height:1.3;
    margin-bottom:12px;
}

/* Description */

.course-card p{
    color:#666;
    line-height:1.7;
    font-size:14px;
    margin-bottom:20px;
}

/* CTA */

.course-card a{
    text-decoration:none;
    color:#111;
    font-weight:600;
    font-size:14px;

    display:flex;
    align-items:center;
    gap:8px;

    margin-top:auto;
}

.course-card a i{
    transition:.3s;
}

.course-card:hover a i{
    transform:translateX(4px);
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 992px){

    .course-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section-header h2{
        font-size:38px;
    }

}

@media (max-width: 768px){

    .courses-section{
        padding:40px 0;
    }

    .course-grid{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:32px;
    }

    .course-tabs{
        gap:8px;
    }

    .course-tabs .nav-link{
        padding:10px 16px;
        font-size:13px;
    }

    .course-card{
        padding:20px;
    }

    .course-price{
        font-size:22px;
    }

}

/* Showcase */

.showcase-section{
    padding:70px 0;
    overflow:hidden;
}

/* Review CTA */
.review-cta-section{
    padding:70px 0;
    background:#fff;
    border-top:1px solid #f5f5f5;
    text-align:center;
}

.review-cta-btn{
    border:none;
    border-radius:10px;
    background:#111;
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:14px 24px;
    font-weight:800;
    font:inherit;
    cursor:pointer;
    margin:0 auto;
}

.review-cta-btn:hover{
    background:#333;
    color:#fff;
}

/* Referral Explainer */
.referral-section{
    padding:70px 0;
    background:#f8f8f8;
}

.referral-panel{
    display:grid;
    grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);
    gap:28px;
    align-items:start;
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:18px;
    padding:34px;
    box-shadow:0 18px 50px rgba(0,0,0,.04);
}

.referral-copy{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.referral-copy .section-tag{
    margin-bottom:14px;
}

.referral-copy h2{
    font-size:42px;
    line-height:1.08;
    margin:0 0 14px;
    letter-spacing:0;
}

.referral-copy p{
    color:#666;
    line-height:1.75;
    margin:0 0 18px;
}

.referral-reward{
    display:flex;
    align-items:center;
    gap:10px;
    width:100%;
    max-width:430px;
    padding:11px 13px;
    border-radius:12px;
    background:#f7f7f7;
    color:#111;
    border:1px solid #e6e6e6;
    font-weight:750;
    font-size:14px;
}

.referral-reward i{
    color:#111;
}

.referral-reward-light{
    margin-top:8px;
    background:#fff;
}

.referral-steps{
    display:grid;
    gap:12px;
}

.referral-step{
    display:grid;
    grid-template-columns:42px minmax(0, 1fr);
    gap:13px;
    align-items:start;
    padding:15px;
    border:1px solid #ececec;
    border-radius:14px;
    background:#fff;
}

.referral-step-num{
    width:38px;
    height:38px;
    border-radius:12px;
    background:#f3f3f3;
    color:#111;
    border:1px solid #e5e5e5;
    display:grid;
    place-items:center;
    font-weight:900;
}

.referral-step h3{
    margin:0 0 5px;
    font-size:16px;
}

.referral-step p{
    margin:0;
    color:#666;
    line-height:1.55;
    font-size:14px;
}

.referral-actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:20px;
    align-items:center;
}

.referral-share-note{
    min-height:18px;
    margin-top:10px;
    color:#666;
    font-size:13px;
}

.referral-action-btn{
    border:none;
    border-radius:9px;
    background:#111;
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:10px 14px;
    font-weight:800;
    font-size:13px;
    text-decoration:none;
    cursor:pointer;
    min-height:38px;
}

.referral-action-btn:hover{
    color:#fff;
    background:#333;
}

.referral-action-btn.secondary{
    background:#fff;
    color:#111;
    border:1px solid #ddd;
}

.referral-action-btn.secondary:hover{
    color:#111;
    border-color:#111;
}

@media(max-width:900px){
    .referral-panel{
        grid-template-columns:1fr;
        padding:24px;
        gap:22px;
    }

    .referral-copy h2{
        font-size:34px;
    }
}

@media(max-width:520px){
    .referral-section{
        padding:48px 0;
    }

    .referral-panel{
        padding:18px;
        border-radius:14px;
    }

    .referral-step{
        grid-template-columns:36px minmax(0, 1fr);
        padding:13px;
    }

    .referral-step-num{
        width:36px;
        height:36px;
    }

    .referral-action-btn{
        width:100%;
        padding:11px 14px;
    }

    .referral-reward{
        max-width:none;
    }
}

.marquee-wrapper{
    width:100%;
    overflow:hidden;
    margin-top:60px;
}

.marquee-track{
    display:flex;
    gap:20px;
    width:max-content;
    animation:scrollMarquee 30s linear infinite;
}

.showcase-card{
    width:340px;
    height:220px;
    border-radius:24px;
    overflow:hidden;
    flex-shrink:0;
}

.showcase-card img{
    width:100%;
    height:100%;
    object-fit:cover;

    filter:grayscale(100%);
    transition:.5s ease;
}

.showcase-card:hover img{
    filter:grayscale(0%);
    transform:scale(1.08);
}

@keyframes scrollMarquee{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

.showcase-section{
    padding:70px 0;
    overflow:hidden;
    position:relative;
}

.showcase-section .section-header{
    text-align:center;
    max-width:700px;
    margin:0 auto 70px;
}

.showcase-section .section-tag{
    font-size:12px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#666;
}

.showcase-section h2{
    font-size:48px;
    font-weight:700;
    line-height:1.1;
    margin:15px 0;
    letter-spacing:-2px;
}

.showcase-section p{
    color:#666;
    margin:0;
}

/* Marquee */

.marquee-wrapper{
    overflow:hidden;
    width:100%;
    margin-bottom:20px;
}

.marquee-track{
    display:flex;
    gap:20px;
    width:max-content;
    animation:marqueeLeft 35s linear infinite;
}

.reverse .marquee-track{
    animation:marqueeRight 35s linear infinite;
}

.showcase-card{
    position:relative;
    width:360px;
    height:240px;
    overflow:hidden;
    border-radius:24px;
    flex-shrink:0;
    cursor:pointer;
}

.showcase-card img{
    width:100%;
    height:100%;
    object-fit:cover;

    filter:grayscale(100%);
    transition:.5s ease;
}

.showcase-card:hover img{
    filter:grayscale(0%);
    transform:scale(1.08);
}

.card-label{
    position:absolute;
    left:15px;
    bottom:15px;

    background:rgba(255,255,255,.9);
    backdrop-filter:blur(10px);

    padding:8px 14px;
    border-radius:50px;

    font-size:13px;
    font-weight:600;
    color:#111;
}

/* Fade Edges */

.showcase-section::before,
.showcase-section::after{
    content:"";
    position:absolute;
    top:0;
    width:120px;
    height:100%;
    z-index:10;
    pointer-events:none;
}

.showcase-section::before{
    left:0;
    background:linear-gradient(
        to right,
        #fff,
        transparent
    );
}

.showcase-section::after{
    right:0;
    background:linear-gradient(
        to left,
        #fff,
        transparent
    );
}

/* Animations */

@keyframes marqueeLeft{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

@keyframes marqueeRight{
    from{
        transform:translateX(-50%);
    }
    to{
        transform:translateX(0);
    }
}

/* Mobile */

@media(max-width:768px){

    .showcase-section{
        padding:50px 0;
    }

    .showcase-section h2{
        font-size:32px;
    }

    .showcase-card{
        width:280px;
        height:190px;
    }

    .showcase-section::before,
    .showcase-section::after{
        width:50px;
    }

}


/* Internship */


.career-path-section{
    padding:70px 0;
}

.career-card{
    max-width:1100px;
    margin:auto;

    border:1px solid #ececec;
    border-radius:32px;

    padding:60px;

    text-align:center;
}

.career-badge{
    display:inline-block;

    padding:10px 18px;

    border:1px solid #e5e5e5;
    border-radius:50px;

    font-size:12px;
    font-weight:600;
    letter-spacing:2px;

    margin-bottom:25px;
}

.career-card h2{
    font-size:56px;
    line-height:1.05;
    font-weight:700;
    letter-spacing:-2px;

    max-width:800px;
    margin:0 auto 20px;
}

.career-card p{
    max-width:700px;
    margin:0 auto 50px;

    color:#666;
    line-height:1.8;
}

/* Journey */

.career-journey{
    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:50px;
}

.journey-step{
    text-align:center;
    width:220px;
}

.step-icon{
    width:72px;
    height:72px;

    border:1px solid #e5e5e5;
    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:auto auto 15px;
}

.step-icon i{
    font-size:28px;
}

.journey-step h4{
    font-size:20px;
    margin-bottom:6px;
}

.journey-step span{
    font-size:14px;
    color:#666;
}

.journey-line{
    width:100px;
    height:1px;
    background:#ddd;
}

/* Features */

.career-features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;

    margin-bottom:40px;
}

.feature-item{
    border:1px solid #ececec;
    border-radius:16px;

    padding:16px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    font-size:14px;
}

.feature-item i{
    font-size:16px;
}

/* Button */

.career-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    text-decoration:none;

    background:#111;
    color:#fff;

    padding:14px 24px;
    border-radius:50px;
}

.career-btn:hover{
    color:#fff;
}

/* Tablet */

@media(max-width:992px){

    .career-card{
        padding:40px;
    }

    .career-card h2{
        font-size:42px;
    }

    .career-features{
        grid-template-columns:repeat(2,1fr);
    }

}

/* Mobile */

@media(max-width:768px){

    .career-path-section{
        padding:50px 0;
    }

    .career-card{
        padding:30px 20px;
        border-radius:24px;
    }

    .career-card h2{
        font-size:32px;
    }

    .career-journey{
        flex-direction:column;
        gap:20px;
    }

    .journey-line{
        width:1px;
        height:40px;
    }

    .journey-step{
        width:100%;
    }

    .career-features{
        grid-template-columns:1fr;
    }

}

/* Why Us */

.why-tcm-section{
    padding:70px 0;
}

.section-header{
    max-width:800px;
    margin:0 auto 50px;
    text-align:center;
}

.section-badge{
    display:inline-flex;

    padding:10px 18px;

    border:1px solid #e5e5e5;
    border-radius:50px;

    font-size:12px;
    font-weight:600;

    letter-spacing:2px;

    margin-bottom:24px;
}

.section-header h2{
    font-size:58px;
    line-height:1.05;
    font-weight:700;

    letter-spacing:-2px;

    margin-bottom:20px;
}

.section-header p{
    max-width:700px;
    margin:auto;

    color:#666;
    line-height:1.8;
}

/* Timeline */

.why-timeline{
    max-width:900px;
    margin:auto;

    position:relative;
}

.why-timeline::before{
    content:"";
    position:absolute;

    top:0;
    bottom:0;

    left:44px;

    width:1px;

    background:#e5e7eb;
}
.timeline-item{
    display:flex;

    gap:40px;

    position:relative;

    padding-bottom:50px;
}

.timeline-item:last-child{
    padding-bottom:0;
}

.timeline-number{
    min-width:90px;
    width:90px;
    height:90px;

    background:#fff;

    border:1px solid #e8e8e8;
    border-radius:26px;

    display:flex;
    flex-direction:column;

    align-items:center;
    justify-content:center;

    gap:6px;

    position:relative;
    z-index:2;

    transition:.3s ease;
}

.timeline-number span{
    font-size:12px;
    font-weight:700;

    color:#888;

    letter-spacing:2px;
}

.timeline-number i{
    font-size:24px;
}

.timeline-content{
    flex:1;

    padding:32px;

    border:1px solid #ececec;
    border-radius:28px;

    background:#fff;

    transition:.3s ease;
}

.mini-tag{
    display:inline-flex;

    padding:7px 14px;

    border-radius:50px;

    background:#f7f7f7;

    font-size:12px;
    font-weight:600;

    margin-bottom:16px;
}

.timeline-content h3{
    font-size:26px;
    margin-bottom:12px;
}

.timeline-content p{
    color:#666;
    line-height:1.8;
}

.timeline-item:hover .timeline-number{
    transform:translateY(-4px);

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);
}

.timeline-item:hover .timeline-content{
    transform:translateY(-4px);

    box-shadow:
    0 15px 35px rgba(0,0,0,.05);
}

@media(max-width:768px){

    .timeline-item{
        gap:16px;
        align-items:flex-start;
    }

    .timeline-content{
        width:100%;
        padding:18px;
    }

    .timeline-content h3{
        font-size:18px;
        line-height:1.3;
    }

    .timeline-content p{
        font-size:14px;
        line-height:1.7;
    }

}
/* Tablet */

@media(max-width:992px){

    .section-header h2{
        font-size:44px;
    }

}


/* Review */

.reviews-section{
    padding:70px 0;
    overflow:hidden;
}

.marquee-wrapper{
    overflow:hidden;
    position:relative;
    margin-bottom:24px;
}

.marquee-wrapper::before,
.marquee-wrapper::after{
    content:"";
    position:absolute;
    top:0;
    bottom:0;
    width:120px;
    z-index:2;
    pointer-events:none;
}

.marquee-wrapper::before{
    left:0;
    background:linear-gradient(to right,#fff,transparent);
}

.marquee-wrapper::after{
    right:0;
    background:linear-gradient(to left,#fff,transparent);
}

.marquee-track{
    display:flex;
    gap:24px;
    width:max-content;

    animation:scrollLeft 35s linear infinite;
}

.reverse .marquee-track{
    animation:scrollRight 35s linear infinite;
}

.marquee-wrapper:hover .marquee-track{
    animation-play-state:paused;
}

.review-card{
    width:380px;
    min-width:380px;

    padding:28px;

    border:1px solid #e5e7eb;
    border-radius:28px;

    background:#fff;

    transition:.3s ease;
}

.review-card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.review-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:8px 14px;

    background:#f8f8f8;

    border-radius:50px;

    font-size:13px;
    font-weight:600;

    margin-bottom:18px;
}

.review-card p{
    color:#6b7280;
    line-height:1.8;
    margin-bottom:24px;
}

.review-user{
    display:flex;
    align-items:center;
    gap:12px;
}

.avatar{
    width:48px;
    height:48px;

    border-radius:50%;

    background:#f5f5f5;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:700;
}

.review-user h5{
    margin:0;
    font-size:15px;
}

.review-user span{
    color:#6b7280;
    font-size:13px;
}

@keyframes scrollLeft{
    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}

@keyframes scrollRight{
    from{
        transform:translateX(-50%);
    }

    to{
        transform:translateX(0);
    }
}

@media(max-width:768px){

    .reviews-section{
        padding:50px 0;
    }

    .review-card{
        width:280px;
        min-width:280px;

        padding:20px;
    }

    .marquee-track{
        gap:16px;
    }

    .marquee-wrapper::before,
    .marquee-wrapper::after{
        width:40px;
    }
}

/* Get in touch */
.career-consultation-section{ padding:70px 0; } .consultation-card{ max-width:820px; margin:auto; padding:60px; background:#fff; border:1px solid #e5e7eb; border-radius:32px; box-shadow: 0 20px 60px rgba(0,0,0,.03); } .consultation-header{ text-align:center; max-width:650px; margin:0 auto 40px; } .consultation-header h2{ font-size:56px; line-height:1.05; letter-spacing:-2px; margin:20px 0; } .consultation-header p{ color:#6b7280; line-height:1.8; max-width:600px; margin:auto; } .trust-pills{ display:flex; justify-content:center; flex-wrap:wrap; gap:12px; margin-top:30px; } .trust-pills span{ display:flex; align-items:center; gap:8px; padding:10px 16px; border:1px solid #e5e7eb; border-radius:50px; font-size:13px; font-weight:600; } .form-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; } .form-group{ margin-bottom:20px; } .form-group label{ display:block; margin-bottom:10px; font-size:14px; font-weight:600; } .form-group input{ width:100%; height:56px; padding:0 18px; border:1px solid #e5e7eb; border-radius:16px; outline:none; transition:.3s; } .form-group input:focus{ border-color:#111; } .consultation-btn{ width:100%; border:none; background:#111; color:#fff; border-radius:20px; padding:18px 24px; display:flex; align-items:center; justify-content:space-between; cursor:pointer; margin-top:10px; transition:.3s; } .consultation-btn:hover{ transform:translateY(-2px); } .consultation-btn strong{ display:block; text-align:left; font-size:15px; } .consultation-btn span{ display:block; text-align:left; font-size:12px; opacity:.75; margin-top:4px; } .form-note{ text-align:center; color:#6b7280; font-size:13px; margin-top:18px; } @media(max-width:768px){ .career-consultation-section{ padding:80px 0; } .consultation-card{ padding:30px 22px; border-radius:24px; } .consultation-header h2{ font-size:34px; letter-spacing:-1px; } .form-row{ grid-template-columns:1fr; } .trust-pills{ flex-direction:column; align-items:center; } .consultation-btn{ padding:16px 18px; } }

/* Footer */

.footer{
    padding:60px 0 30px;
}

.footer-card{

    border:1px solid #e5e7eb;

    border-radius:32px;

    overflow:hidden;

    background:#fff;
}

.footer-top{

    display:grid;

    grid-template-columns:
    1.2fr 2fr;

    gap:80px;

    padding:60px;
}

.footer-logo{

    font-size:34px;

    font-weight:700;

    color:#111;

    text-decoration:none;

    margin-bottom:20px;

    display:inline-block;
}

.footer-brand p{

    color:#6b7280;

    line-height:1.8;

    max-width:320px;

    margin-bottom:24px;
}

.footer-social{

    display:flex;

    gap:12px;

    margin-bottom:24px;
}

.footer-social a{

    width:42px;
    height:42px;

    border:1px solid #e5e7eb;

    border-radius:12px;

    display:flex;

    align-items:center;
    justify-content:center;

    color:#111;

    text-decoration:none;

    transition:.3s;
}

.footer-social a:hover{

    transform:translateY(-3px);
}

.footer-tag{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:10px 14px;

    border:1px solid #e5e7eb;

    border-radius:50px;

    font-size:13px;

    font-weight:600;
}

.footer-links{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:40px;
}

.footer-column h4{

    margin-bottom:20px;

    font-size:16px;
}

.footer-column a{

    display:block;

    text-decoration:none;

    color:#6b7280;

    margin-bottom:14px;

    transition:.3s;
}

.footer-column a:hover{

    color:#111;
}

.footer-bottom{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:24px 60px;

    border-top:1px solid #e5e7eb;

    background:#fafafa;
}

.footer-bottom p{

    margin:0;

    color:#6b7280;
}

.footer-bottom-links{

    display:flex;

    gap:24px;
}

.footer-bottom-links a{

    color:#6b7280;

    text-decoration:none;
}

@media(max-width:768px){

    .footer-top{

        grid-template-columns:1fr;

        gap:40px;

        padding:30px 24px;
    }

    .footer-links{

        grid-template-columns:
        repeat(2,1fr);

        gap:30px;
    }

    .footer-bottom{

        flex-direction:column;

        gap:16px;

        text-align:center;

        padding:24px;
    }
}



/* FAQ */

.faq-section{
    padding:60px 0;
}

.faq-wrapper{

    max-width:900px;

    margin:50px auto 0;
}

.faq-wrapper details{

    border:1px solid #e5e7eb;

    border-radius:24px;

    margin-bottom:14px;

    overflow:hidden;

    background:#fff;

    transition:.3s;
}

.faq-wrapper details[open]{

    border-color:#d1d5db;
}

.faq-wrapper summary{

    list-style:none;

    cursor:pointer;

    padding:24px 28px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

    font-size:17px;

    font-weight:600;
}

.faq-wrapper summary::-webkit-details-marker{
    display:none;
}

.faq-wrapper summary i{

    width:38px;
    height:38px;

    border:1px solid #e5e7eb;

    border-radius:12px;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    transition:.3s;
}

.faq-wrapper details[open] summary i{

    transform:rotate(45deg);
}

.faq-content{

    padding:0 28px 28px;

    color:#6b7280;

    line-height:1.8;

    max-width:90%;
}


/* Problem */

.transformation-section{
    padding:60px 0;
}

.transformation-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:24px;
}

.transformation-card{

    border:1px solid #e5e7eb;

    border-radius:30px;

    padding:28px;

    background:#fff;

    transition:.35s ease;
}

.transformation-card:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 50px rgba(0,0,0,.05);
}

.before-block,
.after-block{

    display:flex;

    gap:18px;

    align-items:flex-start;
}

.icon-box{

    width:64px;
    height:64px;

    border:1px solid #e5e7eb;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    background:#fafafa;
}

.icon-box.success{

    background:#111;
    color:#fff;
    border-color:#111;
}

.icon-box i{

    font-size:24px;
}

.before-block span,
.after-block span{

    display:block;

    font-size:12px;

    letter-spacing:1px;

    text-transform:uppercase;

    color:#6b7280;

    margin-bottom:8px;
}

.before-block h3{

    font-size:24px;

    line-height:1.3;

    margin:0;
}

.after-block p{

    margin:0;

    line-height:1.8;

    color:#6b7280;
}

.arrow-divider{

    display:flex;

    justify-content:center;

    margin:24px 0;
}

.arrow-divider i{

    width:42px;
    height:42px;

    border:1px solid #e5e7eb;

    border-radius:12px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#111;
}

@media(max-width:992px){

    .transformation-grid{

        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .transformation-section{
        padding:40px 0;
    }

    .transformation-card{

        padding:22px;

        border-radius:24px;
    }

    .icon-box{

        width:54px;
        height:54px;

        border-radius:14px;
    }

    .icon-box i{

        font-size:20px;
    }

    .before-block h3{

        font-size:20px;
    }

    .before-block,
    .after-block{

        gap:14px;
    }
}


/* Tools & Code */

.tech-stack-section{
    padding:60px 0;
}

.tech-marquee{

    overflow:hidden;

    position:relative;

    margin-top:30px;
}

.tech-track{

    display:flex;

    gap:18px;

    width:max-content;

    animation:scrollLeft 35s linear infinite;
}

.reverse .tech-track{

    animation:scrollRight 35s linear infinite;
}

.tech-card{

    min-width:220px;

    padding:18px 22px;

    border:1px solid #e5e7eb;

    border-radius:20px;

    display:flex;

    align-items:center;

    gap:14px;

    background:#fff;
}

.tech-card i{

    font-size:24px;
}

.tech-card span{

    font-weight:500;
}


/* Event Page */

.event-hero{

    padding:30px 0 80px;
}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 380px;

    gap:80px;

    align-items:center;
}

.hero-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    border:1px solid #e5e5e5;

    border-radius:100px;

    font-size:13px;

    font-weight:600;

    margin-bottom:24px;
}

.hero-content h1{

    font-size:68px;

    line-height:1.05;

    font-weight:800;

    margin-bottom:24px;
}

.hero-content p{

    font-size:18px;

    color:#666;

    max-width:650px;

    line-height:1.8;

    margin-bottom:32px;
}

.hero-meta{

    display:flex;

    gap:25px;

    flex-wrap:wrap;

    margin-bottom:40px;
}

.hero-meta div{

    display:flex;

    align-items:center;

    gap:10px;

    color:#555;
}

.hero-actions{

    display:flex;

    gap:15px;
}

.btn-dark{

    background:#000;

    color:#fff;

    text-decoration:none;

    padding:16px 28px;

    border-radius:14px;
}

.btn-light{

    border:1px solid #ddd;

    color:#000;

    text-decoration:none;

    padding:16px 28px;

    border-radius:14px;
}

.availability-card{

    background:#fff;

    border:1px solid #eee;

    border-radius:32px;

    padding:35px;

    box-shadow:
    0 20px 60px rgba(0,0,0,.04);
}

.availability-header span{

    color:#888;

    font-size:13px;

    text-transform:uppercase;

    letter-spacing:1px;
}

.availability-header h3{

    font-size:42px;

    margin-top:10px;

    margin-bottom:30px;
}

.availability-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:14px;

    margin-bottom:35px;
}

.dot{

    width:18px;

    height:18px;

    border-radius:50%;

    border:2px solid #000;

    margin:auto;
}

.dot.filled{

    background:#000;
}

.availability-stats{

    display:flex;

    justify-content:space-between;

    padding-top:25px;

    border-top:1px solid #eee;
}

.availability-stats strong{

    display:block;

    font-size:34px;
}

.availability-stats span{

    color:#666;
}

.status-badge{

    margin-top:25px;

    text-align:center;

    padding:12px;

    background:#f7f7f7;

    border-radius:14px;

    font-weight:600;
}

@media (max-width: 1024px){

    .hero-grid{

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .hero-content{

        text-align: center;
    }

    .hero-content p{

        margin-left: auto;
        margin-right: auto;
    }

    .hero-meta{

        justify-content: center;
    }

    .hero-actions{

        justify-content: center;
    }

    .availability-card{

        max-width: 450px;

        width: 100%;

        margin: auto;
    }

}
@media (max-width: 768px){

    .event-hero{

        padding: 20px 0 60px;
    }

    .hero-content h1{

        font-size: 42px;

        line-height: 1.1;
    }

    .hero-content p{

        font-size: 16px;

        line-height: 1.7;
    }

    .hero-meta{

        gap: 15px;

        flex-direction: column;

        align-items: center;
    }

    .hero-actions{

        flex-direction: column;

        width: 100%;
    }

    .btn-dark,
    .btn-light{

        width: 100%;

        justify-content: center;

        text-align: center;
    }

    .availability-card{

        padding: 25px;
    }

}
@media (max-width: 480px){

    .hero-content h1{

        font-size: 34px;
    }

    .hero-tag{

        font-size: 12px;

        padding: 8px 14px;
    }

    .availability-header h3{

        font-size: 32px;
    }

    .availability-stats strong{

        font-size: 26px;
    }

    .availability-grid{

        gap: 10px;
    }

    .dot{

        width: 14px;

        height: 14px;
    }

}

/* Why Section Event Page */
/* ===========================
   WHY SECTION
=========================== */

.why-section{

    padding:50px 0;

    background:#fff;
}

.why-header{

    text-align:center;

    margin-bottom:40px;
}

.section-tag{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:8px 16px;

    border:1px solid #e5e5e5;

    border-radius:999px;

    font-size:12px;

    font-weight:600;

    letter-spacing:1px;

    color:#666;

    margin-bottom:15px;
}

.why-header h2{

    font-size:42px;

    line-height:1.1;

    font-weight:700;

    color:#111;

    margin:0;
}

.why-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;
}

.why-card{

    display:flex;

    align-items:flex-start;

    gap:18px;

    padding:24px;

    border:1px solid #ececec;

    border-radius:24px;

    background:#fff;

    transition:.3s ease;
}

.why-card:hover{

    transform:translateY(-4px);

    box-shadow:
    0 10px 30px rgba(0,0,0,.06);
}

.why-icon{

    min-width:56px;

    width:56px;

    height:56px;

    border-radius:16px;

    background:#000;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;
}

.why-icon i{

    font-size:22px;
}

.why-content h3{

    font-size:18px;

    font-weight:600;

    margin:0 0 8px;
}

.why-content p{

    font-size:14px;

    line-height:1.7;

    color:#666;

    margin:0;
}

/* ===========================
   TABLET
=========================== */

@media(max-width:992px){

    .why-grid{

        grid-template-columns:repeat(2,1fr);
    }

    .why-header h2{

        font-size:34px;
    }
}

/* ===========================
   MOBILE
=========================== */

@media(max-width:768px){

    .why-section{

        padding:60px 0;
    }

    .why-grid{

        grid-template-columns:1fr;

        gap:15px;
    }

    .why-header{

        margin-bottom:30px;
    }

    .why-header h2{

        font-size:28px;
    }

    .why-card{

        padding:20px;
    }

    .why-icon{

        width:50px;

        height:50px;

        min-width:50px;
    }

    .why-icon i{

        font-size:20px;
    }

    .why-content h3{

        font-size:16px;
    }

    .why-content p{

        font-size:13px;
    }
}

/* ===========================
   SMALL MOBILE
=========================== */

@media(max-width:480px){

    .why-header h2{

        font-size:24px;
    }

    .why-card{

        gap:15px;
    }
}

/* Share Event page */
/* ===================================
   QUICK ACTIONS SECTION
=================================== */

.quick-actions-section{

    padding:50px 0;
}

.quick-actions-wrapper{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;
}

.action-card{

    display:flex;

    align-items:center;

    gap:18px;

    padding:24px;

    border:1px solid #ececec;

    border-radius:24px;

    background:#fff;

    transition:all .3s ease;

    min-height:120px;
}

.action-card:hover{

    transform:translateY(-4px);

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);
}

.primary-action{

    background:#000;

    border-color:#000;

    color:#fff;
}

.primary-action p{

    color:rgba(255,255,255,.7);
}

.action-icon{

    width:60px;

    height:60px;

    min-width:60px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#f5f5f5;
}

.primary-action .action-icon{

    background:rgba(255,255,255,.1);

    color:#fff;
}

.action-icon i{

    font-size:24px;
}

.action-content{

    flex:1;
}

.action-content h3{

    font-size:18px;

    font-weight:600;

    margin-bottom:6px;
}

.action-content p{

    margin:0;

    color:#666;

    font-size:14px;

    line-height:1.6;
}

.action-btn{

    display:flex;

    align-items:center;

    justify-content:center;

    min-width:110px;

    height:46px;

    padding:0 18px;

    border-radius:12px;

    text-decoration:none;

    font-weight:600;

    border:none;

    cursor:pointer;

    white-space:nowrap;

    transition:.3s;
}

.primary-action .action-btn{

    background:#fff;

    color:#000;
}

.secondary{

    background:#000;

    color:#fff;
}

/* ===================================
   LARGE TABLET
=================================== */

@media (max-width:1200px){

    .quick-actions-wrapper{

        gap:16px;
    }

    .action-card{

        padding:20px;
    }

    .action-content h3{

        font-size:17px;
    }

}

/* ===================================
   TABLET
=================================== */

@media (max-width:992px){

    .quick-actions-wrapper{

        grid-template-columns:1fr;

        gap:16px;
    }

    .action-card{

        min-height:auto;
    }

}

/* ===================================
   MOBILE
=================================== */

@media (max-width:768px){

    .quick-actions-section{

        padding:60px 0;
    }

    .action-card{

        flex-direction:column;

        text-align:center;

        padding:22px;
    }

    .action-content{

        width:100%;
    }

    .action-content h3{

        margin-bottom:8px;
    }

    .action-btn{

        width:100%;

        margin-top:10px;
    }

}

/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width:576px){

    .quick-actions-section{

        padding:50px 0;
    }

    .action-card{

        border-radius:20px;

        padding:20px;
    }

    .action-icon{

        width:54px;

        height:54px;

        min-width:54px;
    }

    .action-icon i{

        font-size:20px;
    }

    .action-content h3{

        font-size:16px;
    }

    .action-content p{

        font-size:13px;
    }

}

/* ===================================
   EXTRA SMALL DEVICES
=================================== */

@media (max-width:400px){

    .action-card{

        padding:18px;
    }

    .action-btn{

        height:42px;

        font-size:14px;
    }

}

