/* Base Styles */

:root {
  --primary: #00979e;
  /* Vibrant purple */
  --primary-dark: #00767a;
  --secondary: #b3e6ea;
  --secondary-light: #e0f7fa;
  /* Soft purple */
  --accent-green: #8ed1b7;
  --accent-pink: #ffdee2;
  /* Soft pink */
  --accent-peach: #fec6a1;
  /* Soft peach */
  --dark: #1a1f2c;
  /* Deep blue-black */
  --gray-dark: #555555;
  --gray: #777777;
  --gray-light: #f3f3f3;
  --white: #ffffff;
  --border-radius: 8px;
  /* More rounded corners */
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

h2:after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 0.5rem auto;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  transition: transform 0.5s ease;
}

img:hover {
  transform: scale(1.02);
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
  position: relative;
}

a:hover {
  color: var(--primary-dark);
}

/* Japanese-inspired link underline animation */

a:not(.btn):not(.social-link):not(.logo a):after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--primary);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

a:not(.btn):not(.social-link):not(.logo a):hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

ul {
  list-style: none;
}

section {
  padding: 5rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Buttons */

.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
  z-index: -1;
}

.btn:hover:before {
  width: 100%;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(139, 92, 246, 0.35);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(139, 92, 246, 0.2);
}

/* Header & Navigation */

header {
  background-color: #00979e; /* Teal as per user image */
  box-shadow: var(--box-shadow);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo h1 {
  font-size: 1.8rem;
  margin-bottom: 0;
  color: var(--primary);
  font-weight: 700;
}

.logo .logo-image {
  max-height: 60px;
  width: auto;
  display: block;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu li {
  margin-left: 1.5rem;
}

.nav-menu li a {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.1rem;
  transition: color 0.3s;
  position: relative;
}

.nav-menu li a:not(.btn):after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #b3e6ea;
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.nav-menu li a:not(.btn):hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.nav-menu li a:hover,
.nav-menu li a:focus {
  color: #b3e6ea;
}

.nav-menu li a:not(.btn) {
  padding: 0.5rem 0;
}

/* Hero Section */

.hero {
  padding-top: 8rem;
  background: linear-gradient(
    135deg,
    var(--secondary-light) 0%,
    var(--white) 100%
  );
  overflow: hidden;
  position: relative;
}

.hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  padding-right: 2rem;
  animation: fadeInLeft 1s ease-out;
}

.tagline {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #00979e; /* Match header color */
  position: relative;
  display: inline-block;
}

.tagline:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--accent-pink);
}

.hero-content p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.hero-image img {
  border-radius: var(--border-radius);
  transition: transform 0.7s ease;
}

.hero-image:hover img {
  transform: scale(1.05);
}

/* How it works section */

.how-it-works {
  background-color: var(--white);
  position: relative;
}

.process-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.process-card:hover {
  transform: translateY(-5px);
  border-bottom: 3px solid var(--primary);
}

.process-card .icon {
  background-color: var(--secondary-light);
  color: var(--primary);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  transition: var(--transition);
}

.process-card:hover .icon {
  background-color: var(--primary);
  color: var(--white);
}

/* Benefits Section */

#benefits {
  background-color: #f0f8ff; /* Replace this with the exact color code of the Home section */
  color: #000; /* Adjust text color if needed for better contrast */
  /* padding: 50px 0; Optional: Add padding for better spacing */
  /* color: #ffffff; Optional: Adjust text color for better contrast */
  /* background-color: #00979e; */ /*This was part of the problematic line*/
}

.benefits:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%239C92AC' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.benefits-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.benefit-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border-left: 3px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-left: 3px solid var(--primary);
}

