﻿@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');

:root {
  --primary-color: #37B47E;
  --primary-hover: #188a58;
  --dark-text: #161C27;
  --bodytext-color: #584D34;
  --border-radius: 4px;
  --gradient: linear-gradient(0deg, #FDE2B9 0%, #F7E4BB 20.4%, #E6E9C2 47.66%, #CAF0CE 78.67%, #B3F7D7 100%);
  --light-green-bg: rgba(202, 240, 206, 0.46);
  --light-bg: #FFFBEF;
}

html, body {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Instrument Sans', sans-serif;
  line-height: 1.6;
  color: #333;
}

h2, h3, h4, h5, h6 {
  line-height: 1.3;
  margin-bottom: 15px;
}


.section {
  margin: 0;
  padding: 90px 5px;
  background: var(--light-bg);
}

.container {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1180px;
  display: block;
}

.title {
  margin-bottom: 40px;
  text-align: center;
}

  .title h2 {
    color: var(--dark-text);
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
  }

header {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  z-index: 1;
}

.header-container {
  max-width: 775px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 100px;
  border: 1px solid rgba(0, 175, 141, 0.64);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(4.5px);
}

.logo {
  max-width: 175px;
}

  .logo img {
    width: 100%;
    display: block;
  }

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-no a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
}

.header-cta-button {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: block;
  margin: 0;
  padding: 7px 20px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 120px;
  border: none;
  color: #fff;
  background: var(--primary-color);
  text-align: center;
  transition: all 0.3s ease 0s;
  line-height: 1.4;
}

  .btn:hover {
    background: var(--primary-hover);
  }

  .btn.outline {
    border: 1px solid var(--dark-text);
    color: var(--dark-text);
    background: transparent;
  }

    .btn.outline:hover {
      background: var(--dark-text);
      color: #fff;
    }

.main-hero {
  margin: 0;
  padding: 120px 40px 80px 40px;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--gradient);
  position: relative;
}

  .main-hero:after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    background: url(../Images/leaf-bg.svg) no-repeat top center;
    background-size: 100% auto;
    pointer-events: none;
    z-index: 0;
  }

.banner-title {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

  .banner-title h1 {
    color: var(--dark-text);
    text-align: center;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    margin-bottom: 30px;
  }

  .banner-title p {
    color: var(--bodytext-color);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    margin-bottom: 30px;
  }

  .banner-title a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 30px;
  }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.bento-card {
  background: var(--light-green-bg);
  padding: 30px;
  border-radius: 10px;
  border-top: 1px solid #FFF;
  border-left: 1px solid #FFF;
  min-height: 100px;
}

  .bento-card.large {
    grid-row: span 2;
  }

.how-azoub-works {
  background: #FFF;
}

.column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.column-4 {
  grid-template-columns: repeat(4, 1fr);
}

.column-2 {
  grid-template-columns: repeat(2, 1fr);
}

.column-1 {
  grid-template-columns: repeat(1, 1fr);
}

.column-3 {
  grid-template-columns: repeat(3, 1fr);
}

.column-card {
  padding: 30px;
  border-radius: 10px;
  border-top: 1px solid #FFF;
  border-left: 1px solid #FFF;
  min-height: 100px;
  background: rgba(214, 224, 202, 0.34);
}

.pricing-section {
  background: var(--gradient);
}

.pricing-card {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  justify-content: center;
}

.pricing-option {
  border-radius: 10px;
  border: 1px solid rgba(22, 28, 39, 0.10);
  background: #FFF;
  box-shadow: 0 4px 1px 0 rgba(0, 175, 141, 0.31);
  margin: 0;
  padding: 30px;
  flex: 1;
}

  .pricing-option span {
    margin-bottom: 20px;
    display: block;
  }

  .pricing-option h3 {
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-text);
    display: block;
  }

    .pricing-option h3 small {
      font-size: 16px;
      font-weight: 400;
      color: var(--bodytext-color);
    }

  .pricing-option ul {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 5px;
    margin-bottom: 20px;
  }

    .pricing-option ul li {
      font-size: 16px;
      font-weight: 400;
      color: var(--bodytext-color);
      display: flex;
      align-items: center;
      gap: 10px;
    }

      .pricing-option ul li:before {
        content: "";
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: url(../Images/checkmark-icon.svg) no-repeat center center;
        width: 16px;
        height: 16px;
        flex-shrink: 0;
      }

.testimonial-cardbox {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  justify-content: center;
}

.testimonial-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(22, 28, 39, 0.10);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.02), 0 12px 32px 0 rgba(0, 0, 0, 0.04);
  max-width: 350px;
  padding: 20px;
}

  .testimonial-card small {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    font-weight: 600;
    line-height: 1.2;
  }

    .testimonial-card small img {
      width: 26px;
      height: 26px;
    }

.azonb-card-box {
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.azonb-card {
  background: #fff;
  padding: 24px;
  border-radius: 10px;
  border: 1px solid rgba(108, 168, 148, 0.575);
  background: #FFF;
}

  .azonb-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-text);
  }

  .azonb-card p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bodytext-color);
  }

