/* Navbar Base */
.sfwh-navbar {
  background: #ffffff;
  padding: 18px 0;
  transition: all 0.3s ease;
}

/* Logo */
.sfwh-logo {
  font-size: 1.55rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

/* Menu Links */
.nav-link {
  color: #333 !important;
  font-weight: 500;
  margin-left: 22px;
  font-size: 1rem;
  transition: 0.3s;
}

.nav-link:hover {
  color: #2d7a63 !important; /* Soft elegant green */
}

/* Phone Number */
.phone-text {
  font-weight: 600;
  color: #2d7a63;
  font-size: 0.95rem;
  margin-left: 12px;
}

/* CTA Button */
.sfwh-start-btn {
  background-color: #2d7a63;
  color: #fff;
  padding: 10px 26px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.sfwh-start-btn:hover {
  background-color: #215948;
  color: #fff;
}
/* Home Section */
.home-section {
    width: 100%;
    min-height: 100vh;
    background: #ffe4e1; /* baby pink background */
    display: flex;
    align-items: center;
    padding: 100px 0;
    overflow: hidden;
}

/* Hero Text */
.hero-text h5 {
    color: #ff6f91;
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards 0.2s;
}

.hero-text h1 {
    color: #333;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards 0.4s;
}

.hero-text p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards 0.6s;
}

/* Button Styling */
.animate-button {
    background-color: #2d7a63; /* green shade */
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.animate-button:hover {
    background-color: #25604f; /* slightly darker green on hover */
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    color: #fff;
}

/* Image Animation */
.animated-img {
    max-width: 90%;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: fadeUp 1s forwards 0.8s;
}

/* Fade Up Animation */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }
    .hero-text p {
        font-size: 1rem;
    }
}


/* About Section Full Page */
.about-section {
    width: 100%;
    min-height: 100vh; /* full viewport height */
    background: transparent; /* transparent for floating shapes */
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center; /* center content vertically */
}
/* Headings */
.about-section h5 {
    color: #ff6f91;
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards 0.2s;
}

.about-section h2 {
    color: #333;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards 0.4s;
}

/* Cards */
.about-card {
    background: rgba(80, 74, 74, 0.85);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.5s ease, box-shadow 0.5s ease, background 0.5s ease;
    cursor: pointer;
    height: 100%;
    z-index: 2;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    background: rgba(255,255,255,1);
  }
  
  .about-card:hover h4, .about-card:hover p{
  color: #25604f !important;
}

/* Card Icon */
.card-icon {
    font-size: 3rem;
    color: #70f2cb;
    margin-bottom: 1rem;
    transition: transform 0.3s ease, color 0.3s ease;
    z-index: 2;
}

.about-card:hover .card-icon {
    transform: scale(1.2);
    color: #25604f;
}

.about-card h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #70f2cb;
}

.about-card p {
    color: #70f2cb;
    line-height: 1.6;
}

/* Fade Up Animation */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    z-index: 1;
    animation: float 10s infinite ease-in-out;
}

.shape1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #2d7a63, #81c784);
    top: -50px;
    left: -50px;
}

.shape2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #ff6f91, #ffb6c1);
    bottom: 50px;
    right: 100px;
    animation-duration: 12s;
}

.shape3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #fdd835, #ffb300);
    top: 150px;
    right: 50px;
    animation-duration: 8s;
}

/* Float Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-20px) translateX(20px); }
}

/* Responsive */
@media (max-width: 992px) {
    .about-section h2 {
        font-size: 2rem;
    }
}


/* Services Section */
.services-section {
    width: 100%;
    background: #f0f5f2; /* Soft light background */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Section Headings */
.services-section h5 {
    color: #ff6f91; /* Brand green */
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards 0.2s;
}

.services-section h2 {
    color: #1a2a6c; /* Dark accent */
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards 0.4s;
}

.services-intro {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards 0.5s;
}

/* Glassmorphism Service Card */
.service-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.3);
    transition: transform 0.5s ease, box-shadow 0.5s ease, background 0.3s ease;
    cursor: pointer;
    height: 100%;
    z-index: 2;
}

