*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'cairo', sans-serif;
}
.header{
    top: 0;
    width: 100%;
    background-color: #1f3d2b;
    height: 140px;
    z-index: 1000;
}
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    width: 90%;          
    max-width: 1200px;   
    margin: 0 auto;
}
.logo{
    width: 25%;
}
.logo img{
    width: 80%;
    height: 100px;
    margin: 20px 20px;
    border-radius: 50px;
    object-fit: cover;
}
.nav-links{
    display: flex;
    list-style: none;
    gap: 45px;
    margin-left: 80px;
}
.nav-links a{
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s;
}
.nav-links a:hover{
    color: #8e7113;
}

.menu-toggle{
    display: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}


.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100%;
    background: #1f3d2b;
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
    z-index: 1001;
}

.sidebar a {
    color: #fff;
    text-decoration: none;
    margin: 15px 0;
    font-size: 18px;
}

.close-btn {
    font-size: 24px;
    cursor: pointer;
    align-self: flex-end;
    margin-bottom: 20px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 1000;
}

.sidebar.active {
    right: 0;
}

.overlay.active {
    display: block;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 30px;
  right: 0;
  background: #1f3d2b;
  list-style: none;
  padding: 10px;
  display: none;
  min-width: 150px;
  border-radius: 5px;
}
.dropdown-menu li {
  margin: 8px 0;
}

.dropdown-menu a {
  color: #fff;
}

/* عند المرور */
.dropdown:hover .dropdown-menu {
  display: block;
}
@media (max-width: 768px) {
    .nav-links{
        position: absolute;
        top: 150px;
        right: 0;
        width: 100%;
        background-color: #1f3d2b;
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
    }
    .logo{
        width: 150px;
        margin: 10px -25px;
    }
    .logo img{
        width: 170px;
        height: 80px;
        object-fit: cover;
    }
    .nav-links.active{
        display: flex;
    }
    .menu-toggle{
        margin-left: 0;
        display: block;
    }
    .dropdown-menu{
        position: static;
        background: transparent;
        padding-right: 15px;
        display: none;
    }
    .dropdown.active .dropdown-menu{
        display: block;
    }
    .ul-munu{
        list-style: none;
    }
    .dropdown{
        margin: 20px 0;
    }
}

/*hero*/
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;

  background-image: linear-gradient(
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.7)
    ),
    url("./image/hero.jfif");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: white;
  padding: 0 20px;
}

.hero-content {
  max-width: 800px;
  text-align: center;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #c9a14a; 
}
.hero-content p {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #f1f1f1;
}
.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 25px;
}

.btn {
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  color: white;
}
.whatsapp-hero {
  background-color: #25d366;
}
.call-hero {
  background-color: transparent;
  border: 2px solid #c9a14a;
  color: #c9a14a;
}
.btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.social-fixed {
  position: fixed;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.social-fixed a {
  display: block;
}

.social-fixed img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 50%;
  transition: 0.3s;
}
.social-fixed img:hover{
  transform: translateY(-10px);
}
.call {
  width: 52px;
  height: 52px;
  text-decoration: none;
  margin-right: 4px;
  text-align: center;
  padding-top: 6px;
  border-radius: 50%;
  font-size: 20px;
  border: 2px solid #fff;
  background-color: #c9a14a;
  transition: 0.3s;
}
.call:hover{
  transform: translateY(-10px);
}

@media (max-width: 768px) {

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.6;
  }

  .hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    
  }

  .btn {
    width: 50%;
  }
  .social-fixed img {
    width: 45px;
    height: 45px;
  }
  .call{
    width: 37px;
    height: 37px;
    text-align: center;
    padding-top: 0;
    margin-right: 4px;
    font-size: 18px;
  }
}

.features {
  background-color: #fff;
  padding: 80px 20px;
}
.container {
  max-width: 1100px;
  margin: auto;
}
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header h2 {
  color: #d4af37; 
  font-size: 32px;
  margin-bottom: 10px;
}
.section-header p {
  color: #555;
  font-size: 16px;
}
.features-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.feature-card {
  background: #ffffff;
  padding: 30px 20px;
  text-align: center;
  border-radius: 12px;
  width: 300px;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.feature-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #d4af37;
}
.feature-card h3 {
  color: #1f3d2b;
  margin-bottom: 10px;
}
.feature-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
  .feature-card {
    width: 100%;
  }
}

