/*
Theme Name: taysirvip
Theme URI: https://taysirvip.com
Author: Powered By egy4server
Author URI: https://wordpress.org/
Description: taysirvip Company is a modernized take on an ever-popular WordPress layout — the horizontal masthead with an optional right sidebar that works perfectly for blogs and websites. It has custom color options with beautiful default color schemes, a harmonious fluid grid using a mobile-first approach, and impeccable polish in every detail. Twenty Sixteen will make your WordPress look beautiful everywhere.
*/

/* Marriage — light color palette */
:root {
  --marriage-cream: #FFFBF8;
  --marriage-ivory: #FFF5F7;
  --marriage-blush: #F9E8EE;
  --marriage-blush-deep: #F0D4DF;
  --marriage-rose: #D4919A;
  --marriage-rose-soft: #E8B8C4;
  --marriage-gold: #C9A66B;
  --marriage-gold-light: #E8D9C0;
  --marriage-lavender: #EDE4F0;
  --marriage-text: #6B4F55;
  --marriage-text-dark: #5A3D45;
  --marriage-text-muted: #9A8088;
  --marriage-white: #FFFFFF;
  --marriage-border: rgba(212, 145, 154, 0.3);
  --marriage-shadow: rgba(107, 79, 85, 0.08);
  --marriage-shadow-md: rgba(107, 79, 85, 0.14);
  --marriage-whatsapp: #25D366;
  --marriage-whatsapp-dark: #1ea952;
  --marriage-gold-tint: rgba(232, 217, 192, 0.35);
  --marriage-rose-tint: rgba(232, 184, 196, 0.25);
}

/* Index (homepage) */
body.home,
body.blog {
  background: var(--marriage-cream);
}

/* Homepage hero */
.marriage-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('https://taysirvip.com/wp-content/uploads/2026/05/hero-section-2.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.marriage-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 1;
}

.marriage-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--marriage-white);
  padding: 5rem 1rem;
  max-width: 920px;
}

.marriage-hero__title {
  font-size: clamp(1.75rem, 5vw, 2.85rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--marriage-white);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
  line-height: 1.35;
}

.marriage-hero__lead {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--marriage-gold-light);
  font-weight: 700;
  margin-bottom: 1rem;
}

.marriage-hero__text {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.marriage-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.marriage-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.marriage-hero__btn i {
  font-size: 1.2rem;
}

.marriage-hero__btn:hover {
  transform: translateY(-3px);
  color: var(--marriage-white);
  text-decoration: none;
}

.marriage-hero__btn--phone {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: var(--marriage-white);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.marriage-hero__btn--whatsapp {
  background: linear-gradient(135deg, var(--marriage-whatsapp), var(--marriage-whatsapp-dark));
  color: var(--marriage-white);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

@media (max-width: 576px) {
  .marriage-hero {
    min-height: 75vh;
  }

  .marriage-hero__content {
    padding: 4rem 1rem;
  }

  .marriage-hero__btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* Homepage about us */
.marriage-about {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--marriage-white) 0%, var(--marriage-blush) 100%);
}

.marriage-about__image-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px var(--marriage-shadow-md);
  border: 3px solid var(--marriage-gold-light);
}

.marriage-about__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 320px;
}

.marriage-about__badge {
  display: inline-block;
  background: var(--marriage-gold-light);
  color: var(--marriage-text-dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.marriage-about__title {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 800;
  color: var(--marriage-text-dark);
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.marriage-about__text {
  color: var(--marriage-text);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1rem;
}

.marriage-about__features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.marriage-about__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--marriage-text-dark);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.85rem;
  padding: 0.65rem 1rem;
  background: var(--marriage-white);
  border-radius: 10px;
  border: 1px solid var(--marriage-border);
  box-shadow: 0 4px 14px var(--marriage-shadow);
}

.marriage-about__features li i {
  color: var(--marriage-rose);
  font-size: 1.1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .marriage-about {
    padding: 3.5rem 0;
  }

  .marriage-about__image {
    min-height: 260px;
  }
}

/* Homepage services */
.marriage-services {
  padding: 5rem 0;
  background: linear-gradient(180deg, #3d2a30 0%, #2a1c21 100%);
  color: var(--marriage-white);
}

.marriage-services__header {
  max-width: 720px;
  margin: 0 auto 3rem;
}

.marriage-services__badge {
  display: inline-block;
  background: var(--marriage-gold);
  color: var(--marriage-white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.marriage-services__title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--marriage-white);
  margin-bottom: 1rem;
}

.marriage-services__subtitle {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
}

.marriage-services__card {
  height: 100%;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.marriage-services__card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.marriage-services__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--marriage-rose), var(--marriage-gold));
  color: var(--marriage-white);
  font-size: 1.75rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

.marriage-services__card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--marriage-white);
  margin-bottom: 0.75rem;
}

