/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

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

a {
    text-decoration: none;
    color: #333;
}

ul {
    list-style: none;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.logo img {
    height: 30px;
    margin-right: 10px;
}

.logo span {
    font-size: 24px;
    font-weight: bold;
    color: #FF8C00;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #FF8C00;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: #fff;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #FF8C00;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

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

.app-button img {
    height: 45px;
    transition: transform 0.3s;
}

.app-button:hover img {
    transform: scale(1.05);
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    /* border-radius: 10px; */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

/* About Section */
.about {
    padding: 60px 0;
    background-color: #fff;
}

.about p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Footer */
footer {
    background-color: #111827;
    color: #ccc;
    padding: 50px 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 35px;
    margin-right: 10px;
}

.footer-logo span {
    font-size: 20px;
    font-weight: bold;
    color: #FF8C00;
}

.footer-info {
    /* flex: 1; */
    max-width: 600px;
    margin-left: 40px;
}

.address,
.email {
    margin-bottom: 20px;
}

.address h4,
.email h4 {
    color: #FF8C00;
    margin-bottom: 5px;
}

.social-media {
    margin-bottom: 30px;
}

.social-media h4 {
    color: #FF8C00;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    color: #fff;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: #FF8C00;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.copyright {
    font-size: 14px;
    color: #aaa;
}

.hero-content-small-screen {

    display: none;
}

.small-screen-menu {

    display: none;
}

/* Responsive Design */
@media (max-width: 992px) {

    .hero-content {
        flex-direction: column-reverse;
    }

    .hero-text,
    .hero-image {
        text-align: center;
        flex: none;
        width: 100%;
    }

    .app-buttons {
        justify-content: center;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-info {
        margin-left: 0;
        margin-top: 20px;
    }
}


@media (max-width: 992px) {

    nav ul {
        display: none;
    }

    .hero-content-small-screen {

        display: flex;
        flex-direction: column;
    }

    .hero-content {

        display: none !important;
    }

    .hero {
        padding: 30px 0 !important;
        background-color: #fff;
    }

    .app-buttons {

        margin-top: 20px;
        margin-bottom: 50px;
    }

    .small-screen-menu {

        display: flex;
    }

    .logo span {
        font-size: 18px !important;

    }

    .hero-text h2 {
        font-size: 35px;
        margin-bottom: 10px;
        color: #FF8C00;
        /* margin-top: 10px; */
    }

    .hero-text p {
        margin-bottom: 10px;
    }
}