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

body {
    font-family: 'Inter', sans-serif;
    background: #f5f7fa;
    color: #333;
    scroll-behavior: smooth;
}

/* HEADER */
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    z-index: 1000;
    transition: 0.3s all;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

header.shrink {
    padding: 10px 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-img {
    width: 160px;
}

.animated-logo-text {
    background: linear-gradient(-45deg, #0A1F44, #FF6B00, #ffffff, #0A1F44, #FF6B00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    background-size: 400% 400%;
    animation: gradientAnim 10s ease infinite;
}

@keyframes gradientAnim {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

header nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

header nav ul li a {
    text-decoration: none;
    font-weight: 600;
    color: #0A1F44;
    transition: 0.3s;
}

header nav ul li a:hover {
    color: #FF6B00;
}

/* HERO */
.hero {
    height: 90vh;
    background: url('images/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 20px;
    padding-top: 80px;
    color: white;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

button {
    padding: 12px 25px;
    border: none;
    background: #FF6B00;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

button.secondary {
    background: white;
    color: #0A1F44;
    border: 1px solid #0A1F44;
}

button:hover {
    opacity: 0.9;
}

/* SECTIONS */
.section {
    padding: 80px 40px;
    text-align: center;
}

h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

/* PRODUCTS TWO COLUMNS */
.products-columns {
    display: flex;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.products-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-card img {
    width: 120px;
    border-radius: 10px;
}

.product-card h3 {
    color: #0A1F44;
    margin-left: 10px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* SERVICES TWO COLUMNS */
.services-columns {
    display: flex;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.services-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.service-card {
    background: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    position: relative;
    transition: 0.3s;
}

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

.service-detail {
    display: none;
    margin-top: 10px;
    color: #0A1F44;
    font-weight: 500;
}

/* CONTACT + CEO */
.contact-ceo-section {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
    background: #0A1F44;
    color: white;
    padding: 60px 40px;
    flex-wrap: wrap;
    position: relative;
}

/* Contact Info Styling */
.contact-info {
    background: rgba(255, 255, 255, 0.1);
    /* subtle background */
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.contact-info p {
    margin: 5px 0;
    font-weight: 500;
    color: white;
}

.contact-column,
.ceo-column {
    flex: 1;
    min-width: 300px;
}

.contact-column form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-column input,
.contact-column textarea {
    padding: 12px;
    border-radius: 5px;
    border: none;
}

.contact-column button {
    background: #FF6B00;
    color: white;
    padding: 12px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 600;
}

.ceo-column img.ceo-img {
    width: 150px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.ceo-column .quote {
    color: white;
    font-style: italic;
    font-weight: bold;
    margin-bottom: 15px;
}

.ceo-column .footer-logo {
    width: 120px;
    margin-top: 20px;
}

/* WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    z-index: 10000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* RESPONSIVE */
@media(max-width:768px) {

    .products-columns,
    .services-columns {
        flex-direction: column;
        max-width: 100%;
    }

    .product-card {
        flex-direction: row;
    }

    .product-card img {
        width: 100px;
    }

    .contact-ceo-section {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 36px;
    }
}

@media(max-width:480px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero h1 {
        font-size: 28px;
    }
}

/* ============================= */
/*             FOOTER            */
/* ============================= */
.site-footer {
    width: 100%;
    background: #0A1F44;
    /* dark background */
    color: white;
    /* text in white */
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    /* fallback */
    bottom: 0;
    left: 0;
}

/* Make sure body takes full height */
body,
html {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

/* Make main content grow to push footer down */
main {
    flex: 1;
}

.brochure-btn {
    display: inline-block;
    background: #FF6B00;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
}

.brochure-btn:hover {
    background: #e65f00;
    transform: translateY(-2px);
}