.marriage-services__card-text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 991px) {
  .marriage-services {
    padding: 3.5rem 0;
  }

  .marriage-services__header {
    margin-bottom: 2rem;
  }
}

/* Homepage process steps */
.marriage-process {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--marriage-cream) 0%, var(--marriage-white) 100%);
}

.marriage-process__header {
  max-width: 720px;
  margin: 0 auto 3rem;
}

.marriage-process__badge {
  display: inline-block;
  background: var(--marriage-rose-soft);
  color: var(--marriage-text-dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.marriage-process__title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--marriage-text-dark);
  margin-bottom: 1rem;
}

.marriage-process__subtitle {
  color: var(--marriage-text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
}

.marriage-process__steps {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
}

.marriage-process__step {
  flex: 1 1 160px;
  max-width: 200px;
  text-align: center;
  padding: 1.25rem 0.75rem;
  position: relative;
}

.marriage-process__step-num {
  position: absolute;
  top: 0;
  right: 50%;
  transform: translateX(50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--marriage-gold);
  color: var(--marriage-white);
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px var(--marriage-shadow-md);
}

.marriage-process__step-icon {
  width: 64px;
  height: 64px;
  margin: 1.5rem auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--marriage-blush), var(--marriage-gold-light));
  color: var(--marriage-text-dark);
  font-size: 1.5rem;
  border: 2px solid var(--marriage-border);
  box-shadow: 0 8px 20px var(--marriage-shadow);
}

.marriage-process__step-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--marriage-text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.marriage-process__step-text {
  font-size: 0.9rem;
  color: var(--marriage-text);
  line-height: 1.65;
  margin: 0;
}

.marriage-process__connector {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--marriage-rose);
  font-size: 1rem;
  padding-top: 3.5rem;
  opacity: 0.7;
}

@media (max-width: 991px) {
  .marriage-process {
    padding: 3.5rem 0;
  }

  .marriage-process__header {
    margin-bottom: 2rem;
  }

  .marriage-process__steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .marriage-process__step {
    max-width: 340px;
    width: 100%;
    flex: none;
  }

  .marriage-process__connector {
    padding: 0.25rem 0;
    transform: rotate(-90deg);
  }
}

/* Homepage client reviews */
.marriage-reviews {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--marriage-white) 0%, var(--marriage-blush) 100%);
}

.marriage-reviews__header {
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.marriage-reviews__badge {
  display: inline-block;
  background: var(--marriage-gold-light);
  color: var(--marriage-text-dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.marriage-reviews__title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--marriage-text-dark);
  margin-bottom: 1rem;
}

.marriage-reviews__subtitle {
  color: var(--marriage-text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
}

.marriage-reviews__owl {
  position: relative;
}

/* Fallback grid before Owl initializes */
.marriage-reviews__owl:not(.owl-loaded) {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.marriage-reviews__owl:not(.owl-loaded) > .item {
  flex: 1 1 280px;
  max-width: 360px;
}

/* Reviews Owl Carousel fixes */
#reviews-owl.owl-carousel {
  overflow: visible;
}

#reviews-owl .owl-stage-outer {
  overflow: hidden;
  padding: 8px 4px 12px;
}

#reviews-owl .owl-item {
  display: flex;
}

#reviews-owl .owl-item > .item {
  width: 100%;
  height: 100%;
}

.marriage-reviews__card {
  background: var(--marriage-white);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--marriage-border);
  box-shadow: 0 12px 32px var(--marriage-shadow-md);
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.marriage-reviews__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--marriage-border);
}

.marriage-reviews__user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.marriage-reviews__avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--marriage-blush), var(--marriage-gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--marriage-text-dark);
  font-size: 1.75rem;
  border: 2px solid var(--marriage-border);
}

.marriage-reviews__name {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--marriage-text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.marriage-reviews__stars {
  flex-shrink: 0;
  display: flex;
  gap: 0.15rem;
  color: var(--marriage-gold);
  font-size: 0.95rem;
}

.marriage-reviews__stars .far {
  color: var(--marriage-text-muted);
  opacity: 0.45;
}

.marriage-reviews__text {
  color: var(--marriage-text);
  font-size: 0.98rem;
  line-height: 1.85;
  margin: 0;
  flex: 1;
}

#reviews-owl.owl-carousel .owl-nav {
  position: relative;
  margin-top: 1.5rem;
  text-align: center;
}

