*{
    margin: 0px;
    font-family: 'Courier New', Courier, monospace;
}
html, body{
    overflow-x: hidden;
    background-color: black;
}
a{
    text-decoration: none;
    color: black;
    font-size: 1.5rem;
}
h1,h2, #nav_title{
    font-family:Verdana, Geneva, Tahoma, sans-serif;
}
h1{
    font-size: 2rem;
}
h2{
    font-size: 1.75rem;
}
p{
    font-size: 1.5rem;
}

/* Navigation Bar */
nav{
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 2;
    background-color: white;
    align-items: center;
    padding: 10px 20px;
}

#nav_title{
    margin-left: 100px;
    font-size: 24px;
    font-weight: bold;
    padding: 10px;
    text-align: center;
    display: flex;
    z-index: 1;
}
#logo{
    position: absolute;
    font-size: 60px;
    top: -6px;
    left: 60px;
    transform: translate(-10px, 10px);
}
#nav_links{
    display: flex;
    justify-content: space-around;
    width: 50%;
    text-align: center;
}
#nav_links > a{
    padding: 20px;
    width: 100%;
    font-size: 1rem;
}
#nav_links a:hover{
    color: #c8c8c8;
}
#nav_links > button{
    margin: 8px 30px 8px 0px;
    width: 100%;
    background-color: #c8c8c8;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
}
#nav_links button:hover{
    background-color: #a7a7a7;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
    margin-right: 30px;
}
.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: black;
    border-radius: 2px;
    transition: 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.rectangle{
    width: 100%;
    height: 10px;
    background-color: #c8c8c8;
    position: fixed;
    top: 58px;
    z-index: 1;
}

/* Banner */
.banner{
    position: relative;
    margin-top: 68px;
    width: 100%;
    height: auto;
}
.banner img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: 0px -230px;
    display: block;
    opacity: 0.5;
}
.banner .text{
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
}
.banner .text h1{
    font-weight: bold;
}
.banner .text p{
    margin-top: 15px;
}
svg{
    width: 15px;
    height: 100%;
    fill:white;
    margin-right: 10px;
}
.banner .button {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 175px;
    height: 50px;
    background-color: #c8c8c8;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
    font-weight: bold;
}
.banner .button:hover{
    background-color: #a7a7a7;
    cursor: pointer;
}

/* Services */
.services{
    background-color: #ffffff;
}
.services img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.services h1{
    text-align: center;
    font-weight: bold;
    padding: 20px;
}
.services ul{
    list-style: "✔";
    font-size: 1.6rem;
}
.services ul li{
    padding-left: 10px;
    padding-bottom: 10px;
}
.services ul li::marker{
    color:#a7a7a7;
}
.services div{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0px 50px 20px 50px;
}
.services div img{
    width: 50%;
    border-radius: 10px;
}

/* Brand */
.brand{
    padding: 20px 50px;
    background-color: #c8c8c8;
}
.brand > h1 {
    text-align: center;
}
.brand > p {
    margin-top: 10px;
}

/* Types */
.types{
    background-color: white;
    padding-bottom: 20px;
}
.types h1 {
    text-align: center;
    padding: 20px;
    z-index: 0;
}
.types div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.type{
    position: relative;
    width: 30%;
    background-color:#c8c8c8;
    border-radius: 10px;
}
.type h2{
    padding-top: 20px;
    z-index: 0;
}
.type p{
    margin: 20px;
    text-align: center;
    z-index: 0;
}
.number{
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(25%, -50%);
    font-size: 300px;
    font-weight: bold;
    color: transparent;
    -webkit-text-stroke: 1px white;
    z-index: -1;
}

/* Footer */
.footer {
    background:#c8c8c8;
    color: white;
    padding: 50px 40px 20px 40px;
    padding-top: 40px;
}
.footer > *{
    font-size: 1rem;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}
.footer-section {
    width: 250px;
}
.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
    font-weight: 700;
}
.footer-section p,
.footer-section a {
    color: black;
}
.footer-section a {
    display: block;
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.3s;
}
.footer-section a:hover {
    color: white;
    font-weight: bold;
}
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* =======================
   MEDIA QUERIES FOR RESPONSIVENESS
   ======================= */
@media (max-width: 1024px){
    #nav_title { margin-left: 50px;}
    #logo {top: -12px; left: 40px; }
    .services div { padding: 0px 30px 20px 30px; }
    .brand { padding: 20px 30px; }
}

@media (max-width: 768px){
    #nav_links { 
        position: fixed; 
        top: 68px; 
        right: -100%; 
        background: white; 
        height: 100vh; 
        flex-direction: column; 
        padding-top: 50px; 
        gap: 20px; 
        width: 70%;
        transition: right 0.3s;
        z-index: 10;
    }
    #nav_links.active { right: 0; }
    #nav_links a, #nav_links button { width: 80%; margin: 0 auto; text-align: center; }
    .hamburger { display: flex; flex-direction: column; justify-content: space-between; width: 25px; height: 18px; cursor: pointer; }
    .services div img { width: 100%; margin-top: 20px; }
    .types div { flex-direction: column; }
    .banner img, .banner { height: 400px; }
}

@media (max-width: 480px){
    #nav_title { margin-left: 20px;}
    .banner .button { width: 140px; height: 45px; }
    .types h1 { padding: 15px; }
    .type p { margin: 15px; }
    .number { left: 20%; }
}

