@import url("../font/fontawesome/css/all.css");
@import url("../font/FFShamelFamilySemiRoundMedium/styles.css");
@import url("../font/FFShamelFamilySemiRoundBook-S/styles.css");

:root {
  --color-primary: #0d0d0d;
  --color-primary-90: rgba(13, 13, 13, 0.9);
  --color-secondary: #c9a227;
  --color-gold-light: #e5c76b;
  --color-gold-dark: #a67c00;
  --color-ink: #1a1a1a;
  --color-muted: #5d5d5d;
  --color-cream: #f7f5f0;
  --color-surface: #ffffff;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-faint: 0 5px 15px rgba(0, 0, 0, 0.05);
  --radius-lg: 24px;
  --radius-pill: 50px;
  --font-heading: 'FFShamelFamilySemiRoundMedium';
  --font-body: 'FFShamelFamilySemiRoundBook-S';
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  direction: rtl;
  text-align: right;
  font-family: var(--font-heading);
  background: var(--color-cream);
  color: var(--color-ink);
  overflow-x: hidden;
}

p {
  font-family: var(--font-body);
}

h2,
h3 {
  color: var(--color-primary);
}

.main-color {
  color: var(--color-primary);
}

.modal-header .close {
  padding: 1.2rem 1rem;
  margin: -1rem auto -1rem -1rem;
}

* {
  outline: none !important;
}


.loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: url("../img/logo.png") center center no-repeat var(--color-primary);
  opacity: 1;
  background-size: 50%;
  -webkit-animation: fontbulger 1s infinite;
  animation: fontbulger 1s infinite;
}

@-webkit-keyframes fontbulger {
  0% {
    background-size: 15%;
  }

  30% {
    background-size: 20%;
  }

  100% {
    background-size: 15%;
  }
}

@keyframes fontbulger {
  0% {
    background-size: 15%;
  }

  30% {
    background-size: 20%;
  }

  100% {
    background-size: 15%;
  }
}


/* ----- Top bar (light beige, gold icons) ----- */
.header-top {
  background: var(--color-cream);
  padding: 10px 0;
  font-size: 13px;
  color: #5d5d5d;
  min-height: 80px;
}



.header-top-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-top-item {
  color: #6b6b6b;
  text-decoration: none;
}

.header-top-item:hover {
  color: var(--color-primary);
}

.header-top-item i,
.header-top-social i {
  color: var(--color-secondary);
  margin-left: 6px;
}

.header-top-social {
  display: flex;
  align-items: center;
  gap: 14px;
}


.header-top-social a {
  color: var(--color-secondary);
}

.header-top-social a:hover {
  opacity: 0.85;
}

.header-top-contact {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ----- Site header wrapper (fixed) ----- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
}

/* ----- Main nav bar (white, floating) ----- */
.header-main {
  width: 100%;
  padding: 0 0 0;
  margin-top: -40px;
}

@media(max-width: 991px) {
  .header-main {
    margin-top: 0;
    
  }
  .header-main .container {
    padding: 0;
    max-width: 100%;
    border-radius: 0;
  }
}

.header-main-inner {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0px 0px 27px -9px rgba(0, 0, 0, 0.5);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 8px 20px 8px 20px;
}

.header-main .menu a {
  display: inline-block;
  margin-left: 22px;
  color: #1f1f1f;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.2px;
  text-decoration: none;
  padding: 12px 12px;
  border-radius: 4px;
}

.header-main .menu a:hover {
  color: var(--color-primary);
}

.header-main .menu a.active {
  background: rgba(201, 162, 39, 0.15);
  color: var(--color-gold-dark);
}

.header-main .menu-lang {
  margin-left: 18px;
  color: #333;
}

.header-main .header-menu-btn {
  background: var(--color-primary);
  border-radius: 8px;
  padding: 10px 24px;
  color: var(--color-secondary) !important;
  font-weight: 600;
  border: none;
  margin-left: 12px;
}

.header-main .header-menu-btn:hover {
  background: #1a1a1a;
  color: var(--color-gold-light) !important;
}