.stats {
  background-color: #1f3d2b; 
  padding: 70px 20px;
}
.stats-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.stat-box {
  text-align: center;
  flex: 1;
  min-width: 200px;
  margin: 10px 0;
}
.stat-box .number {
  color: #d4af37;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 10px;
}
.stat-box p {
  color: #ffffff;
  font-size: 16px;
}
.stat-box {
  border-right: 1px solid rgba(255,255,255,0.2);
}
@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
  }

  .stat-box {
    border-right: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 20px;
  }
}

.services {
  background-color: #f8f6f2;
  padding: 80px 20px;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  color: #d4af37; 
  font-size: 32px;
  margin-bottom: 15px;
}
.section-header p {
  color: #666;
  font-size: 16px;
  max-width: 700px;
  margin: auto;
  line-height: 1.8;
}
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.services-card {
  background-color: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);

  display: flex;
  flex-direction: column;
  height: 100%;
}
.services-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.service-image {
  overflow: hidden;
}
.service-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.4s;
}
.services-card:hover .service-image img {
  transform: scale(1.05);
}
.service-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.service-content h3 {
  color: #1f3d2b;
  font-size: 24px;
  margin-bottom: 15px;
}
.service-content h3 span{
  color: #d4af37;
}
.service-content p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 25px;
  flex-grow: 1;
}
.service-btn {
  display: inline-block;
  background-color: #1f3d2b;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  transition: 0.3s;
  align-self: flex-start;
}
.service-btn:hover {
  background-color: #d4af37;
  color: #1f3d2b;
}
@media (max-width: 768px) {

  .section-header h2 {
    font-size: 28px;
  }

  .service-image img {
    height: 220px;
  }

}

