/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
 font-family: 'Segoe UI', sans-serif;
   background: linear-gradient(90deg, #e3ffe7 0%, #d9e7ff 100%);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 53px;
  padding: 0 20px;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
}

.logo h1 {
    font-family: 'Syncopate', sans-serif;
  font-size: 1.1rem;
  color: rgb(255, 255, 255);
  margin: 0;
  letter-spacing: 1px;
}


.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links.show {
  display: flex;
  flex-direction: column;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif; /* change font here */
}

.hamburger {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

.logo h1 {
  font-family: 'Syncopate', sans-serif;
    font-weight: 400;
  font-size: 1.1rem;
  color: white;
  margin: 0;
  letter-spacing: 1px;
}

/* Medium screens (tablets) */
@media (max-width: 768px) {
  .logo h1 {
    font-size: 1rem;
  }
}

/* Small screens (phones) */
@media (max-width: 480px) {
  .logo h1 {
    font-size: 0.8rem;
   text-align: left;
  margin-left: -9px; 
  }
}

/* Hero Section with Background Image */
.hero {
  position: relative;
  height: 100vh;
  background: url('interior1.webp') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

/* Dark overlay over image */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* text visibility */
  z-index: 1;
}

/* Animate text content */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 1rem;
  opacity: 0;
  transform: translateY(50px);
  animation: slideUpText 1s ease-out 0.3s forwards;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-family: 'Tsukimi Rounded', sans-serif;
  letter-spacing: 2px;
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0;
  animation: fadeInText 1s ease 1s forwards;
}

/* Text Animations */
@keyframes slideUpText {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInText {
  to {
    opacity: 1;
  }
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    width: 200px;
    display: none;
    padding: 1rem;
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .hero {
    height: 75vh;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    margin-top: 100px;
  }

  .hero-content p {
    font-size: 1rem;
  }
}
/* About Us Section */
.about-us {
  padding: 4rem 1rem;
  text-align: center;
  overflow: hidden;
}

.about-us .container {
  max-width: 900px;
  margin: auto;
}

.about-us h2 {
  font-size: 2.5rem;
  color: #000000;
  opacity: 0;
  transform: translateY(30px);
  animation: slideFadeIn 1s ease-out 0.3s forwards;
}

.about-us p {
  font-size: 1.1rem;
  color: #272727;
  line-height: 1.8;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: slideFadeIn 1s ease-out 0.6s forwards;
}

/* Animation Keyframes */
@keyframes slideFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .about-us h2 {
    font-size: 2rem;
  }

  .about-us p {
    font-size: 1rem;
    padding: 1rem;
  }
}

@media (min-width: 769px) {
  .about-us h2,
  .about-us p {
    animation: none;
  }

  .about-us h2.scroll-animate,
  .about-us p.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
  }

  .about-us h2.visible,
  .about-us p.visible {
    animation: slideFadeIn 1s ease-out forwards;
  }
}




/* Products Section */
.products{
  padding: 1rem 1rem;
  text-align: center;
}

.products h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem; /* Increased from 1rem to 2rem */
  color: #000000;
}

.products-intro {
  max-width: 600px;
  margin: 1rem auto 3rem auto; /* Increased bottom margin to 3rem */
  font-size: 1.1rem;
  color: #272727;
  text-align: center; /* Ensure it's centered */
}


@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: opacity, transform;
}

.animate-on-scroll.visible {
  animation: fadeSlideIn 0.7s ease forwards;
}



.products-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.products-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.products-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  width: 280px; /* Fixed width makes 3 in row */
  text-align: left;
  transition: transform 0.3s ease;
}

.products-box:hover {
  transform: translateY(-5px);
}

.products-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.products-box h3 {
  font-size: 1.3rem;
  margin: 1rem;
  color: #111;
}

.products-box p {
  font-size: 1rem;
  color: #666;
  margin: 0 1rem 1.5rem;
}


.view-details {
  display: inline-block;
  padding: 0.7rem 1.2rem;
 font-family: 'Montserrat' sans-serif;
  color: #5e30f6;
  border-radius: 8px;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.view-details:hover {
  transform: scale(1.05);
}





/* Initial hidden state */
.products-box {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Visible state after animation triggers */
.products-box.visible {
  opacity: 1;
  transform: translateY(0);
}






/* Responsive */
@media (max-width: 768px) {

  .products {
  margin-top: -30px;
  text-align: center;
}
  .products-grid {
    flex-direction: column;
    align-items: center;
  }
  @media (max-width: 768px) {
  .products-row {
    flex-direction: column;
    align-items: center;
  }
}


  .products-box {
    width: 90%;
  }
.products h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #000000;
}

.products-intro {
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: rem;
  color: #272727;
}

}



.btn-view-work {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: #222;
  color: #fff;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-top: 2rem;
  margin-bottom: 3rem; /* ✅ Add this for more space below button */
}


.btn-view-work:hover {
  background-color: #444;
}


    .why-choose-us {
  text-align: center; /* ✅ center-align text */
  padding-top: 30px;
  padding-bottom: 40px; /* optional spacing */
}

    .why-choose-us .tagline {
      color: #000000;
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .why-choose-us .tagline::before {
      content: "● ";
        color: #959595;
    }

    .why-choose-us .headline {
      font-size: 22px;
      font-weight: 500;
      color: #272727;
      margin-top: 8px;
    }

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.why-choose-us .tagline,
.why-choose-us .headline {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: opacity, transform;
}

.why-choose-us .tagline.visible,
.why-choose-us .headline.visible {
  animation: fadeSlideUp 0.7s ease forwards;
}




.circle-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 1rem 3rem 1rem; /* ✅ Top padding reduced to 1rem */
}


.circle-box {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: #e6d6e7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #333;
  transition: transform 0.3s ease;
}

.circle-box:nth-child(3) {
  background-color: #c7a9ce;
}
.circle-box:nth-child(4) {
  background-color: #9c71aa;
  color: white;
}

.circle-box h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: #772e83;
}