/* Hover Animation */
.service-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 0.25);
}

/* Card Icon */
.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2d7a63;
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.3) rotate(5deg);
    color: #1a5746;
}

/* Card Titles */
.service-card h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a2a6c;
}

/* Service List */
.service-list {
    list-style: disc;
    padding-left: 1.2rem;
    color: #555;
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Floating Background Shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
    animation: float 10s infinite ease-in-out;
}

.shape1 { width: 250px; height: 250px; background: linear-gradient(45deg, #2d7a63, #81c784); top: -50px; left: -50px; }
.shape2 { width: 180px; height: 180px; background: linear-gradient(45deg, #ff6f91, #ffb6c1); bottom: 50px; right: 80px; animation-duration: 12s; }
.shape3 { width: 120px; height: 120px; background: linear-gradient(45deg, #fdd835, #ffb300); top: 150px; right: 50px; animation-duration: 8s; }

/* Floating Animation */
@keyframes float {
    0%,100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-20px) translateX(20px); }
}

/* Fade Up Animation */
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 992px) {
    .services-section h2 { font-size: 2rem; }
    .service-list { font-size: 0.9rem; }
}


/* Why Choose Us Section */
.why-choose-us-section {
  width: 100%;
  background: #f7f9fb; /* matching Who We Are background */
  padding: 100px 0;
  position: relative;
}

/* Headings */
.why-choose-us-section h5 {
  color:  #ff6f91;
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards 0.2s;
}

.why-choose-us-section h2 {
  color: #1a2a6c;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards 0.4s;
}

.section-intro {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 3rem auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards 0.5s;
}

/* Hexagon Cards Container */
.hexagon-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
  width: 100%;
  padding: 0 2rem;
}

/* Hexagon Card */
.hexagon-card {
  position: relative;
  width: 180px;
  height: 208px; /* approximate height for perfect hexagon */
  background: rgba(45, 122, 99, 0.15);
  backdrop-filter: blur(10px);
  clip-path: polygon(
    25% 6.7%, 75% 6.7%, 
    100% 50%, 75% 93.3%, 
    25% 93.3%, 0% 50%
  ); /* hexagon shape */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  transition: transform 0.5s ease, box-shadow 0.5s ease, background 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(45,122,99,0.3);
}

/* Hover Animation */
.hexagon-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  background: rgba(45, 122, 99, 0.25);
}

/* Hex Icon */
.hex-icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  color: #2d7a63;
  transition: transform 0.3s ease, color 0.3s ease;
}

.hexagon-card:hover .hex-icon {
  transform: scale(1.3) rotate(5deg);
  color: #1a5746;
}

/* Card Title & Text */
.hexagon-card h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a2a6c;
  font-size: 1rem;
}

.hexagon-card p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.4;
}

/* Fade Up Animation */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Content Below Hex Cards */
.hex-content-below p {
  font-size: 1rem;
  color: #555;
  max-width: 800px;
  margin: 0.5rem auto;
  line-height: 1.6;
}

/* Get Started Button */
.btn-get-started {
  display: inline-block;
  background-color: #2d7a63;
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  margin-top: 1.5rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-get-started:hover {
  background-color: #1a5746;
  transform: scale(1.05);
}


/* Stay Updated Section */
.stay-updated-section {
  background-color: #ffe4e1; /* Updated soft pink background */
  color: #333;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.stay-updated-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2d7a63; /* Brand green for titles */
}

.stay-updated-section .section-desc {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: #555;
}

/* Floating Shapes */
.floating-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.shape1 { width: 100px; height: 100px; background: rgba(45,122,99,0.2); top: 10%; left: 5%; animation-delay: 0s;}
.shape2 { width: 150px; height: 150px; background: rgba(45,122,99,0.15); top: 60%; left: 80%; animation-delay: 2s;}
.shape3 { width: 80px; height: 80px; background: rgba(45,122,99,0.25); top: 30%; left: 50%; animation-delay: 4s;}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Form Styling */
.subscribe-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
  max-width: 400px;
  margin: 0 auto;
}