.site-logo {
  display: inline-block;
}

.site-logo img {
  height: 58px;
  width: auto;
  display: block;
}

.mob-menu-btn {
  color: #1f1f1f;
}

/* Body padding under fixed header (top bar + main header height) */
body {
  padding-top: 0;
}

/* ----- Hero / Slider (dark section under floating header) ----- */
.slider {
  position: relative;
  min-height: 85vh;
  color: #fff;
  background: var(--color-primary) url('../img/bg-1.jpg') center center no-repeat;
  background-size: cover;
  margin-top: -8px;
  padding-top: 132px;
  padding-bottom: 60px;
}

.slider--compact {
  min-height: 400px;
  padding-top: 100px;
  padding-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider--compact .slider-title {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.slider-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.75);
  z-index: 0;
}

.slider .container {
  z-index: 1;
}

.min-vh-85 {
  min-height: 85vh;
}

.slider .slider-text {
  position: relative;
  z-index: 2;
}

.slider-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.35;
}

.slider-tagline {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 8px;
}

.slider-quote {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
}

.slider-cta {
  display: inline-block;
  background: var(--color-secondary) !important;
  color: var(--color-primary) !important;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
}

.slider-cta:hover {
  background: var(--color-gold-light) !important;
  color: var(--color-primary) !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.slider-visual {
  position: relative;
  min-height: 320px;
}

.slider .slider-visual .slider-video-bg {
  position: absolute;
  inset: 0;
  background: url('../img/main-mini-img.jpg') center center no-repeat;
  background-size: cover;
  border-radius: 8px;
  filter: brightness(0.85);
}



.page-title {
  height: 289px;
  color: white;
}

.page-title .slider-text {
  position: relative;
  /*background: url(/img/bg-2.png) no-repeat bottom right var(--color-primary) ;*/
  /*background-size: cover;*/
  padding-top: 135px;
}

.page-title .slider-text>div {
  width: 65%;
  margin-right: auto;
  z-index: 2;
}

.page-title .slider-text::after {
  content: "";
  position: absolute;
  left: -20%;
  top: 0;
  height: 100%;
  background: url(../img/bg-2.png) no-repeat bottom right var(--color-primary);
  background-size: cover;
  width: 120%;
  border-radius: 0 0 0 100px;
  z-index: 1;
}

.page-title .slider-video {
  border-radius: 0 0 0 120px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-title .slider-video::after {
  content: "";
  position: absolute;
  background: rgba(13, 13, 13, 0.5);
  width: 100%;
  height: 100%;
  border-radius: 0 0 0 120px;
}

.page-title h1 {
  margin-bottom: 30px;
}

.page-title p {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.page-title a {
  color: #fff;
}

.page-title a:hover {
  color: var(--color-secondary);
}






.vision-goals {
  overflow: hidden;
}


.vision-goals .vision-goals-icon {
  background: var(--color-secondary);
  border-radius: 100%;
  color: var(--color-primary);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;

}


.vision-goals .vision-goals-text {
  position: relative;
  background: #ffffff;
}

.vision-goals .vision-goals-text>div {
  width: 65%;
  margin-right: auto;
}

.vision-goals .vision-goals-text::after {
  content: "";
  position: absolute;
  left: -120px;
  top: 0;
  height: 100%;
  background-color: #ffffff;
  width: 120px;
  border-radius: 0 0 0 100px;
  z-index: 1;
}

.vision-goals .vision-goals-video {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.vision-goals .vision-goals-video::after {
  content: "";
  position: absolute;
  background: rgba(13, 13, 13, 0.5);
  width: 100%;
  height: 100%;
}






a:hover {
  text-decoration: none;
}

a.siteBtnStyle {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  box-shadow: 0 -2px 0 0 rgba(0, 0, 0, 0.15) inset;
  padding: 0.8em 1.875em;
  border-radius: 50px;
  display: inline-block;
}

a.siteBtnStyle:hover {
  background-color: var(--color-gold-light);
  color: var(--color-primary);
  box-shadow: 0 -3px 0 0 rgba(0, 0, 0, 0.15) inset, 0 3px 10px rgba(0, 0, 0, 0.3);
}

.m-t-50 {
  margin-top: 50px;
}

.m-t-100 {
  margin-top: 100px;
}

.m-t-150 {
  margin-top: 150px;
}

.m-t-200 {
  margin-top: 200px;
}

.p-t-100 {
  padding-top: 100px;
}

.p-b-100 {
  padding-bottom: 100px;
}

.p-t-150 {
  padding-top: 150px;
}

.p-t-200 {
  padding-top: 200px;
}

.section-title {
  color: var(--color-primary);
  position: relative;
  display: inline-block;
  margin-bottom: 50px;
}

.section-title-center::after {
  content: "";
  position: absolute;
  left: -100px;
  top: 0;
  height: 3px;
  background-color: var(--color-secondary);
  width: 70px;
  z-index: 1;
  bottom: 0;
  margin: auto;
}

.section-title-center::before {
  content: "";
  position: absolute;
  right: -100px;
  top: 0;
  height: 3px;
  background-color: var(--color-secondary);
  width: 70px;
  z-index: 1;
  bottom: 0;
  margin: auto;
}

.about-us {
  overflow: hidden;
}

.about-us .about-us-item {
  background: var(--color-surface);
  border-radius: 0px 80px;
  padding: 50px 40px;

  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-box-shadow: var(--shadow-faint);
  box-shadow: var(--shadow-faint);
}

.about-us .about-us-item:hover {
  -webkit-box-shadow: var(--shadow-soft);
  box-shadow: var(--shadow-soft);
}

.about-us .about-us-item:hover .about-us-item-icon {
  color: #fff;

}

.about-us .about-us-item .about-us-item-icon {
  background: var(--color-primary);
  border-radius: 100%;
  color: var(--color-primary);
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  margin: auto;
  justify-content: center;
  margin-bottom: 30px;

  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;

}

.about-us .about-us-item .about-us-item-icon img {
  filter: invert(1) brightness(100);
}

.about-us .about-us-item h3 {
  color: var(--color-primary);
  font-size: 20px;
  margin-bottom: 10px;
}

p {
  color: var(--color-muted);
  line-height: 2;
  font-size: 14px;
  margin: 0;
}

.lead-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #f9f7f2;
}

.section-intro {
  max-width: 780px;
  margin: 0 auto 40px;
  color: var(--color-muted);
  line-height: 2;
}

.hero-highlights {
  margin: 0 0 20px;
}

.hero-highlights li {
  margin-bottom: 8px;
  color: #f9f7f2;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.hero-highlights i {
  color: var(--color-secondary);
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.ghostBtn {
  padding: 0.8em 1.875em;
  border-radius: var(--radius-pill);
  border: 1px solid #ffffff;
  color: #ffffff;
  transition: all .2s ease-in-out;
}

.ghostBtn:hover {
  color: var(--color-primary);
  background: #ffffff;
}

.legal-list {
  padding: 0;
  margin-bottom: 0;
}

.legal-list li {
  margin-bottom: 12px;
  color: var(--color-muted);
}

.legal-list i {
  color: var(--color-primary);
  margin-left: 6px;
}





.services .services-item {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  padding: 30px;
  border-radius: 0px 80px;
  background: var(--color-surface);
  -webkit-box-shadow: var(--shadow-soft);
  box-shadow: var(--shadow-soft);
}

.services .services-item .services-item-icon {
  background: var(--color-primary);
  border-radius: 100%;
  color: #fff;
  min-width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 15px;
}

.services .services-item:hover {
  -webkit-box-shadow: var(--shadow-soft);
  box-shadow: var(--shadow-soft);
}

.services .services-item:hover .services-item-icon {
  color: #fff;
  background: var(--color-primary);
  -webkit-animation: pulsePrimary 1s 1 ease-in-out forwards;
  animation: pulsePrimary 1s 1 ease-in-out forwards;
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
}

.services .services-item h3 {
  color: var(--color-primary);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.services .services-item h3 span {
  color: var(--color-gold-dark);
}

.card-legal {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-faint);
  height: 100%;
}

.practice-areas {
  border-radius: 0 100px 0 0;
}

.pill {
  display: inline-block;
  padding: 30px 16px;
  border-radius: 12px;
  background: rgba(201, 162, 39, 0.12);
  color: var(--color-primary);
  text-align: center;
  width: 100%;
  box-shadow: var(--shadow-faint);
}

.licenses {
  padding: 60px 0;
}

.certificate-card {
  display: block;
  text-decoration: none;
  color: inherit;
  /* border-radius: var(--radius-lg); */
  overflow: hidden;
  box-shadow: var(--shadow-faint);
  height: 100%;
}

.certificate-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.certificate-card-inner {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.certificate-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  max-height: 200px;
}

.certificate-label {
  display: block;
  padding: 16px 20px;
  font-weight: 600;
  color: var(--color-primary);
  text-align: center;
  background: rgba(201, 162, 39, 0.12);
}

.team {}

.team-carousel .item {
  height: 100%;
}

.team-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-faint);
  height: 100%;
  display: flex;
  flex-direction: column;
}


.team-card h3 {
  font-size: 20px;
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 15px;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
}


.owl-dots {
  margin-top: 20px;
}

.team-card .role {
  color: var(--color-primary);
  font-weight: bold;
  margin-bottom: 10px;
}

.cta-app {
  background: linear-gradient(135deg, var(--color-primary), #2a2a2a);
  color: #fff;
  padding: 60px 0;
}

.cta-app .section-title {
  color: #fff;
}

.cta-app p {
  color: #fff;
}

.stats {
  padding: 80px 0;
  background: var(--color-cream);
}

.stats .stat-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  box-shadow: var(--shadow-faint);
}

.stat-value {
  display: block;
  font-size: 40px;
  color: var(--color-primary);
  font-weight: bold;
  margin-bottom: 5px;
}

.stat-label {
  color: var(--color-muted);
  font-size: 14px;
}

.contact-panel {
  background: var(--color-surface);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-faint);
  height: 100%;
}

.contact {
  padding: 80px 0;
}

.contact-panel h4 {
  color: var(--color-primary);
  margin-bottom: 15px;
}

.contact-panel i {
  color: var(--color-secondary);
  margin-left: 8px;
}


.chairman-board .chairman-board-img {
  position: relative;
}

.chairman-board .chairman-board-img::after {
  content: "";
  position: absolute;
  background: rgba(13, 13, 13, 0.5);
  width: 100%;
  height: 100%;
  border-radius: 0 0 0 120px;
  right: 0;
  border-radius: 0 100px 0 100px;
}

.chairman-board .chairman-board-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 0 0 0 120px;
  right: -30px;
  top: -30px;
  border-radius: 0 90px 0 90px;
  border: 5px solid var(--color-secondary);
  z-index: 2;
}

