/*==========================================================
VARIABLES
==========================================================*/

:root{

    --primary:#00A3E0;

    --primary-dark:#007BB8;

    --secondary:#5F5F5F;

    --secondary-light:#9A9A9A;

    --background:#F8FBFD;

    --white:#FFFFFF;

    --text:#444444;

    --border:#E8EEF2;

    --shadow:0 10px 30px rgba(0,0,0,.05);

    --radius:8px;

}

/*==========================================================
RESET
==========================================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Montserrat',sans-serif;

    background:var(--background);

    color:var(--text);

    overflow-x:hidden;

}

img{

    display:block;

    width:100%;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

/*==========================================================
CONTAINER
==========================================================*/

.container{

    width:90%;

    max-width:1280px;

    margin:auto;

}

/*==========================================================
HEADER
==========================================================*/

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    transition:.35s;

    background:rgba(255,255,255,.94);

    backdrop-filter:blur(10px);

    border-bottom:1px solid transparent;

}

header.scrolled{

    border-color:var(--border);

    box-shadow:0 5px 25px rgba(0,0,0,.05);

}

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:90px;

}

.logo{

    display:flex;

    align-items:center;

    gap:15px;

}

.logo img{

    width: 100px;

}

.logo span{

    font-size:1.3rem;

    font-weight:700;

    letter-spacing:2px;

    color:#202020;

}

nav ul{

    display:flex;

    gap:45px;

}

nav a{

    font-weight:600;

    color:#404040;

    position:relative;

}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.35s;

}

nav a:hover::after{

    width:100%;

}

.menu-toggle{

    display:none;

}

/*==========================================================
HERO
==========================================================*/

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    background:var(--white);

    position:relative;

}

.hero::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:6px;

    height:100%;

    background:var(--primary);

}

.hero .container{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:90px;

}

.hero-content span{

    color:var(--primary);

    font-weight:700;

    letter-spacing:4px;

}

.hero-content h1{

    font-size:4.6rem;

    margin:25px 0;

    color:#222;

    line-height:1.1;

}

.hero-content p{

    line-height:2;

    font-size:1.05rem;

    margin-bottom:45px;

    max-width:600px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:18px 38px;

    background:var(--primary);

    color:white;

    font-weight:600;

    border-radius:var(--radius);

    transition:.35s;

}

.btn:hover{

    background:var(--primary-dark);

}

.btn-outline{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:18px 38px;

    border:2px solid var(--primary);

    color:var(--primary);

    border-radius:var(--radius);

    transition:.35s;

}

.btn-outline:hover{

    background:var(--primary);

    color:white;

}

.hero-image{

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-image img{

    max-width:520px;

}

/*==========================================================
SECTION HEADER
==========================================================*/

section{

    padding:120px 0;

}

.section-header{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}

.section-header span{

    display:inline-block;

    color:var(--primary);

    font-size:.9rem;

    letter-spacing:4px;

    font-weight:700;

    margin-bottom:18px;

}

.section-header h2{

    font-size:3rem;

    color:#222;

    font-weight:700;

    margin-bottom:25px;

}

.section-header p{

    line-height:2;

    color:#666;

}

/*==========================================================
ABOUT
==========================================================*/

.about{

    background:var(--white);

}

.about-content{

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:90px;

    align-items:center;

}

.about-text{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.about-text p{

    line-height:2;

    color:#666;

}

.about-image img{

    border-radius:var(--radius);

    box-shadow:var(--shadow);

}

/*==========================================================
PHILOSOPHY
==========================================================*/

.philosophy{

    background:#F8FBFD;

}

.philosophy-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.philosophy-card{

    background:white;

    padding:45px 35px;

    border-radius:var(--radius);

    text-align:center;

    border:1px solid var(--border);

    transition:.35s;

}

.philosophy-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}

.philosophy-card i{

    font-size:2.5rem;

    color:var(--primary);

    margin-bottom:25px;

}

.philosophy-card h3{

    margin-bottom:18px;

    color:#222;

}

.philosophy-card p{

    line-height:1.9;

    color:#666;

}

/*==========================================================
PROJECTS
==========================================================*/

.projects{

    background:white;

}

.projects-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.project-card{

    background:white;

    border-radius:var(--radius);

    overflow:hidden;

    border:1px solid var(--border);

    transition:.35s;

}

.project-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow);

}

.project-image{

    overflow:hidden;

}

.project-image img{

    height:270px;

    object-fit:cover;

    transition:.4s;

}

.project-card:hover .project-image img{

    transform:scale(1.05);

}

.project-info{

    padding:35px;

}

.project-info h3{

    color:#222;

    margin-bottom:18px;

    font-size:1.7rem;

}

.project-info p{

    line-height:1.9;

    margin-bottom:30px;

    color:#666;

}

.project-link{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--primary);

    font-weight:700;

    transition:.35s;

}

.project-link:hover{

    gap:16px;

}

/*==========================================================
CONTACT
==========================================================*/

.contact{

    background:#F8FBFD;

}

.contact-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.contact-card{

    background:white;

    padding:40px 30px;

    border-radius:var(--radius);

    text-align:center;

    border:1px solid var(--border);

    transition:.35s;

}

.contact-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}

.contact-card i{

    font-size:2.4rem;

    color:var(--primary);

    margin-bottom:25px;

}

.contact-card h3{

    margin-bottom:15px;

    color:#222;

}

.contact-card p{

    color:#666;

    line-height:1.8;

}

.contact-card a{

    color:var(--primary);

    font-weight:600;

}

/*==========================================================
FOOTER
==========================================================*/

footer{

    background:#1E1E1E;

    color:white;

    padding:80px 0 40px;

}

footer .container{

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:25px;

}

.footer-logo{

    display:flex;

    align-items:center;

    gap:15px;

}

.footer-logo img{

    width: 90px;

}

.footer-logo span{

    font-size:1.4rem;

    font-weight:700;

    letter-spacing:3px;

}

footer p{

    color:#BDBDBD;

    text-align:center;

    max-width:700px;

    line-height:1.9;

}

footer nav{

    display:flex;

    gap:35px;

}

footer nav a{

    transition:.3s;

}

footer nav a:hover{

    color:var(--primary);

}

footer small{

    color:#8A8A8A;

}

/*==========================================================
BUTTONS
==========================================================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 38px;

    background:var(--primary);

    color:white;

    border-radius:6px;

    font-weight:600;

    transition:.35s;

}

.btn:hover{

    background:var(--primary-dark);

}

.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 38px;

    border:2px solid var(--primary);

    color:var(--primary);

    border-radius:6px;

    transition:.35s;

}

.btn-outline:hover{

    background:var(--primary);

    color:white;

}

/*==========================================================
ANIMATIONS
==========================================================*/

*{

    transition:

        background .3s,

        color .3s,

        border-color .3s,

        transform .3s,

        box-shadow .3s;

}

::selection{

    background:var(--primary);

    color:white;

}

img{

    user-select:none;

}

html{

    scroll-behavior:smooth;

}