/* --- Basic Reset & Body Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #f4f6f8; /* Light background for the section */
    overflow-x: hidden;
}

:root {
    --header-height-value: 70px;
}

/* --- Hero Section Styles --- */
.hero {
    width: 100%;
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image { /* The main dark background pattern */
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* filter: brightness(0.3); /* MODIFIED: Removed filter */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-objects-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%; /* Make it quite wide */
    max-width: 1400px; /* Cap its size, adjust as needed for your image content */
    height: auto; /* Maintain aspect ratio */
    z-index: 2;   /* Above main background, below text */
    transform: translate(-50%, -50%) scale(0.3); /* Initial state for pop-in */
    opacity: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo-img {
    display: block;
    max-width: 60px;
    height: auto;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 4rem;
    font-weight: normal; /* MODIFIED: Changed from bold to normal */
    margin-bottom: 0.6em;
    color: #fff;
    line-height: 1.1;
    text-transform: uppercase;
    transform: translateY(30px);
    opacity: 0;
}

.hero-title .highlight {
    font-family: 'Times New Roman', Times, serif; /* Kept specific font for consistency if needed */
    color: #007bff;
    font-weight: bold; /* Highlight remains bold */
    text-transform: uppercase;
}

.hero-subtitle {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.25rem;
    margin-bottom: 1.8em;
    color: #e0e0e0;
    max-width: 600px;
    transform: translateY(30px);
    opacity: 0;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    transform: translateY(30px);
    opacity: 0;
}

.btn {
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: #007bff;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.btn-primary .arrow {
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.btn-primary:hover .arrow {
    transform: translateX(4px);
}

.btn-secondary {
    background-color: rgba(108, 117, 125, 0.8);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(80, 87, 93, 0.9);
    transform: translateY(-3px) scale(1.03);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Keyframes and Hero Animations */
@keyframes slideInUpSimple {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes popInObjects {
    0% {
        transform: translate(-50%, -50%) scale(0.3);
        opacity: 0;
    }
    70% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
}

@keyframes floatObjects {
    0% {
        transform: translate(-50%, -50%) scale(1) translateY(0px);
    }
    50% {
        transform: translate(-50%, -50%) scale(1) translateY(-15px);
    }
    100% {
        transform: translate(-50%, -50%) scale(1) translateY(0px);
    }
}

.animate.hero-logo-img {
    animation: slideInUpSimple 0.7s 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.animate.hero-title {
    animation: slideInUpSimple 0.7s 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.animate.hero-subtitle {
    animation: slideInUpSimple 0.7s 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.animate.hero-buttons {
    animation: slideInUpSimple 0.7s 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.animate.hero-objects-image {
    animation: popInObjects 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s forwards,
               floatObjects 7s ease-in-out 1.3s infinite;
}

/* Hero Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.2rem;
    }
    .hero-objects-image {
        max-width: 1100px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 600px;
        padding-top: 10vh;
        padding-bottom: 5vh;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 90%;
        padding: 0 10px;
    }
    .hero-logo-img {
        max-width: 50px;
        margin-bottom: 10px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .btn {
        width: 80%;
        max-width: 300px;
        padding: 12px 20px;
    }
    .hero-objects-image {
        max-width: 700px;
        width: 95%;
    }
}

@media (max-width: 480px) {

    .hero-objects-image{
        display: none;
    }

    .hero {
        padding-top: 8vh;
    }
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-logo-img {
        max-width: 40px;
        margin-bottom: 8px;
    }
    .btn {
        width: 90%;
        max-width: 280px;
        font-size: 0.9rem;
    }
    .hero-objects-image {
        max-width: 450px;
        width: 100%;
    }
}

/* Placeholder Sections */
.placeholder-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.placeholder-section h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.placeholder-section.bg-1 { background-color: #2c3e50; }
.placeholder-section.bg-2 { background-color: #e74c3c; }
.placeholder-section.bg-3 { background-color: #8e44ad; }
.placeholder-section.bg-4 { background-color: #27ae60; }
.placeholder-section.bg-5 { background-color: #f39c12; }

@media (max-width: 768px) {
    .placeholder-section h2 {
        font-size: 2rem;
    }
}