* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #261707;
  --secoundary-color: #b38600;
  --third-color: #3e2e14;
  --nav-item: #f2ead3;
}

body {
  font-family: "Tajawal", serif;
}

html,
body {
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-track {
  background-color: white;
}

::-webkit-scrollbar-thumb {
  background-color: var(--secoundary-color);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--secoundary-color);
}

/*  start header */
.navbar {
  padding-bottom: 0rem;
}

.nav-contant {
  background-image: linear-gradient(to left, #261707, #4b3415);
  border-bottom: 2px solid var(--secoundary-color);
}

.logo {
  width: 160px;
}

.nav-item {
  padding: 0 5px;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  font-size: 17px;
  font-weight: bold;
  color: var(--nav-item);
}

.nav-link {
  color: var(--nav-item);
}

.nav-link:hover {
  color: var(--nav-item);
}

.nav-item:hover {
  border-bottom: 3px solid var(--secoundary-color);
}

.nav-item.active {
  border-bottom: 3px solid var(--secoundary-color);
}

.nav-item:hover {
  cursor: pointer;
}

.nav-item.active:hover {
  border-bottom: 3px solid var(--secoundary-color);
}

.navbar-toggler-icon {
  color: var(--secoundary-color);
  font-size: 30px;
  padding: 10px;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

/*  end header */

/* start hero section */
.landing_content {
  background-image: url(../images/21.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 85vh;
}

.hero-img-container {
  position: relative;
  display: inline-block;
  max-width: 420px;
  margin: 20px 0;
}

.hero-img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.logo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 140px;
  height: 140px;
  z-index: 10;
  border-radius: 50%;
  background: linear-gradient(to bottom, #fffaf3, #f6e7c4);
  box-shadow: 5px 0 15px rgba(212, 175, 55, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
  padding: 0;
}

.logo-offer {
  width: 250px;
}

.landing_content h1 {
  color: var(--primary-color);
  font-size: 50px;
}

.landing_content h3 {
  font-size: 1.8rem;
  color: var(--secoundary-color);
  font-weight: bold;
  background: linear-gradient(to right, #a28113, #261707);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.landing_content .attract-text {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: bold;
  max-width: 700px;
  padding: 5px 0;
}

.offer-box {
  background-color: #fef9f0;
  border: 2px solid #d4af37;
  padding: 20px 40px;
  border-radius: 20px;
  max-width: 500px;
  margin: 10px auto 30px auto;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.limited-time {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--secoundary-color);
  margin-bottom: 10px;
}

.price {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 20px;
}

.discount {
  color: var(--secoundary-color);
  font-size: 1.1rem;
}

.new-price {
  font-size: 1.8rem;
  color: red;
  font-weight: bold;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 8px;
  font-size: 1rem;
}

.flashing-button {
  animation: flashing 1.2s infinite;
  box-shadow: 0 0 12px #b38600;
  color: white;
  font-size: 22px;
  border-radius: 30px;
  padding: 10px 40px;
  background-color: #4b3b00;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

@keyframes flashing {
  0%,
  100% {
    box-shadow: 0 0 12px var(--secoundary-color);
    background-color: #4b3b00;
  }

  50% {
    box-shadow: 0 0 24px #ffcc33;
    background-color: #806e00;
  }
}

.flashing-button:hover {
  color: white;
}

/* end hero section */

/* start common style */
.our_Services,
.our_benifits,
.testimonials {
  background-image: linear-gradient(135deg, #fffaf3, #f7ebcf, #e7cc9b);
  padding: 40px 20px;
}

.text_types,
.our_previous_works,
.faq {
  background-image: linear-gradient(135deg, #e7cc9b, #f7ebcf, #fffaf3);
  padding: 40px 20px;
}

.trust-banner,
.offers {
  background-image: linear-gradient(135deg, #e7cc9b, #f7ebcf, #fffaf3);
  padding-top: 40px;
}

.section-title {
  font-size: 35px;
  margin-bottom: 20px;
  color: var(--secoundary-color);
}

.intro-text {
  font-size: 20px;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto 30px;
  color: var(--primary-color);
}

.service-note {
  border: 4px dashed rgba(212, 175, 55, 0.4);
  padding: 20px 20px;
  max-width: 800px;
  margin: 30px auto 0;
  border-radius: 16px;
  background: linear-gradient(to bottom, #fffdf5, #f6eddd);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}

.service-note p {
  font-size: 20px;
  color: var(--third-color);
  font-weight: 500;
}

/* end common style */

/* start serviecs section */

.luxury-card {
  background: linear-gradient(145deg, #fffaf1, #f3e2c7);
  border-radius: 30px;
  box-shadow: inset 0 0 25px rgba(212, 175, 55, 0.2),
    0 15px 30px rgba(0, 0, 0, 0.07);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  min-height: 500px;
}

.luxury-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.luxury-card .card-body {
  position: relative;
  z-index: 1;
  text-align: center;
}

.luxury-card .card-title {
  font-size: 22px;
  color: #4d3904;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 1px 2px rgba(255, 235, 170, 0.6);
}

.luxury-card .card-text {
  font-size: 1.05rem;
  color: #5a4620;
  font-weight: 500;
  line-height: 1.8;
}

/* end serviecs section */

/* start text types section */

.timeline {
  border-right: 3px solid #d4af37;
  max-width: 600px;
  margin: 0 auto;
  padding-right: 20px;
  direction: rtl;
}

.timeline-item {
  position: relative;
  margin-bottom: 20px;
  padding: 10px 20px 10px 0;
  font-weight: 600;
  color: var(--third-color);
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
  font-size: 18px;
  cursor: pointer;
}

.timeline-item:hover {
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.timeline-item::before {
  content: "";
  position: absolute;
  right: -12px;
  top: 20px;
  width: 12px;
  height: 12px;
  background: #d4af37;
  border-radius: 50%;
}

/* end text types section */

/* start benifits section */

.our_benifits .card {
  background: linear-gradient(to bottom, #fffdf5, #f1e8c8);
  border: none;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(179, 148, 45, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  margin-bottom: 30px;
  min-height: 300px;
}

.our_benifits .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.our_benifits .card-body {
  padding: 30px 20px;
}

.our_benifits .card-title {
  font-size: 22px;
  color: #6b4d1e;
  margin-top: 15px;
  font-weight: bold;
}

.our_benifits .card-text {
  color: var(--third-color);
  font-size: 18px;
  line-height: 1.6;
}

.our_benifits .card-body i {
  font-size: 32px;
  color: #fff;
  background-color: var(--secoundary-color);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px #ffd700, 0 0 25px rgba(255, 215, 0, 0.4);
  margin: 0 auto;
}

.highlighted-text {
  color: #c10000;
  font-weight: bold;
  animation: pulseGlow 1.5s infinite alternate;
}

@keyframes pulseGlow {
  0% {
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.5);
  }

  100% {
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.9);
  }
}

/* end benifits section */

/* start trust banner section */
.trust-banner,
.offers {
  background-image: url(../asstes/18-phone.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.trust-banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.trust-banner .section_header p {
  font-weight: bold;
  color: var(--third-color);
  max-width: 550px;
}

.banner-content {
  gap: 25px;
  background: linear-gradient(135deg, #fffaf3, #f7ebcf);
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  max-width: 900px;
  margin: 40px auto;
  color: #5a4620;
}

.each_text_box {
  padding: 10px;
  border-radius: 10px;
  background: linear-gradient(to bottom, #fffdf5, #f6eddd);
  margin-bottom: 30px;
  border-bottom: 3px solid transparent;
  box-shadow: none;
  animation: borderGlow 2.5s ease-in-out infinite;
}

@keyframes borderGlow {
  0%,
  100% {
    border-color: #d4af37;
    box-shadow: 0 4px 15px #d4af37aa;
  }

  50% {
    border-color: #e8d3b9;
    box-shadow: 0 4px 30px #fffaf3bb;
  }
}

.each_text_box h3 {
  gap: 12px;
  margin: 0 0 8px 0;
  font-weight: 700;
  font-size: 22px;
  color: var(--third-color);
}

.each_text_box p {
  margin: 0;
  font-size: 18px;
  color: #6b5e1a;
  padding-bottom: 12px;
}

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.mercofficial .icon-circle {
  background-color: #d4af37;
  box-shadow: 0 0 15px #d4af37cc;
}

.goldguarantee .icon-circle {
  background-color: #2a7a2a;
  box-shadow: 0 0 15px #2a7a2acc;
}

/* end trust banner section */

/* start previous work section */

.gallery-img {
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: zoom-in;
  width: 75%;
}

.gallery-img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.text_previous_work {
  color: #5a4620;
  font-weight: bold;
  padding: 10px 0;
}

/* end previous work section */

/* start testimonials section */
.custom-carousel {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  max-height: 620px;
  max-width: 850px;
  margin: auto;
}

.custom-carousel .carousel-inner {
  height: 100%;
}

.custom-carousel .carousel-item {
  height: 100%;
}

.custom-carousel img {
  height: 100vh;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* end testimonials section */

/* start offer section */

.offer-slider {
  background: linear-gradient(to left, #8b0000, #b22222);
  color: white;
  overflow: hidden;
  position: relative;
  height: 50px;
  display: flex;
  align-items: center;
  font-family: "Cairo", sans-serif;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.offer-track {
  display: flex;
  min-width: 100%;
  animation: scroll-left 20s linear infinite;
}

.offer-slide {
  min-width: max-content;
  padding: 0 2rem;
  font-weight: bold;
  color: #fff6f6;
  white-space: nowrap;
  font-size: 1rem;
}

.offer-slide s {
  color: #ffd1d1;
  margin-right: 5px;
}

.offer-slide strong {
  color: #ffeb3b;
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* end offer section */

/* start FQA section */

.accordion-button {
  background-color: #fff;
  color: #333;
  font-weight: 600;
  border: none;
  box-shadow: none;
  transition: background-color 0.3s ease;
  direction: rtl;
  text-align: right;
}

.accordion-button::after {
  margin-right: auto;
  margin-left: 0;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.accordion-button:not(.collapsed) {
  background-color: #f9f3e8;
  color: #bfa05a;
}

.accordion-item {
  border: 1px solid #e6d9bc;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-body {
  background-color: #fffefb;
  color: #444;
  font-size: 1rem;
}

.accordion-button:focus {
  box-shadow: none !important;
  border-color: transparent !important;
  outline: none !important;
}

/* end FQA section */

/* start footer  */
.footer {
  background-image: linear-gradient(to left, #261707, #4b3415);
  color: #f5deb3;
  padding: 40px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-section {
  flex: 1 1 300px;
  min-width: 280px;
}

.footer-logo {
  width: 160px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}

.footer-title {
  color: #d4af37;
  margin-bottom: 15px;
}

.footer-description {
  line-height: 1.6;
  font-size: 1.05rem;
}

.footer-subtitle {
  color: #d4af37;
  margin-bottom: 20px;
}

.features-list {
  list-style: none;
  padding: 0;
  font-size: 1rem;
  line-height: 2;
}

.features-list li {
  margin-bottom: 5px;
}

.features-list .highlight {
  margin-top: 15px;
  font-weight: bold;
  color: #f0e68c;
}

.offer-price {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.price-highlight {
  color: #ffd700;
}

.discount {
  color: #ff4500;
  font-weight: bold;
}

.offer-note {
  margin-bottom: 20px;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: wheat;
  margin-top: 20px;
}

.btn-contact {
  background-color: #d4af37;
  color: #1a1a1a;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-contact:hover {
  background-color: #b9972d;
  color: #1a1a1a;
}

/* end footer section */

/* start floating button */

.whatsapp-wrapper {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 999;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* .whatsapp-float {
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  font-size: 35px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #25d366;
  color: white;
} */

.whatsapp-wrapper {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
  direction: rtl;
}

.whatsapp-icon {
  background-color: #25d366;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.whatsapp-icon:hover {
  background-color: #1da851;
  color: white;
}

.whatsapp-text-box {
  background-color: #1da851;
  color: #333;
  padding: 10px 16px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

.whatsapp-text-box:hover {
  background-color:  #058c37;
  color: wheat;

}

/* end floating button */

/* responsive design */

@media (max-width: 767px) {
  .hero-img {
    width: 80%;
  }

  .logo {
    width: 120px;
  }

  .landing_content h1 {
    font-size: 40px;
  }

  .landing_content h3 {
    font-size: 1.3rem;
  }
  .logo-overlay {
    width: 100px;
    height: 100px;
  }
  .logo-offer {
    width: 200px;
  }
  .limited-time {
    font-size: 1.2rem;
  }
  .section-title {
    font-size: 30px;
  }
  .intro-text {
    font-size: 18px;
  }
  .luxury-card {
    margin-bottom: 20px;
  }
  .trust-banner .section-title,
  .offers .section-title {
    background-image: linear-gradient(to left, #261707, #4b3415);
    padding: 5px 20px;
    border-radius: 20px;
    color: #e6d9bc;
  }
  .our_previous_works,
  .faq,
  .our_Services,
  .our_benifits,
  .testimonials {
    padding: 40px 10px;
  }
  .footer-container {
    gap: 10px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .footer-bottom {
    margin-top: 20px;
  }

  .footer-logo {
    width: 200px;
  }

  .custom-carousel {
    max-height: 380px;
  }

  .custom-carousel img {
    height: 380px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-img {
    width: 100%;
  }
  .luxury-card {
    margin-bottom: 20px;
  }
  .trust-banner .section-title,
  .offers .section-title {
    background-image: linear-gradient(to left, #261707, #4b3415);
    padding: 5px 20px;
    border-radius: 20px;
    color: #e6d9bc;
  }
  .custom-carousel {
    max-height: 650px;
  }

  .custom-carousel img {
    height: 650px;
  }
  .accordion-button {
    font-size: 20px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .custom-carousel {
    max-height: 550px;
  }

  .custom-carousel img {
    height: 550px;
  }
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .custom-carousel {
    max-height: 600px;
  }

  .custom-carousel img {
    height: 600px;
  }
  .each_text_box {
    min-height: 150px;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.1rem;
    padding-left: 0.4rem;
  }
  .nav-item {
    font-size: 16px;
  }
}