.circle-box:nth-child(4) h3 {
  color: white;
}

.circle-box p {
  margin: 0.4rem 0 0;
  font-size: 1rem;
}

/* 🔁 Responsive: rectangle shape for mobile view */
@media (max-width: 768px) {
  .circle-box {
    width: 90%;
    height: auto;
    padding: 1.5rem;
    border-radius: 16px; /* Rectangle with slightly rounded corners */
  }
}

.circle-box {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.circle-box.visible {
  opacity: 1;
  transform: translateY(0);
}




.features-section {
  padding: 3rem 1rem;

  font-family: 'Poppins', sans-serif;
  color: #000000;
}

.features-container {
  max-width: 800px;
  margin: 0 auto;
}

.features-heading h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.features-heading p {
  font-size: 1rem;
  line-height: 1.7;
  color: #272727;
}

.features-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.icon-box {
  background-color: #0033a0;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
}

.feature-item p {
  font-size: 1.05rem;
  margin: 0;
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.features-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.features-section.visible {
  animation: fadeSlideUp 0.8s ease forwards;
}



/* Square container for image */
.image-container {
  width: 300px;
  height: 300px;
  flex-shrink: 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    margin-left: 830px;  /* Moves right (X-axis) */
  margin-top: -300px; 
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}


/* Hide image on tablet and mobile */
@media screen and (max-width: 991px) {
  .desktop-only {
    display: none;
  }
}

.how-it-works {
  text-align: center;
  padding: 3rem 1rem;
}

.how-it-works .tagline {
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.how-it-works .tagline::before {
  content: "● ";
  color: #959595;
}

.how-it-works .headline {
  font-size: 32px;
  font-weight: 500;
  margin-top: 9px;
   padding-bottom: 3rem;
  color: #272727;
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.how-it-works .tagline,
.how-it-works .headline {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: opacity, transform;
}

.how-it-works .tagline.visible,
.how-it-works .headline.visible {
  animation: fadeSlideUp 0.7s ease forwards;
}



.stepper-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  background: #fff;
  border-radius: 12px;
  padding: 1.2rem;
  width: 200px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-4px);
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #6d28d9;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: #222;
}

.step p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.3;
}

/* Mobile Style */
@media (max-width: 768px) {
  .stepper-container {
    flex-direction: column;
    align-items: center;
  }

  .step {
    width: 90%;
  }
}

.step {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.step.visible {
  opacity: 1;
  transform: translateY(0);
}





.testimonial-alt {
  padding: 3rem 1rem;
  text-align: center;
}

.testimonial-alt-title h2 {
  font-size: 2rem;
  color: #000000;
  margin-bottom: 0.5rem;
}

.testimonial-alt-title p {
  font-size: 1rem;
  color: #272727;
  margin-bottom: 2.5rem;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-alt-title h2,
.testimonial-alt-title p {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: opacity, transform;
}

.testimonial-alt-title h2.visible,
.testimonial-alt-title p.visible {
  animation: fadeInUp 0.7s ease forwards;
}




.testimonial-alt-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-alt-item {
  position: relative;
  padding: 1.5rem 1.2rem;
  background: #fdfdfd;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(40px); /* hidden position */
  opacity: 0;                  /* hidden initially */
  transition: all 0.6s ease;   /* animate */
}

/* Animate when class is added */
.testimonial-alt-item.show {
  opacity: 1;
  transform: translateY(0);
}



.testimonial-alt-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.quote {
  font-style: italic;
  font-size: 1rem;
  color: #444;
  position: relative;
  padding-left: 1rem;
  line-height: 1.6;
}

.quote::before {
  content: "“";
  font-size: 2rem;
  color: #6d28d9;
  position: absolute;
  left: 0;
  top: -10px;
}

.client {
  margin-top: 1rem;
  font-weight: 600;
  color: #6d28d9;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-alt-item {
    width: 90%;
  }
}


.blog-section {
  padding: 3rem 1rem;
  margin-bottom: -5rem;
 
  font-family: 'Poppins', sans-serif;
  text-align: center;
}


@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.blog-section.visible {
  animation: fadeSlideUp 0.8s ease forwards;
}




.section-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #000000;
}

.section-subtitle {
  font-size: 1rem;
  color: #424141;
  margin-bottom: 2rem;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: #fff;
  padding: 1rem;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
  text-align: left;
}

.blog-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.blog-card h3 {
  font-size: 1.2rem;
  margin: 0.5rem 0;
  color: #222;
}

.blog-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

.blog-card a {
  color: #0033a0;
  font-weight: 500;
  text-decoration: none;
}


@media (max-width: 768px) {
  .blog-list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 1rem;
  }

  .blog-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
    min-width: 260px;
    max-width: 300px;
  }

  /* Optional: remove grid behavior only on mobile */
  .blog-list::-webkit-scrollbar {
    display: none; /* hide scroll bar on mobile for cleaner look */
  }
}


