/* =====================================
   GOOGLE FONT & RESET
===================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#222;
    line-height:1.6;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

/* =====================================
   GLOBAL
===================================== */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

section{
    padding:80px 0;
}

h1{
    font-size:58px;
    font-weight:800;
    line-height:1.1;
}

h2{
    font-size:38px;
    margin-bottom:15px;
}

h3{
    font-size:26px;
}

p{
    color:#555;
}

/* =====================================
   BUTTON
===================================== */

.btn{
    display:inline-block;
    padding:15px 34px;
    border-radius:40px;
    transition:.3s;
    font-weight:600;
}

.black{
    background:#111;
    color:#fff;
}

.black:hover{
    background:#ffb11a;
    color:#111;
}

.white{
    background:#fff;
    color:#111;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.white:hover{
    background:#ffb11a;
    color:#fff;
}

/* =====================================
   NAVBAR
===================================== */

.navbar {
    position: sticky;

    top: 0;

    z-index: 1000;

    width: 100%;

    height: 85px;

    background: #ffffff;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 35px;

    box-sizing: border-box;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}


/* =====================================
   LEFT - LOGO
===================================== */

.navbar-left {
    display: flex;

    align-items: center;

    flex-shrink: 0;
}


.navbar-logo {
    width: 65px;

    height: 65px;

    object-fit: contain;

    display: block;
}


/* =====================================
   CENTER - MENU
===================================== */

.navbar-menu {
    display: flex;

    align-items: left;

    justify-content: center;

    gap: 42px;

    margin-left: 42px;
    margin-right: auto;
}


.navbar-menu a {
    color: #111111;

    text-decoration: none;

    font-size: 16px;

    font-weight: 600;

    white-space: nowrap;

    transition: color 0.2s ease;
}


.navbar-menu a:hover {
    color: #f9aa00;
}


/* =====================================
   RIGHT - BUTTONS
===================================== */

.navbar-right {
    display: flex;

    align-items: center;

    gap: 15px;

    flex-shrink: 0;
}


.nav-demo,
.nav-login {
    display: flex;

    align-items: center;

    justify-content: center;

    height: 52px;

    padding: 0 28px;

    border-radius: 30px;

    text-decoration: none;

    font-size: 15px;

    font-weight: 600;

    transition: all 0.2s ease;
}


/* Demo */

.nav-demo {
    background: #ffb319;

    color: #ffffff;
}


.nav-demo:hover {
    background: #f19f00;

    transform: translateY(-2px);
}


/* Login */

.nav-login {
    background: #111111;

    color: #ffffff;
}


.nav-login:hover {
    background: #333333;

    transform: translateY(-2px);
}


/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 1000px) {

    .navbar {
        padding: 0 20px;
    }

    .navbar-menu {
        gap: 20px;
    }

    .navbar-menu a {
        font-size: 14px;
    }

    .nav-demo,
    .nav-login {
        height: 45px;

        padding: 0 20px;

        font-size: 14px;
    }

}


@media (max-width: 768px) {

    .navbar {
        height: 75px;
    }

    .navbar-logo {
        width: 55px;

        height: 55px;
    }

    .navbar-menu {
        display: none;
    }

}

/* =====================================
   HERO
===================================== */

.hero {
    position: relative;

    /* YOUR HERO IMAGE */
    background-image: url("../images/bannercrayonhigh.png");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    min-height: 650px;

    overflow: hidden;
}


/* Content sits ON TOP of the image */

.hero-content {
    min-height: 750px;

    display: flex;
    align-items: center;
}


/* =====================================
   HERO LEFT
===================================== */

.hero-left {
    width: 52%;

    position: relative;
    z-index: 2;
}


.hero-left h1 {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.02;

    color: #071827;

    margin-bottom: 30px;
}


.hero-left h1 span {
    color: #f9aa00;
}


/* =====================================
   SHORTCUT
===================================== */

.shortcut-box {

    width: 100%;
    max-width: 570px;

    background: rgba(255,255,255,0.90);

    border-radius: 16px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    padding: 18px 20px;

    gap: 10px;

    margin-bottom: 25px;

    box-shadow:
            0 8px 25px rgba(0,0,0,.08);

}