#reviews-owl.owl-carousel .owl-nav button {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--marriage-white) !important;
  border: 1px solid var(--marriage-border) !important;
  color: var(--marriage-text-dark) !important;
  box-shadow: 0 6px 18px var(--marriage-shadow);
  margin: 0 8px;
  font-size: 1rem;
}

#reviews-owl.owl-carousel .owl-nav button:hover {
  background: var(--marriage-rose-soft) !important;
  color: var(--marriage-text-dark) !important;
}

#reviews-owl.owl-carousel .owl-nav button.owl-prev,
#reviews-owl.owl-carousel .owl-nav button.owl-next {
  left: auto !important;
  right: auto !important;
}

#reviews-owl .owl-dots {
  margin-top: 1.25rem;
  text-align: center;
}

#reviews-owl .owl-dot span {
  background: var(--marriage-rose-soft) !important;
  width: 10px;
  height: 10px;
}

#reviews-owl .owl-dot.active span {
  background: var(--marriage-rose) !important;
}

@media (max-width: 991px) {
  .marriage-reviews {
    padding: 3.5rem 0;
  }

  .marriage-reviews__card-top {
    flex-wrap: wrap;
  }

  .marriage-reviews__stars {
    width: 100%;
    justify-content: flex-end;
  }
}

/* Navbar (index via header) */
.traffic-navbar {
  background: var(--marriage-white);
  border-bottom: 3px solid var(--marriage-gold-light);
  font-weight: bold;
  position: relative;
}

.traffic-navbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--marriage-rose-soft), var(--marriage-gold-light), var(--marriage-rose-soft));
}

.navbar-logo {
  width: 100px;
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
  transform: scale(1.05);
}

.traffic-navbar .navbar-nav > li > a {
  color: var(--marriage-text-dark);
  font-weight: 700;
  font-size: 16px;
  padding: 10px 18px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.traffic-navbar .navbar-nav > li > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--marriage-blush), var(--marriage-gold-light));
  opacity: 0.35;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  z-index: -1;
}

.traffic-navbar .navbar-nav > li > a:hover::before {
  transform: translateY(0);
}

.traffic-navbar .navbar-nav > li > a:hover {
  color: var(--marriage-text-dark);
  background: var(--marriage-blush);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--marriage-shadow);
}

.traffic-navbar .navbar-nav > li.current-menu-item > a,
.traffic-navbar .navbar-nav > li.current_page_item > a {
  background: linear-gradient(135deg, var(--marriage-gold-light), var(--marriage-gold));
  color: var(--marriage-text-dark);
  font-weight: 800;
  box-shadow: 0 4px 15px var(--marriage-shadow-md);
}

.traffic-navbar .navbar-nav > li.current-menu-item > a:hover,
.traffic-navbar .navbar-nav > li.current_page_item > a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--marriage-shadow-md);
}

.traffic-navbar .navbar-nav .dropdown-menu,
.traffic-navbar .navbar-nav .sub-menu {
  border: 2px solid var(--marriage-gold-light);
  border-radius: 12px;
  box-shadow: 0 8px 30px var(--marriage-shadow-md);
  padding: 8px;
  margin-top: 10px;
  background: var(--marriage-white);
}

.traffic-navbar .navbar-nav .dropdown-menu li a,
.traffic-navbar .navbar-nav .sub-menu li a {
  color: var(--marriage-text-dark);
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.traffic-navbar .navbar-nav .dropdown-menu li a:hover,
.traffic-navbar .navbar-nav .sub-menu li a:hover {
  background: linear-gradient(135deg, var(--marriage-rose-soft), var(--marriage-rose));
  color: var(--marriage-white);
  transform: translateX(5px);
  padding-left: 20px;
}

@media (max-width: 991px) {
  .navbar-logo {
    width: 90px;
  }

  .traffic-navbar .navbar-nav > li > a {
    text-align: right;
  }
}

@media (max-width: 576px) {
  .navbar-logo {
    width: 80px;
  }
}

.navbar-brand img {
  width: 100px;
  max-width: 100%;
  height: auto;
}

/* Footer */
.traffic-footer {
  background: linear-gradient(135deg, var(--marriage-blush) 0%, var(--marriage-cream) 50%, var(--marriage-lavender) 100%);
  color: var(--marriage-text-dark);
  position: relative;
  overflow: hidden;
}

.traffic-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--marriage-gold-light), var(--marriage-rose-soft), var(--marriage-gold-light));
}

.footer-top {
  padding: 60px 0 40px;
  position: relative;
}

