* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Inter, sans-serif;
    background: #071322;
    color: white;
    line-height: 1.7;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.narrow {
    max-width: 800px;
}

.navbar {
    background: #071322;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    position: relative;
    z-index: 10000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 600;
    font-size: 18px;
}

nav a {
    color: white;
    margin-left: 25px;
    text-decoration: none;
    font-size: 14px;
    opacity: .8;
}

nav a:hover {
    color: #d4af37;
}



.hero {
    height: 85vh;
    background: url("../images/hero.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
}

/* .hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
} */

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    z-index: 1;
}

/* .hero-content {
    position: relative;
    max-width: 700px;
    margin: auto;
} */

.hero-content{
position:relative;
z-index:2;
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    opacity: .9;
    margin-bottom: 30px;
}

.hero-buttons a {
    padding: 14px 28px;
    margin: 5px;
    text-decoration: none;
    display: inline-block;
}

.btn-dark {
    background: #1b2c4a;
    color: white;
}

.btn-gold {
    background: #d4af37;
    color: black;
}



.section {
    padding: 100px 0;
}

.section h2 {
    font-family: "Playfair Display";
    font-size: 32px;
    margin-bottom: 25px;
}

.dark {
    background: #0f243f;
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: #0c1c33;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .06);
}

.integration-text {
    margin-top: 40px;
    opacity: .85;
    text-align: center;
}

.tagline {
    margin: 20px 0;
    font-size: 26px;
    color: #d4af37;
}



footer {
    background: #050b16;
    padding: 40px 0;
    text-align: center;
    margin-top: 60px;
}



/* Responsive */

@media(max-width:1024px) {

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

    .hero h1 {
        font-size: 36px;
    }

}

@media(max-width:600px) {

    nav {
        display: none;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .hero {
        height: 70vh;
    }

    .hero h1 {
        font-size: 28px;
    }

}

.who {
    background: #071322;
}

.who-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.who-left h2 {
    font-family: "Playfair Display";
    font-size: 34px;
    margin-bottom: 10px;
}

.gold-line {
    width: 60px;
    height: 3px;
    background: #d4af37;
    margin-bottom: 25px;
}

.who-highlight {
    font-size: 20px;
    line-height: 1.6;
    color: #d4af37;
}

.who-right p {
    margin-bottom: 18px;
    opacity: .9;
}


@media(max-width:900px) {

    .who-grid {
        grid-template-columns: 1fr;
    }

    .who-highlight {
        font-size: 18px;
    }

}

.integrated {
    background: #0f243f;
    text-align: center;
}

.section-header {
    max-width: 700px;
    margin: auto;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: "Playfair Display";
    font-size: 34px;
    margin-bottom: 15px;
}

.section-header p {
    opacity: .85;
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.model-card {
    background: #0c1c33;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: 0.3s;
}

.model-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
}

.model-card h3 {
    margin-bottom: 15px;
    color: #d4af37;
    font-size: 18px;
}

.model-card p {
    font-size: 14px;
    opacity: .9;
}

.integration-summary {
    margin-top: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: .85;
}

@media(max-width:1024px) {

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

}

@media(max-width:600px) {

    .model-grid {
        grid-template-columns: 1fr;
    }

}

.positioning {
    background: #071322;
    text-align: center;
}

.positioning-content {
    max-width: 800px;
    margin: auto;
}

.positioning h2 {
    font-family: "Playfair Display";
    font-size: 34px;
    margin-bottom: 40px;
}

.positioning-lines {
    font-size: 28px;
    line-height: 1.6;
    font-weight: 500;
    color: #d4af37;
    margin-bottom: 35px;
}

.positioning-description {
    font-size: 16px;
    opacity: .9;
}

@media(max-width:600px) {

    .positioning-lines {
        font-size: 22px;
    }

}

.page-hero {
    padding: 120px 0 80px 0;
    text-align: center;
    background: #0f243f;
}

.page-hero h1 {
    font-family: "Playfair Display";
    font-size: 42px;
    margin-bottom: 20px;
}

.page-hero p {
    max-width: 700px;
    margin: auto;
    opacity: .9;
}



.highlight-text {
    font-size: 20px;
    color: #d4af37;
    margin-top: 25px;
}



.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
    margin-bottom: 30px;
}

.philosophy-card {
    background: #0c1c33;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, .08);
    text-align: center;
    font-weight: 500;
}

.philosophy-text {
    text-align: center;
    opacity: .9;
}

@media(max-width:900px) {

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

}

@media(max-width:600px) {

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 30px;
    }

}

.page-hero {
    padding: 120px 0 80px 0;
    background: #0f243f;
    text-align: center;
}

.page-hero h1 {
    font-family: "Playfair Display";
    font-size: 42px;
    margin-bottom: 20px;
}

