/* --- CSS VARIABLES --- */
:root {
    --bg: #1A120B;
    --primary: #FFF5E1;
    --accent: #D4791F;
    --card-bg: rgba(255, 245, 225, 0.03);
    --border: rgba(255, 245, 225, 0.08);
    --glass: rgba(255, 245, 225, 0.05);
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: initial; /* Lenis handles smooth scroll */
}

body {
    background-color: var(--bg);
    color: var(--primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.clash-display {
    font-family: 'Clash Display', sans-serif;
    font-weight: 600;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- TYPOGRAPHY --- */
.display-1 { font-size: clamp(3.5rem, 8vw, 6rem); line-height: 1.1; letter-spacing: -0.02em; }
.display-2 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.1; }
.h1 { font-size: 3.5rem; margin-bottom: 1rem; }
.text-accent { color: var(--accent); }

/* --- COMPONENTS --- */
.btn-primary {
    background: var(--accent);
    color: white;
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 121, 31, 0.3);
}

.btn-secondary {
    border: 1px solid var(--border);
    color: var(--primary);
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--glass);
}

.badge {
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 24px;
}

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo .dot {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-item {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    opacity: 0.7;
    transition: var(--transition);
}

.nav-item:hover { opacity: 1; }

/* --- BENTO GRID SYSTEM --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.bento-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.bento-card:hover {
    border-color: rgba(212, 121, 31, 0.4);
    transform: translateY(-5px);
}

.bento-lg { grid-column: span 8; }
.bento-md { grid-column: span 4; }
.bento-sm { grid-column: span 4; }

.glass { backdrop-filter: blur(20px); }

.accent-card {
    background: var(--accent);
    color: white;
}

.card-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 24px;
    color: var(--accent);
}

.accent-card .card-icon { color: white; }

/* --- HERO --- */
.hero-section {
    padding: 180px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-p {
    font-size: 1.25rem;
    opacity: 0.8;
    max-width: 500px;
    margin: 24px 0 40px;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

/* =========================
   RIGHT SIDE
========================= */

.hero-right {
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* GLOW */

.hero-glow {
    position: absolute;

    width: 550px;
    height: 550px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(212,121,31,0.35),
        transparent 70%
    );

    filter: blur(50px);

    z-index: 1;
}

/* IMAGE */

.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-image {
    width: 100%;
    max-width: 620px;

    object-fit: contain;

    filter: drop-shadow(
        0 30px 60px rgba(0,0,0,0.45)
    );
}

/* FLOATING CARD */

.hero-floating-card {
    position: absolute;

    bottom: 100px;
    left: -60px;

    display: flex;
    align-items: center;
    gap: 16px;

    padding: 20px 24px;

    background: rgba(255,255,255,0.05);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 24px;

    z-index: 5;
}

.status-dot {
    width: 14px;
    height: 14px;

    border-radius: 50%;

    background: #D4791F;

    box-shadow: 0 0 18px #D4791F;
}

.hero-floating-card h4 {
    color: #FFF5E1;
    font-size: 1rem;
    margin-bottom: 4px;
}

.hero-floating-card p {
    color: rgba(255,245,225,0.7);
    font-size: .9rem;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        margin-inline: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-right {
        margin-top: 40px;
    }

    .hero-floating-card {
        position: relative;
        left: auto;
        bottom: auto;
        margin-top: -40px;
    }
}

@media (max-width: 768px) {


     .hero {
        padding-top: 120px;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-right {
        width: 100%;
        margin-top: 20px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* IMAGE */

    .hero-image-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-image {
        width: 100%;
        max-width: 280px;

        height: auto;
        object-fit: contain;
    }

    /* FLOATING CARD */

    .hero-floating-card {
        position: relative;

        left: auto;
        bottom: auto;

        margin-top: -20px;

        width: 90%;
        max-width: 320px;

        padding: 18px;

        justify-content: center;
        text-align: center;

        flex-direction: column;

        gap: 14px;

        border-radius: 24px;
    }

    .hero-floating-card h4 {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .hero-floating-card p {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* GLOW */

    .hero-glow {
        width: 320px;
        height: 320px;
    }
}

/* --- FOOTER --- */
.main-footer {
    padding: 100px 0 40px;
    border-top: 1px solid var(--border);
    margin-top: 100px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: var(--primary);
    opacity: 0.6;
    transition: var(--transition);
}

.footer-socials a:hover { opacity: 1; color: var(--accent); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    opacity: 0.5;
    font-size: 0.9rem;
}

/* --- NOISE & CURSOR --- */
.noise-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.05;
    pointer-events: none;
    z-index: 9999;
}

.custom-cursor {
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}
/* =========================================
   TESTIMONIAL SECTION
========================================= */

.testimonials-section{
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

/* BACKGROUND GLOW */

.testimonials-section::before{
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(212,121,31,0.08);
    filter: blur(120px);
    top: -200px;
    right: -150px;
    z-index: -1;
}

/* SECTION HEADER */

.testimonial-header{
    text-align: center;
    margin-bottom: 70px;
}

.testimonial-header h2{
    font-size: clamp(3rem,6vw,5rem);
    line-height: 1;
    margin-bottom: 18px;
    letter-spacing: -2px;
    color: var(--text-color);
}

.testimonial-line{
    width: 90px;
    height: 4px;
    border-radius: 999px;
    margin: auto;
    background: var(--accent-color);
}

/* SLIDER */

.slider-container{
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0 30px;
    overflow: hidden;
    width: 100%;
}

.slider-track{
    display: flex;
    gap: 28px;
    transition: transform .7s cubic-bezier(.22,1,.36,1);
    will-change: transform;
}

/* CARD */

.testimonial-card{
    position: relative;
    flex: 0 0 calc(33.333% - 20px);
    min-height: 380px;
    padding: 40px;
    border-radius: 32px;
    overflow: hidden;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.02)
    );

    border: 1px solid rgba(255,255,255,0.06);

    backdrop-filter: blur(18px);

    transition:
    transform .45s ease,
    border-color .45s ease,
    background .45s ease;
}

/* TOP GLOW */

.testimonial-card::before{
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(212,121,31,0.10);
    filter: blur(70px);
    top: -50px;
    right: -50px;
    opacity: 0;
    transition: .45s ease;
}

.testimonial-card:hover::before{
    opacity: 1;
}

.testimonial-card:hover{
    transform: translateY(-12px);
    border-color: rgba(212,121,31,0.35);
    background: rgba(255,255,255,0.05);
}

/* QUOTE */

.quote-icon{
    width: 62px;
    height: 62px;
    border-radius: 20px;

    background: rgba(212,121,31,0.12);

    border: 1px solid rgba(212,121,31,0.15);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 30px;

    color: var(--accent-color);
}

/* TEXT */

.testimonial-text{
    font-size: 1.05rem;
    line-height: 1.95;
    opacity: .82;
    margin-bottom: 42px;
    color: var(--text-color);
}

/* FOOTER */

.testimonial-footer{
    display: flex;
    align-items: center;
    gap: 16px;
}

/* AVATAR */

.avatar{
    width: 58px;
    height: 58px;

    border-radius: 18px;

    background:
    linear-gradient(
        135deg,
        var(--accent-color),
        #8B4513
    );

    color: var(--bg-color);

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 700;
    font-size: 15px;

    flex-shrink: 0;
}

/* USER */

.user-info h4{
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 4px;
}

.user-info p{
    font-size: 14px;
    opacity: .55;
    color: var(--accent-color);
}

/* NAVIGATION */

.slider-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-top: 45px;
}

/* DOTS */

.pagination-dots{
    display: flex;
    align-items: center;
    gap: 10px;
}

.slider-bottom .dot{
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(212,121,31,0.18);
    transition: .35s ease;
    cursor: pointer;
}

.slider-bottom .dot.active{
    width: 28px;
    background: var(--accent);
}

/* BUTTONS */

.slider-nav{
    display: flex;
    gap: 14px;
}

.nav-button{
    width: 54px;
    height: 54px;

    border-radius: 50%;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.08);

    color: var(--text-color);

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition: .35s ease;

    backdrop-filter: blur(10px);
}

.nav-button:hover{
    background: var(--accent-color);
    color: var(--bg-color);
    transform: translateY(-4px);
    border-color: transparent;
}

/* RESPONSIVE */

@media(max-width:1024px){

    .testimonial-card{
        flex: 0 0 calc(50% - 14px);
    }

}

@media(max-width:768px){

    .testimonials-section{
        padding: 100px 0;
    }

    .testimonial-card{
        flex: 0 0 100%;
        padding: 30px;
        min-height: auto;
    }

    .slider-bottom{
        flex-direction: column;
        gap: 25px;
    }

}

/* =========================================
   PROJECTS SECTION
========================================= */

.projects-section{
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.projects-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 32px;
    margin-top: 70px;
}

/* CARD */

.project-card{
    position: relative;
    overflow: hidden;
}

/* IMAGE WRAPPER */

.project-img-wrapper{
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

/* PLACEHOLDER */

.project-placeholder{
    width: 100%;
    transition: transform .6s cubic-bezier(.22,1,.36,1);
}

/* OVERLAY */

.project-overlay{
    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.65),
        rgba(0,0,0,.1)
    );

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transition: .45s ease;
}

/* LINK */

.view-link{
    width: 72px;
    height: 72px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.1);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,.15);

    color: var(--text-color);

    transform: translateY(20px) scale(.9);

    transition: .45s ease;
}