.chairman-board .chairman-board-img img {
  border-radius: 0 100px 0 100px;
}


.clients .item {
  margin-top: 40px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.clients img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* filter: grayscale(100%); */

}

.owl-theme .owl-nav {
  margin: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 40%;
  color: #666666;
  transform: translateY(-50%);
}

.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  right: -50px;
  font-size: 30px;
  outline: none;
  top: 50%;
  transform: translateY(-50%);
}

.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  left: -50px;
  font-size: 30px;
  outline: none;
  top: 50%;
  transform: translateY(-50%);
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background-color: transparent;
  color: var(--color-primary);
}


footer {
  background-color: var(--color-primary);
  border-radius: 0 100px 0 0;
}

footer a {
  color: #fff;
}

footer a:hover {
  color: var(--color-secondary);
}

footer h3 {
  font-size: 20px;
  margin: 25px 0;
}

footer h4 {
  font-size: 16px;
  color: var(--color-secondary);
}

footer .fa-circle {
  color: var(--color-secondary);
}

footer i {
  font-size: 18px;
}

footer .fa-chevron-left {
  font-size: 10px;
  color: var(--color-secondary);
}

.list-inline-item:not(:last-child) {
  margin-right: 0;
  margin-left: 1rem;
}






.video-box {
  text-align: center;
}

