/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: #222;
    color: #fff;
    white-space: nowrap;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
}


.logo{
    display: flex;
    justify-content: right;
    align-items: center;
}


header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}


.hero {
    position: relative;
    background: url('https://images.unsplash.com/photo-1568605114967-8130f3a36994?auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
    height: 500px;
    align-items: center;
    color: #fff;
    text-align: center;
    opacity: 0.7;
    padding: 10%;
}


.hero .overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 52px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 40px;
}

.hero p {
    font-size: 18px;
    padding-top: 3%;
}


.btn {
    background: #ff6600;
    color: #fff;
    padding: 10px 10px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: auto;
}
 

.countdown {
  text-align: center;
  background: #222;
  color: white;
  padding: 30px;
}
#timer {
  font-size: 30px;
  font-weight: bold;
  color: #ff6600;
  margin-top: 10px;
}



.services {
    padding: 50px;
    background: #f4f4f4;
    text-align: center;
}

.service-box {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    width: 300px;
}


.projects {
    padding: 50px;
    text-align: center;
}

.project-gallery {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.project-gallery img {
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.about {
    padding: 50px;
    background: #eee;
    text-align: center;
}


.contact {
    padding: 50px;
    text-align: center;
}

.contact form {
    display: flex;
    flex-direction: column;
    width: 300px;
    margin: auto;
    gap: 10px;
}

.contact input, .contact textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact button {
    background: #ff6600;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-weight: bold;
}


footer {
    text-align: center;
    padding: 15px;
    background: #222;
    color: #fff;
} */


/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background: #f4f4f9;
  color: #333;
}

header {
  background: #2c3e50;
  color: #fff;
  padding: 1rem 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.logo a {
  text-decoration: none;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease, background 0.3s ease;
}

.nav-links a:hover {
  background: #3498db;
  border-radius: 5px;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  /* background: none; */
  border: none;
  color: #fff;
  cursor: pointer;
}

.hero {
  text-align: center;
  padding: 5rem 1rem;
  background: #3498db;
  color: #fff;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    background: #2c3e50;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    padding: 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}



button,
.btn {
  font-family: inherit;
}




 /* Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Arial', sans-serif;
      background: #f4f4f9;
      color: #333;
    }

    /* Navbar */
    header {
      background: #2c3e50;
      padding: 1rem 0;
    }

    .navbar {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 1rem;
      position: relative;
    }

    .logo a {
      color: #fff;
      font-size: 1.5rem;
      font-weight: bold;
      text-decoration: none;
    }

    .nav-links {
      list-style: none;
      display: flex;
      gap: 1rem;
    }

    .nav-links a {
      color: #fff;
      text-decoration: none;
      padding: 0.5rem 1rem;
      transition: background 0.3s ease;
    }

    .nav-links a:hover {
      background: #3498db;
      border-radius: 5px;
    }

    .menu-toggle {
      display: none;
      font-size: 1.5rem;
      background: none;
      border: none;
      color: #fff;
      cursor: pointer;
    }

    .login-btn {
      background: #3498db;
      border: none;
      color: #fff;
      padding: 0.5rem 1rem;
      border-radius: 5px;
      cursor: pointer;
      font-size: 1rem;
    }

    .login-btn:hover {
      background: #2980b9;
    }


    .countdown {
  text-align: center;
  background: #222;
  color: white;
  padding: 30px;
}
#timer {
  font-size: 30px;
  font-weight: bold;
  color: #ff6600;
  margin-top: 10px;
}

    /* Responsive */
    @media (max-width: 768px) {
      .nav-links {
        display: none;
        flex-direction: column;
        background: #2c3e50;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        padding: 1rem;
      }

      .nav-links.active {
        display: flex;
      }

      .menu-toggle {
        display: block;
      }
    }

    /* Modal */
    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background: rgba(0,0,0,0.5);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background: #fff;
      padding: 2rem;
      border-radius: 8px;
      max-width: 400px;
      width: 90%;
      box-shadow: 0 0 10px rgba(0,0,0,0.2);
    }

    .modal-content h2 {
      margin-bottom: 1rem;
    }

    .modal-content input {
      width: 100%;
      padding: 0.7rem;
      margin-bottom: 1rem;
      border: 1px solid #ccc;
      border-radius: 4px;
    }

    .modal-content button {
      background: #3498db;
      color: #fff;
      border: none;
      padding: 0.7rem 1rem;
      border-radius: 4px;
      cursor: pointer;
      width: 100%;
    }

    .close-btn {
      background: none;
      border: none;
      font-size: 1.2rem;
      float: right;
      cursor: pointer;
    }


    footer {
    text-align: center;
    padding: 15px;
    background: #222;
    color: #fff;
    margin-top: 5%;
} 

img{
    height: 100%;
    width: 100%;
}