/* HOVER */

.project-card:hover .project-overlay{
    opacity: 1;
}

.project-card:hover .view-link{
    transform: translateY(0) scale(1);
}

.project-card:hover .project-placeholder{
    transform: scale(1.05);
}

/* INFO */

.project-info{
    padding-top: 24px;
}

.project-meta{
    font-size: 14px;
    opacity: .6;
    margin-bottom: 10px;
    color: var(--text-color);
}

.project-info h3{
    font-size: 2rem;
    margin-bottom: 18px;
    color: var(--text-color);
}

/* TECH */

.tech-pills{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-pills span{
    padding: 10px 16px;
    border-radius: 999px;

    background: rgba(255,255,255,.04);

    border: 1px solid rgba(255,255,255,.06);

    font-size: 14px;
    color: var(--text-color);
}

/* RESPONSIVE */

@media(max-width:992px){

    .projects-grid{
        grid-template-columns: 1fr;
    }

}

@media(max-width:768px){

    .projects-section{
        padding: 100px 0;
    }

    .project-info h3{
        font-size: 1.6rem;
    }

}/* VIEW ALL BUTTON */

.projects-btn-wrap{
    display: flex;
    justify-content: center;
    margin-top: 70px;
}

.view-all-btn{
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 18px 30px;

    border-radius: 999px;

    background: rgba(255,255,255,.04);

    border: 1px solid rgba(255,255,255,.08);

    color: var(--text-color);

    text-decoration: none;
    font-weight: 500;
    font-size: 15px;

    backdrop-filter: blur(12px);

    transition:
    transform .35s ease,
    background .35s ease,
    border-color .35s ease;
}

.view-all-btn i{
    width: 18px;
    height: 18px;
    transition: transform .35s ease;
}

/* HOVER */

.view-all-btn:hover{
    background: var(--accent-color);
    color: var(--bg-color);
    border-color: transparent;
    transform: translateY(-4px);
}

.view-all-btn:hover i{
    transform: translateX(4px);
}

/* =========================================
   PROJECTS HERO
========================================= */

.projects-hero{
    position: relative;
    padding: 180px 0 120px;
    overflow: hidden;
}

.projects-hero::before{
    content: "";
    position: absolute;

    width: 600px;
    height: 600px;

    background: rgba(212,121,31,.08);

    filter: blur(120px);

    top: -250px;
    right: -200px;

    z-index: -1;
}

.projects-hero-content{
    max-width: 850px;
}

.projects-label{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 18px;

    border-radius: 999px;

    background: rgba(255,255,255,.04);

    border: 1px solid rgba(255,255,255,.08);

    color: var(--accent-color);

    font-size: 14px;
    margin-bottom: 28px;
}

.projects-hero h1{
    font-size: clamp(4rem,9vw,8rem);
    line-height: .95;
    letter-spacing: -4px;
    margin-bottom: 30px;
    color: var(--text-color);
}

.projects-hero h1 span{
    color: var(--accent-color);
}

.projects-hero p{
    max-width: 700px;
    font-size: 1.1rem;
    line-height: 1.9;
    opacity: .72;
    color: var(--text-color);
}

/* =========================================
   PROJECTS PAGE
========================================= */

.projects-page-section{
    position: relative;
    padding-bottom: 140px;
}

/* FILTERS */

.projects-filter-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 16px;

    margin-bottom: 70px;
}

