* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Ancizar Serif", serif;
  background-color: #fff;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  overflow-x: hidden;
}


/* Section1 Styling */
.section1 {
  background-image: url('img/bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.5); /* darkened slightly for better text readability */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  padding: 40px;
  border-radius: 10px;
  max-width: 900px;
  width: 100%;
  text-align: center;
  color: white;
  box-sizing: border-box;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 10px;
  text-align: center;
  line-height: 1.5;
}

#slogan {
  font-size: 24px;
  margin: 20px 0;
  text-align: center;
  line-height: 1.6;
}

.highlight {
  background-color: #007c7c;
  padding: 4px 10px;
  font-weight: bold;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.hero-content h1 {
  font-size: 50px;
  margin: 20px 0;
  text-align: center;
  color: #fff;
  line-height: 1.2;
}

.btn-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.pickup-btn {
  background-color: #29a8f0;
  color: #fff;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  font-size: 16px;
  transition: background 0.3s ease;
}

.pickup-btn:hover {
  background-color: #007c7c;
}

/* Tablet (iPads) */
@media (max-width: 992px) {
  .hero-content {
    padding: 30px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 18px;
  }

  #slogan {
    font-size: 20px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .hero-content {
    padding: 20px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p,
  #slogan {
    font-size: 16px;
  }

  .pickup-btn {
    padding: 12px 20px;
    font-size: 15px;
  }
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(80px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-left {
  animation: slideInLeft 1s ease-out both;
  animation-delay: 0.4s;
}

.slide-right {
  animation: slideInRight 1s ease-out both;
  animation-delay: 0.6s;
}

.slide-up {
  animation: slideUp 1s ease-out both;
  animation-delay: 0.8s;
}





/* Section 2 */
.section2 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 88vh;
  padding: 0 10%;
  box-sizing: border-box;
  background-color: #f7fafa;
  gap: 40px;
  overflow: hidden;
}

.section2-img {
  animation: slideInFromLeft 1s ease forwards;
  flex-shrink: 0;
}

.section2-img img {
  width: 500px;
  max-width: 100%;
  border-radius: 50%;
  display: block;
}

.section2-content {
  max-width: 600px;
  margin-left: 0;
  animation: slideInFromRight 1s ease forwards;
}

.section2-tag {
  background-color: #045d5d;
  color: white;
  padding: 4px 12px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 10px;
}

.section2-heading {
  font-size: 36px;
  font-weight: 800;
  color: #092c3e;
  line-height: 1.3;
  margin: 0 0 12px 0;
}

.section2-text {
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 30px;
  color: #444;
  line-height: 1.5;
}

.section2-features {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 0;
  margin-bottom: 40px;
}

.section2-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 250px;
}

.section2-feature i,
.feature-icon {
  font-size: 28px;
  color: #007c7c;
  line-height: 1;
}

.feature-content {
  font-size: 14px;
  color: #444;
}

.feature-title {
  font-weight: 700;
  color: #092c3e;
  margin-bottom: 4px;
}

.cta-section {
  padding: 25px 0 0 0;
  text-align: left;
}

.cta-section h3 {
  color: #092c3e;
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 600;
}

.cta-button {
  background-color: #045d5d;
  color: white;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  background-color: #023a3a;
}


@media (max-width: 1024px) {
  .section2 {
    padding: 40px 8%;
    height: auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .section2-img {
    flex: 1 1 300px;
    max-width: 300px;
    animation: slideInFromLeft 1s ease forwards;
  }

  .section2-content {
    flex: 1 1 320px;
    max-width: 100%;
    animation: slideInFromRight 1s ease forwards;
    margin-left: 0;
    text-align: center;
  }

  .section2-heading {
    font-size: 28px;
  }

  .section2-features {
    justify-content: center;
  }

  .section2-feature {
    max-width: 100%;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .section2-feature i {
    font-size: 36px;
  }

  .feature-content {
    font-size: 15px;
  }

  .feature-title {
    margin-bottom: 6px;
  }

  .cta-section {
    text-align: center;
    padding-top: 20px;
  }
}

@media (max-width: 600px) {
  .section2 {
    padding: 20px 5%;
    height: auto;
    flex-direction: column;
  }

  .section2-img {
    max-width: 250px;
    margin-bottom: 20px;
  }

  .section2-heading {
    font-size: 24px;
  }

  .section2-text {
    font-size: 14px;
  }

  .section2-feature i {
    font-size: 28px;
  }

  .feature-content {
    font-size: 13px;
  }

  .cta-section h3 {
    font-size: 18px;
  }

  .cta-button {
    padding: 10px 18px;
    font-size: 16px;
  }
}




/* Section 3 */
.section3 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: linear-gradient(to top, #b3e6e9 30%, white 70%);
  padding: 80px 20px;
}

.section3 .container {
  background: rgba(255, 255, 255, 0.85);
  padding: 60px 40px;
  border-radius: 20px;
  width: 100%;
  max-width: 1200px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6px);
}

.section3 .tagline {
  color: #007c7c;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section3 .title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  color: #222;
  margin-bottom: 50px;
  line-height: 1.3;
}

.section3 .services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
}

/* Tablet - 2 columns */
@media (max-width: 992px) {
  .section3 .services {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile - 1 column */
@media (max-width: 576px) {
  .section3 .services {
    grid-template-columns: repeat(1, 1fr);
  }
}

.section3 .service-box {
  background: linear-gradient(135deg, #f7f7f7, #ffffff);
  border-radius: 15px;
  padding: 20px;
  width: 100%;
  max-width: 320px;
  height: 160px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.31);
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.section3 .service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.section3 .service-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 124, 124, 0.05), transparent 70%);
  transform: rotate(25deg);
}

.section3 .service-box img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-right: 20px;
  flex-shrink: 0;
}

