@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Lato:wght@400&display=swap');
  * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root               {--red: #E02426;
                    --black: black;
                    --white:#ffff;
                    --heading:Arial, Helvetica, sans-serif;
                    --para: 'Quicksand', sans-serif;}

.navbar             {width: 100%;
                        height: 13vh;
                        background: var(--white);
                        border-bottom: 4px solid var(--red);
                        display: flex;
                        position: fixed;
                        top: 0;
                        z-index: 100;}

    .logo               {width: 30%;
                        height: 12vh;
                        display: flex;
                        justify-content: center;
                        align-items: center;}

    .logo img           {width: 250px;
                        height: 100px;}

    
    .hamburger {
    display: none;
  }

  .nav-links {
    width: 100%;
    height: 12vh;
    display: flex !important;
    justify-content: end;
    align-items: center;
    flex-direction: row;
     
  }

  .nav-links a {
    padding: 10px 25px;
    color: var(--blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 25px;
    transition: all 100ms ease-in-out;
    cursor: pointer;
    font-family: var(--heading);
    transition: all 300ms ease-in-out;}

    .nav-links span {color: var(--red);}

    .nav-links a:hover {color: var(--red);}

    

    .dropdown {
  float: left;
  overflow: hidden;
}


.dropdown .dropbtn {
  font-size: 20px;  
  border: none;
  outline: none;
  color: var(--black);
  padding: 10px 16px;
  background-color: inherit;
  margin: 0;
  
}




.dropdown-content {
  display: none;
  position: absolute;
  right: 170px;
  background: var(--black);
  min-width: 120px;

  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: var(--white);
  padding: 12px 16px;
  text-decoration: none;
  font-size: 18px;
  display: block;
  text-align: left;
  font-family: var(--heading);
  transition: all 400ms ease-in-out;
}

.dropdown-content a:hover {
  background-color: var(--red);
  color: var(--white);
}

.dropdown:hover .dropdown-content {
  display: block;
}

header      {width: 100%;
            height: 630px;
            display: flex;
            align-items: flex-end;}

.carousel{
      width: 100%;
      overflow: hidden;
      box-shadow: 0 8px 30px rgba(0,0,0,0.12);
      background: #fff;
      border-radius: 8px;
      padding: 14px;
      box-sizing: border-box;
    }

    .viewport{width:100%; overflow:hidden; position:relative;}

    .track{
      display:flex;
      gap:10px;
      will-change:transform;
      transition:transform 500ms ease;
      align-items:stretch;
    }

    .slide{
      flex:0 0 calc((100% - 10px) / 2);
      height:500px;
      border-radius:6px;
      overflow:hidden;
      background:#ddd;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }

    .slide img{
      width:100%;
      height:90%;
      object-fit:cover;
      display:block;
    }

    .caption{
      background:var(--black);
      color:#fff;
      text-align:center;
      font-size:1.5rem;
      font-family: var(--para);
      height: 50px;
      display: flex;
      align-items: center;
        justify-content: center;
    }

   .slide a{text-decoration: none;
                color: var(--white);
              height: 100%;}

    .dots{display:flex; gap:8px; justify-content:center; margin-top:12px;}
    .dot{width:12px; height:12px; border:none; border-radius:50%; background:#d0d0d0; cursor:pointer;}
    .dot.active{background:var(--red);}

.products {width: 100%;
  height: auto;
}

.products h2 {width: 100%;
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: var(--red);
  font-family: var(--heading);
  margin-bottom: 2rem;
}

.products-grid {width: 100%;
  height: auto;
  padding: 4%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 3fr));
  justify-items: center;
  gap: 1.5rem;
}

.product {width: 80%;
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px #00000063;
  transition: transform 0.3s, box-shadow 0.3s;
}

.fa-arrow-right     {width: 40px;
                    height: 40px;
                    background: var(--red);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    border-radius: 50%;
                    color: var(--white);}

.product a          {text-decoration: none;}

.product img {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  margin-bottom: 1rem;
  transition: transform 0.3s;
}

.product h3 {
  font-size: 1.2rem;
  font-family: var(--para);
  color: var(--black);
  margin-bottom: 0.5rem;
}

.product p {font-family: var(--para);
  font-size: 0.95rem;
  color: var(--red);
}

.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px #000000a7;
}

.product:hover img {
  transform: scale(1.05);
}

.trust            {width: 100%;
                  height: 600px;
                  display: flex;
                  flex-direction: row;
                  justify-content: center;
                  align-items: center;}

