:root {
    --primary-color: #0056b3;
    /* Corporate Blue */
    --secondary-color: #0a192f;
    /* Deep Navy */
    --accent-color: #00a8cc;
    /* Cyan Accent */
    --text-color: #333;
    --light-gray: #f8f9fa;
    --dark-gray: #495057;
    --white: #ffffff;
    --font-family: 'Outfit', system-ui, -apple-system, sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #b71c1c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-weight: 500;
    color: var(--secondary-color);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Sections */
section {
    padding: 5rem 0;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding-top: 5rem;
    padding-bottom: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: #bdbdbd;
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #424242;
    color: #9e9e9e;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
        /* Mobile menu implementation needed via JS */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow);
    }


    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* --- Home Page Specific Styles --- */

/* Hero Section */
/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.9) 0%, rgba(0, 51, 102, 0.8) 100%), url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 168, 204, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
}

.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 1;
    animation: fadeInUs 1s ease-out;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #e0e0e0;
}

.hero-btns {
    display: flex;
    gap: 1rem;
}

@keyframes fadeInUs {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats Section */
.stats-section {
    background-color: var(--white);
    padding: 4rem 0;
    border-bottom: 1px solid #eee;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item .counter {
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    /* Responsive font size */
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.2;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: nowrap;
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    font-weight: 500;
}

/* Services Section */
.services-section {
    background-color: #fafafa;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--primary-color);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-card a {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-card a:hover {
    gap: 10px;
}

/* Why Choose Us */
.why-choose-us {
    background-color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-list {
    margin-top: 2.5rem;
}

.why-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.why-list li i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: #ffebee;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.why-list li h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.why-list li p {
    color: var(--dark-gray);
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e0e0e0 0%, #bdbdbd 100%);
    border-radius: 8px;
    position: relative;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    inset: 20px;
    border: 2px dashed rgba(255, 255, 255, 0.5);
    border-radius: 4px;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 6rem 0;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2.5rem;
    font-size: 1.25rem;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero-btns {
        justify-content: center;
    }
}

/* --- Tracking Page Styles --- */

.tracking-section {
    background-color: var(--white);
    padding: 4rem 0;
    min-height: 50vh;
}

.tracking-box {
    max-width: 600px;
    margin: -3rem auto 3rem;
    /* Pull up into header area slightly if desired, or just margin */
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
    position: relative;
    z-index: 10;
}

.tracking-form {
    display: flex;
    gap: 1rem;
}

.tracking-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.tracking-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.tracking-result {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 2rem;
}

.shipment-info {
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-transit {
    background-color: #e3f2fd;
    color: #1976d2;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
}

.timeline-item {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 56px;
    height: 56px;
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #bdbdbd;
    z-index: 1;
}

.timeline-item.completed .timeline-icon {
    background: #e8f5e9;
    border-color: #4caf50;
    color: #4caf50;
}

.timeline-item.active .timeline-icon {
    background: #e3f2fd;
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.1);
}

.timeline-content h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.timeline-content p {
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
}

.timeline-content small {
    color: #9e9e9e;
    font-size: 0.85rem;
}

.tracking-error {
    background: #ffebee;
    color: #c62828;
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
}

@media (max-width: 768px) {
    .tracking-form {
        flex-direction: column;
    }

    .shipment-info {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* --- Inner Page Styles --- */

/* Page Header */
.page-header {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 6rem 0 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.about-content p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Values Section */
.values-section {
    background-color: #fafafa;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.value-card .icon-box {
    width: 60px;
    height: 60px;
    background-color: #ffebee;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.value-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.value-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

/* Services List Section */
.services-list-section {
    background-color: var(--white);
}

.service-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-row:last-child {
    margin-bottom: 0;
}

.service-img {
    flex: 1;
}

.service-info {
    flex: 1;
}

.service-info .service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-info h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.service-info p {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    font-weight: 500;
}

.service-features li i {
    color: var(--primary-color);
}

/* Contact Page */
.contact-section {
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.content-info-card {
    background: var(--secondary-color);
    color: var(--white);
    padding: 3rem;
    border-radius: 8px;
}

.content-info-card h3 {
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-detail i {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: 5px;
}

.contact-detail p {
    color: #e0e0e0;
}

.contact-form-container {
    background: var(--white);
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.alert {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

@media (max-width: 768px) {

    .about-grid,
    .service-row,
    .service-row.reverse {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 2rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Tracking Page Styles --- */

.tracking-section {
    background-color: var(--white);
    padding: 4rem 0;
    min-height: 50vh;
}

.tracking-box {
    max-width: 600px;
    margin: -3rem auto 3rem;
    /* Pull up into header area slightly if desired, or just margin */
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
    position: relative;
    z-index: 10;
}

.tracking-form {
    display: flex;
    gap: 1rem;
}

.tracking-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.tracking-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.tracking-result {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 2rem;
}

.shipment-info {
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-transit {
    background-color: #e3f2fd;
    color: #1976d2;
}

.timeline {
    position: relative;
    padding-left: 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 56px;
    height: 56px;
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #bdbdbd;
    z-index: 1;
}

.timeline-item.completed .timeline-icon {
    background: #e8f5e9;
    border-color: #4caf50;
    color: #4caf50;
}

.timeline-item.active .timeline-icon {
    background: #e3f2fd;
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.1);
}

.timeline-content h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.timeline-content p {
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
}

.timeline-content small {
    color: #9e9e9e;
    font-size: 0.85rem;
}

.tracking-error {
    background: #ffebee;
    color: #c62828;
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
}

@media (max-width: 768px) {
    .tracking-form {
        flex-direction: column;
    }

    .shipment-info {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Tracking Page Details Layout */
.shipment-details-card {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
    align-items: flex-start;
}

.shipment-left {
    flex: 1;
}

.shipment-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: right;
}

.detail-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-group span {
    font-size: 1.2rem;
    font-weight: 500;
}

.status-row {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .shipment-details-card {
        flex-direction: column;
        gap: 2rem;
    }

    .shipment-right {
        text-align: left;
        width: 100%;
    }
}

/* Updated Tracking Card Styles for Cleaner Layout */
.info-group {
    margin-bottom: 2.5rem;
}

.info-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.tracking-id-display {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.2;
}

.status-badge-large {
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-block;
}

.detail-row {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 0.5rem;
}

.detail-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.detail-group label {
    text-align: right;
    /* Ensure right alignment matches reference */
}

@media (max-width: 768px) {
    .detail-group label {
        text-align: left;
    }

    .tracking-id-display {
        font-size: 2rem;
    }
}

.no-margin {
    margin-bottom: 0 !important;
}

/* Compact Tracking Card Styles */
.compact-card {
    display: block !important;
    /* Override flex */
    padding: 1.5rem !important;
}

.card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1rem;
}

.label-tiny {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #7f8c8d;
    font-weight: 600;
    margin-bottom: 0.25rem;
    letter-spacing: 0.5px;
}

.tracking-id-compact {
    font-size: 1.75rem;
    margin: 0;
    line-height: 1;
    color: var(--primary-color);
}

.status-badge-compact {
    font-size: 0.9rem;
    padding: 6px 12px;
}

.card-divider {
    height: 1px;
    background: #eef2f5;
    margin-bottom: 1.5rem;
}

.details-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.detail-item label {
    display: block;
    font-size: 0.8rem;
    color: #95a5a6;
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.detail-item span {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.3;
}

@media (max-width: 600px) {
    .card-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .tracking-id-compact {
        font-size: 1.5rem;
    }
}

/* Fix for header button text color being overridden by nav links style */
.nav-links .btn {
    color: var(--white) !important;
}

/* --- Animations --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

/* Specific Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.hero-content h1 {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-content p {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero-btns {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}