.shortcut {
    text-align: center;
}


.shortcut .icon {

    width: 45px;
    height: 45px;

    margin: 0 auto 8px;

    display: flex;
    align-items: center;
    justify-content: center;

}


.shortcut p {

    font-size: 10px;

    line-height: 1.2;

    color: #111;

    font-weight: 600;

}


/* =====================================
   HERO BUTTONS
===================================== */

.hero-button {

    display: flex;

    gap: 15px;

}


.hero-button .btn {

    padding: 14px 28px;

    font-size: 14px;

}


/* =====================================
   HERO RESPONSIVE
===================================== */

@media (max-width: 1200px) {

    .hero {
        min-height: 600px;
    }

    .hero-content {
        min-height: 600px;
    }

    .hero-left {
        width: 55%;
    }

    .hero-left h1 {
        font-size: 46px;
    }

}


@media (max-width: 991px) {

    .hero {

        min-height: 700px;

        background-position:
                65% center;

    }

    .hero-content {

        min-height: 700px;

        align-items: flex-start;

        padding-top: 70px;

    }

    .hero-left {

        width: 65%;

    }

    .hero-left h1 {

        font-size: 42px;

    }

}


@media (max-width: 768px) {

    .hero {

        min-height: 800px;

        background-position:
                65% center;

    }

    .hero-content {

        min-height: 800px;

        padding-top: 50px;

    }

    .hero-left {

        width: 100%;

    }

    .hero-left h1 {

        font-size: 38px;

    }

    .shortcut-box {

        max-width: 500px;

    }

}


@media (max-width: 576px) {

    .hero {

        min-height: 850px;

        background-position:
                68% center;

    }

    .hero-content {

        min-height: 850px;

    }

    .hero-left h1 {

        font-size: 32px;

    }

    .shortcut-box {

        grid-template-columns:
            repeat(2, 1fr);

        max-width: 280px;

    }

    .hero-button {

        flex-direction: column;

        max-width: 280px;

    }

}

/* =====================================
   PROBLEM SECTION
===================================== */

.problem{
    background:#FBB324;
    color:#fff;
}

.problem h2{
    text-align:center;
    color:#111;
    font-weight:700;
}

.problem .subtitle{
    text-align:center;
    color:#fff;
    margin-bottom:50px;
    font-size:18px;
}

/* ==========================
   PROBLEM CARD
========================== */

.problem-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-bottom:70px;
}

.problem-card{
    border:2px solid rgba(255,255,255,.6);
    border-radius:15px;
    padding:30px 20px;
    transition:.35s;
    background:transparent;
}

.problem-card:hover{
    background:white;
    color:#111;
    transform:translateY(-8px);
}

.problem-card:hover p{
    color:#555;
}

.problem-card:hover .icon{
    background:#FDB515;
}

.problem-card .icon {
    width: 65px;
    height: 65px;
    border-radius:50%;

    background: transparent;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;
}

/* SVG icon */
.problem-card .icon img {
    width: 45px;
    height: 45px;

    object-fit: contain;
}

/* When hover card -> icon becomes white */
.problem-card:hover .icon img {
    filter:
            brightness(0)
            invert(1);

}

.problem-card h3{
    font-size:22px;
    margin-bottom:10px;
}

.problem-card p{
    color:#f9f9f9;
    font-size:15px;
}

/* =====================================
   PORTAL SECTION
===================================== */

.portal{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:45px;
    align-items:center;
    margin-bottom:70px;
}

.portal-image img{
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);

    /* Replace with your own image */
}

.portal-text h2{
    color:#111;
    margin-bottom:20px;
}

.portal-text p{
    color:white;
    font-size:17px;
    line-height:1.8;
}

/* =====================================
   DNA SECTION
===================================== */

.dna{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:45px;
    align-items:center;
}

.dna-text h2{
    color:#111;
    margin-bottom:20px;
}

.dna-text p{
    color:white;
    line-height:1.8;
}

.dna-image{
    display:flex;
    justify-content:flex-end;
}

.dna-image img{
    max-width:500px;
    border-radius:18px;
    box-shadow:0 18px 35px rgba(0,0,0,.2);

    /* Replace with DNA Ecosystem image */
}