.trust_txt        {width: 50%;
                  height: 500px;
                  display: flex;
                  flex-direction: column;
                  justify-content: center;
                  align-items: center;}

.trust_txt h1     {width: 80%;
                  height: 80px;
                  font-size: 25px;
                  color: var(--red);
                  font-family: var(--heading);}

.trust_txt p      {width: 80%;
                  height: 140px;
                  color: var(--black);
                  font-size: 18px;
                  font-family: var(--para);}

.trust_pnt        {width: 50%;
                  height: 400px;
                  display: grid;
                  grid-template-columns: 1fr 1fr;
                  grid-template-rows: 1fr 1fr 1fr;
                  justify-items: center;
                  align-items: center;
                  gap: 20px;}

.trust_pnt .trust_pts {width: 90%;
                      height: 120px;
                      background: var(--white);
                      border: 1px solid var(--black);
                      font-family: var(--para);
                      font-size: 16px;
                      border-radius: 10px;
                      font-weight: 600;
                      display: flex;
                      flex-direction: column;
                      text-align: center;
                      justify-content: space-evenly;
                      align-items: center;
                      box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.53);}

.fa-building          {font-size: 30px;
                      color: var(--red);}

.fa-building-columns          {font-size: 30px;
                      color: var(--red);}

.fa-calendar          {font-size: 30px;
                      color: var(--red);}

.fa-shop          {font-size: 30px;
                      color: var(--red);}

.fa-leaf          {font-size: 30px;
                      color: var(--red);}



.lead                 {width: 100%;
                      height: 300px;
                      background-image: url("img/brochure.jpeg");
                      background-attachment: fixed;
                      background-size: 100% 200%;
                      background-position: center;
                      display: flex;
                      flex-direction: column;}

.lead h1              {width: 100%;
                      height: 120px;
                      background: #ffffff8d;
                      display: flex;
                      justify-content: center;
                      align-items: center;
                      color: var(--red);
                      font-family: var(--heading);
                      font-size: 30px;}



.lead_txt             {width: 100%;
                      height: 200px;
                      background: #ffffff8d;
                      text-align: center;
                      color: var(--black);
                      padding: 4%;
                      font-size: 20px;
                      font-family: var(--para);}

.lead_txt span        {color: var(--red);
                      font-size: 25px;
                      font-family: var(--heading);}

.show                 {width: 100%;
                      height: 650px;}

.show h1              {width: 100%;
                      height: 100px;
                      padding: 3% 5%;
                      color: var(--red);
                      font-size: 25px;
                      font-family: var(--heading);}

.show_txt             {width: 100%;
                      height: 500px;
                      color: var(--black);
                    display: flex;}

.show_img             {width: 50%;
                      height: 500px;
                      display: flex;
                      flex-direction: column;
                      align-items: center;}

.show_img1              {width: 100%;
                        height: 300px;
                        display: grid;
                        grid-template-columns: 1fr 1fr;
                        grid-template-rows: 1fr;
                        justify-items: center;
                        gap: 20px;
                        align-items: center;
                        padding: 0 10%;}

.show_img img          {width: 250px;
                      height: 200px;
                      border-radius: 10px;
                      transform: scale(1);
                      transition: all 300ms ease-in-out;}

.show_img img:hover   {transform: scale(1.1);}

.show_img p           {width: 80%;
                      height: 150px;
                      padding: 5% 0%;
                      color: var(--black);
                      font-size: 20px;
                      font-family: var(--para);}

.show_img h2            {width: 80%;
                        height: 60px;
                        padding: 3% 0%;
                        color: var(--red);
                        font-size: 25px;
                        font-family: var(--heading);}

.choose                 {width: 100%;
                        height: 800px;
                        background: var(--white);
                        display: flex;
                        flex-direction: column;
                        align-items: center;}

.choose h1              {width: 100%;
                        height: 150px;
                        color: var(--red);
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        font-size: 30px;
                        font-family: var(--heading);}

.choose p               {width: 80%;
                        height: 100px;
                        color: var(--black);
                        display: flex;
                        text-align: center;
                        align-items: center;
                        font-size: 25px;
                        font-family: var(--para);}

.choose_point           {width: 80%;
                        height: 500px;
                        display: grid;
                        grid-template-columns: 2fr 2fr;
                        grid-template-rows: 1fr 1fr;
                        justify-items: center;
                        align-items: center;}