.video-box .video-btn {
  position: absolute;
  left: 0;
  right: 0;
  display: inline-block;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 60px;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
}

.video-box .video-btn::after,
.video-box .video-btn::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  border: 1px solid var(--color-secondary);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.video-box .video-btn i {
  position: absolute;
  left: 2px;
  right: 0;
  top: 51%;
  font-size: 20px;
  z-index: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-left: auto;
  margin-right: auto;
}

.video-box .video-btn::before {
  -webkit-animation: ripple 2s linear infinite;
  animation: ripple 2s linear infinite;
}

.video-box .video-btn::after {
  -webkit-animation: ripple 2s linear 1s infinite;
  animation: ripple 2s linear 1s infinite;
}

.video-box .video-btn:hover,
.video-box .video-btn:focus {
  background-color: var(--color-primary);
  color: #ffffff;
}

.video-box .video-btn:hover::after,
.video-box .video-btn:hover::before,
.video-box .video-btn:focus::after,
.video-box .video-btn:focus::before {
  border-color: var(--color-primary);
}



@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  75% {
    -webkit-transform: scale(1.75);
    transform: scale(1.75);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  75% {
    -webkit-transform: scale(1.75);
    transform: scale(1.75);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}


.mob-menu-btn {
  display: none;
}


button.siteBtnStyle {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  box-shadow: 0 -2px 0 0 rgba(0, 0, 0, 0.15) inset;
  padding: 0.8em 1.875em;
  border-radius: 50px;
  display: inline-block;
  border: 0;
}

button.siteBtnStyle:hover {
  background-color: var(--color-gold-light);
  color: var(--color-primary);
  box-shadow: 0 -3px 0 0 rgba(0, 0, 0, 0.15) inset, 0 3px 10px rgba(0, 0, 0, 0.3);
}

input,
select {
  border-radius: 100px !important;
  height: 45px !important;
  padding: 0 20px !important;
  border-color: #D1D1D1;
  font-size: 14px !important;
}

textarea {
  border-radius: 20px !important;
  resize: none;
  padding: 20px !important;
  border-color: #D1D1D1 !important;
  font-size: 14px !important;
}

#askService .modal-body {
  padding: 30px !important;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: var(--color-secondary);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(201, 162, 39, 0.25);
}

