/* =======================================================
   SKYBRIDGE STUDIO
   Digital Strategy • Creative Technology • Business Growth
======================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#07192d;

    color:#ffffff;

    line-height:1.7;

    overflow-x:hidden;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:min(1180px,90%);

    margin:auto;

}

/* ==========================
   SECTION
========================== */

section{

    padding:100px 0;

}

.section-title{

    font-size:40px;

    font-weight:700;

    text-align:center;

    margin-bottom:20px;

}

.section-subtitle{

    max-width:760px;

    margin:auto;

    text-align:center;

    color:#cfd6df;

    margin-bottom:60px;

}

/* ==========================
   BUTTON
========================== */

.btn{

    display:inline-block;

    padding:15px 30px;

    border-radius:8px;

    font-weight:600;

    transition:.3s;

}

.btn-primary{

    background:#D4AF37;

    color:#07192d;

}

.btn-primary:hover{

    transform:translateY(-3px);

}

.btn-secondary{

    border:2px solid #D4AF37;

    color:#D4AF37;

}

.btn-secondary:hover{

    background:#D4AF37;

    color:#07192d;

}

/* ==========================
   NAVBAR
========================== */

.navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    background:rgba(7,25,45,.85);

    backdrop-filter:blur(12px);

}

.nav-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:78px;

}

.logo{

    font-size:28px;

    font-weight:700;

    color:#D4AF37;

}

.logo span{

    color:#ffffff;

}

.menu{

    display:flex;

    gap:35px;

}

.menu a{

    color:white;

    transition:.3s;

}

.menu a:hover{

    color:#D4AF37;

}

.nav-button{

    padding:12px 22px;

    border-radius:8px;

    background:#D4AF37;

    color:#07192d;

    font-weight:600;

}
/* =======================================================
   HERO
======================================================= */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    position:relative;

    overflow:hidden;

    background:
        radial-gradient(circle at top,#17395e 0%,#07192d 65%);

}

.hero::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    border-radius:50%;

    background:rgba(212,175,55,.08);

    filter:blur(120px);

    top:-250px;

    right:-200px;

}

.hero::after{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:rgba(255,255,255,.03);

    filter:blur(100px);

    left:-150px;

    bottom:-150px;

}

.hero-content{

    position:relative;

    z-index:2;

    max-width:900px;

    padding-top:70px;

}

.hero-badge{

    display:inline-block;

    padding:10px 18px;

    border:1px solid rgba(212,175,55,.35);

    border-radius:999px;

    color:#D4AF37;

    background:rgba(255,255,255,.03);

    margin-bottom:28px;

    font-size:14px;

    letter-spacing:.5px;

}

.hero h1{

    font-size:64px;

    line-height:1.15;

    margin-bottom:28px;

    font-weight:700;

}

.hero h1 span{

    color:#D4AF37;

}

.hero p{

    max-width:760px;

    margin:auto;

    color:#d3d9df;

    font-size:18px;

    line-height:1.9;

}

