/* google fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,700;1,800;1,900&family=Syne:wght@400..800&display=swap");

* {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  scroll-behavior: smooth;
}

.poppins{
  font-family: "Poppins", sans-serif;
  font-style: normal;
  scroll-behavior: smooth;
}

/* CTA Button Styles */
.cta-button {
  background: linear-gradient(135deg, #51d1a9, #059669);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px #4c9baf43;
  position: relative;
  overflow: hidden;
  font-size: 14px;
  display: inline-block;
  cursor: pointer;
}

.cta-button i, .cta-button-2 i {
  font-size: 18px;
}

.cta-button-2 {
  display: inline-block;
background: transparent;
color: #059669;
padding: 0.75rem 1.5rem;
border-radius: 10px;
font-weight: 500;
transition: all 0.2s ease;
box-shadow: 0 4px 6px -1px #abc5cb2f;
position: relative;
overflow: hidden;
font-size: 14px;
border: 1.9px solid #059669;
cursor: pointer;
}

.cta-button-2:hover{
  background: linear-gradient(135deg, #00baa8, #059669);
  color: white;
}

.custom-text-gradiant{
  background: linear-gradient(135deg, #72dd76, #8BC34A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

/* .cta-button:hover {
  box-shadow: 0 6px 12px -2px rgba(76, 175, 80, 0.4);
} */

.cta-button:hover::before {
  left: 100%;
}

/* CTA Button Styles */
.cta-button-primary {
background: #ffffff;
color: #4CAF50 !important;
border: 2px solid #ffffff;
font-weight: 600;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transform: translateY(0);
transition: all 0.3s ease;
}

.cta-button-primary:hover {
background: transparent;
color: #ffffff !important;
transform: translateY(-2px);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cta-button-secondary {
background: transparent;
color: #ffffff !important;
border: 2px solid #ffffff;
font-weight: 600;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transform: translateY(0);
transition: all 0.3s ease;
}

.cta-button-secondary:hover {
background: #ffffff;
color: #4CAF50 !important;
transform: translateY(-2px);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive Button Styles */
@media (max-width: 640px) {
.cta-button-primary,
.cta-button-secondary {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}
}

/* Top Bar Styles */
.top-bar-link {
  color: black;
  position: relative;
  overflow: hidden;
  font-size: 14px;
  font-weight: 400;
}

/* Header Styles */

header {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 1024px) {
  .header-main {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-nav {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
  align-items: center;
}

.nav-link {
    color: rgba(0, 0, 0, 0.9);
    position: relative;
    padding: 0.6rem 1rem;
    font-weight: 400;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    font-size: 13px;
    text-wrap: nowrap;
}

.nav-link:hover {
    color: #059669;
    background: rgba(0, 0, 0, 0.041);

}
.nav-link-active {
    color: #059669;
    background: rgba(0, 0, 0, 0.041);

}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: #059669;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 70%;
}

/* Dropdown Styles */
.nav-link-dropdown .dropdown-menu {
  display: none;
}
.nav-link-dropdown:hover .dropdown-menu,
.nav-link-dropdown:focus-within .dropdown-menu,
.nav-link-dropdown.group:focus .dropdown-menu {
  display: block;
}
.dropdown-menu {
  min-width: 220px;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  border: 1px solid #e5e7eb;
  z-index: 50;
  transition: opacity 0.2s, visibility 0.2s;
}
.dropdown-menu a {
  display: block;
  padding: 0.9rem 1.25rem;
  color: #374151;
  font-size: .8rem;
  transition: background 0.2s, color 0.2s;
}
.dropdown-menu a:hover {
  background: #e6f8fa;
  color: #059669;
}

/* Mobile Dropdown */
.mobile-dropdown-menu {
  display: none;
}
.mobile-dropdown.open .mobile-dropdown-menu {
  display: flex;
}
.mobile-dropdown-toggle {
  background: none;
  border: none;
  outline: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-dropdown-toggle:active,
.mobile-dropdown-toggle:focus {
  color: #059669;
}
.mobile-dropdown-menu a {
  padding: 0.75rem 1.25rem;
  color: #374151;
  font-size: 14px;
  transition: background 0.2s, color 0.2s;
}
.mobile-dropdown-menu a:hover {
  background: #e6f8fa;
  color: #059669;
}


/* Mobile Menu Styles */
.mobile-menu-button {
    position: relative;
    z-index: 50;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    background-color: #f6fff9;
    border: 1px solid #9c9c9c;
 
}

.mobile-menu-button i{
    color: #4CAF50;
}

.mobile-menu-button:hover {
    background: #f0fdf41b;
}

.mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.translate-x-0 {
    transform: translateX(0);
}

.mobile-menu-overlay {
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
}

.mobile-menu-overlay.opacity-50 {
    opacity: 0.5;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem;
    color: #1A2E47;
    font-weight: 400;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    margin: 0 0.5rem;
    font-size: 14px;
}

.mobile-nav-link:hover {
    color: #059669;
    background: rgba(0, 0, 0, 0.041);
}

.mobile-nav-link-active {
    color: #059669;
    background: rgba(0, 0, 0, 0.041);
}


.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    display: inline-block;
    color: #4CAF50;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    padding: 0.7rem 1.2rem;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease 0.2s forwards;
}

.section-description {
    font-size: 1rem;
    max-width: 42rem;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease 0.4s forwards;
    color: #3f4854;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.7rem;
    }
}




/* Call to Action Section Styles */
#cta {
  background: linear-gradient(135deg, #4CAF50, #8BC34A);
  color: white;
  text-align: center;
  position: relative;
}

#cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
  pointer-events: none;
}

#cta h2 {
  color: white;
  position: relative;
}

#cta p {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  position: relative;
}

/* Footer Styles */
.footer {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    color: #1f2937;
    padding: 5rem 0 0;
    overflow: hidden;
  }
  
  .footer-container {
    position: relative;
    z-index: 1;
  }
  
  .footer-content {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
  }
  
  .logo-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
  }
  
  .company-description {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
    max-width: 42rem;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  
  .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 20px;
  }
  
  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #59c8a52a;
    border-radius: 50%;
    transition: all 0.3s ease;
  }
  
  .social-link:hover {
    background: #059669;
    transform: translateY(-1px);
  }
  
  .social-link i {
    color: #059669;
    font-size: 1.25rem;
    transition: color 0.3s ease;
  }
  
  .social-link:hover i {
    color: white;
  }
  
  .footer-heading {
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    transition: color 0.3s ease;
  }
  
  .footer-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(135deg, #059669, #8BC34A);
    transition: width 0.3s ease;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li {
    
  }
  
  .footer-links li {
    color: #4b5563;
    text-decoration: none;
    transition: all 0.1s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }

  .footer-links li a{
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  
  .footer-links li i {
    font-size: 1.1rem;
    color: #059669;
    transition: transform 0.3s ease;
  }
  
  .footer-links li:hover {
    color: #059669;
  }
  
  .footer-links li:hover i {
    transform: translateX(4px);
  }
  
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .contact-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #4b5563;
    transition: transform 0.3s ease;
  }
  
  .contact-list i {
    color: #059669;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
  }
  
  .newsletter-text {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .newsletter-form .form-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  
  .newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    color: #1f2937;
    transition: all 0.3s ease;
  }
  
  .newsletter-form input:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
  }
  
  .newsletter-form button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .newsletter-form button:hover {
    background: #4CAF50;
    transform: translateY(-2px);
  }
  
  .app-download p {
    color: #4b5563;
    margin-bottom: 1rem;
    font-weight: 500;
  }
  
  .app-buttons {
    display: flex;
    gap: 1rem;
  }
  
  .app-button {
    transition: transform 0.3s ease;
  }
  
  .app-button:hover {
    transform: translateY(-3px);
  }
  
  .app-button img {
    height: 40px;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
  }
  
  .app-button:hover img {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
    margin-top: 2rem;
  }
  
  .footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  .copyright p {
    color: #4b5563;
    font-size: 0.875rem;
  }
  
  .footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .footer-bottom-links a {
    color: #4b5563;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .footer-bottom-links a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #4caf50;
    transition: width 0.3s ease;
  }
  
  .footer-bottom-links a:hover {
    color: #4caf50;
  }
  
  .footer-bottom-links a:hover::after {
    width: 100%;
  }
  
  .payment-methods img {
    height: 24px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }
  
  .payment-methods img:hover {
    opacity: 1;
  }
  
  @media (max-width: 768px) {
    .company-description {
      text-align: center;
    }
    .social-links {
      justify-content: center;
    }
    .contact-list li {
      font-size: 0.9rem;
    }
    .footer-links a {
      font-size: 0.9rem;
    }
    .footer-bottom-content {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-bottom-links {
      justify-content: center;
      gap: .7rem;
    }
  
    .payment-methods {
      margin-top: 1rem;
    }
  }


 /* form valiadtion */
.form-error {
  color: #e53935;
  font-size: 0.7rem;
  margin-top: 2px;
  display: block;
  transition: color 0.2s;
  font-weight: 500;
}
@media (min-width: 1024) {
  .form-error {
    font-size: 0.85rem;
  }
}

/* Success Message Styles */
.success-message {
    background-color: #dcfce7;
    color: #166534;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: none;
    animation: slideDown 0.3s ease-out forwards;
}
