* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: #333;
    margin-top: 78px;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: #0a2540;
    color: white;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 24px;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
}

.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to right, #0a2540, #1f4b7a);
    color: white;
    padding: 20px;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    background: #00c2ff;
    padding: 15px 30px;
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

section {
    padding: 80px 10%;
}

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

.card {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: white;
}

.card h3 {
    margin-bottom: 10px;
}

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

.process {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    background: #f4f7fb;
    border-radius: 8px;
}

.contact {
    background: #f4f7fb;
    text-align: center;
}

footer {
    background: #0a2540;
    color: white;
    text-align: center;
    padding: 20px;
}


.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
}

/* Mobile Styles */
@media(max-width: 767px){

    header{
        flex-direction:row;
        padding:15px 5%;
    }

    nav{
        position:absolute;
        top:78px;
        left:0;
        width:100%;
        background:#0a2540;
        display:none;
        flex-direction:column;
        text-align:center;
        padding:20px 0;
    }

    nav a{
        display:block;
        margin:15px 0;
    }

    nav.active{
        display:flex;
    }

    .menu-toggle{
        display:block;
        color:white;
    }

    .about {
        display: flex;
        flex-direction: column-reverse;
    }
}

