* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
}
/* Top Bar */
.topbar {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: #fff;
  padding: 0.6rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}

.call-now {
  background: #ff4081;
  color: white;
  border: none;
  padding: 0.45rem 0.9rem;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: background 0.3s;
}

.call-now:hover {
  background: #f50057;
}

/* Navigation Bar */
.navbar {
  background: #111;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  position: relative;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #00e5ff;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  transition: max-height 0.3s ease;
}

.nav-links a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #00e5ff;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 0.5rem;
  }

  .nav-links.active {
    display: flex;
    animation: slideDown 0.3s ease forwards;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hamburger {
    display: block;
  }
}
.banner {
  background: url('../images/logo/banner.png') center/cover no-repeat;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
}

.banner-content {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  max-width: 900px;
  text-align: center;
  color: white;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.banner-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.banner-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.btn-banner {
  background: #00e5ff;
  color: #000;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-banner:hover {
  background: #00bcd4;
}



.angled-section {
  position: relative;
  overflow: hidden;
  background: #f7f9fc;
  padding: 6rem 2rem 4rem;
  text-align: center;
  color: #333;
}

.angled-bg {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 120%;
  background: linear-gradient(to right, #00bcd4, #0097a7);
  transform: skewY(-5deg);
  z-index: 0;
}

.angled-content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
  color: white;
}

.angled-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.angled-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.angled-btn {
  background: white;
  color: #0097a7;
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.angled-btn:hover {
  background: #e0f7fa;
}

.about-us {
  position: relative;
  background: linear-gradient(to bottom, #fdfdfd, #eefaff);
  padding: 5rem 2rem 4rem;
  text-align: center;
  overflow: hidden;
}

.about-container {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeIn 1.2s ease forwards;
}

.about-container h2 {
  font-size: 2rem;
  color: #0097a7;
  margin-bottom: 1rem;
}

.about-container p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1rem;
}

.about-wave,
.about-wave-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: 0;
}

.about-wave {
  top: 0;
  transform: translateY(-100%);
}

.about-wave-bottom {
  bottom: 0;
  transform: translateY(100%);
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.highlights {
  background: linear-gradient(to bottom, #eefaff, #ffffff);
  padding: 5rem 2rem;
  text-align: center;
}

.highlight-title {
  font-size: 2rem;
  color: #0097a7;
  margin-bottom: 3rem;
}

.highlight-wrapper {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}

.highlight-box {
  flex: 0 0 260px;
  background: white;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}

.highlight-box:hover {
  transform: translateY(-6px);
}

.highlight-box img {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.highlight-box h3 {
  font-size: 1.2rem;
  color: #00bcd4;
  margin-bottom: 0.5rem;
}

.highlight-box p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .highlight-wrapper {
    flex-direction: column;
    align-items: center;
  }
}


.cta-section {
  background: linear-gradient(135deg, #00bcd4, #007c91);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-button {
  background: white;
  color: #007c91;
  padding: 0.8rem 1.5rem;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: background 0.3s, transform 0.3s;
}

.cta-button:hover {
  background: #e0f7fa;
  transform: scale(1.05);
}


.cta-section {
  background: url('../images/logo/banner3.png') center/cover no-repeat;
  position: relative;
  padding: 6rem 2rem;
  text-align: center;
  color: white;
}

.cta-overlay {
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for contrast */
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-content {
  max-width: 700px;
  z-index: 1;
}

.cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-button {
  background: #00e5ff;
  color: #000;
  padding: 0.8rem 1.5rem;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: background 0.3s, transform 0.3s;
}

.cta-button:hover {
  background: #b2f4ff;
  transform: scale(1.05);
}


.testimonials {
  background: linear-gradient(to bottom, #ffffff, #f1faff);
  padding: 5rem 2rem;
  text-align: center;
}

.testimonial-title {
  font-size: 2rem;
  color: #0097a7;
  margin-bottom: 3rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card p {
  font-style: italic;
  color: #444;
  margin-bottom: 1rem;
}

.testimonial-card h4 {
  color: #00bcd4;
  font-weight: bold;
  font-size: 0.95rem;
}


.full-image-section {
  width: 100%;
  height: 400px;
  background: url('../images/logo/banner2.png') center/cover no-repeat;
}


.faq-section {
  background: linear-gradient(to bottom, #eefaff, #ffffff);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  color: #0097a7;
  margin-bottom: 3rem;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
}

.faq-item input {
  display: none;
}

.faq-item label {
  display: block;
  padding: 1.2rem 1.5rem;
  font-weight: bold;
  cursor: pointer;
  color: #007c91;
  position: relative;
  background: #f9fdff;
}

.faq-item label::after {
  content: "➕";
  font-size: 1.2rem;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
}

.faq-item input:checked + label::after {
  content: "➖";
  transform: translateY(-50%) rotate(180deg);
}

.faq-content {
  max-height: 0;
  padding: 0 1.5rem;
  overflow: hidden;
  background: #ffffff;
  color: #444;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item input:checked ~ .faq-content {
  max-height: 200px;
  padding: 1rem 1.5rem 1.5rem;
}

.disclaimer {
  background: #f1f1f1;
  color: #555;
  font-size: 0.85rem;
  padding: 1.5rem 2rem;
  text-align: center;
  border-top: 1px solid #ddd;
}


.site-footer {
  background: #111;
  color: #ccc;
  padding: 3rem 2rem 2rem;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.site-footer h3,
.site-footer h4 {
  color: #00bcd4;
  margin-bottom: 1rem;
}

.footer-about {
  flex: 1 1 250px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #00bcd4;
}

.footer-contact p {
  margin: 0.3rem 0;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;

}


.call-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ff4081;
  color: white;
  padding: 0.8rem 1.2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: background 0.3s ease, transform 0.3s ease;
}

.call-fixed:hover {
  background: #0097a7;
  transform: scale(1.05);
}


.contact-section {
  background: linear-gradient(to right, #eefaff, #ffffff);
  padding: 5rem 2rem;
  text-align: center;
}

.contact-title {
  font-size: 2rem;
  color: #0097a7;
  margin-bottom: 2rem;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form button {
  background: #00bcd4;
  color: white;
  padding: 0.8rem;
  border: none;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #0097a7;
}

.contact-info {
  flex: 1 1 300px;
  text-align: left;
  color: #444;
}

.contact-info h3 {
  color: #00bcd4;
  margin-bottom: 1rem;
}
