/* ========================= */
/* RESET */
/* ========================= */

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:Inter,Arial,sans-serif;

    background:#08111f;

    color:#f5f7fb;

    line-height:1.7;

    overflow-x:hidden;

}

/* ========================= */
/* LINKS */
/* ========================= */

a{

    color:inherit;

    text-decoration:none;

}

img{

    max-width:100%;

    display:block;

}

/* ========================= */
/* CONTAINER */
/* ========================= */

.section{

    max-width:1200px;

    margin:auto;

    padding:90px 25px;

}

h1{

    font-size:4rem;

    line-height:1.1;

    margin-bottom:25px;

    font-weight:800;

}

h2{

    font-size:2.4rem;

    margin-bottom:20px;

}

h3{

    font-size:1.3rem;

    margin-bottom:15px;

}

p{

    color:#b7c2d4;

}

/* ========================= */
/* HEADER */
/* ========================= */

header{

    position:sticky;

    top:0;

    z-index:1000;

    background:rgba(8,17,31,.92);

    backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(255,255,255,.06);

}

nav{

    max-width:1200px;

    margin:auto;

    padding:18px 25px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

nav ul{

    display:flex;

    gap:28px;

    list-style:none;

}

nav a{

    transition:.3s;

}

nav a:hover{

    color:#4ea1ff;

}

/* ========================= */
/* LOGO */
/* ========================= */

.logo{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:700;

    font-size:1.2rem;

}

.logo img{

    width:38px;

    height:38px;

    object-fit:contain;

}

.logo span{

    color:#fff;

   }
/* ========================= */
/* HERO */
/* ========================= */

#hero{

    max-width:1200px;

    margin:auto;

    padding:110px 25px 90px;

    text-align:center;

}

.badge{

    display:inline-block;

    padding:10px 18px;

    border:1px solid rgba(78,161,255,.35);

    border-radius:999px;

    background:rgba(78,161,255,.08);

    color:#69a9ff;

    font-size:.9rem;

    margin-bottom:30px;

}

#hero h1{

    max-width:850px;

    margin:auto;

    margin-bottom:25px;

}

#hero p{

    max-width:760px;

    margin:auto;

    font-size:1.1rem;

}

.hero-buttons{

    margin-top:45px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.hero-buttons a{

    padding:15px 28px;

    border-radius:10px;

    font-weight:600;

    transition:.3s;

}

.hero-buttons a:first-child{

    background:#3b82f6;

    color:white;

}

.hero-buttons a:first-child:hover{

    background:#2563eb;

    transform:translateY(-3px);

}

.hero-buttons a:last-child{

    border:1px solid rgba(255,255,255,.15);

}

.hero-buttons a:last-child:hover{

    border-color:#3b82f6;

    color:#69a9ff;

}

/* ========================= */
/* TRUST BAR */
/* ========================= */

#trust{

    border-top:1px solid rgba(255,255,255,.06);

    border-bottom:1px solid rgba(255,255,255,.06);

    text-align:center;

    padding:22px;

    background:#0d1627;

}

#trust p{

    color:#8ea4c4;

    letter-spacing:1px;

    font-size:.95rem;

    }
/* ========================= */
/* CARDS */
/* ========================= */

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

    margin-top:45px;

}

.card{

    background:#101b2d;

    border:1px solid rgba(255,255,255,.06);

    border-radius:18px;

    padding:35px;

    transition:.3s;

}

.card:hover{

    transform:translateY(-8px);

    border-color:#3b82f6;

    box-shadow:0 18px 40px rgba(0,0,0,.35);

}

.card img{

    width:60px;

    height:60px;

    object-fit:contain;

    margin-bottom:20px;

}

.card h3{

    color:#ffffff;

    margin-bottom:15px;

}

.card p{

    margin-bottom:22px;

}

.card a{

    color:#4ea1ff;

    font-weight:600;

}

.card a:hover{

    color:#7fb7ff;

}

/* ========================= */
/* SERVICES */
/* ========================= */

/* Services */

.price{
    font-size: 2rem;
    font-weight: 700;
    margin: 15px 0;
}

.card h4{
    margin-top: 25px;
    margin-bottom: 12px;
}

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

.card ul li{
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-contact{
    margin-top: 50px;
    text-align: center;
}

.service-contact h3{
    margin-bottom: 15px;
}

.service-contact p{
    max-width: 700px;
    margin: 0 auto;
}

.service-contact a{
    color: inherit;
    font-weight: 600;
    text-decoration: none;
}

.service-contact a:hover{
    text-decoration: underline;
}

/* ========================= */
/* RESEARCH */
/* ========================= */

#research{

    background:#08111f;

}

#research h2{

    text-align:center;

    margin-bottom:20px;

}

/* ==========================
   Methodology
========================== */

#methodology{

    background:#0b1424;
    text-align:center;

}

#methodology>p{

    max-width:700px;
    margin:20px auto 40px;

}

#methodology img{

    width:100%;
    max-width:500px;
    margin:0 auto 60px;
    display:block;

}

.method-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;

}

.method-card{

    background:#101b2d;
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    padding:30px;
    transition:.3s;

}

.method-card:hover{

    transform:translateY(-6px);
    border-color:#3b82f6;
    box-shadow:0 15px 35px rgba(0,0,0,.35);

}

