html, body {
  overflow-x: hidden;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 2px solid #ffc456;
  backdrop-filter: blur(10px);
  transition: transform 0.5s ease;
  will-change: transform;
}

.yellow-appointment {
  font-family: "Poppins", sans-serif;
  background-color: #ffc456;
}

.yellow-appointment h5 {
    font-size: 1.1rem;
}

.yellow-appointment h5 a {
  color: black;
  text-decoration: none;
  border-bottom: 2px dashed black;
  transition: color 0.5s ease, border-bottom 0.5s ease;
}

.yellow-appointment h5 a:hover {
  color: #0057b8;
  border-bottom: 2px dashed #0057b8;
}

.navigation-section {
  background-color: rgba(0, 0, 0, 0.4);
}

.navigation-section .nav-logo {
  fill: #ffc456;
  width: 110px;
}

.navigation-section nav ul li a {
  font-family: "Bebas Neue", sans-serif;
  color: white;
  text-decoration: none;
  position: relative;
  transition: color 0.5s ease;
}

.navigation-section nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  border-bottom: 2px dashed #ffc456;
  transition: width 0.8s ease;
}

.navigation-section nav ul li a:hover::after {
  width: 100%;
}

.navigation-section nav ul li a:hover {
  color: #ffc456;
}

.phone-circle {
  border-radius: 50%;
  border: 2px solid #ffc456;
  background-color: #b5912b;
}

.phone-div .number {
  font-family: "Poppins", sans-serif;
}

.number .workdays {
  color: #bbb;
}

.jumbotron-section .container {
  max-width: 100%;
  padding: 0;
  margin: 0;
}

.jumbotron-container {
  position: relative;
  width: 100%;
  height: 1100px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.jumbotron-container .shadow-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jumbotron-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jumbotron-logo-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -75%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.jumbotron-logo {
  fill: #ffc456;
  width: 50%;
  max-width: 475px;
  height: auto;
}

@media (max-width: 768px) {
.jumbotron-logo {
  fill: #ffc456;
  width: 60%;
  max-width: 475px;
  height: auto;
}

.jumbotron-logo-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -82%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

  }


.arrow-container {
  position: absolute;
  top: 68%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.arrow-container a {
  color: #fff;
  font-size: 5rem;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  padding-top: 5px;
  padding-bottom: 20px;
  padding-right: 20px;
  padding-left: 20px;
}

.arrow-container a svg {
  transition: transform 0.4s ease;
}

.arrow-container a:hover svg {
  transform: translateY(10px);
}

@media (max-width: 768px) {
.arrow-container {
  position: absolute;
  top: 64%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
}

/* Add these styles to your existing CSS */
.jumbotron-social-icons {
    position: absolute;
    top: 55%;
    right: 15%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 10;
}

.jumbotron-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.jumbotron-social-icon:hover {
    transform: translateX(-10px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.jumbotron-social-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}



/* Responsive adjustments */
@media (max-width: 1200px) {
    .jumbotron-social-icons {
        right: 5%;
    }
}

@media (max-width: 992px) {
    .jumbotron-social-icons {
        right: 3%;
        gap: 15px;
    }
    
    .jumbotron-social-icon {
        width: 45px;
        height: 45px;
    }
    
    .jumbotron-social-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 768px) {
    .jumbotron-social-icons {
        top: 55%;
        right: 20px;
        gap: 14px;
    }
    
    .jumbotron-social-icon {
        width: 40px;
        height: 40px;
    }
    
    .jumbotron-social-icon svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 576px) {
    .jumbotron-social-icons {
        right: 2%;
        gap: 10px;
    }
    
    .jumbotron-social-icon {
        width: 35px;
        height: 35px;
    }
    
    .jumbotron-social-icon svg {
        width: 16px;
        height: 16px;
    }
}

.upward-arrow {
  position: fixed;
  top: 740px;
  right: 30px;
  z-index: 1000;
  border-radius: 50%;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.4);
  cursor: pointer; /* Add this line */
}

.upward-arrow svg {
  font-size: 40px;
  color: #fff;
}

.introduction-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 120px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.intro-image-container {
  position: relative;
  border-top-right-radius: 120px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  height: 700px;
}

.intro-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #b5912b;
  padding: 20px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  text-align: center;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-top-left-radius: 42px;
  border-left: 2px solid #ffc456;
  border-top: 2px solid #ffc456;
}

.starting-date {
  color: #ffc456;
}

.intro-content {
  padding-left: 3rem;
}

.intro-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 2rem;
  line-height: 1.1;
  letter-spacing: 2px;
}

.intro-text {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2.5rem;
  text-align: justify;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #333;
}

@media (max-width: 992px) {
  .intro-content {
    padding-left: 0;
    padding-top: 2rem;
  }
  .intro-title {
    font-size: 3rem;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .introduction-section {
    padding: 80px 0;
  }
  .intro-title {
    font-size: 2.5rem;
  }
  .intro-text {
    font-size: 1rem;
  }
  .intro-image-container {
    height: 600px;
  }
  .experience-badge {
    font-size: 1.2rem;
    padding: 15px;
  }
}


/* Video section styles */
.video-section .container {
    max-width: 100%;
}
.video-section .container .row {
    padding: 0;
}
.video-section .container .row .col {
    padding: 0;
}
.video-container {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

/* Wrap the video in a relative container */
.video-wrapper {
    position: relative;
    display: inline-block;
}

.video-player {
    width: auto;
    height: 750px;
    max-width: 100%;
    object-fit: contain;
    display: block;
}
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    cursor: pointer;
}
.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}
.play-button {
    width: 100px;
    height: 100px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}
.play-button:hover {
    transform: scale(1.1);
}
.play-icon {
    width: 0;
    height: 0;
    border-left: 25px solid #fff;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    margin-left: 5px;
    fill: #fff;
}
@media (max-width: 768px) {
    .video-section {
        padding: 0;
    }
    
    .video-player {
        width: 100%;
        height: auto;
    }
    
    .play-button {
        width: 80px;
        height: 80px;
    }
    
    .play-icon {
        border-left: 20px solid #fff;
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
    }
}

        .location-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            padding: 120px 0;
        }

        .section-title {
            font-family: "Bebas Neue", sans-serif;
            font-size: 4rem;
            text-align: center;
            margin-bottom: 3rem;
            color: #ffc456;
            position: relative;
        }

        .section-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #ffc456;
        }

        .location-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 30px;
            border: 2px solid rgba(255, 196, 86, 0.2);
            backdrop-filter: blur(10px);
            height: 100%;
        }

        .location-title {
            font-family: "Bebas Neue", sans-serif;
            font-size: 2.5rem;
            color: #ffc456;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .map-container {
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .map-container iframe {
            width: 100%;
            height: 500px;
            border: none;
        }

        .location-description {
            font-family: "Bebas Neue", sans-serif;
            font-size: 1.5rem;
            color: white;
            line-height: 1.2;
            text-align: center;
            margin-top: 1rem;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 3rem;
            }
            .location-title {
                font-size: 2rem;
            }
            .location-card {
                padding: 1.5rem;
            }
            .map-container iframe {
                height: 250px;
            }
        }

