/* ============================================================
   Xymbiotec – Custom Styles
   ============================================================ */

:root {
    --primary-color: 0, 90, 156;
    --primary-dark-color: 0, 60, 110;
    --accent-color: 0, 180, 216;
    --font-family: 'Poppins', sans-serif;
    --font-family-heading: 'Bitter', serif;
}

body {
    font-family: var(--font-family);
    color: rgb(var(--black-color));
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Headings */
h1, h2, h3, h4, h5, h6,
.section-title {
    font-family: var(--font-family-heading);
}

h1, .section-title {
    letter-spacing: -0.02em;
}

p {
    font-family: var(--font-family);
    color: rgba(var(--black-color), 0.75);
}

/* ============================================================
   Header polish
   ============================================================ */
header {
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.TemplateMenu a {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 1.5rem;
    letter-spacing: 0.01em;
    transition: color 0.25s ease;
}

/* ============================================================
   Hero / top section
   ============================================================ */
.top-section {
    background: linear-gradient(135deg, rgb(0, 60, 110) 0%, rgb(0, 90, 156) 50%, rgb(0, 130, 180) 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.top-section .section-title {
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.top-section p {
    font-size: 1.8rem;
    color: rgba(255,255,255,0.85);
    max-width: 60rem;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 1.5rem;
    padding: 1.4rem 3.2rem;
    border-radius: 0.6rem;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.btn-primary-filled {
    background: rgb(var(--accent-color));
    color: #fff;
    border: 2px solid rgb(var(--accent-color));
}

.btn-primary-filled:hover {
    background: rgb(0, 155, 190);
    border-color: rgb(0, 155, 190);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 180, 216, 0.35);
}

.btn-white-border {
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
}

.btn-white-border:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.btn-wrapper {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   Sections – general
   ============================================================ */
.section-wrapper {
    padding: 8rem 0;
}

.section-separator {
    display: none;
}

.text-label {
    font-family: var(--font-family);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: 0.15em;
    color: rgb(var(--primary-color));
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3.6rem;
    line-height: 1.25;
    margin-bottom: 2rem;
}

/* About section */
.section-about {
    padding: 10rem 0;
}

.section-about p {
    font-size: 1.7rem;
    line-height: 1.9;
}

/* ============================================================
   Tech / split section
   ============================================================ */
.split-wrapper {
    display: flex;
    align-items: center;
    min-height: 50rem;
}

.split-content {
    padding: 6rem;
}

.split-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.6rem;
    line-height: 1.85;
}

.bg-blue-dark {
    background: linear-gradient(135deg, rgb(0, 40, 80) 0%, rgb(0, 70, 130) 100%);
}

/* ============================================================
   Success / AI section
   ============================================================ */
.text-block-center {
    max-width: 80rem;
    margin: 0 auto;
}

.text-block-center p {
    font-size: 1.65rem;
    line-height: 1.85;
}

.text-primary {
    color: rgb(var(--primary-color));
}

/* ============================================================
   Logo slider
   ============================================================ */
.section-slider {
    padding: 5rem 0;
    background: rgb(var(--gray-light-color));
}

.logos-1 .card-item {
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logos-1 .card-item img {
    max-height: 5rem;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.logos-1 .card-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================================================
   Contact section
   ============================================================ */
.section-contact {
    background: linear-gradient(135deg, rgb(0, 60, 110) 0%, rgb(0, 100, 170) 100%);
}

.section-contact .text-label {
    color: rgba(255,255,255,0.7);
}

.section-contact .section-title {
    color: #fff;
}

.ContactForm {
    max-width: 60rem;
}

.ContactForm p {
    color: rgba(255,255,255,0.8);
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
}

.ContactForm input[type="text"],
.ContactForm input[type="email"],
.ContactForm input[type="tel"],
.ContactForm textarea {
    width: 100%;
    padding: 1.2rem 1.6rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 0.5rem;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-family: var(--font-family);
    font-size: 1.5rem;
    transition: border-color 0.25s ease, background 0.25s ease;
    outline: none;
}

.ContactForm input::placeholder,
.ContactForm textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

.ContactForm input:focus,
.ContactForm textarea:focus {
    border-color: rgb(var(--accent-color));
    background: rgba(255,255,255,0.15);
}

.ContactForm textarea {
    min-height: 12rem;
    resize: vertical;
}

.ContactForm .ContactSubmit {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 1.5rem;
    padding: 1.4rem 3.6rem;
    border: none;
    border-radius: 0.6rem;
    background: rgb(var(--accent-color));
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.ContactForm .ContactSubmit:hover {
    background: rgb(0, 155, 190);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 180, 216, 0.35);
}

/* Hide labels (using placeholder-style layout) */
.contact-field-label {
    position: absolute;
    left: -9999px;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
    background: rgb(17, 17, 17);
    color: rgba(255,255,255,0.7);
    padding: 6rem 0 4rem;
}

.footer-container {
    max-width: var(--section-width);
    margin: 0 auto;
    padding: 0 5rem;
}

.footer-top {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-menu {
    flex: 1;
    min-width: 18rem;
}

.footer-logo {
    max-height: 5rem;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer .text-label {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-submenu li {
    margin-bottom: 0.5rem;
}

.footer-submenu a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 1.4rem;
    transition: color 0.25s ease;
}

.footer-submenu a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 3rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 1.3rem;
}

/* ============================================================
   Smooth scroll behavior
   ============================================================ */
html {
    scroll-behavior: smooth;
}

/* ============================================================
   Responsive
   ============================================================ */
@media only screen and (max-width: 768px) {
    .top-section .section-title {
        font-size: 3.2rem;
    }

    .top-section p {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .section-wrapper {
        padding: 5rem 0;
    }

    .split-content {
        padding: 4rem 2rem;
    }

    .footer-top {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-container {
        padding: 0 2rem;
    }
}
