* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f7fb;
    color: #222;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

header {
    background: #0b1f4d;
    color: white;
    padding: 20px 0;
}

.hero {
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    background: #ffb400;
    color: black;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
}

.services {
    padding: 80px 0;
}

.services-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,.1);
}

.card h3 {
    margin-bottom: 15px;
}

.form-section {
    padding: 80px 0;
}

.form-box {
    background: white;
    padding: 40px;
    border-radius: 16px;
    max-width: 700px;
    margin: auto;
}

.input {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

textarea.input {
    min-height: 140px;
}

footer {
    background: #0b1f4d;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
}

.dashboard-table th,
.dashboard-table td {
    padding: 15px;
    border: 1px solid #ddd;
}

.dashboard-table th {
    background: #0b1f4d;
    color: white;
}

.service-image
{
    width: 300px;

    height: 220px;

    object-fit: cover;

    border-radius: 12px;

    margin-bottom: 20px;

    display: block;
}

.navbar
{
    display: flex;

    justify-content: space-between;

    align-items: center;

    background: #0b1f4d;

    padding: 20px;

    position: relative;
}

.logo
{
    color: white;

    font-size: 28px;

    font-weight: bold;
}

.img-about {
  float: left;
  clip-path: circle(40%);
  shape-outside: circle(45%);
}

.div-about {
  border: 1px solid green;
  padding: 10px;
}



.menu-toggle
{
    display: none;

    background: none;

    border: none;

    color: white;

    font-size: 32px;

    cursor: pointer;
}



.header
{
    background: #0b1f4d;

    position: sticky;

    top: 0;

    z-index: 999;
}



/* MENU DESKTOP */

.menu
{
    display: flex;

    gap: 30px;
}

.menu a
{
    color: white;

    text-decoration: none;

    font-size: 16px;

    transition: .3s;
}

.menu a:hover
{
    color: #ffb400;
}

/* HAMBURGER */

.hamburger
{
    display: none;

    flex-direction: column;

    justify-content: space-between;

    width: 32px;

    height: 24px;

    background: none;

    border: none;

    cursor: pointer;
}

.hamburger span
{
    display: block;

    height: 4px;

    width: 100%;

    background: white;

    border-radius: 5px;

    transition: .3s;
}

/* MOBILE */

@media screen and (max-width:768px)
{
    .hamburger
    {
        display: flex;
    }

    .menu
    {
        position: absolute;

        top: 80px;

        left: 0;

        width: 100%;

        background: #0b1f4d;

        flex-direction: column;

        overflow: hidden;

        max-height: 0;

        opacity: 0;

        transition:
            max-height .4s ease,
            opacity .4s ease;

        gap: 0;
    }

    .menu.active
    {
        max-height: 400px;

        opacity: 1;
    }

    .menu a
    {
        padding: 18px;

        border-top:
            1px solid rgba(255,255,255,.1);

        text-align: center;
    }
}