*,
*::before
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Noto Sans", sans-serif;
    line-height: 1.6;
    background-color: #D0D3D4;
}

header {
    top: 0;
    left: 0;
    right: 0;
    background-color: #D0D3D4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

header .logo img {
    width: 110px; /* Adjust based on actual logo size */
}

nav a {
    margin: 0 1rem;
    padding: 0.5rem 1rem;
    color: white;
    font-size: 1.2rem;
    background-color: var(--primary-color);
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

nav a:hover, nav a:focus {
    background-color: var(--button-color);
    color: var(--navbar-color);
}

img {
    max-width: 100%;
    display: block;
}

h1,
h2,
h3,
p {
    margin: 1;
}

.container {
    margin-top: 100px;
    width: 50%;
    max-width: 65em;
    margin: 0 auto;
}

.split {
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
    justify-content: center;

}

.split > * {
    flex-basis: 30%;
    min-width: 15em;
}

section {
    padding: 7em 0;
}

.btn {
    display: inline-block;
    text-decoration: none;
    color: var(--clr-text, #fff);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.125rem;
    padding: 1em 1.25em;
    background: var(--clr-accent, gray);
    border-radius: .25em;
    transition: 
        transform 250ms ease-in-out,
        opacity 250ms linear;
   }

   .btn:hover,
   .btn:focus{
    transform: scale(1.1);
    opacity: .9;
   }

   .primary-title {
    font-size: 4rem;
    font-size: clamp(3rem, calc(5vw + 1rem),4.5rem);
    line-height: 1.1;
    text-transform: uppercase;
   }
   .section-title {
    text-align: center;
    text-transform: uppercase;
    font-size: clamp(2.5rem, + 5vw +1rem, 4rem);
    line-height: 1;
    color: #17353d;
    margin-bottom: 5rem;
   }

   .hero {
    color: white;
    text-align: center;
    padding: 50em 20em;
    background: #050504;
    background: url(Images/thisisengineering-YXdbaTRcQzA-unsplash.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;

   }

.feature__item {
    display: block;
    background: #eee;
    transform: scale(.95);
    position: static;
    transition: transform 250ms ease-in-out;
    text-decoration: none;
    color: #333;
    text-align: center;
    line-height: 1.2;

    span {
        display: block;
        font-weight: 700;
        font-size: 1.7rem;
    }

    &:hover,
    &:focus {
        transform: scale(1);
    }
    
    &::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        padding: 100% 100% 0 0;
    

    }    

    }

    .product {
        background: radial-gradient(
             #fce4b3, #eac886, #2f4858
        );
        padding: 3em;
        border-radius: 1em;
        margin-bottom: 3em;
        text-align: center;
        float: right;
        min-width: 30em;
        width: 220%;
        box-sizing: border-box;
        text-transform: uppercase;
        text-shadow: 0 0 .2em rgba(#000, );


    }

     .product__title {
        font-size: 2.5rem;
        line-height: 1;
        color: gray, black;
        text-shadow: 0 0 .2em rgba(#000, );
    }
        
    
    
    
    
    
    
    
    
    
