/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(
    120deg,
    #0e6eb8,
    #66c3ff
  ); /* Medium to Light Blue */

  padding: 15px 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2000; /* Ensures the header stays on top */
  height: 65px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Flag */
.flag img {
  width: 50px;
  height: auto;
}

/* Logo */
.logo img {
  width: 130px;
  height: auto;
}

/* Menu Icon */
.menu-icon {
  font-size: 28px;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.menu-icon:hover {
  color: #f0f0f0;
}

/* Navigation */
nav {
  position: fixed;
  top: 65px;
  right: -100%;
  width: 220px;
  background: #044f85;
  border-left: 3px solid #f7f7f7;

  height: 100vh;
  transition: 0.3s;
  box-shadow: -4px 0px 6px rgba(4, 79, 133, 0.2);

  z-index: 1500; /* Ensure nav is above the hero section */
}

nav.active {
  right: 0;
}

nav ul {
  list-style: none;
  padding: 20px;
}

nav ul li {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

nav ul li:last-child {
  border-bottom: none;
}

nav ul li a {
  text-decoration: none;
  color: #f7f7f7;
  font-size: 18px;
  font-weight: bold;
  display: block;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #0056b3;
}

/* Hero Section */
/* Hero Section */
/* Hero Section with Modern Background */

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(
    120deg,
    #044f85,
    #00b4d8
  ); /* Dark to Light Blue */
  padding: 100px 60px;
  height: auto;
  position: relative;
  margin-top: 80px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  color: white;
}

/* Abstract Floating Glow Effect */
.hero::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  top: 20%;
  left: -60px;
  filter: blur(120px);
}

/* Hero Content */
.hero-content {
  flex: 1;
  max-width: 550px;
  padding: 20px;
  position: relative;
  z-index: 2;
}

/* Hero Text */
.hero-text {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
}

/* Call-to-Action Button */
.hero-button {
  background: #ffffff;
  color: #044f85;
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.hero-button:hover {
  background: #00b4d8;
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4);
}

/* Hero Image Container with White Background */
.hero-image {
  flex: 1;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

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

/* Soft Glow Behind Image */
.hero-image::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(rgba(255, 255, 255, 0.2), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  filter: blur(50px);
}

/* Responsive Design */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 30px;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .hero-button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
  }

  .hero-image {
    max-width: 90%;
  }
}

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Alignment Issues Section */
/* Alignment Issues Section */
/* Alignment Issues Section */
.alignment-issues {
  background-color: #f8f9fa;
  padding: 60px 30px;
  margin-top: 80px;
  text-align: center;
}

.alignment-text {
  font-size: 30px;
  font-weight: 600;
  color: #333;
  margin-bottom: 40px;
}

/* Card Container */
.card-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 images in a row */
  gap: 20px;
  justify-items: center;
}

/* Card */
.card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
  max-width: 280px;
  text-align: center;
  padding: 20px;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.card-description {
  font-size: 18px;
  color: #333;
  font-weight: 500;
  margin-top: 10px;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
  .alignment-text {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .card-container {
    grid-template-columns: repeat(
      2,
      1fr
    ); /* 2 images in a row on smaller screens */
  }

  .card img {
    height: 180px;
  }

  .card-description {
    font-size: 16px;
  }
}

/* Comparison Section */
.comparison-section {
  background-color: #f8f9fa;
  padding: 60px 30px;
  text-align: center;
  margin-top: 80px;
}

.comparison-section h2 {
  font-size: 30px;
  font-weight: 600;
  color: #333;
  margin-bottom: 40px;
}

/* Comparison List */
/* Comparison Section */
.comparison-section {
  background-color: #f8f9fa;
  padding: 60px 30px;
  text-align: center;
  margin-top: 80px;
}

.comparison-section h2 {
  font-size: 30px;
  font-weight: 600;
  color: #333;
  margin-bottom: 40px;
}

/* Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  max-width: 900px;
}

.comparison-table th,
.comparison-table td {
  padding: 15px;
  text-align: center;
  border: 1px solid #ddd;
}

.comparison-table th {
  background-color: #007bff;
  background: linear-gradient(
    120deg,
    #0e6eb8,
    #66c3ff
  ); /* Medium to Light Blue */
  color: white;
  font-size: 20px;
}

.comparison-table td {
  font-size: 18px;
  color: #333;
}

.true-sign,
.false-sign {
  font-size: 24px;
  margin: 0;
}

.true-sign {
  color: #28a745; /* Green color for true */
}

.false-sign {
  color: #dc3545; /* Red color for false */
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
  .comparison-section h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .comparison-table th,
  .comparison-table td {
    font-size: 16px;
    padding: 10px;
  }
}

