/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #0e0e0e;
  color: #f4f4f4;
}

a {
  text-decoration: none;
}

/* Navbar Styling */
.navbar {
  background-color: #0c0c0c;
  border-bottom: 2px solid #ff4f00;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  z-index: 999;
  position: sticky;
  top: 0;
  animation: navFadeDown 0.6s ease forwards;
  opacity: 0;
  transform: translateY(-20px);
}

@keyframes navFadeDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  max-width: 1200px;
  margin: auto;
  position: relative;
}

/* Logo far left */
.logo {
  position: absolute;
  left: 0px;
}

.logo img {
  height: 40px;
  width: auto;
}

/* Navigation Links - Right aligned */
.nav-links {
  margin-left: auto;
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: #989898;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background-color: #ff4f00;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #ff4f00;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Burger Menu - Far Right and Orange */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
}

.burger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #ff4f00; /* Orange color */
  transition: 0.4s ease;
}

/* Burger Animation */
.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 20px;
    background-color: #171717;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
  }

  .nav-links.active {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .container {
    flex-direction: row;
    align-items: center;
  }

  .logo {
    position: static;
    flex: 1;
  }

  .burger {
    margin-left: auto;
  }
}



/* Hero Section */
.hero {
  position: relative;
  /* Remove old background-image */
  /* background-image: url('Images/123.jpg'); */
  background-blend-mode: overlay;
  color: #fff;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.5; /* Adjust for better text visibility */
}

/* Keep the overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.042); /* More opacity = more contrast for text */
  pointer-events: none;
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
}


#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-text {
  z-index: 1;
  position: relative;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(270deg, #ff4f00, #e84300, #f39c12, #ff4f00);
  background-size: 400% 400%;
  background-clip: text;
  color: transparent;
  position: relative;
  animation: gradientMove 3s linear infinite;
  display: inline-block;
  letter-spacing: 2px;
}

/* ❌ Removed the white beam */
.hero-text h1::before {
  display: none !important;
}

.hero-text p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #ccc;
}

.cta-btn {
  background-color: #ff4f00;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #e84300;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2rem;
  }
}

/* ABout us */
/* About Us Section */
.about-section {
  background: #000000;
  padding: 80px 20px;
  text-align: center;
  color: #f4f4f4;
}

.about-section h2 {
  font-size: 2.8rem;
  color: #ff4f00;
  margin-bottom: 10px;
}

.about-tagline {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 30px;
  font-style: italic;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #e8e8e8;
}


/* Responsive */
@media (max-width: 600px) {
  .about-section h2 {
    font-size: 2rem;
  }

  .about-content p {
    font-size: 1rem;
  }
}

/* Services */
.services {
  position: relative;
  text-align: center;
  padding: 60px 20px;
  color: white;
  background-image: url('Images/few-trails-neon-lights.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* dark overlay for readability */
  z-index: -1;
}

.services h2 {
  font-size: 3rem;
  margin-top: 15px;
  margin-bottom: 60px;
  font-weight: bold;
  color: white;
  z-index: 2;
  position: relative;
}

.services-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 20px auto;
  position: relative;
  z-index: 2;
}

.card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  padding: 20px;
  max-width: 300px;
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  height: 200px;
}

.card h3 {
  margin: 15px 0;
  font-size: 1.8rem;
  color: #333;
}

.card p {
  color: #555;
}

.card button {
  background-color: #ff4f00;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.card button:hover {
  background-color: #ff7b00;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.extra-text {
  display: none;
}

.read-more-btn {
  margin-top: 15px;
}

@media (max-width: 768px) {
  .services-grid {
    flex-direction: column;
    gap: 20px;
  }

  .card {
    max-width: 100%;
  }

  .services h2 {
    font-size: 2.5rem;
  }
}

.service-link-btn2 {
  margin-left: 40px;
  background-color: #007BFF; /* blue color */
  border: none;
  color: white;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  width: 50px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
  vertical-align: middle;
}

.service-link-btn2:hover {
  background-color: #0056b3; /* darker blue on hover */
}




/* ✅ Mobile responsiveness */
@media (max-width: 768px) {
  .office-section {
    height: 350px;
  }

  .office-overlay {
    mask-size: 90% 90%;
    -webkit-mask-size: 90% 90%;
  }
}

@media (max-width: 480px) {
  .office-section {
    height: 300px;
  }

  .office-overlay {
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
  }
}



/* Contact */
.contact {
  position: relative;
  background-image: url('Images/3229329.jpg'); /* Adjust the path if needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 6rem 2rem;
  z-index: 1;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.904); /* Dark overlay for readability */
  z-index: -1;
}

.contact p {
  margin: 1rem auto 2rem;
  max-width: 500px;
  color: #ccc;
}

.contact-form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: 2rem auto;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  background: #2a2a2a;
  color: #fff;
}

.contact-form button {
  padding: 1rem;
  background-color: #ff4f00;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #cc3e00;
}