.benefit-card .icon {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.benefit-card:hover .icon {
  transform: scale(1.1);
}

/* Target Groups Section */

.target {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.target-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.target-card {
  background-color: var(--gray-light);
  border-radius: var(--border-radius);
  padding: 1.8rem;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border-top: 3px solid transparent;
}

.target-card:hover {
  transform: translateY(-5px);
  background-color: var(--secondary-light);
  border-top: 3px solid var(--primary);
}

.target-card .icon {
  color: var(--primary);
  font-size: 2.2rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.target-card:hover .icon {
  transform: rotate(10deg);
}

/* About/Vision Section */

.about {
  background: linear-gradient(
    90deg,
    var(--white) 0%,
    var(--secondary-light) 100%
  );
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.vision-points {
  margin-top: 2rem;
}

.vision-point {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.vision-point:hover {
  transform: translateX(5px);
}

.vision-point i {
  color: var(--primary);
  margin-right: 1rem;
  font-size: 1.2rem;
}

.about-image img {
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  transition: transform 0.5s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

/* Contact Section */

#contact {
  background-color: #ffffff; /* Set background color to white */
  color: #000000; /* Optional: Adjust text color for better contrast */
  padding: 50px 0; /* Optional: Add padding for better spacing */
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-form {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(0, 151, 158, 0.1);
}

.contact-info {
  background-color: var(--primary);
  color: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
  overflow: hidden;
}

.contact-info:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  animation: pulseGlow 8s infinite;
}

.contact-info h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
}

.info-item i {
  margin-right: 1rem;
  font-size: 1.2rem;
}

.info-item p {
  margin-bottom: 0;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  font-size: 24px;
  color: white;
  transition: transform 0.2s ease;
}

.social-link:hover {
  transform: scale(1.2);
}

.contact-info a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: #b3e6ea;
  text-decoration: underline;
}

/* Footer */

footer {
  background: #31363f;
  color: #fff;
  padding: 0;
  border-top: 1px solid #23263a;
}

.footer-new-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 3rem 0 2rem 0;
  gap: 2rem;
}

.footer-main-left {
  flex: 1.2;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-image {
  max-width: 120px;
  margin-bottom: 1.2rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.footer-headline {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
}

.footer-highlight {
  color: #3ec6ff;
}

.footer-desc {
  color: #b3e6ea;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  max-width: 260px;
}

.footer-main-right {
  flex: 2;
  display: flex;
  gap: 2.5rem;
  justify-content: flex-end;
}

.footer-section {
  min-width: 120px;
}

.footer-section h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

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

.footer-section ul li {
  margin-bottom: 0.7rem;
}

.footer-section ul li a {
  color: #b3e6ea;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-section ul li a:hover {
  color: #3ec6ff;
  text-decoration: underline;
}

.footer-bottom-new {
  border-top: 1px solid #23263a;
  text-align: center;
  padding: 1.2rem 0 0.5rem 0;
  color: #b3e6ea;
  font-size: 0.95rem;
  background: #10131a;
}

@media (max-width: 900px) {
  .footer-new-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
  }
  .footer-main-right {
    width: 100%;
    justify-content: flex-start;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .footer-main-right {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-section {
    min-width: 0;
  }
}

/* Sticky CTA */

.sticky-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.sticky-cta.show {
  opacity: 1;
  transform: translateY(0);
}

.sticky-cta .btn {
  display: flex;
  align-items: center;
  padding: 0.8rem 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 151, 158, 0.3);
}

/* Page specific styles */

.page-wrapper {
  padding-top: 80px;
}

.page-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.subtitle {
  font-size: 1.2rem;
  color: var(--gray-dark);
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
}

/* Contact Page */

.contact-hero {
  background-color: var(--secondary-light);
  padding: 5rem 2rem 3rem;
  text-align: center;
}

.contact-page {
  padding: 5rem 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
}

.contact-form-container {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.contact-info-card {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  border-left: 3px solid var(--primary);
}

.contact-info-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.contact-info-header i {
  color: var(--primary);
  font-size: 1.5rem;
  margin-right: 1rem;
}

.contact-info-header h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
}

/* FAQ Page */

.faq-hero {
  background-color: var(--secondary-light);
  padding: 5rem 2rem 3rem;
  text-align: center;
}

.faq-section {
  padding: 5rem 2rem;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  box-shadow: 0 6px 24px rgba(139, 92, 246, 0.15);
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.1rem;
  padding-right: 2rem;
}

.faq-icon {
  color: var(--primary);
  font-size: 0.9rem;
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  padding: 0 1.5rem;
}

.faq-answer.show {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.faq-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 2rem;
  background-color: var(--secondary-light);
  border-radius: var(--border-radius);
}

.faq-cta h3 {
  margin-bottom: 1rem;
  color: var(--primary);
}

/* Privacy Policy Page */

.privacy-hero {
  background-color: var(--secondary-light);
  padding: 5rem 2rem 3rem;
  text-align: center;
}

.privacy-content {
  padding: 5rem 2rem;
}

.privacy-container {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-section {
  margin-bottom: 3rem;
}

.privacy-section h2 {
  font-size: 1.5rem;
  text-align: left;
  margin-bottom: 1rem;
}

.privacy-section h2:after {
  margin-left: 0;
  width: 40px;
  background: var(--primary);
}

.privacy-section ul {
  list-style: disc;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.privacy-section ul li {
  margin-bottom: 0.5rem;
}

/* Animations */

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
}

/* Animation ready classes */

.animate-ready {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Media Queries */

@media (max-width: 992px) {
  .hero .container,
  .about .container {
    grid-template-columns: 1fr;
  }
  .hero-content {
    padding-right: 0;
  }
  .hero-image {
    order: -1;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  .tagline {
    font-size: 2.8rem;
  }
  section {
    padding: 4rem 1.5rem;
  }
  .contact-container {
    grid-template-columns: 1fr;
  }
  .menu-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background-color: var(--white);
    flex-direction: column;
    padding: 5rem 1.5rem 2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    align-items: flex-start;
    transition: right 0.3s ease;
    z-index: 101;
  }
  .nav-menu.active {
    right: 0;
  }
  .nav-menu li {
    margin: 1rem 0;
    width: 100%;
  }
  .nav-menu li a.btn {
    display: block;
    text-align: center;
    margin-top: 0.5rem;
  }
  .logo .logo-image {
    max-height: 50px;
  }
  .hero-image {
    height: 300px;
  }
  .carousel-control {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 576px) {
  .tagline {
    font-size: 2.2rem;
  }
  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Form Success Message */

.form-success {
  background: var(--secondary-light);
  color: var(--primary);
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-top: 1rem;
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Carousel Styles */
.carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.carousel-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.carousel-item.active {
  opacity: 1;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.carousel-item:hover img {
  transform: scale(1.05);
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.7);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.carousel-control:hover {
  background: rgba(255, 255, 255, 0.9);
}

.carousel-control.prev {
  left: 10px;
}

.carousel-control.next {
  right: 10px;
}

.carousel-control i {
  color: #00979e;
  font-size: 1.2rem;
}

.custom-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.footer-bubbles {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.footer-bubbles .bubble {
  position: absolute;
  bottom: -60px;
  background: rgba(80, 200, 255, 0.18); /* watery blue */
  border-radius: 50%;
  opacity: 0.7;
  animation: bubbleUp 8s linear infinite;
}
.footer-bubbles .bubble:nth-child(1) {
  left: 10%;
  width: 32px;
  height: 32px;
  animation-duration: 7s;
  animation-delay: 0s;
}
.footer-bubbles .bubble:nth-child(2) {
  left: 25%;
  width: 18px;
  height: 18px;
  animation-duration: 6s;
  animation-delay: 2s;
}
.footer-bubbles .bubble:nth-child(3) {
  left: 40%;
  width: 24px;
  height: 24px;
  animation-duration: 8s;
  animation-delay: 1s;
}
.footer-bubbles .bubble:nth-child(4) {
  left: 55%;
  width: 14px;
  height: 14px;
  animation-duration: 5.5s;
  animation-delay: 3s;
}
.footer-bubbles .bubble:nth-child(5) {
  left: 70%;
  width: 28px;
  height: 28px;
  animation-duration: 7.5s;
  animation-delay: 1.5s;
}
.footer-bubbles .bubble:nth-child(6) {
  left: 80%;
  width: 20px;
  height: 20px;
  animation-duration: 6.5s;
  animation-delay: 2.5s;
}
.footer-bubbles .bubble:nth-child(7) {
  left: 90%;
  width: 16px;
  height: 16px;
  animation-duration: 7.2s;
  animation-delay: 0.8s;
}
.footer-bubbles .bubble:nth-child(8) {
  left: 60%;
  width: 22px;
  height: 22px;
  animation-duration: 8.2s;
  animation-delay: 2.2s;
}
.footer-bubbles .bubble:nth-child(9) {
  left: 35%;
  width: 12px;
  height: 12px;
  animation-duration: 5.8s;
  animation-delay: 1.8s;
}
.footer-bubbles .bubble:nth-child(10) {
  left: 75%;
  width: 26px;
  height: 26px;
  animation-duration: 7.8s;
  animation-delay: 0.5s;
}
@keyframes bubbleUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
  80% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-420px) scale(1.15);
    opacity: 0;
  }
}
footer,
.footer-new-layout,
.footer-main-left,
.footer-main-right,
.footer-section,
.footer-bottom-new {
  position: relative;
  z-index: 1;
}

@media (max-width: 480px) {
  html,
  body {
    max-width: 100vw;
    overflow-x: hidden;
  }
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  h3 {
    font-size: 1rem;
  }
  p,
  li,
  label,
  input,
  textarea {
    font-size: 0.95rem;
  }
  .btn,
  .btn-primary,
  .btn-outline {
    padding: 0.6rem 0.8rem !important;
    font-size: 0.9rem;
  }
  .hero-content,
  .about-content,
  .contact-form,
  .contact-info,
  .benefit-card,
  .process-card,
  .target-card {
    padding: 1rem !important;
  }
  .hero-image,
  .carousel,
  .carousel-inner {
    height: auto !important;
    min-height: 180px !important;
    aspect-ratio: 16/9;
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
  }
  .carousel-item img {
    width: 100vw !important;
    height: 100% !important;
    min-height: 180px;
    max-height: 70vw;
    object-fit: cover !important;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
  }
  .nav-menu {
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 4rem 0.5rem 2rem !important;
  }
  .nav-menu li a {
    font-size: 1rem;
    padding: 0.7rem 0;
  }
  .footer-new-layout,
  .footer-main-right {
    flex-direction: column !important;
    gap: 1rem !important;
    align-items: stretch !important;
  }
  .footer-section {
    min-width: 0 !important;
    margin-bottom: 1.2rem;
  }
  .social-links {
    gap: 20px !important;
  }
  .social-link {
    font-size: 30px !important;
    padding: 8px;
  }
  .contact-form iframe {
    width: 100vw !important;
    min-width: 0;
    max-width: 100vw !important;
  }
  .contact-form,
  .contact-info {
    min-width: 0 !important;
    width: 100% !important;
  }
  .contact-container {
    gap: 1rem !important;
  }
  section {
    padding: 1.2rem 0.2rem !important;
  }
  .carousel-inner {
    width: 100vw !important;
    height: 56vw !important;
    min-height: 160px;
    max-height: 70vw;
  }
  .carousel-item img {
    width: 100vw !important;
    height: 56vw !important;
    min-height: 160px;
    max-height: 70vw;
    object-fit: cover !important;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
  }
  .carousel-control {
    width: 32px !important;
    height: 32px !important;
    font-size: 1.2rem !important;
    top: 50% !important;
    transform: translateY(-50%);
    z-index: 2;
  }
  .hero {
    padding-top: 6.5rem !important;
  }
  .hero .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 auto !important;
  }
  .hero-image,
  .carousel,
  .carousel-inner {
    margin-left: auto !important;
    margin-right: auto !important;
    left: 0 !important;
    right: 0 !important;
  }
  .menu-toggle {
    display: block !important;
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    z-index: 200;
    font-size: 2.2rem !important;
    background: none;
    border: none;
    color: rgb(0, 0, 0);
    cursor: pointer;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
  }
  .menu-toggle i {
    display: block;
    width: 32px;
    height: 32px;
    font-size: 2.2rem;
    line-height: 32px;
    text-align: center;
    color: white;
  }
  .nav-menu {
    display: none;
  }
  .nav-menu.active {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 80vw;
    max-width: 320px;
    height: 500px;
    background: var(--primary);
    z-index: 150;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    padding: 5rem 1.5rem 2rem;
    align-items: flex-start;
    transition: right 0.3s ease;
  }
}

.responsive-iframe {
  width: 100%;
  max-width: 100vw;
  overflow-x: auto;
}
.responsive-iframe iframe {
  width: 100% !important;
  min-width: 0;
  max-width: 100vw !important;
  display: block;
}
