 

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;

    background: #ffffff;
    color: #0f172a;

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

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;

    color: inherit;
}

button {
    font-family: inherit;

    -webkit-tap-highlight-color: transparent;
}

a {
    -webkit-tap-highlight-color: transparent;
}

::selection {
    background: #1d4ed8;
    color: #ffffff;
}
 
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #2563eb;

    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1e3a8a;
}

 

header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 80px;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.97);

    border-bottom: 1px solid #e5e7eb;

    box-shadow:
        0 2px 12px rgba(15, 23, 42, 0.06);

    backdrop-filter: blur(10px);

    transition:
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}


 

header nav a {
    text-decoration: none;

    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

 

.logo-wrapper {
    width: 68px;
    height: 68px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    flex-shrink: 0;
}

.navbar-logo {
    width: 105px;
    height: 105px;

    max-width: none;

    object-fit: contain;

    display: block;
}


/* Brand text */

.navbar-brand-title {
    color: #172554;
}

.navbar-brand-subtitle {
    color: #1d4ed8;
}
 

header nav .hidden.lg\:flex.items-center.gap-8 {
    align-items: center;
}
 

header nav .hidden.lg\:flex.items-center.gap-8 > a:not([class*="bg-blue-700"]) {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 10px 14px;

    border-radius: 8px;

    color: #475569;

    font-size: 15px;

    font-weight: 500;

    white-space: nowrap;
}

 

header nav .hidden.lg\:flex.items-center.gap-8 > a:not([class*="bg-blue-700"]):hover {
    color: #2563eb !important;

    background: #ffffff !important;

    box-shadow:
        0 6px 18px rgba(15, 23, 42, 0.10);

    transform: translateY(-1px);
}

 

header nav .hidden.lg\:flex.items-center.gap-8 > a.text-blue-700 {
    color: #2563eb !important;
}



header nav a[href="contact.html"][class*="bg-blue-700"] {
    white-space: nowrap;

    transition:
        background-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

header nav a[href="contact.html"][class*="bg-blue-700"]:hover {
    background: #1d4ed8 !important;

    color: #ffffff !important;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px
        rgba(29, 78, 216, 0.22);
}

 

#mobile-menu {
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

#mobile-menu a {
    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
}

#mobile-menu a:hover {
    color: #2563eb;

    padding-left: 5px;
}
 

.home-hero {
    position: relative;

    width: 100%;

    height: calc(100vh - 80px);

    min-height: 650px;

    margin-top: 80px;

    overflow: hidden;

    background: #020617;
}


  

.hero-slides {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0;

    transform: scale(1.04);

    transition:
        opacity 1s ease,
        transform 5s ease;
}

.hero-slide.active {
    opacity: 1;

    transform: scale(1);
}
 

.hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(2, 6, 23, 0.90) 0%,
            rgba(2, 6, 23, 0.72) 42%,
            rgba(2, 6, 23, 0.38) 75%,
            rgba(2, 6, 23, 0.25) 100%
        );
}
 

.hero-content {
    position: relative;

    z-index: 3;

    width: min(1200px, 100%);

    height: 100%;

    margin: auto;

    padding:
        120px 40px
        80px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;
}
 

.hero-badge {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 10px 18px;

    margin-bottom: 24px;

    border-radius: 999px;

    background:
        rgba(59, 130, 246, 0.18);

    border: 1px solid
        rgba(147, 197, 253, 0.35);

    color: #dbeafe;

    font-size: 14px;

    font-weight: 600;

    backdrop-filter: blur(8px);
}
 

.hero-content h1 {
    width: 100%;

    max-width: 950px;

    margin: 0 auto;

    color: #ffffff;

    font-size:
        clamp(
            42px,
            6vw,
            76px
        );

    line-height: 1.05;

    letter-spacing: -0.035em;

    font-weight: 800;

    text-align: center;
}

.hero-content h1 span {
    color: #60a5fa;
}

 
.hero-content p {
    width: 100%;

    max-width: 800px;

    margin:
        28px auto 0;

    color: #dbeafe;

    font-size: 18px;

    line-height: 1.7;

    text-align: center;
}

 

.hero-buttons {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 16px;

    margin-top: 34px;
}

.hero-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 54px;

    padding: 0 26px;

    border-radius: 9px;

    font-size: 15px;

    font-weight: 700;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease;
}

 

.hero-btn.primary {
    background: #2563eb;

    color: #ffffff;

    box-shadow:
        0 10px 25px
        rgba(37, 99, 235, 0.30);
}