.contact-info {
  text-align: center;
  margin-top: 2rem;
  color: #ccc;
}

/* Social Icons */
.socials {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.socials a {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

/* Social platform colors */
.socials .facebook {
  color: #1877F2;
}
.socials .facebook:hover {
  color: #fff;
  background-color: #1877F2;
}

.socials .instagram {
  color: #E4405F;
}
.socials .instagram:hover {
  color: #fff;
  background: linear-gradient(to right, #F58529, #D6249F);
}

.socials .linkedin {
  color: #0A66C2;
}
.socials .linkedin:hover {
  color: #fff;
  background-color: #0A66C2;
}

.socials .whatsapp {
  color: #25D366;
}
.socials .whatsapp:hover {
  color: #fff;
  background-color: #25D366;
}

.socials a:hover i {
  transform: scale(1.1);
}

.contact-info i {
  margin-left: 10px;
  font-size: 1.5rem;
  color: #bebebe;
}

/* Our Process Section */
.our-process {
  background: #111;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.our-process h2 {
  font-size: 36px;
  color: #ff4f00;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.step {
  background: #1b1b1b;
  padding: 30px 20px;
  border-radius: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step lottie-player {
  margin-bottom: 20px;
  width: 100px;
  height: 100px;
  display: block;
}

.step h3 {
  color: #ff4f00;
  font-size: 22px;
  margin-bottom: 15px;
}

.step p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
}

.step:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 79, 0, 0.3);
}

@media (max-width: 768px) {
  .our-process {
    padding: 60px 15px;
  }

  .our-process h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .step h3 {
    font-size: 20px;
  }

  .step p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .process-steps {
    grid-template-columns: 1fr;
  }

  .step {
    padding: 25px 20px;
  }

  .step h3 {
    font-size: 18px;
  }

  .step p {
    font-size: 13.5px;
  }
}

.sticky-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #ff4f00;
  color: #fff;
  padding: 15px 22px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(255, 79, 0, 0.6);
  animation: bounceGlow 2s infinite;
  z-index: 1000;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.sticky-cta:hover {
  background-color: #e84300;
  transform: scale(1.05);
}

@keyframes bounceGlow {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 0 15px rgba(255, 79, 0, 0.6);
  }
  50% {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(255, 79, 0, 1);
  }
}

@media (max-width: 480px) {
  .sticky-cta {
    bottom: 20px;
    right: 20px;
    padding: 12px 18px;
    font-size: 14px;
  }
}

.our-process {
  background: #0e0e0e; /* dark but not pitch black, softer than #111 */
  color: #fff; /* base text color */
  padding: 80px 20px;
  text-align: center;
}

.our-process h2 {
  font-size: 36px;
  color: #ff4f00;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.step {
  background: #1f1f1f; /* slightly lighter dark */
  padding: 30px 20px;
  border-radius: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  /* Remove initial opacity and translateY so they are visible immediately */
  opacity: 1 !important;
  transform: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #eee; /* ensure text inside step is bright */
}

.step lottie-player {
  margin-bottom: 20px;
  width: 100px;
  height: 100px;
  display: block;
  filter: brightness(1.1); /* brighten animations if needed */
}

.step h3 {
  color: #ff4f00; /* bright orange for heading */
  font-size: 22px;
  margin-bottom: 15px;
}

.step p {
  color: #ccc; /* light gray for paragraph */
  font-size: 15px;
  line-height: 1.6;
}

.step:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 79, 0, 0.3);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .our-process {
    padding: 60px 15px;
  }

  .our-process h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .step h3 {
    font-size: 20px;
  }

  .step p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .process-steps {
    grid-template-columns: 1fr;
  }

  .step {
    padding: 25px 20px;
  }

  .step h3 {
    font-size: 18px;
  }

  .step p {
    font-size: 13.5px;
  }
}

/* footer */
.site-footer {
  background-color: #000;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #bbb;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.footer-links a {
  color: #ff4f00;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-links span {
  color: #666;
}

/* Responsive footer tweaks */
@media (max-width: 480px) {
  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-links span {
    display: none; /* Hide the pipe on mobile for better stacking */
  }
}

/* Reviews */
.testimonials {
  position: relative;
  background-image: url('Images/back.png'); /* or 'Images/back.png' if it's PNG */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  z-index: 1;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Dark overlay */
  z-index: -1;
}


.testimonials h2 {
  font-size: 2.5rem;
  color: #ff4f00;
  margin-bottom: 40px;
}

.testimonial-slider {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial {
  display: none;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 0.6s ease-in-out;
}

.testimonial.active {
  display: flex;
}

.testimonial img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 2px solid #ff4f00;
}

.testimonial p {
  font-size: 1rem;
  font-style: italic;
  color: #ccc;
  margin-bottom: 10px;
}

.testimonial h4 {
  margin: 10px 0 5px;
  font-size: 1.1rem;
  color: #ff4f00;
}

