@tailwind base;
@tailwind components;
@tailwind utilities;
/* مكانك لإضافاتك */

.swiper-wrapper{

    gap: 20px;
}
.border{
    border-top: 10px solid red;
}
body {
  font-family: 'Montserrat', sans-serif;
}
*{
        list-style: disc;
}
 h1{font-size:32px !important;}
  swiper-container {
      width: 100%;
      height: 100%;
    }

    swiper-slide {
      text-align: center;
      font-size: 18px;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0px !important;
      padding-bottom: 20px !important;
    }

    swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
.card {
  transition: all 0.3s ease-in-out;
}

.card:hover {
  transform: scale(1.1);
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  /*margin: 80px 0;*/
}

.gallery div {
  width: 100%;
}

.gallery img {
  width: 100%;
    height: 751px;
    object-fit: contain;
  transition: all 0.3s ease-in-out; /* حركة سلسة */
  cursor: pointer;
}


/* Services Section */
.services {
  padding: 80px 20px;
}

.services .container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #222;
}

/* Grid Layout */
.boxes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .boxes {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .boxes {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Box Styling */
.box {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Heading */
.heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.heading img {
  width: 48px;
  height: 48px;
}

.heading h2 {
  font-size: 20px;
  font-weight: 600;
  color: #111;
}

/* Content */
.content p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}
*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* banner css */
.banner-img {
  width: 100%;
  height: 400px;       
  overflow: hidden;
  position: relative;
}

.banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

.banner-icons {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 25%;     
  right: 0;
  display: flex;
  gap: 10px;          
}

.banner-icons i {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  color: white;
  background: red; 
  width: 75px;
  /* aspect-ratio: 1/1; */
  height: 65px;
  border-bottom-left-radius: 50%;
  border-top-left-radius: 50%;
  /* border-radius: 50%; */
  transition: 0.3s;
  cursor: pointer;
}

/* single page css */
.single-container{
  display: flex;
  /* justify-content: center; */
  gap: 10px;
  align-items: center;
  padding: 10px;
  background-color: #b29b9b;
}

.single-img{
  width: 60%;
}

.single-title{
  width: 40%;
}

.single-title h2{
  /* width: 40%; */
  font-family: cursive;
}

.single-desc{
  padding: 10px;
}

.single-desc p{
  line-height: 1.8rem;
}

.single-img img{
  width: 100%;
  height: 350px;
}

@media screen and (max-width:767px) {
  .single-container{
    flex-direction: column;
  }
  .single-img{
    width: 100%;
  }
  .single-img img{
    object-fit: cover;
  }
  .single-desc{
    width: 100%;
    padding: 10px;
  }
  .single-desc p{
    font-size: 0.9rem;
  }
  .single-title{
    width: 100%;
  }
}

.banner-icons i {
  transition: transform 0.3s ease; /* يخلي الحركة ناعمة */
  cursor: pointer; /* يبين إنها قابلة للتفاعل */
}

.banner-icons i:hover {
  transform: scale(1.2); /* يكبر الأيقونة */
}
@media  (max-width: 1415px) {
.pa{
    padding-right: 0px !important;
    padding-left: 0px !important;
}

}
@media  (max-width: 768px) {
.gallery img {
    height: 400px;
}

}