.footer-column {
  padding: 20px;
  margin-bottom: 20px;
}

.footer-icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--marriage-gold-light), var(--marriage-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px var(--marriage-shadow-md);
  transition: all 0.3s ease;
}

.footer-column:hover .footer-icon-box {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px var(--marriage-shadow-md);
}

.footer-icon-box i {
  font-size: 28px;
  color: var(--marriage-text-dark);
}

.footer-title {
  color: var(--marriage-rose);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-text {
  color: var(--marriage-text);
  line-height: 1.8;
  font-size: 16px;
  margin: 0;
}

.footer-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--marriage-whatsapp), var(--marriage-whatsapp-dark));
  color: var(--marriage-white);
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
  margin-top: 10px;
}

.footer-whatsapp-btn:hover {
  background: linear-gradient(135deg, var(--marriage-whatsapp-dark), var(--marriage-whatsapp));
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  color: var(--marriage-white);
}

.footer-whatsapp-btn i {
  font-size: 24px;
}

.footer-bottom {
  background: rgba(255, 255, 255, 0.45);
  padding: 20px 0;
  border-top: 1px solid var(--marriage-border);
}

.footer-bottom-content {
  text-align: center;
}

.footer-copyright {
  color: var(--marriage-text);
  font-size: 15px;
  margin: 0;
  font-weight: 600;
}

@media (max-width: 768px) {
  .footer-top {
    padding: 40px 0 30px;
  }

  .footer-column {
    padding: 15px;
    margin-bottom: 30px;
  }

  .footer-icon-box {
    width: 60px;
    height: 60px;
  }

  .footer-icon-box i {
    font-size: 24px;
  }

  .footer-title {
    font-size: 20px;
  }

  .footer-text {
    font-size: 15px;
  }

  .footer-whatsapp-btn {
    padding: 10px 20px;
    font-size: 15px;
  }

  .footer-whatsapp-btn i {
    font-size: 20px;
  }

  .footer-copyright {
    font-size: 14px;
  }
}

header {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* owl carousel arrows */


/* Base styles for Owl Carousel navigation arrows */
.owl-carousel:not(#reviews-owl) {
    position: relative; /* Ensure the carousel is the reference for absolute positioning */
    overflow: hidden; /* Prevent overflow */
}

.owl-carousel:not(#reviews-owl) .owl-nav button {
    background-color: rgba(0, 0, 0, 0.5) !important;
    color: white !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 0.3s ease;
    z-index: 10; /* Ensure arrows are above the carousel items */
}

.owl-carousel:not(#reviews-owl) .owl-nav button:hover {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

.owl-carousel:not(#reviews-owl) .owl-nav button.owl-prev {
    left: 10px; /* Position the left arrow inside the carousel */
}

.owl-carousel:not(#reviews-owl) .owl-nav button.owl-next {
    right: 10px; /* Position the right arrow inside the carousel */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
    .owl-carousel:not(#reviews-owl) .owl-nav button {
        width: 30px; /* Smaller arrows for mobile */
        height: 30px;
        font-size: 14px; /* Smaller icon size */
    }

    .owl-carousel:not(#reviews-owl) .owl-nav button.owl-prev {
        left: 5px; /* Move arrows closer to the edge but still inside the carousel */
    }

    .owl-carousel:not(#reviews-owl) .owl-nav button.owl-next {
        right: 5px; /* Move arrows closer to the edge but still inside the carousel */
    }
}
/* End owl carousel arrows */



  body {
        font-family: 'Readex Pro', sans-serif;
  }

  .social-icons {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    background: white;
    padding: 5px;
    border: 1px solid blue;
    border-radius: 5px;
  }
  
  .social-icons a {
    display: block;
    margin: auto;
  }


/* Container for floating contacts */
.contact-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

/* Shared styles for icons */
.contact-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  position: relative;
  transition: all 0.3s ease;
}

/* Specific colors */
.phone-icon {
  background: #007bff;
}

.whatsapp-icon {
  background: #25d366;
}

/* Hover effects */
.contact-icon:hover {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Tooltip */
.contact-icon .tooltip {
  position: absolute;
  right: 65px;
  background: #222;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 14px;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(10px);
}

.contact-icon:hover .tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive: smaller icons on mobile */
@media (max-width: 576px) {
  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  .contact-icon .tooltip {
    font-size: 12px;
    right: 55px;
  }
}



/* carousel */
.custom-bg-dark {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/banner-bg.webp');
    background-size: cover; /* Cover the entire container */
    background-position: center; /* Center the background image */
    color: #fff; /* White text color */
}

.carousel-item {
  position: relative;
}


.carousel-item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
/* carousel */

/* image post responsive */


.wp-block-image img{
  max-width: 100%;
  height: auto;
  display: block;
  margin: auto;
}
/* end image post responsive */

/* home page posts pagination */

/* end of home page posts pagination */

/* navbar */
.navbar{
  background-color: white !important;
}
.navbar a{
  color:black !important;
}
.ltr{
direction: ltr !important;
}

.rtl{
  direction: rtl !important;
  }

/* end navbar */


/* Packages  */

 .pricing {
      margin-top: 50px;
    }
    .pricing .card {
      border: none;
      border-radius: 15px;
      transition: all 0.3s;
      box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    }
    .pricing .card:hover {
      transform: translateY(-10px);
    }
    .pricing .card-header {
      background-color: #f9f9f9;
      border-bottom: none;
      padding: 20px;
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
    }
    .pricing .card-body {
      padding: 40px;
    }
    .pricing .price {
      font-size: 25px;
      font-weight: bold;
      color: #007bff;
    }

/* End Packages */


/* pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.pagination ul {
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination li {
  display: inline-block;
  margin: 0;
}

.pagination .page-link {
  display: inline-block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.pagination .page-link:hover {
  background-color: #333;
  color: #fff;
  border-color: #333;
}

.pagination .page-item.active .page-link {
  background-color: #333;
  color: #fff;
  border-color: #333;
}

/* end pagination */


@media (max-width: 767px) {
.counter {
  margin-top: 50px;
}
}




/* cards */

/* end cards */

/* location */

.map-container {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 aspect ratio */
}
.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  /* Adjust map size for small screens */
  .map-container {
    padding-top: 75%; /* 4:3 aspect ratio */
  }
}


/* end location */

/*  embdaded video */
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 aspect ratio (h/w * 100) */
}

