html {
  scroll-behavior: smooth;
}
/* Global */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: white;
  background: linear-gradient(270deg, #3f87a6, #b1f8ce, #ff6f61, #8e44ad);
  background-size: 800% 800%;
  animation: aurora 15s ease infinite;
}

@keyframes aurora {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

.nav {
  background: rgba(0, 0, 0, 0.5);
  padding: 12px;
  text-align: center;
}

.nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

/* Hero */
.hero {
  max-width: 800px;
  margin: 80px auto;
  padding: 20px;
  text-align: center;
  background: rgba(0,0,0,0.4);
  border-radius: 10px;
  box-shadow: 0 0 10px #000;
}

.brand {
  color: #00f2fe;
}

.flip-words {
  font-size: 1.5em;
  font-weight: 500;
  margin-top: 10px;
}

#rotateWords {
  display: inline-block;
  color: #00f2fe;
  animation: flipWord 2s ease-in-out infinite;
  transition: color 0.5s ease;
}

@keyframes flipWord {
  0% { transform: rotateX(0deg); opacity: 1; }
  45% { transform: rotateX(90deg); opacity: 0; }
  55% { transform: rotateX(270deg); opacity: 0; }
  100% { transform: rotateX(360deg); opacity: 1; }
}

/* Content + Form Styles */
.content, .hero {
  max-width: 900px;
  margin: 60px auto;
  padding: 30px;
  background: rgba(0,0,0,0.4);
  border-radius: 10px;
  box-shadow: 0 0 10px #000;
}

input, select, textarea {
  display: block;
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 6px;
  border: none;
}

button, .quote-btn {
  padding: 12px 24px;
  background: #00f2fe;
  color: black;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}

button:hover, .quote-btn:hover {
  background: #4facfe;
}

h1, h2 {
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card {
  background: rgba(255,255,255,0.1);
  padding: 20px;
  margin: 20px 0;
  border-left: 5px solid #00f2fe;
  border-radius: 8px;
}

.team {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.team-member {
  background: rgba(255,255,255,0.05);
  padding: 10px;
  border-left: 4px solid #00f2fe;
  border-radius: 6px;
}

/* Social Buttons */
.social-links {
  text-align: center;
  margin: 40px 0 20px;
}

.social-icon {
  display: inline-block;
  margin: 0 10px;
  padding: 14px 18px;
  border-radius: 50%;
  font-size: 20px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 10px #00f2fe, 0 0 20px #00f2fe inset;
}

.social-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #4facfe, 0 0 30px #4facfe inset;
}

.insta {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.facebook {
  background: #3b5998;
}

.tiktok {
  background: linear-gradient(45deg, #000000, #69c9d0, #ee1d52);
}
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional smooth shadow */
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
  border: none; /* <-- removes white line */
}

.whatsapp-float:hover {
  transform: scale(1.1);
}




/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.5);
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-social a {
  color: #0ff;
  margin-right: 15px;
  font-size: 24px;
  transition: transform 0.3s ease, color 0.3s;
}

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

.footer-links h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #0ff;
}

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

.footer-links ul li a {
  color: #ffffff;
  text-decoration: none;
  display: block;
  margin: 5px 0;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #fff;
}

.footer-links p {
  margin: 8px 0;
  color: #f3f0f0;
}

.footer-links i {
  margin-right: 8px;
  color: #0ff;
}
.faq-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 24px;
  background: #00f2fe;
  color: black;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
  transition: all 0.3s ease;
}

.faq-btn:hover {
  background: #4facfe;
  color: white;
  box-shadow: 0 0 15px #00f2fe;
}
