/* :root {
  --primary-color: #f47c2c;
  --secondary-color: #00b3b3;
  --accent-color: #009688;
  --bg-light: #f9f9f9;
  --text-dark: #333;
  --white: #fff;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
} */
:root {
  --primary-color: #f47c2c;
  --secondary-color: #00b3b3;
  --accent-color: #009688;
  --bg-light: #f9f9f9;
  --bg-gradient: linear-gradient(135deg, #f0f4f8 0%, var(--bg-light) 100%);
  --text-dark: #333;
  --text-light: #555;
  --white: #fff;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f0f4f8;
  color: #333;
  overflow-x: hidden;
}

header {
  position: sticky;
  top: 0;
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: var(--transition);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logochp{
  height: 60px;
  width: auto;
  margin: -8px 0px;
}

nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

nav a {
  text-decoration: none;
  color: var(--accent-color);
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  padding: 5px 0;
}

nav a:not(.btn):after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

nav a:hover:not(.btn) {
  color: var(--primary-color);
}

nav a:hover:not(.btn):after {
  width: 100%;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background-color: var(--accent-color);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: var(--transition);
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
}

.btn:hover {
  background-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

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

.btn-outline:hover {
  background: var(--accent-color);
  color: white;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  z-index: -1;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 2rem;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #f47c2c;
  animation: fadeInDown 1s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-family: "Poppins", sans-serif;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  animation: fadeIn 1.5s ease;
  color: black;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 1s ease;
}
/* overview section css */

/* Overview Section */
#AboutUs {
  background: var(--bg-gradient);
  padding: 20px 20px;
  
}

/* Container */
.overview-container {
  max-width: 80vw;
  margin: 0 auto;
  text-align: center;
  animation: fadeIn 1.2s ease-in;
}

/* Heading */
.overview-title {
  font-size: 2.5rem;
  color: var(--text-dark);
}

/* Intro text */
.overview-description {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.6;
  margin-top: -25px;
  letter-spacing: 1px;
  word-spacing: 3px;
  font-weight: 600;
  text-align: center;
  padding: 30px;
  font-family: "Poppins";
  position: relative;
  max-width: 1200px;
}

.overview-description::before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 60px;
  color: #ccc;
  font-family: serif;
  line-height: 1;
}

.overview-description::after {
  content: "”";
  position: absolute;
  bottom: 10px;
  right: 50px;
  font-size: 60px;
  color: #ccc;
  font-family: serif;
  line-height: 1;
}

/* Features */
.overview-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: left;
  padding: 0px 50px;
}

.feature {
  font-size: 1rem;
  color: var(--text-light);
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
  transition: var(--transition);
}

.feature i {
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--accent-color);
  font-size: 1.2rem;
}

/* Strong highlight */
.feature strong {
  color: var(--secondary-color);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 5px;
}

/* Bottom Callout */
.overview-conclusion {
  margin-top: 40px;
  font-family: "Courier New", Courier, monospace;
  color: rgb(59, 59, 59);
  font-weight: 800;
}

/* Animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 850px) {
  .overview-title {
    font-size: 2rem;
  }
  .overview-container {
    max-width: 95vw;
  }

  .feature {
    font-size: 1rem;
  }
  .overview-description::before {
    top: 10px;
    left: 10px;
    font-size: 60px;
  }

  .overview-description::after {
    bottom: 8px;
    right: 150px;
    font-size: 60px;
  }

  .overview-conclusion {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  #AboutUs{
    margin-top: -70px;
  }
  .quote-icon {
    font-size: 40px;
  }

  .overview-title {
    font-size: 1.6rem;
  }
  .overview-container {
    max-width: 95vw;
  }

  .overview-description {
    font-size: 0.95rem;
  }
  .overview-description::before {
    top: 10px;
    left: 10px;
    font-size: 60px;
  }

  .overview-description::after {
    bottom: 6px;
    right: 10px;
    font-size: 60px;
  }
  .overview-features {
    padding: 0px 15px;
  }
  .overview-conclusion {
    font-size: 1.2rem;
  }
}

/* overview section css end  */

/* Clinic Management Solution css  */
.custom-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 1rem;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.custom-feature-box {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

.custom-feature-box:hover {
  transform: translateY(-5px);
}

.custom-feature-header {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--accent-color)
  );
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-feature-header i {
  color: var(--white);
  font-size: 2rem;
}

.custom-feature-body {
  padding: 1rem;
  text-align: center;
}

.custom-feature-body h3 {
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.custom-feature-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .custom-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .custom-feature-grid {
    grid-template-columns: 1fr;
  }

  .custom-feature-header {
    padding: 1.5rem;
  }

  .custom-feature-body {
    padding: 1rem;
  }
}
/* Clinic Management Solution css  end */

.section {
  padding: 1.5rem 2rem;
  position: relative;
}
@media (max-width: 780px) {
  .section {
    padding: 1rem 1rem;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--accent-color);
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-title h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto 1rem;
  text-align: center;
  font-size: 1.1rem;
  color: #555;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center items including last row */
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px;
}
.feature-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 150px;
  width: 200px;
  display: flex;
  flex-direction: column;
  padding: 15px;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--accent-color);
  font-size: 2.5rem;
}

