:root {
    --dark-grey: #19242E;
    --grey: #7C8795;
    --brown: #5C351A;
    --red: #AE2626;
    --orange: #F36F26;
    --yellow: #F49800;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', Arial, sans-serif;
    color: var(--dark-grey);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Baloo 2', Arial, sans-serif;
    font-weight: 600;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
}

.logo-text {
    margin-left: 10px;
}

.logo-text h1 {
    font-size: 24px;
    margin: 0;
    color: var(--brown);
}

.logo-text p {
    font-size: 12px;
    margin: 0;
    color: var(--grey);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--brown);
    cursor: pointer;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-grey);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--red);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--red);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    background: url('/api/placeholder/1920/1080') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(25, 36, 46, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 600px;
    padding: 2rem;
}

.tagline {
    font-family: 'Baloo 2', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--yellow);
    margin-bottom: 1rem;
    display: block;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Source Sans Pro', Arial, sans-serif;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--red);
    color: #fff;
    border: 2px solid var(--red);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--red);
}

.btn-secondary {
    background-color: var(--orange);
    color: #fff;
    border: 2px solid var(--orange);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--orange);
}

/* Systems Section */
.systems {
    padding: 6rem 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--brown);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--grey);
    max-width: 700px;
    margin: 0 auto;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--orange);
    margin: 1rem auto 0;
}

.systems-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.system-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 350px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.system-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.system-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

.system-lms::before {
    background-color: var(--red);
}

.system-sis::before {
    background-color: var(--orange);
}

.system-header {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background-color: var(--dark-grey);
    color: #fff;
}

.system-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-right: 1rem;
}

.system-lms .system-icon {
    color: var(--red);
}

.system-sis .system-icon {
    color: var(--orange);
}

.system-title {
    flex: 1;
}

.system-title h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.system-title span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.system-body {
    padding: 1.5rem;
}

.system-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.system-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.system-features i {
    color: var(--orange);
    margin-right: 0.75rem;
    font-size: 1rem;
}

.system-footer {
    padding: 1rem 1.5rem 1.5rem;
    text-align: center;
}

/* Values Section */
.values {
    padding: 6rem 0;
    background-color: #fff;
    position: relative;
}

.values-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.value-item {
    width: 100%;
    max-width: 300px;
    text-align: center;
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.value-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(174, 38, 38, 0.1);
    z-index: -1;
    transition: var(--transition);
}

.value-item:hover .value-icon::before {
    transform: scale(1.1);
}

.value-item:nth-child(1) .value-icon {
    color: var(--red);
}
.value-item:nth-child(1) .value-icon::before {
    background-color: rgba(174, 38, 38, 0.1);
}

.value-item:nth-child(2) .value-icon {
    color: var(--orange);
}
.value-item:nth-child(2) .value-icon::before {
    background-color: rgba(243, 111, 38, 0.1);
}

.value-item:nth-child(3) .value-icon {
    color: var(--yellow);
}
.value-item:nth-child(3) .value-icon::before {
    background-color: rgba(244, 152, 0, 0.1);
}

.value-item:nth-child(4) .value-icon {
    color: var(--brown);
}
.value-item:nth-child(4) .value-icon::before {
    background-color: rgba(92, 53, 26, 0.1);
}

.value-item:nth-child(5) .value-icon {
    color: var(--dark-grey);
}
.value-item:nth-child(5) .value-icon::before {
    background-color: rgba(25, 36, 46, 0.1);
}

.value-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--dark-grey);
}

.value-content p {
    color: var(--grey);
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background-color: var(--brown);
    color: #fff;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer Section */
footer {
    background-color: var(--dark-grey);
    color: #fff;
    padding-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--orange);
}

.footer-column p {
    margin-bottom: 1rem;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--orange);
}

.footer-links i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.footer-contact-item {
    display: flex;
    margin-bottom: 1rem;
}

.footer-contact-item i {
    margin-right: 1rem;
    color: var(--orange);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.social-icons {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--orange);
    transform: translateY(-3px);
}

/* Animation classes */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Custom shape divider */
.shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.shape-divider.top {
    bottom: auto;
    top: 0;
    transform: rotate(180deg);
}

.shape-divider .shape-fill {
    fill: #FFFFFF;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .hero h2 {
        font-size: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: -100%;
        width: 250px;
        background-color: #fff;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        height: calc(100vh - 80px);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 0 0 1.5rem 0;
    }

    .hero {
        text-align: center;
        justify-content: center;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .systems-container {
        flex-direction: column;
        align-items: center;
    }

    .system-card {
        max-width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .hero h2 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .cta h2 {
        font-size: 2rem;
    }
}