.hero-buttons{

    margin-top:45px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.hero-stats{

    margin-top:70px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.stat-card{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:16px;

    padding:30px;

    backdrop-filter:blur(10px);

    transition:.3s;

}

.stat-card:hover{

    transform:translateY(-8px);

    border-color:#D4AF37;

}

.stat-card h3{

    color:#D4AF37;

    font-size:34px;

    margin-bottom:8px;

}

.stat-card p{

    font-size:15px;

    color:#cfd6df;

}
/* =======================================================
   ABOUT
======================================================= */

.about{

    background:#0b223d;

}

.about-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.about-card{

    background:#07192d;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:35px;

    transition:.35s;

}

.about-card:hover{

    transform:translateY(-10px);

    border-color:#D4AF37;

    box-shadow:0 20px 40px rgba(0,0,0,.25);

}

.about-card h3{

    color:#D4AF37;

    margin-bottom:18px;

    font-size:22px;

}

.about-card p{

    color:#cfd6df;

    line-height:1.8;

}


/* =======================================================
   SERVICES
======================================================= */

.services{

    background:#07192d;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.service-card{

    background:#0d2744;

    border-radius:18px;

    padding:35px;

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-10px);

    border-color:#D4AF37;

    box-shadow:0 18px 40px rgba(0,0,0,.25);

}

.service-card h3{

    color:#D4AF37;

    font-size:22px;

    margin-bottom:18px;

}

.service-card p{

    color:#d4d9de;

    line-height:1.8;

}

.services-cta{

    text-align:center;

    margin-top:60px;

}


/* =======================================================
   PORTFOLIO
======================================================= */

.portfolio{

    background:#0b223d;

}

.portfolio-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.portfolio-card{

    background:#07192d;

    border-radius:18px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.portfolio-card:hover{

    transform:translateY(-10px);

    border-color:#D4AF37;

}

.portfolio-image{

    height:220px;

    background:linear-gradient(135deg,#17395e,#07192d);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#D4AF37;

    font-size:26px;

    font-weight:700;

}

.portfolio-content{

    padding:28px;

}

.portfolio-content h3{

    margin-bottom:15px;

    color:#D4AF37;

}

.portfolio-content p{

    color:#cfd6df;

    line-height:1.8;

}
/* =======================================================
   CONTACT
======================================================= */

.contact{

    background:#07192d;

}

.contact-wrapper{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:40px;

    margin-top:60px;

}

.contact-form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:18px;

    border-radius:12px;

    border:1px solid rgba(255,255,255,.10);

    background:#0d2744;

    color:#ffffff;

    font-size:15px;

    outline:none;

    transition:.3s;

}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:#D4AF37;

    box-shadow:0 0 0 3px rgba(212,175,55,.15);

}

.contact-form textarea{

    resize:vertical;

    min-height:180px;

}

.contact-box{

    background:#0d2744;

    padding:35px;

    border-radius:18px;

    border:1px solid rgba(255,255,255,.08);

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.contact-box h3{

    color:#D4AF37;

    margin-bottom:18px;

}

.contact-box p{

    color:#d4d9de;

    line-height:1.8;

    margin-bottom:20px;

}

.small-note{

    margin-top:20px;

    font-size:13px;

    color:#9aa7b5;

}

/* =======================================================
   FOOTER
======================================================= */

.footer{

    background:#04101d;

    padding:60px 20px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.08);

}

.footer p{

    color:#d4d9de;

}

.footer-sub{

    margin-top:12px;

    color:#8fa2b5;

    font-size:14px;

}

/* =======================================================
   GLOBAL CARD HOVER
======================================================= */

.about-card,
.service-card,
.portfolio-card,
.stat-card,
.contact-box{

    transition:all .35s ease;

}

.about-card:hover,
.service-card:hover,
.portfolio-card:hover,
.stat-card:hover,
.contact-box:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.28);

}

/* =======================================================
   MOBILE
======================================================= */

@media (max-width:992px){

.hero h1{

    font-size:48px;

}

.about-grid,
.services-grid,
.portfolio-grid{

    grid-template-columns:1fr 1fr;

}

.hero-stats{

    grid-template-columns:1fr;

}

.contact-wrapper{

    grid-template-columns:1fr;

}

}

@media (max-width:768px){

.nav-wrapper{

    flex-direction:column;

    height:auto;

    padding:20px 0;

}

.menu{

    flex-wrap:wrap;

    justify-content:center;

    gap:18px;

    margin:18px 0;

}

.nav-button{

    width:100%;

    text-align:center;

}

.hero{

    min-height:auto;

    padding:170px 0 100px;

}

.hero h1{

    font-size:36px;

    line-height:1.25;

}

.hero p{

    font-size:16px;

}

.hero-buttons{

    flex-direction:column;

}

.hero-buttons .btn{

    width:100%;

}

.about-grid,
.services-grid,
.portfolio-grid{

    grid-template-columns:1fr;

}

.section-title{

    font-size:30px;

}

section{

    padding:80px 0;

}

.container{

    width:92%;

}

.contact-box{

    margin-top:10px;

}

}

@media (max-width:480px){

.hero h1{

    font-size:30px;

}

.logo{

    font-size:24px;

}

.menu{

    gap:12px;

}

.btn{

    padding:15px 22px;

}

}