.feature-content {
  padding: 1rem;
  flex-grow: 1;
}

.feature-content h3 {
  text-align: center;
  color: rgb(99, 99, 99);
}

.feature-content p {
  color: #555;
  margin-bottom: 1.5rem;
}

.feature-hover {
  padding: 1rem 2rem;
  background: #f8f8f8;
  color: var(--primary-color);
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
}

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

@media (min-width: 320px) and (max-width: 650px) {
  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
    gap: 20px;
    justify-items: center; /* Center cards in each cell */
    padding: 10px;
  }

  .feature-card {
    width: 100%;
    max-width: 180px;
    height: 150px;
    padding: 5px;
  }

  .feature-content {
    padding: 10px;
  }
}

.testimonials {
  background: linear-gradient(
      rgba(240, 244, 248, 0.9),
      rgba(240, 244, 248, 0.9)
    ),
    url("https://images.unsplash.com/photo-1579684385127-1ef15d508118?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  padding: 2rem 1rem 3rem 1rem;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: white;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 1.5rem 2rem 0.5rem 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  text-align: left;
}

.testimonial-info {
  flex: 0 0 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--accent-color);
  margin-bottom: 1rem;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author {
  font-weight: 700;
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.testimonial-position {
  color: #777;
  font-size: 0.9rem;
}

.testimonial-quote-wrapper {
  flex: 1;
}

.testimonial-quote {
  font-size: 1.2rem;
  font-style: italic;
  color: #555;
  line-height: 1.8;
}

.slider-nav {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 0.5rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 10px;
}

.slider-dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

.slider-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  transform: translateY(-50%);
}

.slider-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.2rem;
}

.slider-arrow:hover {
  background: var(--primary-color);
  transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .testimonial-slide {
    flex-direction: column;
    text-align: center;
    padding: 10px;
  }

  .testimonial-quote-wrapper {
    text-align: center;
    margin-top: -80px;
  }
  .slider-dot {
    margin-top: -25px;
  }
}

.contact {
  background: white;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.contact-info {
  padding: 2rem;
}

.contact-info h3 {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-text a {
  color: #555;
  text-decoration: none;
}

.contact-text strong {
  color: #333;
}

.contact-form {
  background: #f8f9fa;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #555;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(0, 179, 179, 0.2);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}
/* add css for compress this contact form */
.form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-row .form-group {
  flex: 1;
  min-width: 240px; /* Keeps fields readable on smaller screens */
}

/* Optional: For very small screens, make sure it stacks */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
    gap: 0px;
  }
}

.map-container {
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 2rem;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

footer {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--secondary-color)
  );
  color: white;
  padding: 1rem 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer-col h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
}

.footer-col p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.9;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  opacity: 1;
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  transition: var(--transition);
  font-size: 1.2rem;
  text-decoration: none;
}

.social-links a:hover {
  background: white;
  color: var(--accent-color);
  transform: translateY(-5px);
}

.copyright {
  text-align: center;
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.8;
}

.copyright p {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.9rem;
  gap: 0.4rem; /* Ensures spacing on smaller screens */
}

.copyright p a {
  text-decoration: none;
  color: inherit;
}

/* Circle box with logo inside */
.logo-circle {
  background-color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}

.logo-circle:hover {
  transform: scale(1.05);
}

.logo-img {
  width: 16px;
  height: 17px;
  display: block;
  margin: 0;
}

/* Responsive adjustments for small devices */
@media (max-width: 480px) {
  .copyright p {
    font-size: 1rem;
    gap: 0.3rem;
  }

  .logo-circle {
    width: 26px;
    height: 26px;
  }

  .logo-img {
    width: 14px;
    height: 15px;
  }
}



/* footer css start */
/* Adjust column layout if now only 3 cols */
@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

/* footer css end */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  font-size: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128c7e;
  animation: none;
}

.faq-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.category-btn {
  background: white;
  border: 2px solid #e0f0f3;
  color: #007a87;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 107, 119, 0.08);
}

.category-btn.active,
.category-btn:hover {
  background: linear-gradient(90deg, #00b3b3, #007a87);
  color: white;
  border-color: #00b3b3;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 179, 179, 0.3);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.faq-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 107, 119, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e6f7ff;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 179, 179, 0.2);
}

.faq-item.active {
  border-left: 5px solid #00b3b3;
}

.faq-question {
  padding: 25px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #005a66;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #008299;
}

.faq-question i {
  transition: transform 0.3s ease;
  color: #00b3b3;
  font-size: 1.2rem;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  color: #4a6f7a;
  line-height: 1.7;
  background: #f9fdfe;
}

.faq-item.active .faq-answer {
  padding: 0 25px 25px;
  max-height: 500px;
}

.faq-answer p {
  margin-bottom: 15px;
}

.faq-answer ul {
  padding-left: 20px;
  margin: 15px 0;
}

.faq-answer ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}

.faq-contact {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 107, 119, 0.1);
  max-width: 700px;
  margin: 50px auto 0;
}