.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #2d7a63; /* Brand green for labels */
  align-self: flex-start;
}

.subscribe-form input {
  padding: 0.8rem 1rem;
  width: 100%;
  border-radius: 50px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.subscribe-form input:focus {
  transform: scale(1.02);
  box-shadow: 0 5px 20px rgba(45,122,99,0.2);
  border-color: #2d7a63;
}

/* Buttons */
.button-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn-subscribe, .btn-unsubscribe {
  padding: 0.8rem 2rem;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-subscribe {
  background-color: #2d7a63;
  color: #fff;
}

.btn-subscribe:hover {
  background-color: #1a5746;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn-unsubscribe {
  background-color: #fff;
  color: #2d7a63;
}

.btn-unsubscribe:hover {
  background-color: #e0f0eb;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Confirmation Popup */
.confirmation-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup-content {
  background: #fff;
  color: #333;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: popupFade 0.4s ease-in-out;
}

.popup-content button {
  margin-top: 1rem;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 50px;
  background-color: #2d7a63;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s;
}

.popup-content button:hover {
  transform: scale(1.05);
}

@keyframes popupFade {
  from { opacity: 0; transform: translateY(-20px);}
  to { opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media (max-width: 576px) {
  .subscribe-form { max-width: 90%; }
  .button-group { flex-direction: column; gap: 0.5rem; }
}

/* FAQ Section */
.faq-section {
  width: 100%;
  background: #ffffff; /* Updated to pure white */
  padding: 80px 20px;
}

.faq-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a2a6c;
  text-align: center;
}

.faq-section p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 3rem;
  text-align: center;
}

/* Accordion Styling */
.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #f9f9f9; /* Light gray for cards */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.faq-item:hover {
  transform: translateY(-3px);
}

.faq-question {
  width: 100%;
  padding: 1.2rem 1.5rem;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  background: #e9f0ff;
  border: none;
  cursor: pointer;
  outline: none;
  color: #1a2a6c;
  transition: background 0.3s;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
  background: #fff;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* Adjust based on content */
  padding: 1rem 1.5rem;
}

.faq-answer p {
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* ---------------- TERMS SECTION ---------------- */
.terms-section {
  width: 100%;
  background: #f0f5f2;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

/* Title styles */
.terms-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2d7a63;
  margin-bottom: 10px;
}

.terms-date {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

/* Content Box */
.terms-box {
  background: #ffffff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0px 10px 25px rgba(0,0,0,0.06);
  position: relative;
  z-index: 5;
  max-width: 1000px;
  margin: auto;
}

.terms-box h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d7a63;
  margin-top: 25px;
}

.terms-box p {
  font-size: 1rem;
  color: #444;
  margin-top: 8px;
  line-height: 1.7;
}

/* ---------------- Animated Lines ---------------- */
.animated-lines .line {
  position: absolute;
  height: 2px;
  width: 180px;
  background: rgba(45, 122, 99, 0.17);
  border-radius: 2px;
  animation: floatingLines 10s linear infinite;
}

.l1 { top: 18%; left: -250px; animation-delay: 0s; }
.l2 { top: 45%; left: -300px; animation-delay: 2s; }
.l3 { top: 70%; left: -200px; animation-delay: 4s; }
.l4 { top: 85%; left: -350px; animation-delay: 6s; }

@keyframes floatingLines {
  0%   { transform: translateX(0) rotate(0deg); opacity: 0.3; }
  50%  { transform: translateX(1500px) rotate(8deg); opacity: 0.15; }
  100% { transform: translateX(0) rotate(0deg); opacity: 0.3; }
}

/* ---------------- PRIVACY POLICY SECTION ---------------- */
.privacy-section {
  width: 100%;
  background: #f0f5f2;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

.privacy-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2d7a63;
  margin-bottom: 10px;
}

.privacy-date {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.privacy-box {
  background: #ffffff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0px 10px 25px rgba(0,0,0,0.06);
  position: relative;
  z-index: 5;
  max-width: 1000px;
  margin: auto;
}

.privacy-box h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d7a63;
  margin-top: 25px;
}

.privacy-box p {
  font-size: 1rem;
  color: #444;
  margin-top: 8px;
  line-height: 1.7;
}

/* ---------------- Animated Lines ---------------- */
.privacy-animated-lines .p-line {
  position: absolute;
  height: 2px;
  width: 180px;
  background: rgba(45, 122, 99, 0.17);
  border-radius: 2px;
  animation: floatPrivacyLines 10s linear infinite;
}

.pl1 { top: 15%; left: -250px; animation-delay: 0s; }
.pl2 { top: 40%; left: -350px; animation-delay: 2s; }
.pl3 { top: 65%; left: -200px; animation-delay: 4s; }
.pl4 { top: 88%; left: -300px; animation-delay: 6s; }

@keyframes floatPrivacyLines {
  0%   { transform: translateX(0) rotate(0deg); opacity: 0.3; }
  50%  { transform: translateX(1500px) rotate(8deg); opacity: 0.15; }
  100% { transform: translateX(0) rotate(0deg); opacity: 0.3; }
}


/* CONTACT SECTION */
.contact-section {
  background: #ffe4e1;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Floating Shapes */
.contact-floating-shapes .c-shape {
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  filter: blur(25px);
  animation: floatSoft 10s infinite ease-in-out;
}
.cs1 { top: 8%; left: -50px; }
.cs2 { top: 50%; left: 20%; animation-delay: 2s; }
.cs3 { top: 20%; right: -60px; animation-delay: 4s; }
.cs4 { bottom: 8%; right: 20%; animation-delay: 6s; }

@keyframes floatSoft {
  0% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(40px); opacity: 0.7; }
  100% { transform: translateY(0); opacity: 0.4; }
}

/* Info Box */
.contact-info-box {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.contact-info-box:hover {
  transform: translateY(-8px);
}
.contact-info-box i {
  font-size: 2rem;
  color: #2d7a63;
}

/* Form */
.contact-form-box {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.form-control:focus {
  border-color: #2d7a63;
  box-shadow: 0 0 0 3px rgba(45,122,99,0.25);
}

.contact-btn {
  background: #2d7a63;
  color: white;
  border: none;
  padding: 14px;
  width: 100%;
  border-radius: 12px;
  transition: 0.3s;
}
.contact-btn:hover {
  background: #256552;
  transform: translateY(-4px);
}

/* POPUP */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.popup-box {
  background: #fff;
  padding: 35px 40px;
  border-radius: 20px;
  text-align: center;
  width: 400px;
  animation: popupOpen 0.4s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.popup-box h3 {
  color: #2d7a63;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.popup-btn {
  background: #2d7a63;
  border: none;
  padding: 10px 25px;
  color: #fff;
  margin-top: 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}
.popup-btn:hover {
  background: #256552;
}

/* Animation */
@keyframes popupOpen {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-link:hover {
  color: #2d7a63;
  margin-left: 5px;
}

.subscribe-btn {
  border-radius: 30px;
  transition: 0.3s ease;
}

.subscribe-btn:hover {
  background-color: #2d7a63;
  color: #fff;
  transform: translateY(-3px);
}

.footer-social-icons i {
  transition: 0.3s ease;
  cursor: pointer;
}

.footer-social-icons i:hover {
  color: #2d7a63;
  transform: translateY(-3px);
}