.section3 .service-content h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #045d5d;
  font-weight: 600;
}

.section3 .service-content p {
  margin: 0;
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

/* Service box layout fix for mobile/tablet */
@media (max-width: 768px) {
  .section3 .title {
    font-size: 28px;
  }

  .section3 .service-box {
    height: auto;
    flex-direction: column;
    text-align: center;
  }

  .section3 .service-box img {
    margin-right: 0;
    margin-bottom: 10px;
  }
}




/* Section 4  */
.section4 {
  background: linear-gradient(to bottom, #FDB5BE 30%, white 70%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.process-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 1200px;
  padding: 40px;
  gap: 40px;
}

.process-left {
  flex: 1 1 60%;
}

.section-tag {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #007c7c;
}

.section-tag span {
  background-color: #82f95e;
  padding: 2px 8px;
  border-radius: 6px;
  color: #000;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.207);
}

.process-left h2 {
  font-size: 40px;
  margin-bottom: 30px;
  font-weight: bold;
  color: #0d1b2a;
  line-height: 1.2;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.step {
  background: #f9f9f9;
  border-left: 4px solid #00bcd4;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.30);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-8px);
}

.step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #045d5d;
}

.step p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.process-right {
  flex: 1 1 35%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.process-right img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .process-wrapper {
    flex-direction: column;
    padding: 30px 20px;
  }

  .process-right {
    margin-top: 30px;
  }

  .process-left h2 {
    font-size: 32px;
  }
}



/* section 5 */
.section5 {
  background: linear-gradient(to right, #ece8ff 40%, white 60%);
  min-height: 70vh;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section5-header {
  text-align: center;
  margin-bottom: 40px;
}

.section5-header h2 {
  font-size: 32px;
  color: #4b3fe4;
  margin-bottom: 10px;
}

.section5-header p {
  font-size: 16px;
  color: #444;
}

.features-wrapper {
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.feature-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 250px;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 32px;
  color: #4b3fe4;
  margin-top: 5px;
}

.feature-box h3 {
  color: #4b3fe4;
  font-size: 18px;
  margin: 0;
}

.feature-box p {
  margin-top: 5px;
  color: #333;
  font-size: 14px;
  max-width: 280px;
}

.feature-img {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 250px;
}

.feature-img img {
  width: 100%;
  max-width: 500px;
  filter: drop-shadow(0 0 0.2rem rgba(14, 14, 14, 0.3));
  border-radius: 12px;
}

.feature-cta {
  margin-top: 40px;
}

.cta-button {
  background-color: #4b3fe4;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #372fd3;
}

@media (max-width: 1024px) {
  .features-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .feature-col {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .feature-box {
    width: 100%;
    max-width: 400px;
  }

  .feature-img {
    margin: 30px 0;
  }
}

@media (max-width: 600px) {
  .section5 {
    padding: 40px 15px;
  }

  .feature-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .feature-box p {
    max-width: 100%;
  }

  .feature-icon {
    margin-bottom: 10px;
  }
}

/* Whatshap and Contact foliting Button */
.floating-contact-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-button {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-button img {
  width: 24px;
  height: 24px;
}

.contact-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.whatsapp-btn {
  background-color: #25d366;
}

.call-btn {
  background-color: #0a66c2;
}

@media (max-width: 480px) {
  .contact-button {
    width: 60px;
    height: 60px;
  }
}