.faq-contact h3 {
  color: #007a87;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.faq-contact p {
  color: #4a6f7a;
  margin-bottom: 25px;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.slider-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  transform: translateY(-50%);
  z-index: 10;
  opacity: 0.6;
}

.slider-arrow {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 10px;
  border-radius: 50%;
  color: white;
  transition: background-color 0.3s ease;
}

.contact-btn {
  display: inline-block;
  background: linear-gradient(90deg, #00b3b3, #007a87);
  color: white;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 179, 179, 0.3);
}

.contact-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 179, 179, 0.4);
}

.faq-decoration {
  position: absolute;
  z-index: 0;
  opacity: 0.1;
}

.decoration-1 {
  top: 50px;
  left: 5%;
  font-size: 8rem;
  color: #00b3b3;
  transform: rotate(-15deg);
}

.decoration-2 {
  bottom: 100px;
  right: 5%;
  font-size: 8rem;
  color: #007a87;
  transform: rotate(15deg);
}

.feature-hover {
  color: orange;
  cursor: pointer;
  position: relative;
  display: inline-block;
}

.tooltip-text {
  visibility: hidden;
  width: 220px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px;
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.feature-hover:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.feature-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--light);
  color: var(--primary);
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border-top: 1px solid var(--light-gray);
}

.feature-btn:hover {
  background: var(--primary);
  color: white;
}

.feature-btn i {
  margin-right: 8px;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.popup-overlay.active {
  display: flex;
  opacity: 1;
}

.popup-content {
  background: white;
  border-radius: 12px;
  width: 70%;
  max-width: 600px;
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.popup-overlay.active .popup-content {
  transform: scale(1);
}

.popup-header {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 16px;
  height: 50px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  position: relative;
  color: white;
}

.popup-header i {
  font-size: 2rem;
  margin-bottom: 2px;
}

.popup-header h2 {
  font-size: 1.5rem;
  margin: 5px;
  padding: 0;
  width: 100%;
}

.close-btn {
  position: absolute;
  top: 5px;
  right: 15px;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.2s ease;
  padding: 5px;
  margin: 0;
}

.popup-body {
  padding: 25px;
  color: var(--text-dark);
  line-height: 1.6;
}

.popup-body p {
  margin-bottom: 20px;
  text-align: left;
  padding: 0 10px;
}

.features-list {
  padding-left: 30px;
  margin: 0;
}

.features-list li {
  position: relative;
  margin-bottom: 10px;
  list-style-type: none;
  padding-left: 30px;
  text-align: left;
}

.features-list li i {
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--primary-color);
  background: var(--bg-light);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
}

.popup-footer {
  padding: 15px 25px;
  background: var(--light);
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid var(--light-gray);
}

/* .popup-btn {
            padding: 10px 20px;
            background: var(--accent-color);
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: var(--transition);
        }

        .popup-btn:hover {
            background: var(--secondary-color);
       } */

.popup-icon {
  color: white;
  font-size: 20px;
  z-index: 1;
  top: 10px;
}

.popup-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  white-space: nowrap;
  z-index: 0;
}

.popup-close {
  font-size: 20px;
  color: white;
  cursor: pointer;
}

.popup-close i {
  vertical-align: middle;
}

@media (max-width: 768px) {
  .popup-content {
    width: 90%;
    max-width: 100%;
  }

  .popup-header {
    padding: 12px 20px;
    height: 55px;
  }

  .popup-body {
    padding: 20px;
  }

  .features-list {
    padding-left: 25px;
  }

  .popup-header h2 {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .faq-question {
    padding: 18px 20px;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }

  .faq-contact {
    padding: 25px 20px;
  }
}

@media (max-width: 576px) {
  .faq-categories {
    gap: 8px;
  }

  .category-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
  }

  .faq-question {
    padding: 16px 18px;
  }

  .contact-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }

  .section {
    padding: 2rem 1.5rem;
  }
}
/* for navbar section */
/* Hamburger button ------------------------------------------------------------------------------------*/
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--accent-color);
  border-radius: 2px;
  transition: var(--transition);
}

@media (min-width: 320px) and (max-width: 850px) {
  header {
    flex-direction: column;
    align-items: stretch;
  }

  .logo-container {
    display: flex;
    gap: 5px;
    justify-content: space-between; /* This aligns logo left, hamburger right */
    align-items: center;
    width: 100%;
  }
  .hamburger {
    display: flex;
  }

  nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 1rem;
    margin-top: 1rem;
  }

  nav.open {
    display: flex;
  }

  nav a {
    width: 100%;
    padding: 0.6rem 0;
    font-size: 1rem;
    border-bottom: 1px solid #eee;
  }

  nav a.btn {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    background-color: var(--primary-color);
    color: var(--white);
  }

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

  nav a.btn.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
  }
}
/* --------------------------------------------------------------------------------- */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 1rem;
  }

  nav {
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .section-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero {
    margin-top: -70px;
    min-height: 600px;
  }

  .hero-content {
    padding: 1rem;
  }

  .testimonial-slide {
    padding: 2rem 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