.project-filter{
    padding: 14px 22px;

    border-radius: 999px;

    background: rgba(255,255,255,.03);

    border: 1px solid rgba(255,255,255,.08);

    color: var(--text-color);

    cursor: pointer;

    transition: .35s ease;
}

.project-filter.active,
.project-filter:hover{
    background: var(--accent-color);
    color: var(--bg-color);
    border-color: transparent;
}

/* GRID */

.projects-page-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 36px;
}

/* CARD */

.project-page-card{
    position: relative;
}

.project-image-wrap{
    position: relative;
    overflow: hidden;
    border-radius: 32px;
}

.project-image-placeholder{
    height: 500px;

    border-radius: 32px;

    background: linear-gradient(
        135deg,
        #2a1e14,
        #1a1a1a
    );

    display: flex;
    align-items: center;
    justify-content: center;

    color: rgba(255,255,255,.3);

    transition: transform .7s cubic-bezier(.22,1,.36,1);
}

.alt-bg{
    background: linear-gradient(
        135deg,
        #1d2235,
        #121212
    );
}

.third-bg{
    background: linear-gradient(
        135deg,
        #2f1f28,
        #111111
    );
}

.fourth-bg{
    background: linear-gradient(
        135deg,
        #132322,
        #121212
    );
}

/* OVERLAY */

