/* Contact Section */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
  background: #fff; 
}

#contact {
  min-height: 100vh;
  background: url('./asstes/Assets/download.jpg') no-repeat center center/cover;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
}

.contact-text {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 50px;
}


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    background-color: rgba(0, 0, 0, 0);
    height: 70px;
    box-sizing: border-box;
}

.logo img {
    width: 80px;
    height: auto;
    cursor: pointer;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #00A2E3;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
  color: #aaa;
}


.word {
  opacity: 0;
  filter: blur(5px);
  transition: opacity 0.5s ease, filter 0.5s ease;
  display: inline-block;
  margin: 0 5px;
}

.word.visible {
  opacity: 1;
  filter: blur(0);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.social-icons img {
  width: 80px;
  height: 80px;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
}

footer {
  position: absolute;
  bottom: 0px;
  width: 100%;
  text-align: center;
  color: #ccc;
  font-size: 1rem;
  padding: 5px;
  background: black;
}