.choose_pt {
  position: relative;
  overflow: hidden;
  padding: 2%;
  height: 200px;
  width: 80%;
  border-radius: 1rem;
  background: var(--gray);
  background-size: 400%;
  color: var(--black);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  box-shadow: 2px 2px 10px var(--black);
}

.choose_pt:hover::before {
  transform: scaleX(1);
}

.choose_pt-content {font-size: 20px;
  font-family: var(--heading);
  width: 80%;
  position: relative;
  top: 5px;
  z-index: 1;
}

.choose_pt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: 0 50%;
  width: 100%;
  height: inherit;
  border-radius: inherit;
  background: var(--red);
  transition: all 0.475s;
}


.choose_pt img          {width: 180px;
                        height: 180px;
                        margin-right: 20px;
                        border-radius: 8px;
                        position: relative;
                        z-index: 1;}

.apart                  {width: 100%;
                        height: 500px;
                        display: flex;
                        flex-direction: row;}

.apart_txt              {width: 50%;
                        height: 500px;
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        align-items: center;}

.apart_txt h1           {width: 80%;
                        height: 100px;
                        font-family: var(--heading);
                        color: var(--red);
                        font-size: 25px;}

.apart_txt p            {width: 80%;
                        height: 200px;
                        color: var(--black);
                        font-size: 20px;
                        font-family: var(--para);}

.apart_img              {width: 50%;
                        height: 500px;
                        display: flex;
                        justify-content: center;
                        align-items: center;}

.apart_img img          {width: 500px;
                        height: 400px;}

.object                 {width: 100%;
                        height: 900px;
                        background-image: url("img/bg.jpeg");
                        background-size: 100% 100%;
                        background-position: center;
                        background-attachment: fixed;}

.we                     {width: 50%;
                        height: 300px;
                        background-image: linear-gradient(to right, var(--white), #ffffff00);
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        align-items: center;}

.we h1                  {width: 80%;
                        height: 70px;
                        font-size: 35px;
                        color: var(--red);
                        font-family: var(--heading);}

.we p                   {width: 80%;
                        height: 120px;
                        font-family: var(--para);
                        font-size: 18px;
                        color: var(--black);
                        display: flex;
                        align-items: center;}

.ob                     {width: 50%;
                        height: 300px;
                        background-image: linear-gradient(to right, var(--white), #ffffff00);
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        align-items: center;}

.ob h1                  {width: 80%;
                        height: 70px;
                        font-size: 35px;
                        color: var(--red);
                        font-family: var(--heading);}

.ob p                   {width: 80%;
                        height: 120px;
                        font-family: var(--para);
                        font-size: 18px;
                        color: var(--black);
                        display: flex;
                        align-items: center;}

.goals                     {width: 50%;
                        height: 300px;
                        background-image: linear-gradient(to right, var(--white), #ffffff00);
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        align-items: center;}

.goals h1                  {width: 80%;
                        height: 70px;
                        font-size: 35px;
                        color: var(--red);
                        font-family: var(--heading);}

.goals p                   {width: 80%;
                        height: 120px;
                        font-family: var(--para);
                        font-size: 18px;
                        color: var(--black);
                        display: flex;
                        align-items: center;}

.footer {
      background-color: var(--black);
      color: #fff;
      padding: 50px 0;
      width: 100%; /* fixed width to make it non-responsive */
      margin: 0 auto; /* center the footer block */
    }

    .footer-container {
      display: flex;
      justify-content: space-between;
      width: 1100px; /* fixed inner width */
      margin: 0 auto;
    }

    .footer-column {
      width: 250px; /* fixed column widths */
    }

    .footer-column h3 {
      margin-bottom: 15px;
      font-size: 25px;
      font-family: var(--heading);
      border-bottom: 1px solid var(--red);
      padding-bottom: 8px;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-column ul li {
      margin-bottom: 8px;
    }

    .footer-column ul li a {
      color: var(--white);
      text-decoration: none;
      font-size: 16px;
      font-family: var(--para);
    }

    .footer-column ul li a:hover {
      color: #fff;
    }

    .footer-bottom {
      text-align: center;
      margin-top: 30px;
      font-size: 13px;
      color: var(--white);
    }

    .icon               {width: 50px;
                        height: 50px;
                        background: var(--white);
                        border: 2px solid green;
                        position: fixed;
                        bottom: 50px;
                        right: 50px;
                        color: green;
                        display: flex;
                        justify-content: center;
                        align-items: center;}

        .icon a         {text-decoration: none;
                        color: green;}

    .fa-square-whatsapp {font-size: 40px;}