body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-image: url('src/pexels-andrei-3583381-5363190.jpg');
    background-size: cover;
    background-attachment: fixed;
    scroll-behavior: smooth;
}

/* Navbar */
#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    padding: 10px 20px;
    position:relative;
    top: 0;
    width: 100%;
    z-index: 2000;
}

/* Logo */
#navbar img {
    height: 50px;
    width: auto;
    border-radius: 8px;
}
#navbar h2 {
    color: white;
    font-size: 1.5em;
    margin-left:0px;
    margin-right: 0px;
}

/* Links */
.nav-links {
    display: flex;
    gap: 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-links a:hover {
    background-color: white;
    color: black;
    border-radius: 5px;
}
/* ✅ Fix Hamburger Icon */
.menu-toggle {
    display: none; /* hidden on desktop */
    cursor: pointer;
    font-size: 26px; /* larger, more visible */
    color: white;
    position: absolute;
    top: 18px;   /* keeps it below navbar padding */
    right: 20px; /* aligns to right side */
    z-index: 2100; /* stays above nav + content */
}

/* Responsive Menu */
@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* show on mobile */
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: black;
        position: absolute;
        top: 60px;   /* pushes dropdown below navbar */
        right: 0;
        width: 220px;
        padding: 15px;
        border-radius: 8px;
    }

    .nav-links.active {
        display: flex;
    }
}



/* Sections */
header {
    text-align: center;
    padding: 100px 20px 50px; /* ✅ pushes text down, clears navbar */
    color: white;
}


h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: blanchedalmond;
}

p {
    font-size: 1.2em;
    line-height: 1.6;
    color: white;
}

section {
    min-height: 90vh;
    padding: 80px 20px;
    text-align: center;
    color: white;
}

/* ✅ Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: black;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        padding: 10px;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}
/* Home Section Layout */
.home-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap; /* allows stacking on small screens */
}

.home-text {
    flex: 1;
    min-width: 280px;
    text-align: left;
}

.home-image {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.home-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.5);
}
/* About Us Section */
.about-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    padding: 50px 20px;
    border-radius: 12px;
}

.about-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.about-text h1 {
    color: blanchedalmond;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 1.4em;
    margin-bottom: 15px;
}

.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text ul li {
    font-size: 1.4em;
    margin: 8px 0;
    color: #fff;
}

.about-stats {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-box {
    background:black;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    color: black;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.5);
}

.stat-box h2 {
    font-size: 2em;
    margin-bottom: 5px;
    color: #ffcc66;
}
.stat-box p{
    font-size: 1.5em;
    margin-bottom: 5px;
    color: white;
}
/* Services Section */
#services {
  text-align: center;
  padding: 60px 20px;

}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.service-box {
  background: black;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-8px);
}

.service-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.service-box h3 {
  margin-top: 15px;
  font-size: 1.3rem;
  color: white;
}

.service-box p {
  font-size: 1rem;
  color: white;
  margin-top: 10px;
}
/* Contact Section */
#contact {
  padding: 60px 20px;
  color: white;
  text-align: center;
}

#contact h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

#contact p {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #ddd;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: flex-start;
}

/* Left side info */
.contact-info {
  flex: 1;
  min-width: 280px;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.info-box span {
  font-size: 1.8rem;
}

.info-box h3 {
  margin: 0;
  font-size: 1.2rem;
  color: wheat;
}

.info-box p {
  margin: 2px 0 0;
  color: #ccc;
}

/* Right side form */
.contact-form {
  flex: 1;
  min-width: 320px;
  background: black;
  color: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.contact-form h2 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: wheat;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form button {
  padding: 12px;
  background: wheat;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: green;
}




