html{
    scroll-behavior: smooth;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f1f5f9; 
    color: #1e293b;
}

.Nav-Container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: gray;
    border-radius: 50px;
    margin: 40px;
    padding: 25px;
    margin-bottom: 130px;
    box-shadow: 0px 2px 5px black;
    background-color: #0f172a;
}


.Imagery{
    width: 12%;
}


.Navlist{
    display: flex;
    gap: 30px;
    list-style: none; 
}

.Navlist a{
    font-size: 20px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
    padding: 10px;
    border-radius: 15px;
}

.Navlist a:hover{
    color: black;
    background-color: aliceblue;
}

.Navbar-toggle{
    background: transparent;
    display: none;
    padding: auto;
    border: none;
    cursor: pointer;
}

.bar{
    display: block;
    width: 20px;
    height: 3px;
    margin: 5px auto;
    background: #fff;
    transition: all 0.3s ease-in-out;
    margin-top: 3px;
}

button{
    margin-top: 20px;
    padding: 7px 20px;
    border: none;
    border-radius: 8px;
    background-color: #333;
    color: white;
    cursor: pointer;
    font-size: 13px;
    margin-top: -3px;
}

.dark-mode{
    background-color: #121212;
    color: white;
}

.dark-mode button{
    background-color: white;
    color: black;
}



.Contact-Container{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:40px;
    padding:60px 8%;
}

.Contact-details,
.details{
    flex:1;
}

.image,
.photo{
    width:95%;
    height: 70vh;
    border-radius:50px;
    object-fit: cover;
}

.Title,
.Sites{
    margin-bottom:20px;
    font-size:35px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

span{
    color:#0d6efd;
    text-transform: uppercase;
}

.pan,
.Web{
    margin-bottom:15px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size:25px;
}


#carosel{
    width: 65%;
    height: auto;
    display: block;
    margin: 0 auto 30px auto;
    margin-bottom: 100px;
    border-radius: 10px;
}

#menu-btn{
    display:none;
    font-size:30px;
    cursor:pointer;
    color:white;
}



.Footer-Container {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 60px 40px 30px;
    margin-top: 80px;
}

.Footer-Top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    padding-bottom: 40px;
    border-bottom: 1px solid #1e293b;
}

.Footer-Brand {
    max-width: 260px;
}

.Footer-Logo {
    width: 80px;
    margin-left: -18px;
    margin-bottom: 12px;
}

.Footer-Brand p {
    font-size: 14px;
    line-height: 1.7;
    color: #94a3b8;
}

.Footer-Links h4,
.Footer-Contact h4 {
    color: #f1f5f9;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.Footer-Links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.Footer-Links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.Footer-Links a:hover {
    color: #38bdf8;
}

.Footer-Contact p {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 6px;
}

.Footer-Email {
    display: inline-block;
    margin-top: 10px;
    color: #38bdf8;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.2s;
}

.Footer-Email:hover {
    opacity: 0.75;
}

.Footer-Bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 24px;
    font-size: 13px;
    color: #64748b;
}

.Footer-Socials {
    display: flex;
    gap: 20px;
}

.Footer-Socials a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.Footer-Socials a:hover {
    color: #38bdf8;
}


@media (max-width: 768px) {
     
      .Navlist{
        position:fixed;
        top:0;
        right:-100%;
        width:200px;
        height:40vh;
        background:#0f172a;
        flex-direction: column;
        gap:30px;
        transition:0.5s;
        padding:30px;
        margin-top: 90px;
    }

    #menu-btn{
        display:block;
    }


    .Nav-Container{
     width: 100%;
     padding: 50px;
     border-radius: 30px;
     margin-left: 2px;
     margin-top: 8px;
    }

  

    .Navlist.active{
        right:0;
    }

    .Navlist li{
        list-style:none;
    }

    .Navlist li a{
        text-decoration:none;
        font-size:20px;
    }

    .Imagery{
        width: 40%;
        margin-left: -35px;
    }

     .Contact-Container{
        flex-direction:column;
        text-align:center;
        padding:40px 20px;
    }

    .Title,
    .Sites{
        font-size:28px;
    }

    #carosel{
        margin-top: 30%;
        width: 95%;
        height: 40vh;
        object-fit: cover;
    }
}