.method-card h3{

    margin-bottom:15px;
    color:#ffffff;

}

.method-card p{

    color:#b7c2d4;

}


/* ==========================
   About
========================== */

.about-content{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:60px;

    flex-wrap:wrap;

}

.about-image{

    flex:1;

    display:flex;

    justify-content:center;

}

.about-image img{

    width:100%;

    max-width:420px;

    height:auto;

}

.about-text{

    flex:1;

    min-width:320px;

}

.about-text h2{

    margin-bottom:20px;

}

.about-text p{

    font-size:1.05rem;

    color:#b7c2d4;

}

/* ========================= */
/* CONTACT */
/* ========================= */

#contact{

    text-align:center;

}

.contact-links{

    margin-top:40px;

    display:flex;

    flex-direction:column;

    gap:18px;

}

.contact-links a{

    color:#4ea1ff;

    transition:.3s;

}

.contact-links a:hover{

    color:#82bbff;

}

/* ==========================
   Footer
========================== */

footer{

    background:#060d18;

    border-top:1px solid rgba(255,255,255,.08);

    padding:60px 25px;

}

.footer-content{

    max-width:1200px;

    margin:auto;

    text-align:center;

}

.footer-content img{

    width:55px;

    margin:0 auto 20px;

}

.footer-content h3{

    color:#ffffff;

    margin-bottom:10px;

}

.footer-tagline{

    color:#8ea4c4;

    margin:20px 0 35px;

}

.footer-links{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:25px;

    margin-bottom:35px;

}

.footer-links a{

    color:#69a9ff;

    transition:.3s;

}

.footer-links a:hover{

    color:#ffffff;

}

.copyright{

    color:#6b7b94;

    font-size:.9rem;

}

/* ========================= */
/* SCROLLBAR */
/* ========================= */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#08111f;

}

::-webkit-scrollbar-thumb{

    background:#24406b;

    border-radius:10px;

}

::-webkit-scrollbar-thumb:hover{

    background:#3b82f6;

}

/* ========================= */
/* MOBILE */
/* ========================= */


@media (max-width:600px){

h1{

    font-size:2.2rem;

}

body{

    font-size:15px;

}

.logo img{

    width:34px;

    height:34px;

}

.badge{

    font-size:.8rem;

}

}

/* ========================= */
/* BACKGROUND EFFECT */
/* ========================= */

body::before{

    content:"";

    position:fixed;

    top:-200px;

    right:-200px;

    width:500px;

    height:500px;

    background:radial-gradient(circle,rgba(59,130,246,.12),transparent 70%);

    z-index:-1;

    pointer-events:none;

}

body::after{

    content:"";

    position:fixed;

    bottom:-250px;

    left:-250px;

    width:600px;

    height:600px;

    background:radial-gradient(circle,rgba(59,130,246,.08),transparent 70%);

    z-index:-1;

    pointer-events:none;

        }

/* ==========================
   Hero Layout
========================== */

.hero-content{

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;

}

.hero-text{

    flex:1;

}

.hero-image{

    flex:1;
    display:flex;
    justify-content:center;

}

.hero-image img{

    width:100%;
    max-width:480px;
    height:auto;

}

/* ==========================
   Methodology Illustration
========================== */

#methodology img{

display:block;

margin:40px auto;

width:100%;

max-width:700px;

height:auto;

}

/* ==========================
   About Illustration
========================== */

#about{

display:flex;

flex-direction:column;

align-items:center;

text-align:center;

}

#about img{

width:100%;

max-width:550px;

margin:40px auto;

height:auto;

}

/* ==========================
   Mobile
========================== */

@media (max-width:768px){

.hero-content{

    flex-direction:column-reverse;
    text-align:center;

}

.hero-image img{

    max-width:300px;

}

}

#methodology img{

max-width:100%;

}

#about img{

max-width:300px;

}

}

.about-content{

    flex-direction:column;

    text-align:center;

}


/* ==========================
   Mobile Navigation
========================== */

.menu-toggle{

display:none;

font-size:2rem;

cursor:pointer;

color:#ffffff;

user-select:none;

}

/* ==========================
   Mobile Navigation
========================== */

@media (max-width:768px){

.menu-toggle{

display:block;

}

.nav-links{

display:none;

position:absolute;

top:80px;

right:20px;

width:240px;

background:#08111f;

border:1px solid rgba(255,255,255,.08);

border-radius:12px;

padding:20px;

flex-direction:column;

gap:18px;

box-shadow:0 15px 35px rgba(0,0,0,.35);

z-index:1000;

}

.nav-links.active{

display:flex;

}

nav{

position:relative;

}

}

/* ==========================
   Contact Cards
========================== */

.contact-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

    gap:25px;

    margin-top:50px;

}

.contact-card{

    background:#101b2d;

    border:1px solid rgba(255,255,255,.08);

    border-radius:16px;

    padding:30px;

    text-align:center;

    transition:.3s;

}

.contact-card:hover{

    transform:translateY(-6px);

    border-color:#3b82f6;

    box-shadow:0 15px 35px rgba(0,0,0,.35);

}

.contact-card h3{

    margin-bottom:15px;

    color:#ffffff;

}

.contact-card a{

    color:#69a9ff;

    word-break:break-word;

}

.contact-card a:hover{

    color:#8bc2ff;

    }