.gallery {
  background-color: #fff;
  padding: 80px 20px;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  color: #d4af37; 
  font-size: 32px;
  margin-bottom: 15px;
}
.section-header p {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  max-width: 700px;
  margin: auto;
}
.gallery-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 14px;
  background-color: #ffffff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  transition: 0.3s;
}
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: 0.4s;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
@media (max-width: 992px) {
  .gallery-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {

  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .gallery-item img {
    height: 200px;
  }

  .section-header h2 {
    font-size: 28px;
  }

}

.reviews {
  background-color: #f8f6f2;
  padding: 80px 20px;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  color: #d4af37;
  font-size: 32px;
  margin-bottom: 15px;
}
.section-header p {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  max-width: 700px;
  margin: auto;
}
.reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.review-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 16px;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.stars {
  color: #d4af37;
  font-size: 22px;
  margin-bottom: 20px;
}
.review-text {
  color: #555;
  line-height: 1.9;
  margin-bottom: 25px;
}
.review-user {
  display: flex;
  align-items: center;
  gap: 15px;
}
.review-user img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.review-user h3 {
  color: #1f3d2b;
  font-size: 18px;
  margin-bottom: 5px;
}
.review-user span {
  color: #777;
  font-size: 14px;
}
@media (max-width: 768px) {

  .section-header h2 {
    font-size: 28px;
  }

  .review-card {
    padding: 25px;
  }

}

.contact {
  background-color: #1f3d2b;
  padding: 90px 20px;
}
.contact-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}
.contact-info h2 {
  text-align: center;
  color: #d4af37;
  font-size: 36px;
  margin-bottom: 20px;
}
.contact-info p {
  text-align: center;
  color: #eeeeee;
  line-height: 1.9;
  margin-bottom: 35px;
}
.contact-box {
  display: flex;
  align-items: center;
  gap: 15px;

  background-color: rgba(255,255,255,0.05);
  padding: 18px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
}
.contact-box span {
  font-size: 24px;
}
.contact-box h3 {
  color: #d4af37;
  margin-bottom: 5px;
  font-size: 18px;
}
.contact-box p {
  color: #d9d9d9;
  margin: 0;
  font-size: 15px;
}
.whatsapp-btn {
  display: inline-block;
  margin-top: 15px;
  background-color: #d4af37;
  color: #1f3d2b;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
.whatsapp-btn:hover {
  background-color: #ffffff;
  transform: translateY(-3px);
}
.contact-image img {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
  border-radius: 18px;
}
@media (max-width: 768px) {

  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info h2 {
    font-size: 30px;
  }

  .contact-image img {
    max-height: 400px;
  }

}

.footer {
  background-color: #183121;
  padding-top: 70px;
  color: #ffffff;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px;
  padding-bottom: 50px;
}
.footer-box h2,
.footer-box h3 {
  color: #d4af37;
  margin-bottom: 20px;
}
.footer-box p {
  color: #d9d9d9;
  line-height: 1.9;
}
.footer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-box ul li {
  margin-bottom: 12px;
}
.footer-box ul li a {
  color: #eeeeee;
  text-decoration: none;
  transition: 0.3s;
}
.footer-box ul li a:hover {
  color: #d4af37;
  padding-right: 5px;
}
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
.social-icons a {
  width: 48px;
  height: 48px;

  background-color: rgba(255,255,255,0.08);

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  text-decoration: none;

  transition: 0.3s;
}
.social-icons a img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}
.social-icons a:hover {
  background-color: #d4af37;
  transform: translateY(-5px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 25px 0;
}
.footer-bottom p {
  color: #cccccc;
  font-size: 14px;
  margin-bottom: 10px;
}
.designer-link {
  font-size: 15px;
  display: inline-block;
  color: #d4af37;
  text-decoration: none;
  transition: 0.3s;
}
.designer-link:hover {
  color: #ffffff;
}
@media (max-width: 768px) {

  .footer {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
  .footer-box p{
    margin: 0 10px;
  }

}


/*صفحة ورق الجدران وجبس بورد*/

.service-hero {
  background: linear-gradient(rgba(0,0,0,0.6),
  rgba(0,0,0,0.6)),
  url("./image/hero.jfif");

  background-size: cover;
  background-position: center;

  padding: 160px 20px;
  text-align: center;
}

.service-hero-content h1 {
  color: #d4af37;
  font-size: 52px;
  margin-bottom: 25px;
}
.service-hero-content p {
  color: #ffffff;
  font-size: 18px;
  line-height: 2;
  max-width: 850px;
  margin: auto;
}
.service-details {
  padding: 100px 20px;
  background-color: #f8f6f2;
}
.section-header {
  text-align: center;
  margin-bottom: 70px;
}
.section-header h2 {
  color: #d4af37;
  font-size: 36px;
  margin-bottom: 15px;
}
.section-header p {
  color: #666;
  line-height: 2;
  max-width: 850px;
  margin: auto;
}
.details-content {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 60px;
  align-items: center;
}
.details-text p {
  color: #555;
  line-height: 2.1;
  margin-bottom: 25px;
}
.details-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.4s;
}
.details-image img:hover {
  transform: scale(1.02);
}
.service-features {
  background-color: #ffffff;
  padding: 100px 20px;
}
.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 30px;
}
.feature-box {
  background-color: #f8f6f2;
  padding: 35px 25px;
  border-radius: 18px;
  transition: 0.4s;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}
.feature-box:hover {
  transform: translateY(-10px);
}
.feature-box h3 {
  color: #1f3d2b;
  margin-bottom: 15px;
}
.feature-box p {
  color: #666;
  line-height: 1.9;
}
.service-gallery {
  padding: 100px 20px;
  background-color: #f8f6f2;
}
.gallery-container {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 18px;
}
.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: 0.5s;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
@media (max-width: 992px) {

  .details-content {
    grid-template-columns: 1fr;
  }

  .gallery-container {
    grid-template-columns: repeat(2,1fr);
  }

}
@media (max-width: 768px) {

  .service-hero-content h1 {
    font-size: 38px;
  }

  .section-header h2 {
    font-size: 30px;
  }

}
@media (max-width: 576px) {

  .gallery-container {
    grid-template-columns: 1fr;
  }

}