.hero-btn.primary:hover {
    background: #1d4ed8;

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 15px 30px
        rgba(37, 99, 235, 0.38);
}


 

.hero-btn.secondary {
    background:
        rgba(255, 255, 255, 0.08);

    color: #ffffff;

    border: 1px solid
        rgba(255, 255, 255, 0.45);

    backdrop-filter: blur(8px);
}

.hero-btn.secondary:hover {
    background: #ffffff;

    color: #1d4ed8;

    transform: translateY(-3px);
}

 

.hero-features {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 55px;

    margin-top: 48px;
}

.hero-features div {
    display: flex;

    flex-direction: column;

    align-items: center;
}

.hero-features strong {
    color: #ffffff;

    font-size: 25px;

    font-weight: 800;
}

.hero-features span {
    margin-top: 3px;

    color: #bfdbfe;

    font-size: 13px;
}

 

.hero-dots {
    position: absolute;

    z-index: 5;

    bottom: 30px;

    left: 50%;

    transform:
        translateX(-50%);

    display: flex;

    align-items: center;

    gap: 8px;
}

.hero-dot {
    width: 9px;
    height: 9px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background:
        rgba(
            255,
            255,
            255,
            0.45
        );

    cursor: pointer;

    transition:
        width 0.25s ease,
        background-color 0.25s ease;
}

.hero-dot.active {
    width: 28px;

    border-radius: 10px;

    background: #60a5fa;
}
 

.group {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.group:hover {
    transform: translateY(-5px);
}

.group img {
    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}
 

footer {
    position: relative;
}

 

footer a:not(.footer-social) {
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

footer a:not(.footer-social):hover {
    color: #ffffff;

    transform: translateX(3px);
}

 

.footer-socials {
    display: flex;

    align-items: center;

    gap: 14px;
}

.footer-social {
    width: 34px;
    height: 34px;

    min-width: 34px;
    min-height: 34px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 0;

    border-radius: 8px;

    background:
        rgba(
            255,
            255,
            255,
            0.08
        );

    color: #cbd5e1;

    box-shadow: none;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-social svg {
    width: 18px;
    height: 18px;

    display: block;

    flex-shrink: 0;
}

.footer-social:hover {
    transform: translateY(-2px);

    background: #2563eb;

    color: #ffffff;
}

.footer-social.instagram:hover {
    background: #e1306c;

    color: #ffffff;
}

.footer-social.twitter:hover {
    background: #000000;

    color: #ffffff;
}

.footer-social.linkedin:hover {
    background: #0a66c2;

    color: #ffffff;
}

 

.fixed.bottom-5.right-5 {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.fixed.bottom-5.right-5:hover {
    transform: scale(1.08);

    box-shadow:
        0 12px 30px
        rgba(0, 0, 0, 0.20);
}

 

a:focus-visible,
button:focus-visible {
    outline:
        3px solid
        rgba(37, 99, 235, 0.30);

    outline-offset: 3px;
}

 

@media (max-width: 1023px) {

    .logo-wrapper {
        width: 62px;
        height: 62px;
    }

    .navbar-logo {
        width: 95px;
        height: 95px;
    }

    .hero-content {
        padding-left: 35px;
        padding-right: 35px;
    }

}

 

@media (max-width: 767px) {
 

    header {
        height: 72px;
    }

    .logo-wrapper {
        width: 55px;
        height: 55px;
    }

    .navbar-logo {
        width: 88px;
        height: 88px;
    }

    .navbar-brand-title {
        font-size: 18px;
    }

    .navbar-brand-subtitle {
        font-size: 9px;

        letter-spacing: 0.12em;
    }

 

    .home-hero {
        height:
            calc(100vh - 72px);

        min-height: 680px;

        margin-top: 72px;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(2, 6, 23, 0.75),
                rgba(2, 6, 23, 0.88)
            );
    }

    .hero-content {
        padding:
            90px 25px
            70px;
    }

    .hero-badge {
        padding: 8px 14px;

        margin-bottom: 20px;

        font-size: 12px;
    }

    .hero-content h1 {
        font-size:
            clamp(
                39px,
                11vw,
                58px
            );

        line-height: 1.08;
    }

    .hero-content p {
        margin-top: 22px;

        font-size: 16px;

        line-height: 1.6;
    }

    .hero-buttons {
        width: 100%;

        flex-direction: column;

        align-items: stretch;

        gap: 12px;

        margin-top: 28px;
    }

    .hero-btn {
        width: 100%;

        box-sizing: border-box;
    }

    .hero-features {
        width: 100%;

        justify-content: space-between;

        gap: 15px;

        margin-top: 35px;
    }

    .hero-features strong {
        font-size: 22px;
    }

    .hero-features span {
        font-size: 11px;
    }

    .hero-dots {
        bottom: 20px;
    }


    /* Footer social */

    .footer-socials {
        gap: 12px;
    }

    .footer-social {
        width: 32px;
        height: 32px;

        min-width: 32px;
        min-height: 32px;
    }

    .footer-social svg {
        width: 17px;
        height: 17px;
    }

} 

@media (max-width: 480px) {

    .logo-wrapper {
        width: 50px;
        height: 50px;
    }

    .navbar-logo {
        width: 82px;
        height: 82px;
    }

    .navbar-brand-title {
        font-size: 16px;
    }

    .navbar-brand-subtitle {
        font-size: 8px;

        letter-spacing: 0.10em;
    }


    .home-hero {
        min-height: 700px;
    }

    .hero-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-content h1 {
        font-size: 39px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-features {
        gap: 10px;
    }

    .hero-features strong {
        font-size: 20px;
    }

    .hero-features span {
        font-size: 10px;
    }

}

 

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

}
#mobile-menu {
    background: #ffffff;

    border-top: 1px solid #e2e8f0;

    box-shadow:
        0 10px 25px
        rgba(15, 23, 42, 0.10);
}  

@media (max-width: 1023px) {

    #mobile-menu {
        position: absolute;

        top: 80px;
        left: 0;

        width: 100%;

        padding: 8px 20px 20px;

        background: #ffffff;

        border-top: 1px solid #e2e8f0;

        border-bottom: 1px solid #e2e8f0;

        box-shadow:
            0 12px 25px
            rgba(15, 23, 42, 0.12);

        z-index: 9999;
    }


    #mobile-menu > div {
        display: flex;

        flex-direction: column;

        width: 100%;

        gap: 0;

        align-items: center;
    }


    

    #mobile-menu a {
        display: flex;

        align-items: center;
        justify-content: center;

        width: 100%;

        min-height: 46px;

        padding: 12px 10px;

        border-bottom: 1px solid #e5e7eb;

        color: #475569;

        font-size: 15px;

        font-weight: 500;

        text-align: center;

        transition:
            color 0.25s ease,
            background-color 0.25s ease;
    }


    #mobile-menu a:hover {
        color: #2563eb;

        background: #f8fafc;
    }


    /* Active page */

    #mobile-menu a.text-blue-700 {
        color: #2563eb !important;

        font-weight: 700;
    }

 

    #mobile-menu a:last-child {
        width: 150px;

        min-height: 44px;

        margin-top: 14px;

        border: none;

        border-radius: 8px;

        background: #2563eb;

        color: #ffffff !important;

        font-weight: 700;

        text-align: center;

        justify-content: center;
    }
 

