/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #313131;
  color: #fff;
  line-height: 1.6;
  padding-top: 120px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Team Section */
.team {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 60px 10%;
}

.team-member {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 100%;
}

.team-member img {
  width: 200px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.team-member img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.team-member:nth-child(even) {
  flex-direction: row-reverse;
}

.team-member div {
  flex: 1;
  min-width: 250px;
  max-width: 700px;
}

.team-member h3 {
  font-size: 1.5rem;
  color: hotpink;
  margin-bottom: 0.5rem;
}

.team-member p {
  font-size: 1rem;
  line-height: 1.5;
  color: #ddd;
  word-wrap: break-word;
}

.subheading {
  font-size: 1.8rem;
  color: hotpink;
  margin-bottom: 2rem;
  text-align: center;
  width: 100%;
}

/* Contact Section Fix */
.contact form {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.input-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

.input-box {
  flex: 1;
  min-width: calc(50% - 0.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.input-group-2 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input,
textarea {
  padding: 1rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  background: #222;
  color: #fff;
  box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
}

input:focus,
textarea:focus {
  outline: 2px solid hotpink;
}

input[type="submit"] {
  align-self: flex-start;
  cursor: pointer;
}

/* Services Section Fix */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
  padding-top: 2rem;
}

.service-box {
  background: #1e1e1e;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(255,255,255,0.05);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(255,255,255,0.1);
}

.service-box i {
  font-size: 2rem;
  color: hotpink;
  margin-bottom: 0.5rem;
}

.service-box h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.service-box p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.4;
}

/* Keep existing styles below unchanged */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #313131;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 12%;
  box-shadow: 0 2px 4px rgba(255,255,255,0.1);
  z-index: 1000;
  font-size: 1.2rem;
}

.logo {
  font-size: 2.2rem;
  font-weight: 700;
  color: hotpink;
  text-decoration: none;
}

#menu-icon {
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  display: none;
  margin-left: auto;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
}

.navbar a:hover,
.navbar a:focus {
  color: hotpink;
}

.gradient-btn,
.btn {
  background: #9D3A50;
  color: white;
  padding: 0.6em 1.2em;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  display: inline-block;
  margin: 0.5rem 0.5rem 0 0;
}

.gradient-btn:hover,
.btn:hover {
  background: #ff69b4;
}

@media (max-width: 768px) {
  #menu-icon {
    display: block;
  }
  .navbar {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background-color: #222;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 2rem;
    display: none;
  }
  .navbar.active {
    display: flex;
  }
  .navbar a {
    padding: 0.5rem 0;
    width: 100%;
  }
  .team-member {
    flex-direction: column !important;
    text-align: center;
  }
}
.thank-you-container {
  padding-top: 200px;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem;
  animation: fadeIn 0.5s ease-in;
}


section {
  scroll-margin-top: 120px;
  padding: 100px 10% 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.heading {
  font-size: 2.5rem;
  color: #dd4869;
  text-align: center;
  margin-bottom: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.footer {
  background: #111;
  padding: 2rem 10%;
  text-align: center;
  color: #fff;
}

.footer .social-icons a {
  margin: 0 0.5rem;
  color: hotpink;
  font-size: 1.5rem;
}

.footer ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.footer ul li {
  margin: 0 1rem;
}

.footer a {
  text-decoration: none;
  color: #fff;
}

.footer a:hover {
  color: hotpink;
}