.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* about us */

 /* CSS styles */
 .section-title {
  font-size: 24px;
  font-weight: bold;
}

.section-item {
  margin-bottom: 10px;
  font-size: 18px;
}

.icon {
  margin-right: 10px;
}
/* end about us */

/* contact us */

.wpcf7 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Style form elements */
.wpcf7-form {
  max-width: 400px;
  padding: 20px;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
  direction: rtl;

}

form.wpcf7-form.sent {
    margin-top: 50px;
}

.wpcf7-form p {
  margin-bottom: 20px;
}

.wpcf7-form label {
  font-weight: bold;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.wpcf7-form input[type="submit"] {
  width: 100%;
  padding: 10px;
  background-color: #4CAF50;
  border: none;
  color: white;
  cursor: pointer;
}

.wpcf7-form input[type="submit"]:hover {
  background-color: #45a049;
}

.wpcf7-response-output {
  margin-top: 20px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #f9f9f9;
}
/* end contact us  */


/* location */

.map-container {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 aspect ratio */
}
.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  /* Adjust map size for small screens */
  .map-container {
    padding-top: 75%; /* 4:3 aspect ratio */
  }
}


/* end location */

/* styles.css */

/* Service container styles */
.service {
  text-align: center;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease; /* Added for smooth transition */
}

/* Icon wrapper styles */
.icon-wrapper {
  margin-bottom: 20px; /* Increased margin for better spacing */
}

/* Icon styles */
.service .icon-wrapper i {
  color: #007bff; /* Default icon color */
  font-size: 3rem; /* Increased icon size for better visibility */
  transition: all 0.3s ease; /* Added for smooth transition */
}

/* Title styles */
.service h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

/* Paragraph styles */
.service p {
  font-size: 18px;
}

/* Hover effect */
.service:hover {
  transform: translateY(-5px); /* Move the service box up slightly on hover */
}

/* Color change */
.service:hover .icon-wrapper i {
  color: #ff6347; /* Change icon color on hover */
}


/* social icons style */

/* Container for floating contacts */
.contact-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

/* Shared styles for icons */
.contact-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  position: relative;
  transition: all 0.3s ease;
}

/* Specific colors */
.phone-icon {
  background: #007bff;
}

.whatsapp-icon {
  background: #25d366;
}

/* Hover effects */
.contact-icon:hover {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Tooltip */
.contact-icon .tooltip {
  position: absolute;
  right: 65px;
  background: #222;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 14px;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(10px);
}

.contact-icon:hover .tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive: smaller icons on mobile */
@media (max-width: 576px) {
  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  .contact-icon .tooltip {
    font-size: 12px;
    right: 55px;
  }
}

/* end social icons style  */