.contact-box {
  background: url(../img/bg-3.png) no-repeat top center;
  background-size: cover;

}

.contact-form {
  padding: 50px;
  margin: 100px 0;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .1), 0 10px 10px rgba(0, 0, 0, .02);
  background: #fff;
  border-radius: 20px;
}

.contact-info {
  margin: 100px 0;
}

.contact-info .contact-info-item .contact-info-item-icon {
  color: var(--color-primary);
  margin-left: 20px;
}

.contact-info .contact-info-item h3 {
  color: var(--color-primary);
  font-size: 16px;
  margin-bottom: 10px;
}

.contact-info .contact-info-item h3 span {
  color: var(--color-gold-dark);
  font-family: 'FFShamelFamilySemiRoundBook-S';
  font-size: 14px;
  margin-bottom: 5px;
}

/* Always set the map height explicitly to define the size of the div
* element that contains the map. */
#map {
  height: 400px;
}

/* Optional: Makes the sample page fill the window. */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

@media (max-width: 991px) {

  .page-title .slider-video {
    display: none !important;
  }

  .page-title .slider-text::after {
    left: 0;
    width: 100%;
  }

  .page-title .slider-text>div {
    width: 100%;
    margin-right: auto;
    z-index: 2;
    text-align: center;
  }

  .header-main .menu a {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 16px;
    margin-top: 18px;
    margin-left: 0;
  }

  .header-main .header-menu-btn {
    padding: 0;
  }

  .mob-menu-btn {
    display: block;
  }

  .header-top {
    display: none;
  }

  .slider {
    height: auto;
    padding-top: 80px;
    min-height: 70vh;
  }

  .slider .container {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .slider .slider-text {
    padding: 40px 0 30px;
    text-align: center;
  }

  .slider-title {
    font-size: 1.5rem;
  }

  .slider-tagline,
  .slider-quote {
    font-size: 0.95rem;
  }

  .vision-goals .vision-goals-text::after {
    display: none;
  }

  .vision-goals .vision-goals-text>div {
    width: 90%;
    margin-right: auto;
    margin: 0 auto;
  }

  .menu {
    display: none;
    position: absolute;
    background: #fff;
    padding: 16px 20px 20px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    width: 100%;
    left: 0;
    right: 0;
    top: 100%;
    margin-top: 8px;
  }

}

@media (max-width: 830px) {

  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next {
    display: none;
  }

}

@media (max-width: 767px) {
  .chairman-board .chairman-board-img {
    margin-top: 40px;
  }

  .chairman-board .chairman-board-img::before {
    right: -10px;
    top: -10px;
    border-radius: 0 100px 0 100px;
  }
}

@media (max-width: 575px) {
  .text-align-mob {
    text-align: center !important;
  }
}

@media (max-width: 425px) {
  .section-title-center::before {
    right: -80px;
    width: 50px;
  }

  .section-title-center::after {
    left: -80px;
    width: 50px;
  }
}

.app-mockup img {
  max-width: 100%;
}

.download-app {
  margin-top: 30px;
}

.download-app p {
  font-weight: 700;
  color: #000;
  font-size: 16px;
}

.download-app a {
  display: inline-block;
  margin-left: 5px;
}

.download-app img {
  max-width: 170px;
}

@media (max-width: 991px) {
  .cta-app {
    padding: 48px 0 40px;
  }
  .cta-app .row {
    margin-bottom: 0;
  }
  .cta-app .col-md-4 {
    margin-top: 24px;
    margin-bottom: 16px;
  }
  .app-mockup {
    text-align: center;
    padding: 0 16px;
  }
  .app-mockup img {
    max-width: 160px;
    width: auto;
    height: auto;
  }
}

/* --- New Utility Classes --- */

.section-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-padding-lg {
  padding-top: 150px;
  padding-bottom: 150px;
}

.section-bg-white {
  background-color: var(--color-surface);
}

.section-bg-cream {
  background-color: var(--color-cream);
}

.section-bg-green {
  background-color: var(--color-primary);
}

.section-no-padding-bottom {
  padding-bottom: 0 !important;
}

/* Service Icons Update (force verify) */
.services-item-icon i {
  color: var(--color-secondary) !important;
}

/* Footer Contact Icons */
.footer-contact-icon {
  color: #fff;
  font-size: 18px;
  width: 35px;
  height: 35px;
  background: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 35px;
}

.footer-logo {
  filter: invert(1) brightness(100);
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ----- Side menu (off-canvas drawer) ----- */
.side-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.side-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  max-width: 85vw;
  height: 100%;
  background: var(--color-surface);
  z-index: 2001;
  box-shadow: -2px 0 12px rgba(0, 0, 0, 0.15);
  transform: translateX(150%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.side-menu.is-open {
  transform: translateX(0);
}
.side-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: var(--color-ink);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.side-menu-nav {
  padding: 60px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.side-menu-nav a {
  display: block;
  padding: 12px 16px;
  color: var(--color-ink);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 15px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.side-menu-nav a:hover {
  background: rgba(0, 0, 0, 0.06);
  color: var(--color-primary);
}
.side-menu-nav a.header-menu-btn {
  background: var(--color-primary);
  color: var(--color-secondary) !important;
  text-align: center;
  font-weight: 600;
  margin-top: 12px;
}
.side-menu-nav a.header-menu-btn:hover {
  background: var(--color-gold-dark);
  color: var(--color-surface) !important;
}
.header-main .menu,
.menu {
  display: none !important;
}
@media (min-width: 992px) {
  .header-main .menu,
  .menu {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
  }
}
.mob-menu-btn {
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .mob-menu-btn {
    display: none !important;
  }
}