* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #111;
  background-color: #fff;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  background: rgb(171, 151, 151);
  z-index: 999;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.logo {
  font-size: 32px;
  font-weight: 700;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 16px;
}
.nav-links li a {
  font-weight: 600;
  transition: all 0.3s ease;
}
.nav-links li a:hover {
  color: white;
}

/* Hamburger */
.hamburger {
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger.hide {
  display: none ;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.close-btn{
    display: none;
}
/* Hero */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fit;
  z-index: -1;
}
.hero-content {
  max-width: 700px;
}
.hero-content h2 {
  font-size: 48px;
  margin-bottom: 12px;
}
.hero-content p {
  font-size: 24px;
  margin-bottom: 24px;
}
.btn {
  padding: 12px 24px;
  background: black;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}
.btn:hover {
  background: white;
  color: black;
  border: 1px solid black;
}

/* About section */
.about-section {
  background: #f9f9fb;
  padding: 24px 0;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h3 {
  font-size: 32px;
  margin-bottom: 16px;
  color: #333;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #333;
}

.about-text .learn-more {
  margin-top: 16px;
  background-color: black;
  color: #fff;
  padding: 12px 24px;
  display: inline-block;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.about-text .learn-more:hover {
  background-color: white;
  color:black;
}

.about-image {
 
  flex: 1 1 600px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}



/* Services */

.services {
  height: min-content;
  padding: 96px 0 64px 0;
  background-color: #f0ccdc;
}
.services h3 {
  font-size: 32px;
  margin-bottom: 16px;
  text-align: center;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.card {
  flex: 1 1 250px;
  background: #f9f9f9;
  padding: 2rem;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.card i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #0066ff;
}
.card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

/* Contact */
.contact{
  padding: 96px 0;
  color: #333;
  background-color: #c4dbff;
}
.contact h3 {
  font-size: 32px;
  margin-bottom: 16px;
  text-align: center;
}
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: auto;
}
input,
textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 16px;
  font-size: 1rem;
}
textarea {
  height: 120px;
  resize: none;
}

/* Footer */
.footer {
  background: #101522;
  color: #fff;
  padding: 4rem 1rem 2rem;
  position: relative;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-col {
  flex: 1 1 220px;
}

.footer-col h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #00bcd4;
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccc;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-col ul li i {
  margin-right: 8px;
}

.footer-col ul li a {
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #00bcd4;
}

.footer-social a {
  margin-right: 10px;
  color: #ccc;
  font-size: 1.2rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
  color: #00bcd4;
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  border-top: 1px solid #333;
  padding-top: 1rem;
  color: #aaa;
}


/* Mobile Nav Styles */
@media (max-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.858);
    padding: 0 12px 24px 12px;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    border-radius: 0 10px 10px 0;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links li a {
    color: #fff;
    font-weight: bold;
  }

   .nav-links li a:hover {
    color: #433039;
  }

  .hamburger {
    display: flex;
  }

  .close-btn {
    text-align: right;
  }

  .close-btn span {
    font-size: 2rem;
    color: white;
    cursor: pointer;
    margin-bottom: 1rem;
    display: inline-block;
  }

  .close-btn{
    display: block;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-col {
    width: 100%;
  }
}