.testimonial span {
  font-size: 0.9rem;
  color: #999;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Newsletter */
.newsletter {
  background: url('Images/123.jpg') center center/cover no-repeat;
  padding: 80px 20px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 0;
}

.newsletter-container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 20px;
}

.newsletter h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ff4f00;
}

.newsletter p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

/* Input wrapper with icon */
.input-wrapper {
  position: relative;
  width: 100%;
  max-width: 320px;
  box-sizing: border-box;
}

.input-wrapper i {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 1rem;
  pointer-events: none;
}

.input-wrapper input[type="email"] {
  padding: 14px 20px 14px 45px; /* space for icon */
  border-radius: 50px;
  border: 2px solid transparent;
  font-size: 1rem;
  background-color: #2a2a2a;
  color: white;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.input-wrapper input:focus {
  outline: none;
  border-color: #ff4f00;
}

/* Validation styles */
input:invalid {
  border-color: #ff3b3b;
}

input:valid {
  border-color: #00c851;
}

.newsletter-form button {
  padding: 14px 24px;
  background-color: #ff4f00;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  max-width: 200px;
}

.newsletter-form button:hover {
  background-color: #e84300;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
  .newsletter h2 {
    font-size: 2rem;
  }

  .newsletter-form button {
    max-width: 90%;
    width: 100%;
  }

  .input-wrapper {
    max-width: 90%;
    width: 100%;
  }

  .input-wrapper input[type="email"] {
    padding-left: 42px;
    font-size: 1rem;
  }

  .input-wrapper i {
    left: 14px;
    font-size: 0.9rem;
  }
}





/* WHY US */
.why-choose-us {
  background: url('Images/27.jpg') no-repeat center center/cover;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Optional dark overlay for better text readability */
.why-choose-us::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.choose-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.why-choose-us h2 {
  font-size: 2.8rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.main-text {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 20px;
}

.extra-text {
  display: none;
  font-size: 1rem;
  color: #bbb;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}

.toggle-btn {
  background-color: #ff4f00;
  color: white;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.toggle-btn:hover {
  background-color: #e84300;
}

@media (max-width: 480px) {
  .why-choose-us h2 {
    font-size: 2rem;
  }

  .main-text,
  .extra-text {
    font-size: 1rem;
  }

  .toggle-btn {
    width: 100%;
  }
}

/* Stats */
.stats-section {
  background: #111;
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-in-out;
}

.stats-section.visible .stats-container {
  opacity: 1;
  transform: translateY(0);
}

.stat {
  flex: 1 1 200px;
  padding: 20px;
}

.stat i {
  font-size: 40px;
  background: linear-gradient(135deg, #FFD700, #694400, #FFC107);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  display: inline-block;
}


.stat h3 {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #FFD700, #eba31c, #FFC107);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.stat p {
  font-size: 1.1rem;
  color: #ccc;
}

/* Responsive */
@media (max-width: 480px) {
  .stat h3 {
    font-size: 2rem;
  }

  .stat p {
    font-size: 1rem;
  }

  .stat i {
    font-size: 32px;
  }
}



/* Contact */
.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 1rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  background: #2a2a2a;
  color: #fff;
  width: 100%;
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D'12'%20height%3D'8'%20viewBox%3D'0%200%2012%208'%20fill%3D'none'%20xmlns%3D'http%3A//www.w3.org/2000/svg'%3E%3Cpath%20d%3D'M1%201L6%206L11%201'%20stroke%3D'%23ffffff'%20stroke-width%3D'2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px 8px;
}

.contact-form select:focus {
  outline: none;
  background-color: #333;
}

.contact-form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: 2rem auto;
  gap: 1rem;
}

.contact-form button {
  padding: 1rem;
  background-color: #ff4f00;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #cc3e00;
}

/* ✅ WhatsApp Glowing Animation */
@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.7),
                0 0 20px rgba(37, 211, 102, 0.6),
                0 0 30px rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(37, 211, 102, 1),
                0 0 30px rgba(37, 211, 102, 0.9),
                0 0 40px rgba(37, 211, 102, 0.8);
  }
}

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    right: 15px;
  }

/* Foldable Support (safe area insets for iPhones, Galaxy Fold, etc.) */
body {
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

/* ✅ Floating WhatsApp Button with Glow */
.whatsapp-float {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 28px;
  z-index: 1000;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: glowPulse 2s infinite;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

/* ✅ Hover: intensify glow and scale */
.whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 25px rgba(37, 211, 102, 1),
              0 0 35px rgba(37, 211, 102, 0.9),
              0 0 45px rgba(37, 211, 102, 0.8);
}

.whatsapp-float i {
  display: inline-block;
}

/* ✅ Responsive Fixes for Small Phones (≤360px) */
@media (max-width: 360px) {
  html {
    font-size: 90%;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    right: 15px;
  }
}


