body{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    background:#f8f9fa;
    color:white;
}




.header-container{
     background: rgba(2, 41, 63, 0.437);
    margin:0 auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 20px;
     gap:15px;
}

/* Logo */
header .logo{
    height:80px;
    border-radius:8px;
}

/* Brand text */


/* Navigation */
.main-nav ul{
    list-style:none;
    display: flex;
    gap:25px;
    margin:0;
    padding:0;
}

.main-nav a{
    text-decoration:none;
    color:rgb(24, 1, 1);
    font-weight:bold;
    padding:8px 15px;
    border-radius:5px;
    transition:0.3s;
}

.main-nav a:hover{
    background:#e74c3c;
    color:white;
    box-shadow:0 2px 5px rgba(0, 0, 0, 0.944);
}

/* Mobile Menu */
@media (max-width:768px){
    .header-container{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }

    .main-nav ul{
        flex-direction:column;
        gap:10px;
    }
}

.hero-text2{
    color: rgb(4, 0, 10);
}

.hero-text {
    color: #BAB86C;
}


nav{
    display:flex;
    justify-content:center;
    gap:30px;
    padding:15px;
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:bold;
}

nav a:hover{
    color:#ffcc00;
}

.hero{
    text-align:center;
    padding:80px 20px;
}

.container{
    max-width:600px;
    margin:40px auto;
    background:white;
    padding:25px;
    border-radius:10px;
    box-shadow:0 0 10px rgba(0,0,0,0.1);
}

input, select, textarea{
    width:100%;
    padding:10px;
    margin:10px 0;
}

button{
    background:black;
    color:white;
    padding:12px;
    border:none;
    width:100%;
    font-size:16px;
    cursor:pointer;
}

button:hover{
    background:#444;
}
.reviews{
    max-width:800px;
    margin:50px auto;
    background: rgba(255,255,255,0.9);
    padding:30px;
    border-radius:10px;
    box-shadow:0 0 15px rgba(0,0,0,0.1);
}

.reviews h2{
    text-align:center;
    margin-bottom:20px;
}

.review-form input, .review-form textarea{
    width:100%;
    padding:10px;
    margin:10px 0;
   
}

.review-form button{
    background:black;
    color:white;
    padding:10px;
    border:none;
    cursor:pointer;
}

.review-form button:hover{
    background:#444;
}

.dash-reviews p{
    background:#f2f2f2;
    color:rgb(12, 1, 1);
    padding:10px;
    margin:8px 0;
    border-left:5px solid gold;
    border-radius:5px;
}

.container{
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    background: rgba(255,255,255,0.9);
    border-radius: 10px;
}

.company-info p{
    font-size: 1.1em;
    line-height: 1.6em;
}

.social-links{
    margin-top:30px;
}

.qr-codes{
    display:flex;
    gap:50px;
    flex-wrap:wrap;
}

.social h3{
    text-align:center;
}

.social img.qr{
    height:150px;
    display:block;
    margin: 0 auto;
}

.contact-details{
    margin-top:30px;
}

.contact-details p{
    font-size:1em;
    line-height:1.5em;
}


section .picture
{
    width: 80%;      /* 80% of container width */
    max-width: 400px; /* optional maximum size */
    height: auto;     /* keeps aspect ratio */
    display: block;   /* remove inline spacing */
    margin: 0 auto;


}

.hero {
 
    background-size: contain;  /* keeps proportions, no stretching */
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:40px 20px;
}

.hero h2 {
  font-size: 3em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero button {
     max-width: 500px;
  background-color: #e74c3c;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.2em;
  cursor: pointer;
  border-radius: 5px;
}

.hero button:hover {
  background-color: #c0392b;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero {
    height: 60vh;
    background-position: center top;
    padding: 0 10px;
  }

  .hero h2 {
    font-size: 2em;
  }

  .hero p {
    font-size: 1em;
  }

  .hero button {
    padding: 10px 20px;
    font-size: 1em;
  }
}



