/* ==========================================
   NET2USER
   Enterprise AI, Transformation & Intelligence
   Version 1.0
========================================== */

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:"Segoe UI",Arial,sans-serif;

    background:#ffffff;

    color:#2d3748;

    line-height:1.7;

}

img{

    max-width:100%;

    display:block;

}

.container{

    width:90%;

    max-width:1200px;

    margin:auto;

}

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

header{

    position:sticky;

    top:0;

    z-index:999;

    background:#ffffff;

    box-shadow:0 2px 10px rgba(0,0,0,.08);

}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

}

.logo{

    color:#174EA6;

    font-size:32px;

    font-weight:700;

    letter-spacing:1px;

}

.nav-links{

    display:flex;

    list-style:none;

    gap:30px;

}

.nav-links a{

    text-decoration:none;

    color:#444;

    font-weight:600;

    transition:.3s;

}

.nav-links a:hover{

    color:#174EA6;

}

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

.hero{

    background:linear-gradient(
    135deg,
    #0B1F3A 0%,
    #174EA6 55%,
    #0F766E 100%);

    color:white;

    text-align:center;

    padding:120px 20px;

}

.eyebrow{

    display:inline-block;

    padding:8px 18px;

    background:rgba(255,255,255,.15);

    border-radius:40px;

    margin-bottom:30px;

    font-size:15px;

    letter-spacing:.5px;

}

.hero h1{

    font-size:64px;

    line-height:1.15;

    margin-bottom:30px;

}

.hero p{

    max-width:820px;

    margin:auto;

    font-size:22px;

    opacity:.95;

}

.buttons{

    margin-top:45px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn-primary{

    display:inline-block;

    background:white;

    color:#174EA6;

    padding:15px 32px;

    border-radius:8px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.btn-primary:hover{

    transform:translateY(-3px);

}

.btn-secondary{

    display:inline-block;

    border:2px solid white;

    color:white;

    padding:15px 32px;

    border-radius:8px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.btn-secondary:hover{

    background:white;

    color:#174EA6;

}/* ===== Sections ===== */

section{
    padding:80px 0;
}

.section-intro{
    max-width:800px;
    margin:20px auto 50px;
    text-align:center;
    color:#666;
    font-size:18px;
}

h2{
    text-align:center;
    font-size:42px;
    color:#174EA6;
    margin-bottom:10px;
}

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

.experience-grid,
.services-grid,
.research-grid,
.insights-grid{

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

}

.experience-card,
.service-card,
.research-card,
.insight-card{

    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;

}

.experience-card:hover,
.service-card:hover,
.research-card:hover,
.insight-card:hover{

    transform:translateY(-8px);

}

.service-card img{

    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:10px;
    margin-bottom:20px;

}

/* ===== Advisor ===== */

.advisor{

    background:#F5F7FA;

}

.advisor-box{

    max-width:900px;
    margin:auto;
    background:#fff;
    padding:40px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.advisor-box ul{

    margin:25px 0;
    padding-left:20px;

}

.advisor-box li{

    margin-bottom:12px;

}

/* ===== Profile ===== */

.profile-box{

    display:grid;
    grid-template-columns:300px 1fr;
    gap:40px;
    align-items:center;

}

.profile-image img{

    border-radius:12px;

}

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

.contact{

    background:#F5F7FA;

}

.contact-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;

}

.contact-form input,
.contact-form textarea{

    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:16px;

}

.contact-form button{

    border:none;
    cursor:pointer;

}

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

footer{

    background:#0B1F3A;
    color:white;
    text-align:center;
    padding:50px 20px;

}

footer hr{

    margin:25px 0;
    border:none;
    border-top:1px solid rgba(255,255,255,.2);

}

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

@media(max-width:768px){

.hero h1{

    font-size:42px;

}

.navbar{

    flex-direction:column;
    gap:20px;

}

.nav-links{

    flex-wrap:wrap;
    justify-content:center;

}

.profile-box,
.contact-grid{

    grid-template-columns:1fr;

}

}