/* =====================================
   TESTIMONIAL
===================================== */

.testimonial{
    background:#fff;
}

.testimonial h2{
    text-align:center;
    margin-bottom:60px;
    font-weight:700;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.testimonial-card{
    background:white;
    border-radius:18px;
    border:1px solid #e5e5e5;
    padding:35px;
    transition:.35s;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.testimonial-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 35px rgba(0,0,0,.12);
}

.testimonial-card p{
    margin-bottom:25px;
    color:#555;
    line-height:1.8;
}

.testimonial-card h4{
    font-size:16px;
    font-weight:600;
    color:#222;
    display:flex;
    align-items:center;
    gap:10px;
}

/* Optional avatar placeholder */
.testimonial-card h4::before{
    content:"";
    width:36px;
    height:36px;
    border-radius:50%;
    background:#ddd;

    /* Replace with avatar image if desired */
}

/* =====================================
   RESPONSIVE
===================================== */

@media(max-width:991px){

    .problem-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .portal{
        grid-template-columns:1fr;
    }

    .dna{
        grid-template-columns:1fr;
    }

    .dna-image{
        justify-content:center;
    }

    .testimonial-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:600px){

    .problem-grid{
        grid-template-columns:1fr;
    }

    .problem-card{
        text-align:center;
    }

    .problem-card .icon{
        margin: auto auto 20px;
    }

    .portal{
        gap:30px;
    }

    .dna{
        gap:30px;
    }

}

/* =====================================
   BANNER
===================================== */

.banner {
    width: 100%;
    padding: 0;
    margin: 0;

    overflow: hidden;
}

.banner img {
    display: block;

    width: 100%;
    height: auto;

    margin: 0;
    padding: 0;
}

/* =====================================
   FEATURE SECTION
===================================== */

.feature{
    background:#FBB324;
}

.feature h2{
    text-align:center;
    margin-bottom:70px;
}

.feature-item{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    margin-bottom:80px;
}

.feature-item.reverse{
    direction:rtl;
}

.feature-item.reverse > div{
    direction:ltr;
}

.feature-image{
    display:flex;
    justify-content:center;
}

.feature-image img{
    max-width:480px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);

    /* Replace with feature image */
}

.feature-item h3{
    margin-bottom:20px;
    font-size:34px;
    color:#222;
}

.feature-item p{
    font-size:17px;
    color:#666;
    line-height:1.8;
}

/* =====================================
   CTA
===================================== */

.cta{
    background:#FBB324;
    text-align:center;
}

.cta h2{
    font-size:42px;
    margin-bottom:20px;
    color:#222;
}

.cta p{
    max-width:700px;
    margin: auto auto 40px;
    color:#666;
    font-size:18px;
}

.cta .btn{
    font-size:17px;
    padding:18px 42px;
}

/* =====================================
   FOOTER
===================================== */

.footer-section {
    width: 100%;

    background: #171717;

    color: #ffffff;

    padding: 20px 30px;

    margin: 0;
}


.footer-container {
    width: 100%;
    max-width: 1000px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        80px
        150px
        1fr
        1.5fr;

    align-items: center;

    gap: 30px;
}


/* =====================================
   LOGO
===================================== */

.footer-logo {
    display: flex;

    align-items: center;

    justify-content: center;
}


.footer-logo img {
    width: 65px;

    height: auto;

    object-fit: contain;
}


/* =====================================
   SOCIAL
===================================== */

.footer-social {
    display: flex;

    flex-direction: column;

    gap: 7px;
}


.footer-social > span {
    color: #ffffff;

    font-size: 8px;

    font-weight: 600;
}


.social-icons {
    display: flex;

    align-items: center;

    gap: 12px;
}


