
:root {
  --white-color:                #FFFFFF;
  --primary-color:              #FF4400;
  --section-bg-color:           #f0f8ff;
  --dark-color:                 #000000;
  --grey-color:                 #d0d1d1;
  --p-color:                    #717275;

  --body-font-family:           'Inter', sans-serif;

  --h5-font-size:               24px;
  --p-font-size:                20px;
  --copyright-text-font-size:   16px;
  --product-link-font-size:     14px;
  --custom-link-font-size:      12px;

  --font-weight-thin:           100;
  --font-weight-light:          300;
  --font-weight-normal:         400;
  --font-weight-bold:           700;
  --font-weight-black:          900;
}


body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

.landing {
    background: url('landing.jpeg') no-repeat center center fixed;

    background-size: cover;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.content h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.content p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #128C7E;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content h1 {
        font-size: 1.5rem;
    }

    .content p {
        font-size: 1rem;
    }

    .whatsapp-button {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}


.navbar {
    overflow: hidden;
    background-color: #333;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }

  .navbar a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }

  .navbar a:hover {
    background: #ddd;
    color: black;
  }

  .navbar-logo {
    height: 40px; /* You can adjust the size of your logo */
    width: auto;
  }

  .nav-items {
    padding: 0 20px;
    display: flex;
  }

  .nav-item:not(:last-child) {
    margin-right: 15px;
  }


  * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
}

.section {
  display: flex;
  flex-wrap: wrap;
  margin: 20px;
}

.section-content {
  flex: 1;
  padding: 20px;
}

.section-image {
  flex: 1;
  background: url('your-image-url.jpg') no-repeat center center;
  background-size: cover;
  min-height: 200px;
}

h2 {
  margin-bottom: 10px;
  color: #000;
}

p {
  margin-bottom: 20px;
}

button {
  background: #000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

/* Responsive styling */
@media (max-width: 768px) {
  .section {
    flex-direction: column;
  }

  .section-image {
    order: -1; /* Move image above the text on mobile */
  }
}

.slick-bottom {
  background: linear-gradient(to top, var(--dark-color), transparent 90%);
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
}