.hom-img {
  background: #fff;
  border-radius: 15px 15px 0 0;
  border: 3px solid #BFD3C7;
  border-bottom: none;
  display: flex;
  width: 220px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

  .hom-img img {
    width: auto;
    height: 110px;
  }

.azoub-works-cards p {
  margin-bottom: 50px;
}

.azoub-works-cards .column-card {
  min-height: 350px;
  position: relative;
}

.pick-up-cards .bento-card {
  position: relative;
  min-height: 320px;
  position: 24px;
}

  .pick-up-cards .bento-card:not(.large) h3, .pick-up-cards .bento-card:not(.large) p {
    max-width: 50%;
  }

.services-img {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: auto;
}

.pick-up-cards .bento-card.large .services-img {
  right: 50%;
  transform: translateX(50%);
  bottom: 50px;
}

.relative {
  position: relative;
}

.who-we-are-img {
  position: relative;
  bottom: 0px;
  left: 0px;
  width: auto;
  margin-bottom: -100px;
  margin-top: 20px;
}

.cta-section {
  background: url(../Images/cta-bg.png) no-repeat bottom center;
  background-size: cover;
  height: 62vh;
  position: relative;
}

.cta-box {
  margin: 0 auto;
  max-width: 768px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

  .cta-box h2 {
    color: var(--dark-text);
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 30px;
  }

  .cta-box .btn {
    display: inline-flex;
  }

.cta-section::after {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  content: "";
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  background: url(../Images/cta-section-bg-image.png) no-repeat bottom center;
  width: 100%;
  height: 303px;
}

footer {
  padding: 30px 20px;
  margin: 0;
  display: block;
  background: #fff;
}

.social-media {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo a img {
  width: 120px;
  display: block;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.copyright, .footer-menu, .footer-menu a {
  font-size: 12px;
  color: #666F7E;
  text-decoration: none;
}

/*Media query*/


@media screen and (max-width: 1024px) {
  .main-hero {
    max-height: 700px;
  }

  .cta-section {
    max-height: 520px;
  }
}

@media screen and (max-width: 768px) {
  .header-container {
    max-width: 645px;
  }

  .bento-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .pick-up-cards .bento-card {
    min-height: 220px;
  }

  .services-img img {
    height: 160px;
  }

  .pick-up-cards .bento-card.large .services-img {
    right: 30px;
    transform: none;
  }

  .column-grid.column-3.azoub-works-cards {
    grid-template-columns: repeat(1, 1fr);
  }

  .azoub-works-cards .column-card {
    min-height: 350px;
    max-width: 400px;
    margin: 0 auto;
  }

  .who-we-are-img {
    display: none;
  }

  .who-we-are .column-grid.column-2.relative {
    grid-template-columns: repeat(1, 1fr);
  }

  .title {
    margin-bottom: 20px;
  }

  .section {
    padding: 60px 20px;
  }

  .pricing-card {
    flex-direction: column;
  }

  .pricing-option {
    width: 100%;
    margin: 0 auto;
    max-width: 400px;
  }

  .cta-section::after {
    bottom: 50px;
    width: 80%;
    height: 303px;
    background-size: 100% auto;
  }

  .cta-section {
    max-height: 440px;
  }

  .footer-box {
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }
}

@media screen and (max-width: 650px) {
  h2, h3, h4, h5, h6 {
    margin-bottom: 10px;
  }

  .section {
    padding: 40px 10px;
  }

  .logo {
    max-width: 100px;
  }

  .phone-no a {
    font-size: 14px;
  }

    .phone-no a img {
      width: 14px;
    }

  .header-cta-button a.btn {
    padding: 4px 10px;
    font-size: 14px;
  }

  .header-container {
    max-width: 100%;
    border-radius: 0;
    border-top: 0;
    border-right: 0;
    border-left: 0;
  }

  header {
    top: 0;
    position: sticky;
    z-index: 1;
  }

  .banner-title h1 {
    font-size: 35px;
    margin-bottom: 20px;
  }

  .banner-title p {
    font-size: 18px;
    line-height: 1.5;
  }

  .title h2 {
    font-size: 28px;
  }

  .testimonial-cardbox {
    flex-direction: column;
  }

  .main-hero {
    max-height: none;
    height: auto;
    padding: 60px 20px;
  }

  .services-img img {
    height: 120px;
  }

  .services-img {
    right: 10px;
  }

  .pick-up-cards .bento-card {
    min-height: 180px;
    padding: 20px;
  }

    .pick-up-cards .bento-card.large .services-img {
      right: 20px;
      transform: none;
      bottom: 20px;
    }

    .pick-up-cards .bento-card h3, .pick-up-cards .bento-card p {
      max-width: 60% !important;
    }

    .pick-up-cards .bento-card h3 {
      font-size: 16px;
    }

    .pick-up-cards .bento-card p {
      font-size: 13px;
    }

  .cta-box h2 {
    font-size: 30px;
  }

  .cta-section {
    max-height: 340px;
    height: auto;
    padding-bottom: 150px;
    padding-top: 50px;
  }

  .footer-links {
    flex-direction: column;
  }

  .who-we-are .column-grid.column-2.relative {
    gap: 0;
  }

  .azonb-card h3 {
    font-size: 18px;
  }
}

@media screen and (max-width: 450px) {
  .logo {
    max-width: 80px;
  }

  .phone-no {
    font-size: 0;
  }

    .phone-no a {
      font-size: 0;
      width: auto;
      height: 27px;
      background: rgb(216 225 176 / 21%);
      border-radius: 40px;
      content: "Call Now";
      padding: 0 10px;
      border: 1px solid var(--primary-color);
    }

      .phone-no a img {
        width: 12px;
        display: block;
        margin-right: -8px;
      }

      .phone-no a:after {
        content: "Call Now";
        display: block;
        font-size: 10px;
        color: #02311d;
      }

  .banner-title h1 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .banner-title p {
    font-size: 15px;
    line-height: 1.5;
  }

  .header-right {
    gap: 10px;
  }

  .header-cta-button a.btn {
    padding: 4px 10px;
    font-size: 12px;
  }

  .header-cta-button {
    gap: 7px;
  }

  .banner-title a {
    padding: 8px 20px;
  }
}

@media screen and (max-width: 350px) {
  .phone-no a:after {
    display: none;
  }

  .phone-no a {
    font-size: 0;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}