/* Pricing Section */
.pricing-section {
  padding: 60px 30px;
  background-color: #f8f9fa;
  text-align: center;
}

.pricing-section h2 {
  font-size: 30px;
  font-weight: 600;
  color: #333;
  margin-bottom: 40px;
}

/* Pricing Cards */
.pricing-cards {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 40px;
}

.pricing-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 30%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.pricing-card h3 {
  font-size: 24px;
  font-weight: bold;
  color: #007bff;
  margin-bottom: 15px;
}

.price {
  font-size: 28px;
  font-weight: bold;
  color: #007bff;
  margin-bottom: 15px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.pricing-card ul li {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

.cta-btn {
  background-color: #007bff;
  color: white;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  display: inline-block;
  text-align: center;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #0056b3;
}

/* Highlight Popular Plan */
.pricing-card.popular {
  border: 2px solid #007bff;
  transform: scale(1.05);
}

.pricing-card.popular h3 {
  color: #007bff;
}

.pricing-card.popular .price {
  color: #28a745; /* Green for popular plan */
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 80%;
    margin-bottom: 30px;
  }
}

/* Before and After Section */
.before-after {
  padding: 60px 30px;
  text-align: center;
  background-color: #f8f9fa;
}

.before-after .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
}

.before-after-images {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.image-card {
  position: relative;
  flex: 1;
  max-width: 30%;
  box-sizing: border-box;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.image-card img {
  width: 100%;
  height: auto;
  display: block;
}

.image-card p {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 5px 10px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .before-after-images {
    flex-direction: column;
    align-items: center;
  }

  .image-card {
    max-width: 80%;
    margin-bottom: 20px;
  }
}

/* Footer */

/* Footer */
.footer {
  background: linear-gradient(
    120deg,
    #0e6eb8,
    #66c3ff
  ); /* Medium to Light Blue */
  color: white;
  padding: 30px 20px;
  text-align: center;
  position: relative;
}

.footer-content {
  margin-bottom: 20px;
}

.footer p {
  font-size: 16px;
  margin-bottom: 15px;
}

.consultation-btn {
  background: linear-gradient(
    120deg,
    #044f85,
    #00b4d8
  ); /* Dark to Light Blue */
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 30px;
  font-size: 18px;
  transition: background 0.3s ease-in-out;
  border: none;
  display: inline-block;
  text-align: center;
}

.consultation-btn:hover {
  background: linear-gradient(
    120deg,
    #00b4d8,
    #044f85
  ); /* Reverse Gradient on Hover */
}

.consultation-btn:hover {
  background-color: #218838;
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  font-size: 24px; /* Adjusted size to fit the icon */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s;
}

.whatsapp-btn:hover {
  background-color: #128c7e;
}

.whatsapp-btn i {
  font-size: 28px; /* Adjusted size of the WhatsApp icon */
}

@media (max-width: 768px) {
  .footer p {
    font-size: 14px;
  }

  .consultation-btn {
    font-size: 16px;
    padding: 10px 20px;
  }
}

/* Appointment Form Container */
.appointment-form {
  max-width: 500px;
  margin: 40px auto;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Form Title */
.appointment-form h1 {
  font-size: 22px;
  color: #044f85;
  margin-bottom: 15px;
}

/* Input Fields */
.form-control,
.custom-select {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 2px solid #00b4d8;
  border-radius: 8px;
  font-size: 16px;
  text-align: right;
  background: #f8f9fa;
  color: #333;
  outline: none;
  transition: all 0.3s ease-in-out;
}

.form-control:focus,
.custom-select:focus {
  border-color: #044f85;

  background: linear-gradient(120deg, #044f85, #00b4d8);
}

/* Submit Button */
#submit {
  width: 100%;
  background: linear-gradient(120deg, #044f85, #00b4d8);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

#submit:hover {
  background: linear-gradient(120deg, #00b4d8, #044f85);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .appointment-form {
    max-width: 90%;
    padding: 20px;
  }

  .form-control,
  .custom-select {
    font-size: 14px;
    padding: 10px;
  }

  #submit {
    font-size: 16px;
    padding: 10px;
  }
}

html {
  scroll-behavior: smooth;
}

.image-container87 {
  display: flex;
  gap: 10px; /* Space between images */
}

.image-container87 img {
  width: 100%; /* Ensure each image scales properly */
  max-width: calc(33.33% - 10px); /* Divide container into 3 equal parts */
  height: auto; /* Maintain aspect ratio */
  object-fit: cover; /* Ensure images fill their allocated space */
  border-radius: 5px; /* Optional: Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Shadow for a modern look */
  transition: transform 0.3s ease-in-out; /* Smooth transition for zoom effect */
}

/* Zoom effect on hover */
.image-container87 img:hover {
  transform: scale(1.1); /* Increase size by 10% */
}