.social-media-section {
  background: rgba(255, 196, 86, 0.1);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 2rem;
  border: 2px solid rgba(255, 196, 86, 0.3);
  text-align: center;
}

.social-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  color: #ffc456;
  margin-bottom: 2rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.social-icon:hover {
  transform: translateY(-5px);
}

.whatsapp-icon {
  background: linear-gradient(45deg, #25D366, #128C7E);
  animation: jump 1.5s ease-in-out infinite;
  transform-origin: bottom center;
}

@keyframes jump {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-7px);
  }
}
.whatsapp-icon {
  background: linear-gradient(45deg, #25D366, #128C7E);
  animation: wiggleJump 1.8s ease-in-out infinite;
  transform-origin: center;
}

@keyframes wiggleJump {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(-5deg);
  }
  50% {
    transform: translateY(-18px) rotate(0deg);
  }
  75% {
    transform: translateY(-8px) rotate(5deg);
  }
}
/* Pulse jump - grows and jumps */
.whatsapp-icon-pulse {
  background: linear-gradient(45deg, #25D366, #128C7E);
  animation: pulseJump 2.2s ease-in-out infinite;
}

@keyframes pulseJump {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  30% {
    transform: translateY(-12px) scale(1.1);
  }
  60% {
    transform: translateY(-5px) scale(1.05);
  }
}
.whatsapp-icon {
  background: linear-gradient(45deg, #25D366, #128C7E);
  animation: bounceFloat 2.5s ease-in-out infinite;
  transform-origin: center;
}

@keyframes bounceFloat {
  0%, 100% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
  15% {
    transform: translateY(-8px) scale(1.02) rotate(2deg);
  }
  30% {
    transform: translateY(-20px) scale(1.08) rotate(-1deg);
  }
  45% {
    transform: translateY(-12px) scale(1.05) rotate(1deg);
  }
  60% {
    transform: translateY(-25px) scale(1.1) rotate(-2deg);
  }
  75% {
    transform: translateY(-6px) scale(1.03) rotate(1deg);
  }
  90% {
    transform: translateY(-3px) scale(1.01) rotate(0deg);
  }
}
.whatsapp-icon {
  background: linear-gradient(45deg, #25D366, #128C7E);
  animation: jump 1.5s ease-in-out infinite;
  transform-origin: bottom center;
}

@keyframes jump {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-7px);
  }
}
/* Alternative smoother jump animation */
.whatsapp-icon-smooth {
  background: linear-gradient(45deg, #25D366, #128C7E);
  animation: smoothJump 1s ease-out infinite;
}

@keyframes smoothJump {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.instagram-icon {
  background: linear-gradient(45deg, #E4405F, #9B59B6, #FCAF45);
}

.tiktok-icon {
  color: #000;
  background: linear-gradient(45deg, #25F4D0, #FE2C55, #1A1A1D);
}

.facebook-icon {
  color: white;
  background: linear-gradient(to right, #1877F2, #4c8bf5);
}

.social-icon svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.contact-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: rgba(255, 196, 86, 0.1);
  border-radius: 20px;
  border: 2px solid rgba(255, 196, 86, 0.3);
}

.cta-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  color: #ffc456;
  margin-bottom: 1rem;
}

.cta-text {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  color: #bbb;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 80px 0;
  }
  .section-title {
    font-size: 3rem;
  }
  .location-title {
    font-size: 2rem;
  }
  .location-card {
    padding: 1.5rem;
  }
  .map-container iframe {
    height: 250px;
  }
  .social-icon {
    width: 50px;
    height: 50px;
  }
  .social-icon svg {
    width: 25px;
    height: 25px;
  }
  .cta-title {
    font-size: 2rem;
  }
  .cta-text {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .location-card {
    padding: 1rem;
  }
  .social-icons {
    gap: 1rem;
  }
  .contact-cta {
    padding: 2rem;
    margin-top: 2rem;
  }
}
.prices-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 120px 0;
  color: white;
}

.prices-section .container {
  max-width: 1300px;
}

.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #ffc456;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #ffc456;
}

.service-category {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  border: 2px solid rgba(255, 196, 86, 0.2);
  backdrop-filter: blur(10px);
}

.category-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  color: #ffc456;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.category-icon {
  width: 40px;
  height: 40px;
  fill: #ffc456;
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-item:last-child {
  border-bottom: none;
}

.service-name {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
}

.service-price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  color: #ffc456;
  font-weight: bold;
}

.price-currency {
  font-size: 1.2rem;
  margin-left: 5px;
}

.special-service {
  background: linear-gradient(45deg, rgba(255, 196, 86, 0.1), rgba(165, 131, 53, 0.1));
  border-left: 1px solid #ffc456;
}

html[dir="rtl"] .special-service {
  border-left: none;
  border-right: 1px solid #ffc456;
}



.cta-section {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: rgba(255, 196, 86, 0.1);
  border-radius: 20px;
  border: 2px solid rgba(255, 196, 86, 0.3);
}

.cta-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  color: #ffc456;
  margin-bottom: 1rem;
}

