@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body{
    min-height: 100vh;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 5%;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    width: 100%;
    top: 0;
    position: fixed;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #0066cc;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    max-height: max-content;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('hero-bg.webp');
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    margin-top: 70px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.hero a{
    text-decoration: none;
}

.cta-button {
    padding: 15px 40px;
    margin-bottom: 10px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background 0.3s;  
}

/* Features Section */
.features {
    padding: 100px 5%;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-card i {
    font-size: 2.5em;
    color: #0066cc;
    margin-bottom: 20px;
}

.about{
    background-color: #345b7e;
    min-height: 80vh;
    max-height: fit-content;
    

    .content{
        max-width: 900px;
        padding-left: 20px;
        padding-right: 20px;
        justify-content: center;
        font-size: 1rem;
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

h1{
    font-size: 2.5rem;
    padding-top: 10px;
}

.contacts{
    min-height: 80vh;
    max-height: max-content;

    .content{
        max-width: 900px;
        padding-left: 20px;
        padding-right: 20px;
        justify-content: center;
        font-size: 1rem;
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 1.2rem;
    }

    a{
        text-decoration: none;
    }
}
/* Mobile Menu */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.text-center{
    text-align: center;
}

.text-white{
    color: white;
}

.text-primary{
    color: #0066cc;
}

.mx-auto{
    margin-left: auto;
    margin-right: auto;
}

p{
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }
}

footer{
    background-color: #0066cc;
    margin: 0;
    padding-top: 10px;
    padding-bottom: 5px;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-icons a {
    text-decoration: none;
    color: #333; /* Change the color to your preference */
    margin: 0 10px; /* Adjust the spacing as needed */
}

.fab {
    font-size: 24px; 
    color: white;
    transition: 0.3s;
}

.fab:hover{
    color: #00254b;
}


.apps{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 70px;
}

.app{
    margin: 10px;
    cursor: pointer;
    max-width: 350px;
}

.app-content{
    display: flex;
    align-items: center;
}

.app-logo{
    height: auto;
    width: 70px;
    border-radius: 10px;
}

.app-title{
    text-overflow:ellipsis;
    max-lines: 2;
}

.app-fgp{
    height: auto;
    width: 350px;
    border-radius: 10px;
    box-shadow: 1px 1px 10px rgb(174, 180, 255);
}

.d-flex{
    display: flex;
}

.d-block{
    display: block;
}

.w-full{
    width: 100%;
}

.fs-4{
    font-size: 1.5rem;
}

.fs-5{
    font-size: 1.2rem;
}
.mb-2{
    margin-bottom: .5rem;
}

.mb-1{
    margin-bottom: .25rem;
}

.ms-2{
    margin-left: .5rem;
}

.align-items-center{
    align-items: center;
}