body {
    background-image: url("background image.jpeg");
    background-size: cover;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

* {
    text-decoration: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    padding: 0 30px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;

}

.logo {
    width: 100px;
}

.logo img {
    height: 200px; 
    width: auto;
    padding-top: 20px;
}

ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li a {
    line-height: 80px;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

nav ul li a:hover {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 6px;
}

.container {
    margin-top: 100px;
    text-align: center;
    padding: 20px;
}

.heading h3 {
    font-size: 3em;
    font-weight: 500;
    color: #222;
    border-bottom: 3px solid #222;
    display: inline-block;
    margin-bottom: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: "Lugrasimo", cursive;
    font-weight: bolder;
    color: rgb(2, 2, 2);

}


.box {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.column img {
    border-radius: 5px;
    object-fit: contain;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: auto;
    max-width: 100%;
    height: auto;
}

.column img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
.footercontainer {
    width: 97%;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.footercontent {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.footernav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footernav ul li {
    margin: 0 10px;
}

.footernav ul li a {
    color: black;
    text-decoration: none;
    font-size: 1.1em;
    opacity: 0.6;
    transition: 0.5s;
}

.footernav ul li a:hover {
    opacity: 1;
}

.social {
    display: flex;
}

.social a {
    text-decoration: none;
    margin: 0 15px;
    border-radius: 50%;
}

.social a i {
    font-size: 2em;
    color: black;
    opacity: 0.9;
    transition: transform 0.3s, opacity 0.3s;
}

.social a:hover i {
    transform: scale(1.2);
    opacity: 1;
}

.footerbottom {
    text-align: center;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    margin-top: 20px;
    font-size: 1.1em;
}
