@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", Arial, sans-serif;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: white;
}

.navbar .logo img {
    width: 200px;
}

.navbar .nav-links {
    list-style: none;
}

.navbar .nav-links li {
    display: inline-block;
    margin: 0 15px;
}

.navbar .nav-links a {
    color: rgb(24, 23, 34);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
}
.navbar .nav-links a:hover {
    color: rgb(14, 186, 177);
}

.hero {
    height: 60vh;
    background-color: rgb(226, 226, 226);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: rgb(4, 38, 56);
    position: relative;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 22px;
    margin-bottom: 20px;
}

.buttons {
    margin-top: 35px;
}
.buttons a {
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 25px;
    margin: 5px;
    font-size: 18px;
}

.btn-primary {
    background-color: #00C4B4;
    color: white;
}

.btn-secondary {
    background-color: white;
    color: #00A6D6;
    border: 1px solid #00A6D6;
}

.services-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #fff;
    width: 75vw;
    margin: auto;
}

.services-section h1 {
font-size: 2.5rem;
color: #0e153a;
margin-bottom: 30px;
}

.services-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
gap: 30px;
padding: 0 10%;
}

.service-item {
background-color: #ffffff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease-in-out;
text-align: left;
}

.service-item:hover {
transform: scale(1.05);
}

.service-item img {
width: 48px;
height: 48px;
margin-bottom: 15px;
}

.service-item h3 {
font-size: 30px;
color: #0e153a;
margin-bottom: 10px;
font-weight: 700;
}

.service-item p {
color: #6c757d;
line-height: 1.6;
font-size: 18px;
font-weight: 500;
}

.about-hero {
    background: linear-gradient(#0ebab1, #00C4B4), 
        url('https://source.unsplash.com/1600x900/?office,technology');
    background-size: cover;
    background-position: center;
    text-align: left;
    padding: 100px 20px;
    color: white;
}

.about-content {
    max-width: 70vw;
    margin: auto;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.about-hero p {
    font-size: 1.2rem;
}

/* Story Section */
.story {
    padding: 50px 20px;
    max-width: 70vw;
    margin: 0 auto;
    text-align: left;
}

.story h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.story .icon {
    font-size: 1.5rem;
    margin-right: 10px;
    color: #5B228F;
}

.story p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}


.footer {
    background-color: #053545;
    padding: 40px 20px 5px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-logo img {
    width: 250px;
    margin-bottom: 10px;
    filter: invert(0.3);
}

.footer-logo p {
    margin: 10px 0;
    font-size: 14px;
    color: #ccc;
}

.footer-address{
    margin-bottom: 20px;
    
}

.footer-address p {
    margin: 5px 0;
    font-size: 14px;
    color: #ccc;
}

.social-icons a {
    margin: 0 10px;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ff69b4;
}

.footer-services h3,
.footer-contact h3,
.footer-newsletter h3 {
    margin-bottom: 10px;
    font-size: 22px;
    color: white;
}

.footer-services ul {
    list-style: none;
    color: white;
}

.footer-services ul li {
    margin-bottom: 8px;
    font-size: 16px;
}

.footer-contact p {
    margin-bottom: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    color: white;
}
.footer-contact a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-contact i {
    margin-right: 8px;
}

hr {
    border: none;
    border-top: 1px solid #a2a2a2;
    margin: 20px 0;
}

.footer-bottom {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 20px auto;
    font-size: 14px;
    color: #ccc;
}

.footer-bottom a {
    color: #ff69b4;
    text-decoration: none;
    margin-left: 10px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    /* Navbar: Flex direction as column and hamburger menu */
    .navbar {
        justify-content: space-between;
        position: relative;
        padding: 0 30px 0 0;
    }
    .navbar .logo img {
        width: 200px;
        height: 100px;
        object-fit: cover;
    }
    .navbar .nav-links {
        position: absolute;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease-in-out;
    }

    .navbar .nav-links.active {
        left: 0;
    }

    .navbar .nav-links li {
        margin: 15px 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger div {
        width: 30px;
        height: 3px;
        background-color: rgb(24, 23, 34);
        margin: 5px 0;
        transition: 0.3s;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 18px;
    }

    .buttons a {
        font-size: 16px;
        padding: 10px 15px;
    }

    .services-container {
        grid-template-columns: 1fr;
        padding: 0 5%;
    }

    .service-item h3 {
        font-size: 24px;
    }

    .service-item p {
        font-size: 16px;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero p {
        font-size: 1rem;
    }

    .story h2 {
        font-size: 1.8rem;
    }

    .story p {
        font-size: 1rem;
    }

    .footer-container {
        max-width: 80vw;
        margin: auto;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .footer-container .footer-services, .footer-contact{
        align-self: flex-start;
    }
    .footer-logo img {
        width: 200px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