.project-card-overlay{
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0,0,0,.65),
        rgba(0,0,0,.1)
    );

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;

    transition: .45s ease;
}

.project-open-btn{
    width: 80px;
    height: 80px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.08);

    border: 1px solid rgba(255,255,255,.12);

    backdrop-filter: blur(12px);

    color: var(--text-color);

    transform: translateY(20px) scale(.9);

    transition: .45s ease;
}

.project-open-btn i{
    width: 24px;
    height: 24px;
}

.project-page-card:hover .project-card-overlay{
    opacity: 1;
}

.project-page-card:hover .project-open-btn{
    transform: translateY(0) scale(1);
}

.project-page-card:hover .project-image-placeholder{
    transform: scale(1.05);
}

/* INFO */

.project-page-info{
    padding-top: 28px;
}

.project-top-meta{
    display: flex;
    gap: 12px;

    margin-bottom: 16px;

    font-size: 14px;
    opacity: .55;
    color: var(--text-color);
}

.project-page-info h3{
    font-size: 2.2rem;
    margin-bottom: 18px;
    color: var(--text-color);
}

.project-page-info p{
    font-size: 1rem;
    line-height: 1.9;
    opacity: .72;
    margin-bottom: 24px;
    color: var(--text-color);
}

/* STACK */

.project-tech-stack{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.project-tech-stack span{
    padding: 12px 18px;

    border-radius: 999px;

    background: rgba(255,255,255,.03);

    border: 1px solid rgba(255,255,255,.06);

    color: var(--text-color);

    font-size: 14px;
}

/* LOAD BTN */

.projects-load-wrap{
    display: flex;
    justify-content: center;

    margin-top: 80px;
}

.projects-load-btn{
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 18px 32px;

    border-radius: 999px;

    background: rgba(255,255,255,.04);

    border: 1px solid rgba(255,255,255,.08);

    color: var(--text-color);

    text-decoration: none;

    transition: .35s ease;
}

.projects-load-btn:hover{
    background: var(--accent-color);
    color: var(--bg-color);

    transform: translateY(-4px);
}

/* EXTRA POLISH */

.project-page-card,
.project-image-placeholder,
.project-open-btn,
.project-card-overlay,
.project-filter,
.projects-load-btn{
    will-change: transform;
}

.project-open-btn svg,
.projects-load-btn svg{
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.project-open-btn:hover{
    background: var(--accent-color);
    color: var(--bg-color);
}

/* RESPONSIVE */

@media(max-width:992px){

    .projects-page-grid{
        grid-template-columns: 1fr;
    }

}

@media(max-width:768px){

    .projects-hero{
        padding: 150px 0 90px;
    }

    .projects-page-section{
        padding-bottom: 100px;
    }

    .project-image-placeholder{
        height: 380px;
    }

    .project-page-info h3{
        font-size: 1.7rem;
    }

}

@media(max-width:640px){

    .projects-filter-wrap{
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;

        scrollbar-width: none;
    }

    .projects-filter-wrap::-webkit-scrollbar{
        display: none;
    }

    .project-filter{
        flex-shrink: 0;
    }

    .projects-hero h1{
        letter-spacing: -2px;
    }

    .project-image-placeholder{
        height: 320px;
    }

    .project-page-info p{
        font-size: .95rem;
    }

}

/* company */

.company-page {
    font-family: 'Inter', sans-serif;
    background: #1A120B;
    color: #FFF5E1;
    padding: 120px 0;
    overflow: hidden;
}

.company-page .container {
    width: min(1200px, 90%);
    margin: auto;
}

.clash-display {
    font-family: 'Clash Display', sans-serif;
}

.tag {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    font-size: 12px;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    color: #FFF5E1;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.1;
}

.company-hero {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 140px;
}

.company-left h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 1;
    margin-bottom: 30px;
}

.company-left p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,245,225,0.75);
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.primary-btn,
.secondary-btn {
    padding: 16px 28px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s ease;
}