.social-icons a {
    width: 14px;

    height: 14px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.social-icons img {
    width: 12px;

    height: 12px;

    object-fit: contain;

    /*
       If your SVG icons are black,
       this makes them white.
    */
    filter: brightness(0) invert(1);

    transition: 0.2s ease;
}


.social-icons a:hover img {
    opacity: 0.6;

    transform: translateY(-2px);
}


/* =====================================
   ADDRESS
===================================== */

.footer-address {
    display: flex;

    align-items: center;

    gap: 10px;
}


.location-icon {
    width: 13px !important;

    height: 13px !important;

    object-fit: contain;

    filter: brightness(0) invert(1);
}


.footer-address p {
    margin: 0;

    color: #ffffff;

    font-size: 10px;

    line-height: 1.5;
}


/* =====================================
   FOOTER LINKS
===================================== */

.footer-links {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 7px;
}


.footer-link-menu {
    display: flex;

    align-items: center;

    gap: 18px;
}


.footer-link-menu a {
    color: #ffffff;

    font-size: 10px;

    font-weight: 600;

    text-decoration: none;

    transition: 0.2s ease;
}


.footer-link-menu a:hover {
    color: #fbb323;
}


.copyright {
    margin: 0;

    color: #aaaaaa;

    font-size: 6px;

    line-height: 1.4;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 1000px) {

    .footer-container {

        grid-template-columns:
            70px
            130px
            1fr;

    }

    .footer-links {

        grid-column: 1 / -1;

        align-items: center;

    }

}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 650px) {

    .footer-section {

        padding: 30px 20px;

    }

    .footer-container {

        display: flex;

        flex-direction: column;

        text-align: center;

        gap: 20px;

    }

    .footer-logo img {

        width: 75px;

    }

    .footer-social {

        align-items: center;

    }

    .social-icons {

        justify-content: center;

    }

    .footer-address {

        justify-content: center;

        text-align: left;

    }

    .footer-links {

        align-items: center;

    }

    .footer-link-menu {

        flex-wrap: wrap;

        justify-content: center;

    }

    .copyright {

        text-align: center;

    }

}

/* =====================================
   ANIMATIONS
===================================== */

.problem-card,
.testimonial-card,
.feature-image img,
.portal-image img,
.dna-image img,
.banner-content{
    transition:.35s ease;
}

.feature-image img:hover,
.portal-image img:hover,
.dna-image img:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.18);
}

.banner-content:hover{
    transform:translateY(-5px);
}

/* =====================================
   RESPONSIVE
===================================== */

@media(max-width:991px){

    .banner-content{
        grid-template-columns:1fr;
        text-align:center;
        padding:40px;
    }

    .banner-content h2{
        font-size:34px;
    }

    .feature-item{
        grid-template-columns:1fr;
        text-align:center;
    }

    .feature-item.reverse{
        direction:ltr;
    }

    .footer{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .footer{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer img{
        margin:auto;
    }

    .footer .social{
        justify-content:center;
    }

    .cta h2{
        font-size:32px;
    }

    .feature-item h3{
        font-size:28px;
    }

    .banner-content{
        padding:30px;
    }

    .banner-content h2{
        font-size:28px;
    }

}

@media(max-width:576px){

    section{
        padding:60px 0;
    }

    .container{
        width:92%;
    }

    h1{
        font-size:34px;
    }

    h2{
        font-size:28px;
    }

    .feature-item{
        gap:35px;
    }

    .banner-content{
        border-radius:20px;
    }

    .btn{
        width:100%;
    }

    .nav-button{
        display:none;
    }

}

/* =====================================
   SCROLL ANIMATION
===================================== */

.problem-card,
.feature-item,
.testimonial-card,
.portal,
.dna,
.banner-content{

    opacity:0;
    transform:translateY(40px);
    transition:.8s ease;

}

.show{

    opacity:1;
    transform:translateY(0);

}

/* =====================================
   ACTIVE NAVIGATION
===================================== */

nav a.active{

    color:#FDB515;

}

.menu-toggle{
    display:none;
    background:none;
    border:none;
    font-size:30px;
    cursor:pointer;
}

@media(max-width:991px){

    .menu-toggle{
        display:block;
    }

    nav{
        position:absolute;
        top:90px;
        left:0;
        width:100%;
        background:white;
        display:none;
        box-shadow:0 10px 20px rgba(0,0,0,.1);
    }

    nav.open{
        display:block;
    }

    nav ul{
        flex-direction:column;
        padding:20px;
        gap:20px;
    }

}