@media (max-width: 1023px) {

    #mobile-menu {
        position: absolute;

        top: 80px;
        left: 0;

        width: 100%;

        padding: 8px 20px 20px;

        background: #ffffff;

        border-top: 1px solid #e2e8f0;
        border-bottom: 1px solid #e2e8f0;

        box-shadow:
            0 12px 25px
            rgba(15, 23, 42, 0.12);

        z-index: 9999;
    }

    #mobile-menu > div {
        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 0;
    }

    #mobile-menu > div > a {
        width: 100%;

        min-height: 46px;

        display: flex;

        align-items: center;
        justify-content: center;

        padding: 12px 10px;

        border-bottom: 1px solid #e5e7eb;

        color: #475569;

        text-align: center;
    }

    #mobile-menu > div > a:hover {
        color: #2563eb;

        background: #f8fafc;
    }
 

    #mobile-menu > div > a.text-blue-700 {
        color: #2563eb !important;

        font-weight: 700;
    }

   

    #mobile-menu > div > a.mobile-quote-btn {
        width: 150px !important;

        min-width: 150px !important;
        max-width: 150px !important;

        height: 44px;

        min-height: 44px;

        margin: 14px auto 0 !important;

        padding: 0 !important;

        border: none !important;

        border-radius: 8px;

        background: #2563eb !important;

        color: #ffffff !important;

        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        text-align: center !important;

        font-weight: 700;

        align-self: center !important;
    }

    #mobile-menu > div > a.mobile-quote-btn:hover {
        background: #1d4ed8 !important;

        color: #ffffff !important;
    }
}}