/* CSS Reset */
* {
    margin: 0;
    padding: 0;
}

/* CSS Variables */
:root {
    --navbar-height: 59px;
}

/* Navigation Bar */
#navbar {
    display: flex;
    align-items: center;
    position: relative;
    top:0px;
}

/* Navigation Bar: Logo And Image */
#logo {
    margin: 10px 24px;
}

#logo img {
    height: 88px;
    margin: 3px 6px;
}

/* Navigation Bar: List Styling */
#navbar ul {
    display: flex;
    font-family: cursive;
}

#navbar::before {
    content: "";
    background-color: rgb(167, 15, 15);
    position: absolute;
    top:0px;
    left:0px;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 100%;
}

#navbar ul li {
    list-style: none;
    font-size: 1.3rem;
}

#navbar ul li a {
    color: rgb(250, 250, 250);
    display: block;
    padding: 3px 22px;
    border-radius: 20px;
    text-decoration: none;
}

#navbar ul li a:hover {
    color: black;
    background-color: white;
}

/* Home Section */
#home {
    display: flex;
    height: 600px;
    flex-direction: column;
    padding: 3px 200px;
    justify-content: center;
    align-items: center;
}

#home::before {
    content: "";
    background: url("../images/bg4.jpg") no-repeat center center/cover;
    position: absolute;
    height: 610px;
    width: 100%;
    z-index: -1;
    opacity: 100%;
}

#home h1 {
    color: rgb(250, 249, 249);
    text-align: center;
    font-family: serif;
}

#home p {
    color: rgb(250, 249, 249);
    text-align: center;
    font-size: 1.3rem;
}

.h-primary {
    font-size: 3.8rem;
    padding: 12px;
}

.h-secondary {
    font-size: 1.9rem;
    padding: 12px;
}

.btn {
    padding: 6px 20px;
    border: 2px solid white;
    background-color: rgb(167, 15, 15);
    color: white;
    margin: 17px;
    font-size: 1.5rem;
    border-radius: 10px;
    cursor: pointer;
}

.center{
    text-align: center;
}


/* Services Section */
#services{
    margin: 24px;
    display: flex;
}
#services .box{
    border: 2px solid rgb(210, 210, 212);
    padding: 5px;
    margin: 6px 25px;
    border-radius: 38px;
    background: rgb(244, 244, 248);
}
#services .box img{
    height: 200px;
    margin: auto;
    display: block;
}

/* Client Setion */

.container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 0 90px;
}

.container h1 {
   text-align: center;
   font-size: 3.8rem;
}

.container p {
    font-size: 1.3rem;
    padding: 5px;
 }

#client section{
    position: relative;
  height: 344px;
}

#client-section::before{
    content: "";
    position: absolute;
    background: url("../images/bg2.png");
    width: 100%;
    height: 80%;
    z-index: -1;
    opacity: 0.4;
  }

#clients{
    display: flex;
    justify-content: center;
    align-items: center;
}

#clients img{
    height: 84px;
}


.client-item{
    padding: 24px;
}

/* Contact Setion */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f1f1f1;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgb(6, 6, 6);
}

.login-form {
    background-color: #f8f3f3;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.input-container {
    margin-bottom: 15px;
}

input[type="text"],
input[type="password"],
button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: rgb(167, 15, 15);
    color: #fff;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #050505;
}

footer{
    background: black;
    color: white;
    padding: 9px 20px;
}

#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

/* Adjust cart icon size and position */
#cart-icon {
    margin-right: 20px;
}

#cart-icon a {
    color: #333;
    text-decoration: none;
    font-size: 24px;
}