.page-hero p {
    max-width: 700px;
    margin: auto;
    opacity: .9;
}



.perspective-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.highlight-quote {
    font-size: 22px;
    color: #d4af37;
    margin-top: 25px;
}



.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.philosophy-card {
    background: #0c1c33;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .08);
    font-weight: 500;
    transition: .3s;
}

.philosophy-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
}

.philosophy-summary {
    text-align: center;
    margin-top: 30px;
    opacity: .9;
}



.industry-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 50px;
    align-items: center;
}

.industry-highlight {
    background: #0f243f;
    padding: 40px;
    border-left: 4px solid #d4af37;
    font-size: 18px;
}



.center {
    text-align: center;
}



.gold-line {
    width: 60px;
    height: 3px;
    background: #d4af37;
    margin: 20px 0 30px 0;
}



@media(max-width:900px) {

    .perspective-grid,
    .industry-grid {
        grid-template-columns: 1fr;
    }

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

}

@media(max-width:600px) {

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 30px;
    }

}

.ecosystem {
    background: #071322;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.platform-card {
    background: #0c1c33;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s;
}

.platform-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
}

.platform-card h2 {
    font-family: "Playfair Display";
    font-size: 26px;
    margin-bottom: 20px;
    color: #d4af37;
}

.platform-card p {
    margin-bottom: 15px;
    opacity: .9;
}

.platform-card ul {
    margin: 15px 0;
    padding-left: 20px;
}

.platform-card li {
    margin-bottom: 8px;
}

@media(max-width:900px) {

    .platform-grid {
        grid-template-columns: 1fr;
    }

}

.productions {
    background: #071322;
}

.productions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.movie-card {
    background: #0c1c33;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: 0.3s;
}

.movie-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

.movie-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.movie-info {
    padding: 20px;
}

.movie-info h3 {
    font-family: "Playfair Display";
    margin-bottom: 10px;
}

.movie-info p {
    font-size: 14px;
    opacity: .9;
}

.movie-tag {
    display: inline-block;
    background: #d4af37;
    color: black;
    font-size: 12px;
    padding: 4px 8px;
    margin-bottom: 10px;
}

@media(max-width:1100px) {

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

}

@media(max-width:600px) {

    .productions-grid {
        grid-template-columns: 1fr;
    }

}

.leadership {
    background: #071322;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.leader-card {
    display: flex;
    gap: 25px;
    background: #0c1c33;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s;
}

.leader-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
}

.leader-card img {
    width: 180px;
    height: 220px;
    object-fit: cover;
}

.leader-info h3 {
    font-family: "Playfair Display";
    margin-bottom: 5px;
}

.leader-role {
    color: #d4af37;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.leader-info p {
    font-size: 14px;
    opacity: .9;
    margin-bottom: 10px;
}

@media(max-width:900px) {

    .leadership-grid {
        grid-template-columns: 1fr;
    }

    .leader-card {
        flex-direction: column;
        text-align: center;
    }

    .leader-card img {
        width: 100%;
        height: auto;
    }

}

.news {
    background: #071322;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.news-card {
    background: #0c1c33;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s;
}

.news-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
}

.news-card h3 {
    font-family: "Playfair Display";
    margin: 10px 0 15px 0;
}

.news-card p {
    font-size: 14px;
    opacity: .9;
    margin-bottom: 20px;
}

.news-tag {
    font-size: 12px;
    background: #d4af37;
    color: black;
    padding: 4px 8px;
}

.news-date {
    font-size: 12px;
    opacity: .6;
}

@media(max-width:900px) {

    .news-grid {
        grid-template-columns: 1fr;
    }

}

.contact {
    background: #071322;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: #0c1c33;
    padding: 35px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: 0.3s;
}

.contact-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
}

.contact-card h3 {
    font-family: "Playfair Display";
    margin-bottom: 10px;
    color: #d4af37;
}

.contact-info-box {
    display: flex;
    justify-content: center;
    gap: 80px;
    text-align: center;
}

.contact-email h3 {
    margin-bottom: 10px;
    font-family: "Playfair Display";
}

.contact-email p {
    font-size: 18px;
    color: #d4af37;
}

@media(max-width:900px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-box {
        flex-direction: column;
        gap: 30px;
    }

}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #000;
}

/* .nav-links {
    display: flex;
    gap: 25px;
} */

.nav-links{
z-index:9999;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    background: white;
    height: 3px;
    width: 25px;
    margin: 4px 0;
}

/* MOBILE */
@media (max-width: 768px) {

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: black;
        flex-direction: column;
        text-align: center;
        display: none;
    }

    /* .nav-links.active {
    display: flex;
  } */

    .nav-links.show {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

}