.cta-text {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  color: #bbb;
  margin-bottom: 2rem;
}

.book-btn {
  background: #ffc456;
  border: none;
  color: #000;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
  .category-title {
    font-size: 2rem;
  }
  .service-category {
    padding: 1.5rem;
  }
  .service-name {
    font-size: 1rem;
  }
  .service-price {
    font-size: 1.5rem;
  }
}
.enhanced-footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  color: white;
}

.enhanced-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #ffc456;
}

.footer-section h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  color: #ffc456;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-align: center;
}

.working-hours {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hours-display {
  background: rgba(255, 196, 86, 0.1);
  border: 2px solid rgba(255, 196, 86, 0.3);
  border-radius: 15px;
  padding: 20px 30px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  color: #ffc456;
  backdrop-filter: blur(10px);
  text-align: center;
}

.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.whatsapp-cta {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  color: #bbb;
  margin-bottom: 1rem;
  line-height: 1.6;
  text-align: center;
}

.whatsapp-highlight {
  color: #25D366;
  font-weight: 600;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  text-decoration: none;
}

.social-icon:hover {
  transform: translateY(-5px);
}

.whatsapp-icon {
  background: linear-gradient(45deg, #25D366, #128C7E);
}

.instagram-icon {
  background: linear-gradient(45deg, #E4405F, #9B59B6, #FCAF45);
}

.tiktok-icon {
  color: #000;
  background: linear-gradient(45deg, #25F4D0, #FE2C55, #1A1A1D);
}

.facebook-icon {
  color: white;
  background: linear-gradient(to right, #1877F2, #4c8bf5);
}

.social-icon svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.copyright-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.logo-container {
  margin-bottom: 1rem;
}

.footer-logo {
  fill: #ffc456;
  width: 100px;
  height: auto;
}

.copyright-text {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: #888;
  line-height: 1.6;
  text-align: center;
}

.domain {
  color: #ffc456;
  font-weight: 600;
}

.divider {
  width: 100px;
  height: 1px;
  background: #ffc456;
  margin: 10px 0;
}

@media (max-width: 992px) {
  .footer-section h3 {
    font-size: 2rem;
  }
  .hours-display {
    font-size: 1.6rem;
    padding: 15px 25px;
  }
}
@media (max-width: 768px) {
  .enhanced-footer {
    padding: 40px 0;
  }
  .footer-section h3 {
    font-size: 1.8rem;
  }
  .hours-display {
    font-size: 1.4rem;
    padding: 12px 20px;
  }
  .social-icon {
    width: 50px;
    height: 50px;
  }
  .social-icon svg {
    width: 25px;
    height: 25px;
  }
  .whatsapp-cta {
    font-size: 1rem;
  }
}

/* Custom Navbar Toggler Styling */
.navbar-toggler {
  border: 3px solid #ffc456;
  border-radius: 6px;
  background-color: rgba(255, 196, 86, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 90px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-toggler:hover {
  background-color: rgba(255, 196, 86, 0.2);
  border-color: #a58335;
  box-shadow: 0 6px 20px rgba(255, 196, 86, 0.4);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.3rem rgba(255, 196, 86, 0.5);
  border-color: #ffc456;
  outline: none;
}

/* Custom toggler icon - three horizontal lines */
.navbar-toggler-icon {
  background-image: none !important;
  width: 30px;
  height: 24px;
  position: relative;
  display: block;
  background-color: transparent;
}

/* Create the three lines using pseudo-elements and the main element */
.navbar-toggler-icon,
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  width: 30px;
  height: 3px;
  background-color: #ffc456;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: absolute;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  left: 0;
}

/* Position the lines */
.navbar-toggler-icon {
  top: 50%;
}

.navbar-toggler-icon::before {
  top: -10px;
  transform-origin: center;
}

.navbar-toggler-icon::after {
  top: 10px;
  transform-origin: center;
}

/* Animation when toggler is active/expanded */
.navbar-toggler[aria-expanded=true] .navbar-toggler-icon {
  background-color: transparent;
}

.navbar-toggler[aria-expanded=true] .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
  background-color: #a58335;
}

.navbar-toggler[aria-expanded=true] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  top: 0;
  background-color: #a58335;
}

/* Enhanced premium style */
.navbar-toggler.premium-style {
  background: linear-gradient(45deg, rgba(255, 196, 86, 0.15), rgba(165, 131, 53, 0.15));
  border: 3px solid rgba(255, 196, 86, 0.4);
  border-radius: 15px;
  padding: 18px 20px;
  width: 65px;
  height: 55px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.navbar-toggler.premium-style:hover {
  background: linear-gradient(45deg, rgba(255, 196, 86, 0.25), rgba(165, 131, 53, 0.25));
  border-color: #ffc456;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .navbar-toggler {
    width: 55px;
    height: 45px;
    padding: 12px 15px;
    border-width: 2px;
  }
  .navbar-toggler-icon,
  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    width: 25px;
    height: 2.5px;
  }
  .navbar-toggler-icon::before {
    top: -8px;
  }
  .navbar-toggler-icon::after {
    top: 8px;
  }
}
@media (max-width: 576px) {
  .navbar-toggler {
    border: 1px solid #ffc456;
    width: 70px;
    height: 60px;
  }
  .navbar-toggler-icon,
  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    width: 22px;
    height: 2px;
  }
  .navbar-toggler-icon::before {
    top: -7px;
  }
  .navbar-toggler-icon::after {
    top: 7px;
  }
}

html[lang="ar"] .yellow-appointment, html[lang="ar"] .navigation-section nav ul li a, html[lang="ar"] .phone-div .number, html[lang="ar"] .experience-badge, html[lang="ar"] .intro-title, html[lang="ar"] .intro-text, html[lang="ar"] .feature-item, html[lang="ar"] .section-title, html[lang="ar"] .location-title, html[lang="ar"] .location-description, html[lang="ar"] .social-title, html[lang="ar"] .cta-title, html[lang="ar"] .cta-text, html[lang="ar"] .category-title, html[lang="ar"] .service-name, html[lang="ar"] .service-price, html[lang="ar"] .book-btn, html[lang="ar"] .footer-section h3, html[lang="ar"] .hours-display, html[lang="ar"] .whatsapp-cta, html[lang="ar"] .copyright-text {
  font-family: "Alexandria", sans-serif;
  font-weight: 300;
}  

html[lang="ar"] .intro-title {
  font-size: 3.5rem;
  font-weight: 500;
}

html[lang="ar"] .intro-text {
  font-size: 1.2rem;
}

