<link rel="stylesheet" href="styles.css?v=20260106">

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800&display=swap');

/* ======================
   RESET
====================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
font-family: 'Montserrat', system-ui, sans-serif;
    font-weight: 400;
    line-height: 1.5;
    color: #04143A;

  
}


/* ======================
   PAGE WRAPPER
====================== */
.page {
    padding: 60px 0;
}

/* ======================
   HERO
====================== */
.hero { width: 100%; height: 100vh; /* full viewport height */ background-image: url("background.png"); background-size: cover; /* fill container */ background-position: center; /* center image */ background-repeat: no-repeat; display: flex; align-items: center; justify-content: center; }

/* ======================
   HERO CONTENT
====================== */
.hero-content {
    transform: translateY(-40px);
    text-align: center;
}
/* ======================
   TITLE FRAME (LOGO)
====================== */
.title-frame {
    background: #ffffff;
    padding: 22px 18px;
    margin: 0 auto 12px;

    width: 170px;
    max-width: 90%;

    display: flex;
    flex-direction: column;   /* 🔴 REQUIRED */
    justify-content: center;
    align-items: center;

    text-align: center;
}

.title-frame .title {
    margin: 0;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.25;
    text-transform: uppercase;
    color: #97B6C9;
}

.brand {
    font-size: 44px;
    font-weight: 900;
    letter-spacing: 1.2px;
    color: #97B6C9;
    line-height: 1;
    margin: 0 0 10px 0;
}



.service {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 1.2px;
    color: #97B6C9;
    text-align: center;
}









.logo-slider {
    max-width: 600;      /* makes it narrower */
    width: 50%;
    margin: 0 auto;         /* centers it */
    overflow: hidden;
    background: #ffffff;
    padding: 40px 0;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 80px;
 
}

.logo-track img {
    height: 30px;
    width: auto;
    opacity: 0.9;
    filter: grayscale(100%);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.logo-track img:hover {
    opacity: 1;
    filter: none;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


















/* ======================
   SUBTITLE
====================== */
.lead { font-size: 13px; font-weight: 300; color: #ffffff; max-width: 500px; margin: 0 auto;



    
}

/* ======================
   RESPONSIVE
====================== */
@media (max-width: 768px) {
    .hero {
        height: 55vh;
    }

    .title-frame {
        width: 90%;
        padding: 18px 0;
    }

    .title-frame .name {
        font-size: 22px;
    }

    .lead {
        font-size: 16px;
    }
}
