@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Open+Sans:wght@400;600&display=swap');

body {
    font-family: 'Open Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.font-eras-bold {
    font-family: "ErasITCBold", "Montserrat", sans-serif;
}

.font-text-medium {
    font-family: "ErasITCRegular", "Open Sans", sans-serif;
}

/* Hero Section */
.hero-section {
    background-image: url('/images/tech-bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero-title {
    animation: 1s ease-out 0s 1 slideInFromTop;
}

.hero-subtitle {
    animation: 1s ease-out 0.5s 1 slideInFromBottom;
}

.cta-button {
    background-color: #c53030; /* red-700 */
    color: white;
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 9999px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #9b2c2c; /* red-800 */
    transform: translateY(-2px);
    box-shadow: 0 7px 10px rgba(0, 0, 0, 0.15);
}

/* Section Styles */
.section-title {
    animation: fadeIn 1s ease-out;
}

.section-subtitle {
    animation: fadeIn 1s ease-out 0.3s;
}

.strengths-list {
    animation: slideInFromLeft 1s ease-out;
}

/* Keyframe Animations */
@keyframes slideInFromTop {
    0% {
        transform: translateY(-30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-30px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Partner Scroll Animation */
@keyframes partner-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.animate-partner-scroll {
    display: flex;
    width: fit-content;
    animation: partner-scroll 30s linear infinite;
}