/* Swipe hint style */
.swipe-hint {
  display: none; /* Hidden by default (desktop) */
  text-align: center;
  font-size: 0.95rem;
  color: #000000;
  margin: 1rem 0 0.5rem;
  font-style: italic;
  animation: hintBounce 1.8s ease-in-out infinite;
}

/* Only show on small screens */
@media (max-width: 768px) {
  .swipe-hint {
    display: block;
  }
}

/* Optional: subtle animation */
@keyframes hintBounce {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}



/* Simple footer already styled */
.simple-footer {
  background-color: #111;
  color: #ccc;
  text-align: center;
  padding: 1rem;
  font-size: 0.8rem;
}

.site-footer {
  background: #111;
  color: #fff;
  padding: 3rem 2rem;
  font-family: 'Poppins', sans-serif;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-logo-section {
  flex: 1 1 200px;
  text-align: center;
}

.footer-logo {
  width: 150px;
  margin-bottom: 1rem;
}

.download-btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border: 2px solid #f1c40f;
  border-radius: 30px;
  color: #fff;
  font-weight: bold;
  margin: 1rem 0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.download-btn:hover {
  background-color: #f1c40f;
  color: #111;
}

.social-icons {
  margin-top: 1rem;
}

.social-icons i {
  margin: 0 0.5rem;
  font-size: 1.2rem;
  color: #fff;
  transition: color 0.3s ease;
}

.social-icons i:hover {
  color: #f1c40f;
}

.footer-column {
  flex: 1 1 200px;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-column p,
.footer-column a {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccc;
  text-decoration: none;
}

.footer-column a:hover {
  color: #f1c40f;
}

.quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-links li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.85rem;
  text-align: center;
  color: #aaa;
}

.tags {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.credits {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.powered {
  display: block;
  color: #f1c40f;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;

  }

  .footer-logo-section,
  .footer-column {
    width: 100%;
  }

#address {
  margin-top: 0.5rem;
}

#quicklinks {
  margin-top: -5rem;
}

#contactuss {
  margin-top: 0rem;
}

  .credits {
    align-items: center;
     margin-top: 2rem;
  }
}


.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}



/* === Fresh Glassmorphic CTA Section === */
.cta-email-section {
  max-width: 780px;
  margin: 6rem auto;
  padding: 3rem 2rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  text-align: center;

  transform: translateY(30px);
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.cta-email-section.visible {
  animation: fadeInUp 0.8s ease forwards;
}


/* Heading */
.cta-email-section h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

/* Paragraph */
.cta-email-section p {
  font-size: 1.05rem;
  color: #3c3c3c;
  margin-bottom: 2.5rem;
  font-family: 'Poppins', sans-serif;
}

/* Form Layout */
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* Inputs */
.cta-form input,
.cta-form textarea {
  padding: 1rem 1.2rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  background: #180000;
    color: #ffffff;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.05);
}

.cta-form input:focus,
.cta-form textarea:focus {
  outline: none;
  border: 2px solid #0033a0;
}

/* === Animated Send Button (with back-link style) === */
.cta-form button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Syncopate', sans-serif;

  text-decoration: none;
  border: 2px solid transparent;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.cta-form button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #0033a0, #0057d8);
  z-index: 0;
  transition: left 0.4s ease-in-out;
  border-radius: 50px;
}

.cta-form button span {
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.cta-form button::after {
  content: '📩';
  position: relative;
  margin-left: 0.6rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s ease;
  z-index: 1;
}

.cta-form button:hover::before {
  left: 0;
}

.cta-form button:hover span {
  color: #fff;
}

.cta-form button:hover::after {
  opacity: 1;
  transform: translateX(0);
  color: #fff;
}

/* === Entrance Animation === */
@keyframes fadeInUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* === Responsive === */
@media (max-width: 600px) {
  .cta-email-section {
    padding: 2rem 1.2rem;
     margin-bottom: 0.5;   /* remove extra space */ 
  padding-bottom: 0;
  }

  .cta-email-section h3 {
    font-size: 1.6rem;
  }

  .cta-form button {
    font-size: 0.95rem;
    padding: 0.9rem 1.6rem;
  }
}


html {
  scroll-behavior: smooth;
}