* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.poppins-thin {
    font-family: "Poppins", serif;
    font-weight: 100;
    font-style: normal;
}
.row{
    max-width: 1280px !important;
    margin: auto !important;
}
.poppins-extralight {
    font-family: "Poppins", serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", serif;
    font-weight: 600;
    font-style: normal;
}
b{
    font-family: "Poppins", serif;
    font-weight: 500;
    font-style: normal;
}
html,
body {
    width: 100%;
    height: 100%;
}
body{
    color: #000;
}
a {
    text-decoration: none;
    color: #8B4513;
    transition: 0.5s;
}
a:hover{
    color: #000;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Cairo", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings:
        "slnt" 0;
}
.mobile-navbar{
    display: none;
   }
.navbar {
    position: sticky;
    top: 0;
    max-width: 1280px ;
    margin: auto ;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 15px;
}

.navbar .logo img {
    height: 34px;
    width: 99px;
}
.navbar ul {
    display: flex;
    align-items: center;
    list-style: none;
    padding-left: 0 !important;
    gap: 20px;
    font-size: 14px;
    margin: 0%;
}

.navbar ul li {
    cursor: pointer;
}

.navbar .call {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #8B4513;
    color: #ffff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 19px;
}

.navbar .get-in-touch .input {
    display: flex;
    align-items: center;
    gap: 7px;
    border: 1px solid #8B4513;
    padding: 0px 10px;
}

.navbar .get-in-touch .input input {
    border: none;
    outline: none;
    height: 32px;
    font-size: 12px;
}

.navbar .get-in-touch .input i {
    font-size: 17px;
    color: #8B4513;
}

.navbar .get-in-touch .input input::placeholder {
    font-size: 11px;
}

/* moble nav */

.mobile-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px solid #8B4513;
  }
  .mob-con{
    display: none;
   }
  .menu-icon
  {
    font-size: 35px;
    cursor: pointer;
    color: #8B4513;
  }
  .phone-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    color: #fff;
    background-color: #8B4513;
    border-radius: 50%;
    font-size: 25px;
    cursor: pointer;
  }
  .mobile-logo {
    font-size: 20px;
    font-weight: bold;
  }

  .mobile-logo img, .sidebar-logo img {
    height: 35px;
    width: 115px;
}

  /* Sidebar Styles */
  .sidebar {
    position: fixed;
    top: 0;
    left: -337px;
    width: 322px;
    height: 100%;
    background-color: #fff;
    color: #000;
    z-index: 999;
    transition: left 0.3s ease;
    box-shadow: 10px 0 15px rgba(0, 0, 0, 0.1);
  }

  .sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px solid #8B4513;

  }

  .close-icon {
    font-size: 40px;
    cursor: pointer;
    color: #8B4513;
  }

  .sidebar-menu {
    list-style: none;

  }

  .sidebar-menu li {
    padding: 20px 31px;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-bottom: 1px solid #EEEEEE;
  }

  /* Sidebar Open State */
  .sidebar.open {
    left: 0;
  }

  .sidebar.open .sidebar-menu li {
    opacity: 1;
  }

  .mobile-btn { 
    display: flex; 
    align-items: center;
    justify-content: center;
    gap: 15px;
  width: 92%;
  margin: 16px 12px;
  padding: 11px 30px;
  background-color: #8B4513;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.mobile-btn i{
font-size: 23px;
}
/* moble nav */

/* Slider Container */
.swiper-container {
    width: 100%;
    height: 85vh;
    /* Full height */
    position: relative;
}
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box;
}
/* Slide Image */
.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    z-index: -1;
    left: 0;
}

/* Slide Text */
.slide-text {
    position: absolute;
    bottom: 10%;
    left: 5%;
    text-align: left;
    color: white;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.9s ease;
}

/* Slide Heading */
.slide-heading {
    font-size: 2.5rem;
}