.primary-btn {
    background: linear-gradient(135deg, #D4791F, #f29d45);
    color: #FFF5E1;
}

.primary-btn:hover {
    transform: translateY(-3px);
}

.secondary-btn {
    border: 1px solid rgba(255,255,255,0.1);
    color: #FFF5E1;
    background: rgba(255,255,255,0.03);
}

.company-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.glass-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 28px;
}

.glass-card h3 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.glass-card p {
    color: #cfcfcf;
}

.about-company {
    margin-bottom: 140px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.about-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 28px;
    padding: 40px;
}

.large-card {
    grid-column: span 2;
}

.about-card h3 {
    font-size: 28px;
    margin-bottom: 18px;
}

.about-card p {
    color: rgba(255,245,225,0.75);
    line-height: 1.8;
}

.services-section {
    margin-bottom: 140px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    padding: 45px;
    border-radius: 28px;
    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.02)
    );
    border: 1px solid rgba(255,255,255,0.06);
    transition: .4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 14px;
}

.service-card p {
    color: rgba(255,245,225,0.75);
    line-height: 1.8;
}

.team-section {
    margin-bottom: 140px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.team-card {
    text-align: center;
    padding: 30px;
    border-radius: 28px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}

.team-image {
    width: 100%;
    height: 320px;
    border-radius: 24px;
    background: linear-gradient(135deg, #D4791F, #f29d45);
    margin-bottom: 25px;
}
.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    
}

.team-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.team-card span {
    color: rgba(255,245,225,0.75);
}

.company-cta {
    padding: 100px 60px;
    border-radius: 40px;
    background: linear-gradient(
        135deg,
        #D4791F,
        #f29d45
    );
    text-align: center;
}

.company-cta h2 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    margin: 25px 0;
    line-height: 1;
}

.company-cta p {
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
    font-size: 18px;
}

.large-btn {
    display: inline-block;
    margin-top: 40px;
    background: white;
    color: #1A120B;
}

@media (max-width: 992px) {
    .company-hero,
    .about-grid,
    .services-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .large-card {
        grid-column: span 1;
    }

    .company-left h1 {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .company-page {
        padding: 80px 0;
    }

    .company-left h1 {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .company-cta {
        padding: 70px 30px;
    }
}



.Pcontainer {
      max-width: 900px;
      margin: auto;
      padding: 60px 20px;
    }

 .Pcontainer    h1 {
      font-family: 'Clash Display', sans-serif;
      font-size: 42px;
      margin-bottom: 10px;
    }

   .Pcontainer  .subtitle {
      color: var(--accent);
      margin-bottom: 40px;
      font-size: 14px;
      letter-spacing: 1px;
    }

   .Pcontainer  h2 {
      font-family: 'Clash Display', sans-serif;
      font-size: 22px;
      margin-top: 40px;
      margin-bottom: 10px;
      color: var(--accent);
    }

   .Pcontainer  p {
      font-size: 15px;
      opacity: 0.9;
    }

   .Pcontainer  .card {
      background: rgba(255, 245, 225, 0.03);
      border: 1px solid rgba(212, 121, 31, 0.2);
      padding: 25px;
      border-radius: 12px;
      margin-top: 20px;
    }

   .Pcontainer  a {
      color: var(--accent);
      text-decoration: none;
    }

   .Pcontainer  a:hover {
      text-decoration: underline;
    }
    .footer-links a{
        color: var(--primary);
    }

    .project-image-wrap{
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.project-status-badge{
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 5;

    padding: 8px 14px;

    border-radius: 999px;

    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Launched */
.project-status-badge.launched{
    background: rgba(34, 197, 94, 0.15);
    color: #86efac;
    border-color: rgba(34, 197, 94, 0.25);
}

/* Beta */
.project-status-badge.beta{
    background: rgba(59, 130, 246, 0.15);
    color: #93c5fd;
    border-color: rgba(59, 130, 246, 0.25);
}

/* Active */
.project-status-badge.active{
    background: rgba(168, 85, 247, 0.15);
    color: #d8b4fe;
    border-color: rgba(168, 85, 247, 0.25);
}

/* Coming Soon */
.project-status-badge.coming-soon{
    background: rgba(245, 158, 11, 0.15);
    color: #fcd34d;
    border-color: rgba(245, 158, 11, 0.25);
}

