/* General Styles */
body {
  font-family: "League Spartan", serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

h1, h2, h3 {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #007bff, #00bfff);
  color: #fff;
  border-radius: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 123, 255, 0.2);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 123, 255, 0.3);
}

/* Header */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header::after {
  content: "";
  display: table;
  clear: both;
}

header h1 {
  float: left;
  font-size: 24px;
  font-weight: 700;
  color: #007bff;
}

header nav {
  float: right;
}

header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

header nav ul li {
  display: inline;
  margin-left: 20px;
}

header nav ul li a {
  font-weight: 500;
  color: #333;
  transition: color 0.3s ease;
}

header nav ul li a:hover {
  color: #007bff;
}

#background-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -10;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.22);
  z-index: -1;
}


.logo-container {
  position: absolute;
  top: 20px;
  left: 0;
}

/* Services Section */
.services {
  padding: 80px 0;
  text-align: center;
  background: #fff;
}

.services h2, .step-card h2 {
  margin-bottom: 40px;
  font-size: 2em;
  font-weight: 700;
  color: #007bff;
}

.service-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.service-item, .step-card {
  flex: 1 1 30%;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-item h3 {
  margin-bottom: 15px;
  font-size: 1.5em;
  font-weight: 600;
  color: #007bff;
}

.service-item p, .step-card p {
  font-size: 1em;
  color: #666;
}

/* About Section */
.about {
  padding: 40px 0;
  text-align: center;
  background: white;
}

.about h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 700;
}

.about p {
  font-size: 1.5rem;
  color: #313131;
  max-width: 80vw;
  margin: 0 auto;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  text-align: center;
}

.contact h2 {
  margin-bottom: 40px;
  font-size: 2em;
  font-weight: 700;
  color: #007bff;
}

/* Footer */
footer {
  color: #fff;
  background: #fff;
  color: #000;
  text-align: center;
  padding: 0.5rem 0;
}

footer p {
  margin: 0;
  font-size: 0.5em;
}

/* Steps Section */
.steps {
  padding: 50px 0;
  background-color: white;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.step-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  flex: 1;
  text-align: center;
}

.step-card h3 {
  color: #007bff;
  margin-top: 0;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  width: 4.5rem;
  height: 7rem;  /* Taller to accommodate both sections */
  bottom: 1.5em;
  right: 20px;
  background: #25d366;
  border: 0.5px solid #000;
  color: #fff;
  border-radius: 10px;  /* Square with slightly rounded corners */
  z-index: 1000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.whatsapp-float a {
  text-decoration: none;
  color: inherit;
  display: flex;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.price-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 5px;
}

.price-number {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
}

.price-unit {
  font-size: 0.8rem;
  line-height: 1;
}

.icon-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-section img {
  width: 80%;
  height: 80%;
  border-radius: 50%;
  object-fit: cover;
}

/* Address */
.address {
  font-size: 1.6rem;
  font-weight: 700;
}

/* Flowchart */
.flowchart {
  text-align: center;
  padding: 4rem 0;
}

.flowchart-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
}

.bubble {
  display: flex;
  flex-direction: column;
  height: 380px;
  width: 15vw;
  margin: 10px;
  border: 5px solid #fff;
  border-radius: 10px;
  background-color: #FF7F50;
  overflow: hidden;
  padding-top: 20px;
  text-wrap: stable;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.3);
}

.bubble-image {
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding-bottom: 10px;
}

.bubble-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.bubble-title {
  height: 10%;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bubble-text {
  height: 30%;
  padding: 0px 10px 10px 10px;
  overflow: hidden; /* Changed from overflow-y: auto to overflow: hidden */
  font-size: 1em;
  text-align: center;
}

.bubble-text p {
  color: #000;
  font-weight: 300;
  font-size: 1.4rem;
}

.bubble-title h3 {
  color: #000;
  font-weight: 500;
  font-size: 2rem;
}

.flowchart-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.book-with-us {
  padding: 50px 0;
  text-align: center;
}

.book-with-us h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.book-with-us p {
  font-size: 1.5em;
  margin-bottom: 30px;
}

@media only screen and (max-width: 640px) {
  .flowchart-container {
    flex-direction: column;
    gap: 1rem;
  }

  .bubble {
    width: 80vw;
    height: 100vw;
    padding-top: 1rem;
  }

  .about h2 {
    font-size: 1.8rem;
  }

  .about p {
    font-size: 1.2rem;
  }
}