/* Slide Paragraph */
.slide-paragraph {
    width: 500px;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

/* Slide Button */
.slide-button {
    padding: 10px 30px;
    background-color: #8B4513;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

/* Active Slide Text */
.swiper-slide-active .slide-text {
    opacity: 1;
    transform: translateY(0);
}
.tagline{
    background-color: #8B4513;
    color: #ffff;
    font-size: 14px;
}
.card {
    border: none;
    overflow: hidden;
    transition: 0.3s;
    position: relative;
    border-radius: 0 !important;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.card img {
    height: 300px;
    object-fit: cover;
    width: 100%;
    border-radius: 0 !important;
    border-bottom: 6px solid #8B4513;
}
.card-body {
    background: white;
    padding: 20px;
    position: relative;
    
}
.badge-custom {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #8B4513;
    color: #ffff;
    padding: 5px 10px;
    z-index: 99;
}
.card-title {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    padding: 5px 10px;
    margin: 0;
}
.price-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.price {
    font-size: 1rem;
    color: #333;
    margin: 0%;
}
.btn-custom {
    background: #8B4513;
    border: 1px solid transparent;
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
        padding: 8px 8px;
    font-size: 24px;
}
.btn-custom:hover {
    background: transparent;
    border: 1px solid #8B4513;
    color: #8B4513;
}
.card ul {
    padding-left: 20px;
}
.card-image-container {
    position: relative;
}
.card-text{
    font-size: 20px;
}

.page-3 img{
    width: 100%;
    height: 100%;
}
.page-4 h5{
    color: #8B4513;
}
.page-7{
    width: 100%;
    
    
}
.page-7 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.container {
      display: flex;
         max-width: 916px;
    width: 900px;
      margin-bottom: 30px;
      height: 335px;
      background: #fff;
      position: relative;
      padding: 20px;
      box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    }
    .mob{
    display: none;
}
    .deskp{
    display: block;
}

    .text-box {
      flex: 1;
      padding: 20px;
      position: relative;
      z-index: 2;
    }

    .text-box h2 {
      font-size: 24px;
      font-weight: bold;
      letter-spacing: 2px;
      color: #8B4513;
    }

 .text-box ul {
      width: 529px;
      margin: 15px 0;
      padding-left: 20px;
      color: #555;
      line-height: 1.5;
    }

    .text-box ul li {
      margin-bottom: 10px;
    }
    
    .btn2 {
      display: inline-block;
      background: #8B4513;
      color: white;
      padding: 10px 20px;
      border: 1px solid transparent;
      text-decoration: none;
      transition: 0.5s;
    }
    .btn2:hover{
      background: transparent;
      border: 1px solid #8B4513;
      color: #8B4513;
    }

    .image-box {
      flex: 1;
      position: absolute;
      display: flex;
      align-items: flex-end;
      justify-content: start;
      bottom: -9%;
      right: -9%;
      z-index: 1;
    }

    .image-box img {
      width: 100%;
      height: auto;
      max-width: 300px;
      box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    }

    @media (max-width: 768px) {
      .container {
          margin-bottom: 0;
        flex-direction: column;
        width: 100%;
        height: auto;
        padding: 13px;
      }

     
 .text-box ul {
      width: 100%;
      margin: 15px 0;
      padding-left: 20px;
      color: #555;
      line-height: 1.5;
    }
      .image-box {
        position: static;
      }
.deskp{
    display: none;
}
.mob{
    display: block;
}
      .text-box {
        padding: 20px 0px;
      }
      .image-box {
          width: 100%;
    height: 300px;
    
    }

      .image-box img {
        max-width: 100%;
        width: 100%;
        object-fit: cover;
        height: 100%;
      }
    }


footer {
    max-width: 1280px;
    padding: 8px 0px;
    margin: auto auto  5px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #C7C8C9;
    border-bottom: 1px solid #C7C8C9;
  
}
footer .right a{
    text-decoration: none;
    color: #000;
    transition: 0.5s;
}
footer .right a:hover{
    text-decoration: none;
    color: #8B4513;
}
.menu ul li a{
    color: #000;
    transition: 0.5s;
}
.menu ul li a:hover{
    color: #8B4513;
}
/* Responsive Design */
@media (max-width: 1024px) {
   .navbar{
    display: none;
   }
   .mob-con{
    display: block;
   }
   .slide-paragraph {
        width: 100%;
        font-size: 0.8rem;
        margin-bottom: 20px;
    }
}
@media (max-width: 768px) {
    .slide-heading {
        font-size: 2rem;
    }
    .slide-paragraph {
        font-size: 1rem;
    }
    .slide-button {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    footer p{
        font-size: 13px;
        padding-left: 12px;
    }
    .slide-paragraph {
        width: 100%;
        font-size: 0.8rem;
        margin-bottom: 20px;
    }
    .page-7 {
    width: 100%;
    height: auto;
}
    
}

@media (max-width: 480px) {
    .slide-heading {
        font-size: 1.5rem;
    }
    .slide-paragraph {
        font-size: 0.9rem;
    }
    .slide-button {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}