/*
Theme Name: Saint
Theme URI: https://github.com/
Author: Hossam Hamdy (Saint Hossam)
Author URI: https://github.com/
Description: Custom WordPress theme base styles by Hossam Hamdy (Saint Hossam).
Version: 1.0.0
Text Domain: saint
*/

/* ========================
   Fonts (Variable fallback)
======================== */

/*@font-face {*/
/*  font-family: "var(--font-main)";*/
/*  src: url("../webFonts/design_fonts/var(--font-main)-Black.woff2") format("woff2"),*/
/*    url("../webFonts/design_fonts/var(--font-main)-Black.woff") format("woff");*/
/*  font-weight: 900;*/
/*  font-style: normal;*/
/*}*/

/* Extra */
/*@font-face {*/
/*  font-family: "var(--font-main)";*/
/*  src: url("../webFonts/design_fonts/var(--font-main)-ExtraBold.woff2") format("woff2"),*/
/*    url("../webFonts/design_fonts/var(--font-main)-ExtraBold.woff") format("woff");*/
/*  font-weight: 800;*/
/*  font-style: normal;*/
/*}*/

/* Bold */
/*@font-face {*/
/*  font-family: "var(--font-main)";*/
/*  src: url("../webFonts/design_fonts/var(--font-main)-Bold.woff2") format("woff2"),*/
/*    url("../webFonts/design_fonts/var(--font-main)-Bold.woff") format("woff");*/
/*  font-weight: 700;*/
/*  font-style: normal;*/
/*}*/

/* Medium */
/*@font-face {*/
/*  font-family: "var(--font-main)";*/
/*  src: url("../webFonts/design_fonts/var(--font-main)-Medium.woff2") format("woff2"),*/
/*    url("../webFonts/design_fonts/var(--font-main)-Medium.woff") format("woff");*/
/*  font-weight: 500;*/
/*  font-style: normal;*/
/*}*/

/* Regular */
/*@font-face {*/
/*  font-family: "var(--font-main)";*/
/*  src: url("../webFonts/design_fonts/var(--font-main)-Regular.woff2") format("woff2"),*/
/*    url("../webFonts/design_fonts/var(--font-main)-Regular.woff") format("woff");*/
/*  font-weight: 400;*/
/*  font-style: normal;*/
/*}*/

.sr-only {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
}


/* ========================
   Design Tokens
======================== */
:root {
  --primary-c: #416DB1;
  --secondary-c: #0A014F;
  --font-main: "IBM Plex Sans Arabic", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.fa, .fas, .far, .fal, .fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fas, .fa-solid {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}

.fab, .fa-brands {
  font-family: 'Font Awesome 6 Brands';
  font-weight: 400;
}


/* ========================
   Page Navigation
======================== */
.wp-pagenavi {
  margin-top: 60px;
  --pg-size: 44px;
  --pg-radius: 12px;
  --pg-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  --pg-shadow-hover: 0 12px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  line-height: 1;
  user-select: none;
}

.wp-pagenavi .pages {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  color: color-mix(in srgb, #000 70%, transparent);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--pg-shadow);
  font-weight: 500;
}

.wp-pagenavi a,
.wp-pagenavi span.current,
.wp-pagenavi span.extend {
  display: inline-grid;
  place-items: center;
  min-inline-size: var(--pg-size);
  min-block-size: var(--pg-size);
  border-radius: var(--pg-radius);
  background: #fff;
  color: #000;
  text-decoration: none;
  border: none;
  box-shadow: var(--pg-shadow);
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.25s ease,
    color 0.25s ease, border-color 0.25s ease;
}

.wp-pagenavi a.page,
.wp-pagenavi a.larger,
.wp-pagenavi a.smaller {
  background: #fff;
}

.wp-pagenavi a:hover {
  transform: translateY(-2px);
  box-shadow: var(--pg-shadow-hover);
  color: var(--secondary-c);
  border-color: var(--secondary-c) !important;
  background: color-mix(in srgb, #f0f0f0 10%, #fff 90%);
}

.wp-pagenavi span.current {
  background: var(--secondary-c);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 22px
    color-mix(in srgb, var(--secondary-c) 28%, transparent);
  pointer-events: none;
}

.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.previouspostslink {
  font-weight: 700;
}

.wp-pagenavi a.nextpostslink:hover,
.wp-pagenavi a.previouspostslink:hover {
  transform: translateY(-2px) scale(1.06);
}

.wp-pagenavi .disabled {
  opacity: 0.4;
  pointer-events: none;
}

.wp-pagenavi a:focus-visible {
  outline: none;
  box-shadow: var(--pg-shadow-hover),
    0 0 0 4px color-mix(in srgb, var(--secondary-c) 25%, transparent);
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .wp-pagenavi {
    --pg-size: 38px;
    gap: 8px;
  }
  .wp-pagenavi .pages {
    display: none;
  }
}

/* ========================
   RTL Tweaks
======================== */
html[dir="rtl"]
  :where(input[type="email"], input[type="tel"], input[type="url"]),
.chip__text,
.contact-card li a,
.footer-line a {
  direction: ltr;
  text-align: left;
  unicode-bidi: plaintext;
}

html[dir='rtl'] .contact-input {
    direction: rtl;
}

html[dir='ltr'] .contact-input {
    direction: ltr;
}

html[dir="rtl"]
  :where(
    input[type="email"],
    input[type="tel"],
    input[type="url"]
  )::placeholder {
  direction: ltr;
  text-align: left;
}

html[dir="rtl"] input::placeholder {
  direction: rtl;
  text-align: right;
}

/* ========================
   Reset
======================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--secondary-c, #78581b) #fff;
}

*::-webkit-scrollbar {
  width: 8px;
}

*::-webkit-scrollbar-track {
  background: #fff;
}

*::-webkit-scrollbar-thumb {
  background: var(--secondary-c, #78581b);
  border-radius: 15px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  :before,
  :after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

html:focus-within {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

img,
svg,
video,
canvas,
iframe {
  max-inline-size: 100%;
  max-block-size: 100%;
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none !important;
}

input,
textarea,
select,
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  outline: 0;
  appearance: none;
}

button,
[type="button"],
[type="submit"] {
  cursor: pointer;
}

[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}

/* ========================
  Base
======================== */
html {
  font-size: clamp(16px, 15px + 0.3vw, 18px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background: #fff;
  color: var(--primary-c);
  font-family: var(--font-main);
  line-height: 1.7;
  margin: 0;
}

main.wrap {
  position: relative;
  overflow: hidden;
  inset-inline-start: 0;
  transition: inset-inline-start 0.7s ease-in-out;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

blockquote {
  quotes: none;
}

code,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono",
    monospace;
}

img:not(.c-primary-caption img) {
  object-fit: contain;
}

/* ========================
   Typography
======================== */
h1 {
  font-weight: 800;
  font-size: 2.4rem;
}

h2 {
  font-weight: 700;
  font-size: 2rem;
}

h3 {
  font-weight: 500;
  font-size: 1.4rem;
}

h4,
h5,
h6 {
  font-weight: 400;
  font-size: 1rem;
}

p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--primary-c);
}

/*--------------------------------------------------------------
 Breadcrumb Area
--------------------------------------------------------------*/
.breadcrumb-area {
  position: relative;
  padding: 50px;
  margin-bottom: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-c) 0%,
    #1a2838 55%,
    #101723 100%
  );
  color: #edefca;
  overflow: hidden;
}

.breadcrumb-area::before,
.breadcrumb-area::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.breadcrumb-area::before {
  width: 420px;
  height: 420px;
  right: -140px;
  top: -180px;
  background: radial-gradient(
    circle,
    rgba(237, 239, 202, 0.18) 0%,
    transparent 70%
  );
}

.breadcrumb-area::after {
  width: 320px;
  height: 320px;
  left: -120px;
  bottom: -140px;
  background: radial-gradient(
    circle,
    rgba(84, 120, 146, 0.35) 0%,
    transparent 70%
  );
}

.breadcrumb-area .container {
  position: relative;
  z-index: 2;
}

/*--------------------------------------------------------------
 Breadcrumb Title
--------------------------------------------------------------*/
.page-tit {
  position: relative;
  margin: 0;
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.page-tit::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 18px;
  bottom: -28px;
  width: 170px;
  height: 16px;
  background: url("<?php echo esc_url( THEME_IMG_DIR ); ?>line.webp") no-repeat
    center;
  background-size: contain;
}

/*--------------------------------------------------------------
 Breadcrumb Links 
--------------------------------------------------------------*/
.breadcrumb-links {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  font-size: 14px;
  color: #FFF;
  gap: 6px;
  font-weight: 700;
}

.breadcrumb-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  direction: rtl;
}

.breadcrumb-links li {
  display: inline-flex;
  align-items: center;
  color: rgba(237, 239, 202, 0.85);
}

.breadcrumb-links a {
  color: var(--primary-c);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  transition: all 0.25s ease;
}

.breadcrumb-links a:hover {
  background: var(--primary-c);
  color: #FFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.breadcrumb-links .separator {
  color: rgba(237, 239, 202, 0.5);
  font-size: 12px;
  padding: 0 3px;
}

/*--------------------------------------------------------------
 Breadcrumb Responsive
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .breadcrumb-area {
    padding: 55px 0 45px;
    margin-bottom: 40px;
  }

  .page-tit::after {
    bottom: -22px;
    width: 140px;
  }

  .breadcrumb-links {
    margin-top: 35px;
    font-size: 13px;
  }

  .breadcrumb-links a {
    padding: 5px 10px;
  }
}

/*----------------------------------------------------
 Main Button Styles
----------------------------------------------------*/
.main-btn {
  font-family: inherit;
  display: inline-block;
  padding: 10px 30px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  background: var(--primary-c);
  transition: 0.5s;
  z-index: 1;
  font-size: 17px;
  border-radius: 6px;
  font-weight: 500;
  color: #FFF;
}

.main-btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: var(--secondary-c);
  height: 150px;
  width: 290px;
  border-radius: 50%;
}

.main-btn:hover {
  color: #fff;
}

.main-btn:before {
  top: 100%;
  left: 100%;
  transition: all 0.7s;
}

.main-btn:hover:before {
  top: -30px;
  left: -30px;
}

.main-btn:active:before {
  background: #3a0ca3;
  transition: background 0s;
}


/*----------------------------------------------------
 Section Titles
----------------------------------------------------*/
.sec-tit {
  color: var(--secondary-c);
  font-weight: 700;
  text-align: center;
} 

.sec-desc {
  text-align: center;
  font-size: 19px;
}
/*----------------------------------------------------
 Header & Navigation
----------------------------------------------------*/
#main-header,
.fixed-header {
  background: var(--c-white);
  box-shadow: var(--shadow-soft);
}

#main-header {
  position: relative;
  padding-block: clamp(10px, 0.9vw, 14px);
  /* backdrop-filter: saturate(130%) blur(6px); */
  animation: hdr-pop 1s var(--easing) both;
  animation-delay: 0.8s;
  z-index: 1001;
}

#main-header .header-logo img {
  max-block-size: calc(clamp(64px, 6vw, 92px) - 40px);
  inline-size: auto;
}

#main-header .main-menu .nav-list > li > a {
  position: relative;
  display: inline-block;
  padding-block: 0.45rem;
  padding-inline: 0.6rem;
  font-weight: 600;
  color: #000;
  transition: .3s ease;
}

#main-header .main-menu .nav-list > li > a:hover,
#main-header .main-menu .nav-list > li.current-menu-item > a {
  color: var(--primary-c);
}

header .header-actions {
  gap: 15px;
}

#main-header.header-on-video {
  position: absolute;
  inset-inline: 0;
  top: 0;
  margin-inline: auto;
  margin-block: 0;
  background: transparent;
  box-shadow: none;
}

@keyframes hdr-pop {
  from {
    transform: translateY(-200%);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

.fixed-header {
  position: fixed;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  opacity: 0;
  overflow: hidden;
  transition: top 0.6s ease, opacity 0.5s ease;
  top: -120px;
  z-index: 1002;
  padding-block: clamp(8px, 0.8vw, 12px);
  overflow: clip;
}

.fixed-header.visible {
  top: 0;
  opacity: 1;
}

.fixed-header .header-logo img {
  max-block-size: calc(clamp(64px, 6vw, 92px) - 40px);
  inline-size: auto;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 8px;
  border-radius: 8px;
  background: var(--primary-c);
  color: #f9fafb;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.25s ease,
    color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.lang-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.lang-btn:hover {
  background: var(--secondary-c);
  border-color: var(--secondary-c);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
  transform: translateY(-1px);
  color: #ffffff;
}

.lang-btn:hover::before {
  opacity: 1;
}

.lang-btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
}

.lang-btn:focus-visible {
  outline: 2px solid var(--primary-c);
  outline-offset: 2px;
}

.lang-flag-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lang-flag {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.lang-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lang-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary-c);
}

.lang-btn:hover .lang-flag {
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.7),
              0 6px 10px rgba(0, 0, 0, 0.4);
}

.lang-text {
  font-weight: 600;
}

@media (max-width: 575.98px) {
  .lang-btn {
    padding: 0.18rem 0.6rem;
    font-size: 0.75rem;
  }

  header .header-actions {
  gap: 0;
}

  .lang-flag {
    width: 20px;
    height: 20px;
  }
  .fix-icons {
  inset-inline-start: 5px;
  }

    .header-logo img {
    max-block-size: calc(clamp(64px, 6vw, 92px) - 32px) !important;
  }
}

.contact-btn:active {
  transform: translateY(0) scale(0.98);
}

.icon-btn:active {
  transform: scale(0.95);
}

.contact-btn,
.contact-btn [class*="circle"],
.icon-btn,
.icon-btn::before {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}

.contact-input[type="file"] {
  width: 100%;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  font-size: 13px;
  cursor: pointer;
  color: #6b7280;
}

.contact-input[type="file"]::file-selector-button {
  margin-inline-start: 8px;
  padding: 6px 14px;
  border: none;
  border-radius: 999px;
  background: var(--primary-c);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(113, 172, 78, 0.35);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.contact-input[type="file"]::file-selector-button:hover {
  background: var(--secondary-c);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(28, 46, 13, 0.5);
}

.contact-input[type="file"]::-webkit-file-upload-button {
  margin-inline-start: 8px;
  padding: 6px 14px;
  border: none;
  border-radius: 999px;
  background: var(--primary-c);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(113, 172, 78, 0.35);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.contact-input[type="file"]::-webkit-file-upload-button:hover {
  background: var(--secondary-c);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(28, 46, 13, 0.5);
}


@media (max-width: 1199.92px) {
  #main-header .main-menu .nav-list > li > a {
  padding-inline: 0;
}
}
.banner {
  position: relative;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.mainItem {
  position: relative;
  width: 100%;
  min-height: 690px;
  overflow: hidden;
}

.banner_img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.banner_img .banner-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  will-change: transform, opacity;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .2));
}

.banner_img .banner-slide.is-active {
  opacity: 1;
}

.banner_img .banner-slide:only-child {
  animation: parallaxMove 18s ease-in-out infinite,
             smoothZoom 15s ease-in-out infinite alternate;
  transform-origin: center center;
}

.banner_video {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.banner_video video {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mainItem-overlay {
  position: absolute;
  inset: 0;
  color: #fff;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, .4) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 9;
}

.banner_content {
  text-align: start;
}

.banner_content > * {
  animation: none !important;
}

.banner_content h1 {
  font-family: var(--font-main);
}

.js-banner-title {
  font-size: 80px;
  line-height: 70px;
}

.js-banner-title.is-masked {
  --reveal: 0%;
  -webkit-mask-image: linear-gradient(
    90deg,
    #000 var(--reveal),
    transparent calc(var(--reveal) + 0.001%)
  );
  mask-image: linear-gradient(
    90deg,
    #000 var(--reveal),
    transparent calc(var(--reveal) + 0.001%)
  );
  -webkit-mask-size: 200% 100%;
  mask-size: 200% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.js-banner-title .w {
  display: inline-block;
  white-space: pre;
  will-change: transform, opacity, filter;
}

.slider-btn {
  margin-top: 60px;
}

.slider-btn .main-btn {
  background: #FFF;
  color: var(--secondary-c);
  border: none;
}

.slider-btn .main-btn::before {
  background: #FFF;
}

.slider-btn .main-btn:before {
  top: -30px;
  left: -30px;
}

.banner-nav {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
}

.banner-nav__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: auto;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition:
    background .25s ease,
    border-color .25s ease,
    transform .25s ease,
    opacity .25s ease;
  opacity: .85;
}

.banner-nav__btn--prev {
  left: 18px;
}

.banner-nav__btn--next {
  right: 18px;
}

.banner-nav__btn i {
  font-size: 1rem;
}

.banner-nav__btn:hover {
  background: rgba(0, 0, 0, 0.75);
  border-color: #fff;
  transform: translateY(-50%) scale(1.05);
  opacity: 1;
}

.banner-nav__btn.is-disabled {
  opacity: .35;
  cursor: default;
  pointer-events: none;
}

.banner-nav__btn.is-disabled:hover {
  transform: translateY(-50%);
}

.banner__dots {
  display: flex;
  gap: .5rem;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  justify-content: center;
}

.banner__dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  cursor: pointer;
  transition:
    background .2s ease,
    transform .2s ease,
    opacity .2s ease;
}

.banner__dot.is-active {
  background: #fff;
  transform: scale(1.15);
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  clip-path: inset(50%);
}

@keyframes parallaxMove {
  0% {
    transform: translate(0, 0) rotate(0);
  }
  25% {
    transform: translate(-15px, -10px) rotate(-.3deg);
  }
  50% {
    transform: translate(0, -20px) rotate(.2deg);
  }
  75% {
    transform: translate(15px, -10px) rotate(.3deg);
  }
  100% {
    transform: translate(0, 0) rotate(0);
  }
}

@keyframes smoothZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992.98px) {
  .js-banner-title {
    line-height: 105px;
  }

  .ms-about-features-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 991.98px) {
  :root {
    --banner-h: 80vh;
  }

  .js-banner-title {
    font-size: 70px;
  }
}

@media (max-width: 767.98px) {
  :root {
    --banner-h: 70vh;
  }

  .banner-nav__btn {
    width: 34px;
    height: 34px;
    font-size: .85rem;
  }
  .js-banner-title {
    font-size: 50px;
  }
}

@media (max-width: 576.98px) {
  .banner-nav {
    display: none;
  }

  .js-banner-title {
    line-height: 60px;
    font-size: 42px;
  }

  .mainItem {
    height: clamp(86vh, 70vh, 800px);
  }
}


/*----------------------------------------------------
 HomeAbout Section
----------------------------------------------------*/
.about {
  position: relative;
  padding: 270px 0 135px;
  background:#fff;
  color: #fff;
  overflow: hidden;
}

.about::before,
.about::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: conic-gradient(
    from 130deg,
    rgba(57,126,188,0.9),
    rgba(255,255,255,0.1),
    rgba(57,126,188,0),
    rgba(57,126,188,0.7)
  );
  opacity: 0.25;
  filter: blur(2px);
  pointer-events: none;
  mix-blend-mode: screen;
}

.about::before {
  top: -160px;
  left: -160px;
  animation: about-orbit 22s linear infinite;
}

.about::after {
  bottom: -190px;
  right: -220px;
  animation: about-orbit 28s linear infinite reverse;
}

@keyframes about-orbit {
  0%   { transform: translate3d(0,0,0) rotate(0deg); }
  50%  { transform: translate3d(40px,-20px,0) rotate(180deg); }
  100% { transform: translate3d(0,0,0) rotate(360deg); }
}

.about-kicker-wrap {
  display: inline-flex;
  align-items: center;
  color: var(--secondary-c);
  gap: 10px;
  margin-bottom: 12px;
}

.about-kicker-line {
  width: 34px;
  height: 6px;
  border-radius: 20px;
  background: #F2DCDC;
}

.about-kicker-text {
  font-size: 16px;
  color: var(--primary-c);
  font-weight: 500;
}

.about-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--secondary-c);
  margin-bottom: 1.2rem;
  position: relative;
}

.about-text,
.about-text p {
  color: var(--primary-c);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.about-media {
  position: relative;
  max-width: 520px;
  margin-inline: auto;
  min-height: 490px;
}

.about-card {
  position: absolute;
  background: #fff;
  border-radius: 20px;
  width: 100%;
  overflow: hidden;
  box-shadow:
    0 22px 55px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.12);
  transform-origin: center;
  transition:
    transform .45s cubic-bezier(.19,1,.22,1),
    box-shadow .45s cubic-bezier(.19,1,.22,1),
    filter .45s ease-out;
}

.about-card-right {
  max-width: 410px;
  top: 0;
  inset-inline-end: 0;
  animation: float-right 7.5s ease-in-out infinite;
}

.about-card-left {
  max-width: 330px;
  bottom: 166px;
  inset-inline-start: 0;
  animation: float-left 8.2s ease-in-out infinite;
}

html[dir="ltr"] .about-card-right img {
  transform: translateX(-200%);
}

html[dir="ltr"] .about-card-left img {
  transform: translateX(200%);
}

html[dir="rtl"] .about-card-right img {
  transform: translateX(-200%);
}

html[dir="rtl"] .about-card-left img {
  transform: translateX(200%);
}

.about-card-right img.active,
.about-card-left img.active {
  transform: translateX(0) !important;
}

@keyframes float-right {
  0%,100% { transform: translateY(0) rotate(2deg); }
  50%     { transform: translateY(-14px) rotate(4deg); }
}

@keyframes float-left {
  0%,100% { transform: translateY(0) rotate(-3deg); }
  50%     { transform: translateY(14px) rotate(-5deg); }
}

.about-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.03);
  transition:
    transform .6s cubic-bezier(.19,1,.22,1),
    filter .4s ease-out;
}

.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(57,126,188,0.15),
    rgba(0,0,0,0) 35%,
    rgba(255,255,255,0.22) 65%,
    rgba(57,126,188,0.3)
  );
  mix-blend-mode: soft-light;
  opacity: 0;
  transform: translateX(-20%);
  transition: opacity .5s ease-out, transform .5s ease-out;
}

.about-card::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -60%;
  width: 160%;
  height: 80%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255,255,255,.8) 42%,
    transparent 70%
  );
  opacity: 0;
  transform: translateX(-90%);
  transition:
    transform .7s cubic-bezier(.19,1,.22,1),
    opacity .35s ease-out;
}

.about-card:hover {
  animation-play-state: paused;
  transform: translateY(-16px) scale(1.03);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.65),
    0 0 0 1px rgba(57,126,188,0.75);
  filter: saturate(1.1);
}

.about-card:hover img {
  transform: scale(1.09);
  filter: contrast(1.06) brightness(1.04);
}

.about-card:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.about-card:hover::after {
  opacity: 1;
  transform: translateX(130%);
}

.about-btn {
  margin-top: clamp(2rem, 3vw, 2.8rem);
}

.ms-about-features-grid {
  margin-top: clamp(2rem, 3vw, 2.6rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 26px;
  row-gap: 18px;
}

.ms-about-feature-item {
  position: relative;
  gap: 8px;
  background: transparent;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  min-height: 44px;
  padding: 0 7px;
  display: flex;
  align-items: center;
  justify-content: start;
  text-align: start;
  box-shadow: 0 10px 35px rgba(10, 30, 70, .06);
  transition:
    box-shadow .25s ease,
    transform .25s ease,
    border-color .25s ease;
}

.ms-about-feature-text {
  color: rgba(11, 23, 40, 0.7);
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  width: calc(100% - 25px);
}

.ms-about-feature-item i {
   font-weight: 900;
  position: relative;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #050b5c; 
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  box-shadow: 0 0 0 3px #f1f2f8;
}

.ms-about-feature-item:hover {
  transform: translateY(-3px);
  border-color: rgba(57,126,188,0.45);
  box-shadow: 0 18px 50px rgba(10, 30, 70, .16);
}

@media (max-width: 767.98px) {
  .ms-about-features-grid {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }
}


html[dir="ltr"] .ms-about-feature-item::after {
  right: auto;
  left: 22px;
}

@media (max-width: 1199.98px) {
.ms-about-features-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
}

@media (max-width: 991.98px) {
  .about div.row:nth-child(2) {
    flex-direction: column-reverse;
  }

  .about-media {
    margin: 50px auto 90px;
  }

  .about-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-kicker-wrap {
    margin-inline: auto;
  }

  @keyframes float-stack {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-10px); }
  }

  .about {
  padding: 160px 0 60px;
  }
}

@media (max-width: 768.98px) {
  .about-vision {
    margin-top: 4rem;
  }

   .about-title {
    font-size: 36px;
  }
}

@media (max-width: 576.98px) {
  .about-title {
    margin-bottom: 30px !important;
  }
   .about-title {
    font-size: 26px;
  }

  .about-card-right {
    max-width: 320px;
  }

  .about-card-left {
  max-width: 260px;
  }


  .about {
    padding: 190px 0 60px;
  }
  .about-media {
  min-height: 340px;
}
}

/*----------------------------------------------------
 HomeInvestment Section
----------------------------------------------------*/
.investment-areas {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
      background-attachment: fixed;
}

.investment-areas .sec-tit {
  font-size: 80px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 15px;
}

.investment-areas__overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(135deg, rgba(0, 33, 79, 0.9), rgba(0, 80, 160, 0.78)); */
}

.investment-areas .container {
    position: relative;
    z-index: 1;
}

.investment-areas__title {
    font-weight: 700;
    font-size: clamp(2rem, 1.6rem + 1vw, 2.8rem);
    color: #ffffff;
}

.investment-areas__subtitle {
    color: #ffffff;
    font-size: 1rem;
    opacity: 0.9;
}

.investment-card {
    position: relative;
    background: #ffffff;
    border-radius: 32px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transform: translate3d(0, 40px, 0) scale(0.98);
    opacity: 0;
    animation: investment-card-in 0.75s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
    transition:
        transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1),
        box-shadow 0.5s ease,
        background 0.4s ease;
    transform-origin: center;
    z-index: 0;
}

.investment-areas .col-lg-6:nth-child(1) .investment-card {
    animation-delay: 0.05s;
}

.investment-areas .col-lg-6:nth-child(2) .investment-card {
    animation-delay: 0.18s;
}

.investment-areas .col-lg-6:nth-child(3) .investment-card {
    animation-delay: 0.31s;
}

.investment-areas .col-lg-6:nth-child(4) .investment-card {
    animation-delay: 0.44s;
}

.investment-card::before,
.investment-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.investment-card::before {
    background:
        radial-gradient(circle at top left, rgba(0, 166, 214, 0.19), transparent 55%),
        radial-gradient(circle at bottom right, rgba(0, 43, 106, 0.2), transparent 60%);
    transform: translate3d(0, 10%, 0);
}

.investment-card::after {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.16), transparent 65%);
    transform: translate3d(0, -15%, 0);
}

.investment-card__icon {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    background: #f3f5fb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    transition:
        transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
        box-shadow 0.4s ease,
        background 0.4s ease;
}

.investment-card__icon img {
    max-width: 72px;
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.investment-card__title {
    font-weight: 700;
    font-size: 1.5rem;
    color: #002b6a;
    letter-spacing: 0.01em;
    transition:
        color 0.3s ease,
        transform 0.4s ease;
}

.investment-card__text {
    font-size: 1rem;
    line-height: 1.8;
    color: #1b315f;
    transition:
        color 0.3s ease,
        transform 0.4s ease,
        opacity 0.4s ease;
}

.investment-card:hover {
    transform: translate3d(0, -18px, 0) scale(1.03) rotate3d(1, -1, 0, 0.6deg);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.22);
}

.investment-card:hover::before,
.investment-card:hover::after {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.investment-card:hover .investment-card__icon {
    background: #e2ebff;
    box-shadow: 0 14px 36px rgba(0, 54, 139, 0.25);
    transform: translate3d(0, -6px, 0) rotate3d(15, 15, 15, 360deg) scale(1.04);
}

.investment-card:hover .investment-card__icon img {
    transform: translate3d(0, -2px, 0) scale(1.06);
}

.investment-card:hover .investment-card__title {
    color: var(--primary-c);
    transform: translate3d(0, -4px, 0);
}

.investment-card:hover .investment-card__text {
    color: var(--secondary-c);
    opacity: 0.95;
    transform: translate3d(0, -2px, 0);
}

/* keyframes */

@keyframes investment-card-in {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@media (max-width: 991.98px) {
    .investment-areas {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .investment-card {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 575.98px) {
    .investment-areas .sec-tit {
  font-size: 50px;
    }
}


/*----------------------------------------------------
 HomeJourney Section
----------------------------------------------------*/
.journey {
    background: #ffffff;
    padding: 100px 0 80px;
}

.journey div.align-items-start:nth-child(3) {
    margin-top: 60px;
}

.journey-title {
    font-weight: 700;
    font-size: clamp(2rem, 1.5rem + 1vw, 2.8rem);
    color: #050a5c;
}

.journey-desc {
    font-size: 1rem;
    color: #555a6b;
}

.journey-step-card {
    max-width: 260px;
    margin-inline: auto;
    transition:
        transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
        box-shadow 0.45s ease;
}

.journey-step-title {
    font-weight: 700;
    font-size: 1.3rem;
    color: #050a5c;
    line-height: 33px;
}

.journey-step-desc {
    font-size: 0.98rem;
    line-height: 1.9;
    color: #4c5160;
}

.journey-step-icon {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

.journey-step-icon img {
    max-width: 70px;
    height: auto;
    display: block;
    filter: invert(1);
}

.journey .row.align-items-start > div:nth-child(odd) .journey-step-icon {
    background: var(--secondary-c);
}

.journey .row.align-items-start > div:nth-child(even) .journey-step-icon {
  background: var(--primary-c);
}

.journey-step-icon::before,
.journey-step-icon::after {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 3px solid transparent;
    pointer-events: none;
}

.journey-step-icon::before {
    border-top-color: #0b0b6f;
    border-bottom-color: #0b0b6f;
    animation: journey-ring-spin 7s linear infinite;
}

.journey-step-icon::after {
    inset: -22px;
    border-top-color: #1f4e9c;
    border-bottom-color: #1f4e9c;
    animation: journey-ring-spin-reverse 10s linear infinite;
    opacity: 0.95;
}

@keyframes journey-ring-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes journey-ring-spin-reverse {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

.journey-step-card:hover {
    transform: translateY(-12px);
}

.journey-step-card:hover .journey-step-icon {
    transform: translate3d(0, -6px, 0) rotate3d(15, 15, 15, 360deg) scale(1.04);
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.journey-step-card:hover .journey-step-icon img {
    transform: scale(1.06);
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.journey-step-card:hover .journey-step-title {
    color: #11189a;
}

.journey-step-card:hover .journey-step-desc {
    color: #3a3f50;
}

.journey-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 14px 40px;
    border-radius: 12px;
    background: #1f4e9c;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(31, 78, 156, 0.35);
    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.journey-cta-btn:hover {
    background: #244ea8;
    transform: translateY(-3px);
    box-shadow: 0 24px 60px rgba(31, 78, 156, 0.45);
    color: #ffffff;
}

.journey .row.align-items-start > div:nth-child(odd) .hold_jour_content  {
  margin-top: 10px;
}

.journey .row.align-items-start > div:nth-child(odd) .journey-step-icon {
  background: var(--secondary-c)
}

.journey .row.align-items-start > div:nth-child(even) .journey-step-icon {
    background: var(--primary-c);
}


.journey .row.align-items-start > div:nth-child(even) .hold_jour_content {
    order: 1;
}

.journey .row.align-items-start > div:nth-child(even) .journey-step-icon {
    order: 2;
    margin-top: 1.5rem;
    margin-bottom: 0;
}


@media (max-width: 991.98px) {
    .journey {
        padding: 70px 0 60px;
    }

    .journey-step-card {
        max-width: 100%;
    }

       .journey-step-icon {
      width: 85px;
      height: 85px;
    }

    .journey-step-icon img {
  max-width: 50px;
    }

    .journey-step-card  {
      flex-direction: row !important;
      gap: 50px;
      text-align: start !important;
    }

    .hold_jour_content {
      width: calc(100% - 136px) !important;
    }

    .journey .row.align-items-start > div:nth-child(2n) .hold_jour_content {
      order: 2;
    }
    .journey .row.align-items-start > div:nth-child(2n) .journey-step-icon {
      order: 1;
    }
}

/*----------------------------------------------------
 HomeContact Section
----------------------------------------------------*/
.contact-block-pro {
  background: #35588bdb;
  padding: 55px 0;
  box-shadow: 0 4px 32px #253a5b19;
}
.contact-info-card, .contact-form-card {
  background: #ffffffd6;
  border-radius: 15px;
  box-shadow: 0 2px 18px #b8c5da26;
}
.contact-title {
  font-size: 2.7rem;
  font-weight: 700;
  color: #37415c;
  line-height: 1.2;
  letter-spacing: 0.5px;
}
.info-subtitle {
  font-size: 1.15rem;
  font-weight: 600;
  color: #4766a4;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.info-subtitle i {
  font-size: 1.4rem;
  color: var(--primary-c) !important;
}
.contact-link a {
    display: inline-block;
  direction: ltr;
  color: #162c53;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.28s;
}
.contact-link a:hover {
  color: #4a6fcc;
  text-decoration: underline;
}
.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px #6d86aa26;
  width: 46px;
  height: 46px;
  transition: background 0.3s, transform 0.4s;
}
.social-icon-link svg {
  width: 25px !important;
  height: 25px;
  fill: #4a6fcc;
  transition: fill 0.33s;
}
.social-icon-link:hover {
  background: var(--secondary-c);
  transform: scale(1.16);
}

.social-icon-link i {
  transition: .3s ease;
}

.social-icon-link:hover i {
  color: #fff;
}
.contact-form-card {
  min-height: 390px;
}
.contact-form7 {
   max-width: 350px;
  margin: 0 auto;
}
@media (max-width: 991.92px) {
  .contact-title { font-size: 2rem; }
  .contact-info-card, .contact-form-card { padding: 2rem 1rem;}
}
@media (max-width: 768px) {
  .contact-title { font-size: 1.25rem;}
  .contact-info-card, .contact-form-card { padding: 1rem 0.6rem;}
}
.contact-block {
  padding-bottom: 60px;
}

.contact-input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, 0.10);
  background: radial-gradient(circle at 0% 0%, #f9fafb 0, #f3f4f6 45%, #ffffff 100%);
  color: #111827;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  outline: none;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease,
    transform 0.16s ease,
    color 0.18s ease;
}

textarea.contact-input,
.contact-input.contact-input--area {
  border-radius: 18px;
  min-height: 150px;
  padding-top: 14px;
  padding-bottom: 14px;
  resize: vertical;
  line-height: 1.7;
}

.contact-input::placeholder {
  color: #9ca3af;
  opacity: 1;
  text-align: start !important;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.contact-input:focus::placeholder {
  opacity: 0.5;
}

.contact-input:hover:not(:focus):not(:disabled) {
  border-color: rgba(17, 24, 39, 0.22);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  background-color: #ffffff;
}

.contact-input:focus,
.contact-input:focus-visible {
  border-color: var(--primary-c);
  box-shadow:
    0 0 0 1px rgba(57, 126, 188, 0.35),
    0 14px 32px rgba(15, 23, 42, 0.14);
  background-color: #ffffff;
  transform: translateY(-1px);
}

.contact-input:disabled,
.contact-input[readonly] {
  cursor: not-allowed;
  background: #f3f4f6;
  color: #6b7280;
  border-color: rgba(17, 24, 39, 0.08);
  box-shadow: none;
}

.contact-input::selection {
  background: rgba(57, 126, 188, 0.15);
}

.contact-input.is-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.25);
}

.contact-input.is-error:focus {
  border-color: #dc2626;
  box-shadow:
    0 0 0 1px rgba(220, 38, 38, 0.35),
    0 12px 30px rgba(127, 29, 29, 0.18);
}


.contact-input.wpcf7-not-valid {
  border-color: #ef4444;
  box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.32),
    0 14px 32px rgba(185, 28, 28, 0.28);
  animation: cInputShake 0.38s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

.wpcf7-not-valid-tip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.06);
  color: #b91c1c;
  font-size: 13px;
  line-height: 1.6;
  text-align: right;
  animation: tipIn 0.32s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.wpcf7-not-valid-tip::before {
  content: "!";
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

div.wpcf7-response-output {
  margin: 16px 0 0;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  border: 1px solid rgba(15, 23, 42, 0.2);
  background: var(--primary-c);
  color: #f9fafb;
  opacity: 0;
  transform: translateY(6px);
  animation: formAlertIn 0.4s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

div.wpcf7-response-output.wpcf7-mail-sent-ok {
  background: rgba(22, 163, 74, 0.1);
  color: #15803d;
  border-color: rgba(22, 163, 74, 0.5);
}

div.wpcf7-response-output.wpcf7-validation-errors,
div.wpcf7-response-output.wpcf7-aborted {
  background: rgba(239, 68, 68, 0.08);
  color: #b91c1c;
  border-color: rgba(239, 68, 68, 0.55);
}

.hold_contact .wpcf7-submit {
  border: 1px solid var(--primary-c);
  gap: 0.75rem;
  padding: 8px 16px;
  border-radius: 999px;
  display: inline-flex;
  transition: 0.5s ease;
}

.hold_contact .wpcf7-submit:hover,
.hold_contact .wpcf7-submit:active,
.hold_contact .wpcf7-submit:focus {
  background: #397ebc7d;
  color: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  transform: translateY(-2px);
}

.hold_contact .wpcf7-submit .btn-circle {
  position: relative;
}

.hold_contact .wpcf7-submit.is-loading .btn-circle i {
  opacity: 0;
}

.hold_contact .wpcf7-submit.is-loading .btn-circle::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--primary-c);
  border-top-color: transparent;
  animation: btnSpin 0.7s linear infinite;
}
.footer-col-newsletter {
  max-width: 380px;
  margin-inline-start: auto;
}

.footer-col-newsletter .footer-heading {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #e5ecf7;
}

.footer-newsletter-form {
  width: 100%;
}

.footer-newsletter-inner {
  display: flex;
  align-items: stretch;
  position: relative;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.35), rgba(15, 23, 42, 0.8));
  padding: 2px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.45);
  overflow: hidden;
}

.footer-newsletter-input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  border: none;
  border-radius: 999px 0 0 999px;
  background: radial-gradient(circle at 0% 0%, #f9fafb 0, #edf1f8 45%, #ffffff 100%);
  padding: 10px 16px;
  font-size: 0.9rem;
  color: #111827;
  outline: none;
  transition:
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    transform 0.2s ease;
}

html[dir="rtl"] .footer-newsletter-input {
  border-radius: 0 999px 999px 0;
  text-align: right;
}

.footer-newsletter-input::placeholder {
  color: #9ca3af;
  opacity: 0.9;
}

.footer-newsletter-input:hover {
  background-color: #ffffff;
}

.footer-newsletter-input:focus {
  background-color: #ffffff;
  box-shadow:
    0 0 0 1px rgba(129, 140, 248, 0.6),
    0 10px 28px rgba(15, 23, 42, 0.28);
  transform: translateY(-1px);
}

.footer-newsletter-inner .main-btn {
  position: relative;
  border-radius: 999px;
  border: none;
  background: var(--primary-c, #397ebc);
  color: #f9fafb;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.25);
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

html[dir="rtl"] .footer-newsletter-inner .main-btn {
  border-radius: 999px 0 0 999px;
}

html[dir="ltr"] .footer-newsletter-inner .main-btn {
  border-radius: 0 999px 999px 0;
}

.footer-newsletter-inner .main-btn__circle {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.footer-newsletter-inner .main-btn__circle i {
  font-size: 0.85rem;
  transition: transform 0.25s ease;
}

.footer-newsletter-inner .main-btn:hover {
  background: #2f6ba8;
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.3);
}

.footer-newsletter-inner .main-btn:hover .main-btn__circle {
  background: rgba(15, 23, 42, 0.3);
  transform: translateX(-2px);
}

html[dir="ltr"] .footer-newsletter-inner .main-btn:hover .main-btn__circle {
  transform: translateX(2px);
}

.footer-newsletter-inner .main-btn:hover .main-btn__circle i {
  transform: translateX(-1px);
}

html[dir="ltr"] .footer-newsletter-inner .main-btn:hover .main-btn__circle i {
  transform: translateX(1px);
}

.footer-col-newsletter .newsletter-message,
.footer-col-newsletter .tnp-message {
  margin-top: 10px;
  font-size: 0.8rem;
  border-radius: 999px;
  padding: 7px 12px;
}

.footer-col-newsletter .tnp-success,
.footer-col-newsletter .newsletter-success {
  background: rgba(22, 163, 74, 0.12);
  color: #bbf7d0;
}

.footer-col-newsletter .tnp-error,
.footer-col-newsletter .newsletter-error {
  background: rgba(239, 68, 68, 0.1);
  color: #fecaca;
}

@media (max-width: 575.98px) {
  .footer-newsletter-inner {
    flex-direction: row;
  }

  .footer-newsletter-input {
    font-size: 0.85rem;
    padding-inline: 12px;
  }

  .footer-newsletter-inner .main-btn {
    padding-inline: 18px;
  }
}


@keyframes btnSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes cInputShake {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-5px);
  }
  40% {
    transform: translateX(4px);
  }
  60% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(2px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes tipIn {
  from {
    opacity: 0;
    transform: translateY(-4px) translateX(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}

@keyframes formAlertIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 575.98px) {
  .contact-input {
    font-size: 14px;
    padding-inline: 16px;
  }

  .contact-input--area {
    min-height: 130px;
  }
}

/*----------------------------------------------------
Footer
----------------------------------------------------*/
.footer {
  position: relative;
  border-top: 1px solid rgba(148, 163, 184, 0.28);
  font-size: 14px;
  color: #e5e7eb;
  overflow: hidden;
  background: #101C1F;
}

.in_footer  {
  background: #101C1F;
  position: relative;
  z-index: 1;
  padding: 80px 0;
}
.eb_h3-footer-shape-1 {
  position: absolute;
  left: 0;
  top: 0;
}
.eb_h3-footer-shape-2 {
  position: absolute;
  right: 0;
  bottom: 0;
}

.footer-top {
  position: relative;
  margin-bottom: 28px;
  z-index: 1;
}

.footer-col {
  margin-bottom: 12px;
}

.footer-badge {
  margin-bottom: 30px;
}

.footer-col-brand .footer-badge img {
  max-height: 90px;
  width: auto;
}

.footer_desc {
  font-size: 15px;
  line-height: 1.7;
  color: #e5e7eb;
  margin: 12px 0 16px;
  text-align: start;
  opacity: 0.88;
  max-width: calc(100% - 60px);
}

.footer-heading {
  font-size: 17px;
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: 18px;
  text-align: start;
}

.sh-social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sh-social-icon {
  color: inherit;
  text-decoration: none;
}

.sh-social-icon__circle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.45);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.sh-social-icon__circle svg {
  width: 18px;
  height: 18px;
}

.sh-social-icon:hover .sh-social-icon__circle {
  background: var(--primary-c);
  border-color: rgba(248, 250, 252, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.7);
}

.footer-nav {
  margin: 0;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 8px;
}

.footer-nav a,
.footer-contact-item span,
.footer-contact-item a {
  text-decoration: none;
  font-size: 14px;
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer-contact-item a  {
    direction: ltr;
}

.footer-nav a:hover,
.footer-contact-item span:hover,
.footer-contact-item a:hover {
  color: var(--primary-c);
  transform: translateX(-2px);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 15px;
  gap: 9px;
  margin-bottom: 10px;
  color: #e5e7eb;
}

.footer-contact-item span {
  text-align: start;
}

.footer-contact-item a {
  color: inherit;
  text-decoration: none;
}

.footer-contact-item:hover,
.footer-contact-item a:hover {
  color: var(--primary-c);
}

.footer-contact-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.footer-qr-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
}

.footer-qr-frame img {
  display: block;
  width: 245px;
  max-width: 100%;
  height: auto;
}

@media (max-width: 575.98px) {
  .footer-qr-frame img {
    width: 140px;
  }
}

.footer-bottom {
  position: relative;
  font-size: 13px;
  color: #9ca3af;
  background: #17282C;
  padding: 26px 0;
  z-index: 1;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 14px;
  line-height: 1.6;
  color: #FFF;
}

.footer-bottom a {
  text-decoration: none;
  transition: color 0.18s ease;
}

.footer-bottom a:hover {
  color: var(--primary-c);
}

.footer-bottom-links a {
  color: #FFF;
}

@media (max-width: 991.98px) {
  .footer-col-brand,
  .footer-col-contact,
  .footer-col-map {
    text-align: center;
  }

  .footer_desc {
    text-align: center;
     max-width: 480px;
  }

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

@media (max-width: 576.98px) {
.sh-social-icons {
  justify-content: center;
}
}

.fix-icons {
    position: fixed;
      display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
    bottom: 100px;
    z-index: 9;
    width: 55px;
    height: 55px;
    inset-inline-start: 24px;
    border-radius: 100%;
}

.fix-icons.btn-whatsapp img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  animation: whatsapp-pulse 1.8s linear infinite;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.0);
  }
  40% {
    transform: scale(1.06);
    box-shadow: 0 0 0 6px rgba(37, 211, 102, 0.25);
  }
  70% {
    transform: scale(1.02);
    box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.08);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.0);
  }
}


.whatsapp-popup {
    position: fixed;
    bottom: 170px;
    inset-inline-start: 55px;
    z-index: 9999;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.whatsapp-popup-content {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    width: 320px;
    overflow: hidden;
}

.whatsapp-header {
    background: #25D366;
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-header h3 {
    margin: 0;
    font-size: 16px;
}

.whatsapp-body {
    padding: 20px;
}

.whatsapp-body p {
    margin: 0 0 15px;
    color: #666;
}

#whatsapp-message {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    resize: none;
    font-family: inherit;
    margin-bottom: 15px;
}

.whatsapp-send-btn {
    display: block;
    background: #25D366;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.whatsapp-send-btn:hover {
    background: #128C7E;
}

.whatsapp-close {
    position: absolute;
    top: 10px;
    inset-inline-end: 15px;
    font-size: 28px;
    color: white;
    cursor: pointer;
    z-index: 1;
}

@media (max-width: 768px) {
    .whatsapp-popup {
        right: 10px;
        bottom: 80px;
    }
    .whatsapp-popup-content {
        width: calc(100vw - 20px);
        max-width: 350px;
    }
}

/*----------------------------------------------------
loader
----------------------------------------------------*/
:root {
    --background: #121621;
}

.site-preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--background);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.site-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-preloader__content {
    text-align: center;
}

.site-preloader__text {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.7;
    color: #6c7486;
}

body.is-loading {
    overflow: hidden;
}

/* ============= 3D Boxes Loader ============= */

.loader {
    --duration: 3s;
    --primary: rgba(39, 94, 254, 1);
    --primary-light: #2f71ff;
    --primary-rgba: rgba(39, 94, 254, 0);
    width: 200px;
    height: 320px;
    position: relative;
    transform-style: preserve-3d;
    margin-inline: auto;
}

@media (max-width: 480px) {
    .loader {
        zoom: 0.44;
    }
}

.loader::before,
.loader::after {
    --r: 20.5deg;
    content: "";
    width: 320px;
    height: 140px;
    position: absolute;
    right: 32%;
    bottom: -11px;
    background: var(--background);
    transform: translateZ(200px) rotate(var(--r));
    animation: mask var(--duration) linear forwards infinite;
}

.loader::after {
    --r: -20.5deg;
    right: auto;
    left: 32%;
}

.loader .ground {
    position: absolute;
    left: -50px;
    bottom: -120px;
    transform-style: preserve-3d;
    transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(1);
}

.loader .ground div {
    transform: rotateX(90deg) rotateY(0deg) translate(-48px, -120px)
        translateZ(100px) scale(0);
    width: 200px;
    height: 200px;
    background: var(--primary);
    background: linear-gradient(
        45deg,
        var(--primary) 0%,
        var(--primary) 50%,
        var(--primary-light) 50%,
        var(--primary-light) 100%
    );
    transform-style: preserve-3d;
    animation: ground var(--duration) linear forwards infinite;
}

.loader .ground div::before,
.loader .ground div::after {
    --rx: 90deg;
    --ry: 0deg;
    --x: 44px;
    --y: 162px;
    --z: -50px;
    content: "";
    width: 156px;
    height: 300px;
    opacity: 0;
    background: linear-gradient(
        var(--primary),
        var(--primary-rgba)
    );
    position: absolute;
    transform: rotateX(var(--rx)) rotateY(var(--ry))
        translate(var(--x), var(--y)) translateZ(var(--z));
    animation: ground-shine var(--duration) linear forwards infinite;
}

.loader .ground div::after {
    --rx: 90deg;
    --ry: 90deg;
    --x: 0;
    --y: 177px;
    --z: 150px;
}

.loader .box {
    --x: 0;
    --y: 0;
    position: absolute;
    animation: var(--duration) linear forwards infinite;
    transform: translate(var(--x), var(--y));
}

.loader .box > div {
    background-color: var(--primary);
    width: 48px;
    height: 48px;
    position: relative;
    transform-style: preserve-3d;
    animation: var(--duration) ease forwards infinite;
    transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(0);
}

.loader .box > div::before,
.loader .box > div::after {
    --rx: 90deg;
    --ry: 0deg;
    --z: 24px;
    --y: -24px;
    --x: 0;
    content: "";
    position: absolute;
    background-color: inherit;
    width: inherit;
    height: inherit;
    transform: rotateX(var(--rx)) rotateY(var(--ry))
        translate(var(--x), var(--y)) translateZ(var(--z));
    filter: brightness(var(--b, 1.2));
}

.loader .box > div::after {
    --rx: 0deg;
    --ry: 90deg;
    --x: 24px;
    --y: 0;
    --b: 1.4;
}

/* positions لكل box */
.loader .box0 {
    --x: -220px;
    --y: -120px;
    left: 58px;
    top: 108px;
}

.loader .box1 {
    --x: -260px;
    --y: 120px;
    left: 25px;
    top: 120px;
}

.loader .box2 {
    --x: 120px;
    --y: -190px;
    left: 58px;
    top: 64px;
}

.loader .box3 {
    --x: 280px;
    --y: -40px;
    left: 91px;
    top: 120px;
}

.loader .box4 {
    --x: 60px;
    --y: 200px;
    left: 58px;
    top: 132px;
}

.loader .box5 {
    --x: -220px;
    --y: -120px;
    left: 25px;
    top: 76px;
}

.loader .box6 {
    --x: -260px;
    --y: 120px;
    left: 91px;
    top: 76px;
}

.loader .box7 {
    --x: -240px;
    --y: 200px;
    left: 58px;
    top: 87px;
}

/* ربط كل box بالـ keyframes بتاعته */
.loader .box0 {
    animation-name: box-move0;
}
.loader .box0 > div {
    animation-name: box-scale0;
}

.loader .box1 {
    animation-name: box-move1;
}
.loader .box1 > div {
    animation-name: box-scale1;
}

.loader .box2 {
    animation-name: box-move2;
}
.loader .box2 > div {
    animation-name: box-scale2;
}

.loader .box3 {
    animation-name: box-move3;
}
.loader .box3 > div {
    animation-name: box-scale3;
}

.loader .box4 {
    animation-name: box-move4;
}
.loader .box4 > div {
    animation-name: box-scale4;
}

.loader .box5 {
    animation-name: box-move5;
}
.loader .box5 > div {
    animation-name: box-scale5;
}

.loader .box6 {
    animation-name: box-move6;
}
.loader .box6 > div {
    animation-name: box-scale6;
}

.loader .box7 {
    animation-name: box-move7;
}
.loader .box7 > div {
    animation-name: box-scale7;
}

/* ============= Keyframes لكل box ============= */

/* box 0 */
@keyframes box-move0 {
    12% {
        transform: translate(var(--x), var(--y));
    }
    25%,
    52% {
        transform: translate(0, 0);
    }
    80% {
        transform: translate(0, -32px);
    }
    90%,
    100% {
        transform: translate(0, 188px);
    }
}

@keyframes box-scale0 {
    6% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(0);
    }
    14%,
    100% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(1);
    }
}

/* box 1 */
@keyframes box-move1 {
    16% {
        transform: translate(var(--x), var(--y));
    }
    29%,
    52% {
        transform: translate(0, 0);
    }
    80% {
        transform: translate(0, -32px);
    }
    90%,
    100% {
        transform: translate(0, 188px);
    }
}

@keyframes box-scale1 {
    10% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(0);
    }
    18%,
    100% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(1);
    }
}

/* box 2 */
@keyframes box-move2 {
    20% {
        transform: translate(var(--x), var(--y));
    }
    33%,
    52% {
        transform: translate(0, 0);
    }
    80% {
        transform: translate(0, -32px);
    }
    90%,
    100% {
        transform: translate(0, 188px);
    }
}

@keyframes box-scale2 {
    14% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(0);
    }
    22%,
    100% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(1);
    }
}

/* box 3 */
@keyframes box-move3 {
    24% {
        transform: translate(var(--x), var(--y));
    }
    37%,
    52% {
        transform: translate(0, 0);
    }
    80% {
        transform: translate(0, -32px);
    }
    90%,
    100% {
        transform: translate(0, 188px);
    }
}

@keyframes box-scale3 {
    18% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(0);
    }
    26%,
    100% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(1);
    }
}

/* box 4 */
@keyframes box-move4 {
    28% {
        transform: translate(var(--x), var(--y));
    }
    41%,
    52% {
        transform: translate(0, 0);
    }
    80% {
        transform: translate(0, -32px);
    }
    90%,
    100% {
        transform: translate(0, 188px);
    }
}

@keyframes box-scale4 {
    22% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(0);
    }
    30%,
    100% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(1);
    }
}

/* box 5 */
@keyframes box-move5 {
    32% {
        transform: translate(var(--x), var(--y));
    }
    45%,
    52% {
        transform: translate(0, 0);
    }
    80% {
        transform: translate(0, -32px);
    }
    90%,
    100% {
        transform: translate(0, 188px);
    }
}

@keyframes box-scale5 {
    26% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(0);
    }
    34%,
    100% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(1);
    }
}

/* box 6 */
@keyframes box-move6 {
    36% {
        transform: translate(var(--x), var(--y));
    }
    49%,
    52% {
        transform: translate(0, 0);
    }
    80% {
        transform: translate(0, -32px);
    }
    90%,
    100% {
        transform: translate(0, 188px);
    }
}

@keyframes box-scale6 {
    30% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(0);
    }
    38%,
    100% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(1);
    }
}

/* box 7 */
@keyframes box-move7 {
    40% {
        transform: translate(var(--x), var(--y));
    }
    53%,
    52% {
        transform: translate(0, 0);
    }
    80% {
        transform: translate(0, -32px);
    }
    90%,
    100% {
        transform: translate(0, 188px);
    }
}

@keyframes box-scale7 {
    34% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(0);
    }
    42%,
    100% {
        transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(1);
    }
}

/* باقي الأنيميشنز العامة */
@keyframes ground {
    0%,
    65% {
        transform: rotateX(90deg) rotateY(0deg) translate(-48px, -120px)
            translateZ(100px) scale(0);
    }
    75%,
    90% {
        transform: rotateX(90deg) rotateY(0deg) translate(-48px, -120px)
            translateZ(100px) scale(1);
    }
    100% {
        transform: rotateX(90deg) rotateY(0deg) translate(-48px, -120px)
            translateZ(100px) scale(0);
    }
}

@keyframes ground-shine {
    0%,
    70% {
        opacity: 0;
    }
    75%,
    87% {
        opacity: 0.2;
    }
    100% {
        opacity: 0;
    }
}

@keyframes mask {
    0%,
    65% {
        opacity: 0;
    }
    66%,
    100% {
        opacity: 1;
    }
}




/*----------------------------------------------------
top button
----------------------------------------------------*/
.scroll-top{
  position:fixed;
  bottom:26px;
  inset-inline-start:26px; 
  width:46px;
  height:46px;
  border:none;
  padding:0;
  border-radius:50%;
  background:#FFF;
  cursor:pointer;
  z-index:999;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:opacity .25s ease,visibility .25s ease,transform .25s ease,box-shadow .25s ease;
}
.scroll-top.is-visible{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
.scroll-top:hover{
  box-shadow:0 10px 22px rgba(0,0,0,.18);
}

.scroll-top i {
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  font-size:14px;
  color:var(--primary-c);
  pointer-events:none;
}


.scroll-top__progress{
  width:100%;
  height:100%;
  transform:rotate(-90deg);
}
.scroll-top__track{
  fill:none;
  stroke:#e5e7eb;
  stroke-width:2.5;
}
.scroll-top__indicator{
  fill:none;
  stroke:var(--primary-c);
  stroke-width:2.5;
  stroke-linecap:round;
  stroke-dasharray:0;
  stroke-dashoffset:0;
  transition:stroke-dashoffset .1s linear;
}

@media(max-width:575.98px){
  .scroll-top{
    bottom:18px;
    left:18px;
  }
}

/*----------------------------------------------------
 WhatsApp
----------------------------------------------------*/
.wa-fab {
  position: fixed;
  inset-inline-start: 18px;
  inset-block-end: 18px;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  z-index: 9999;
  text-decoration: none;
  isolation: isolate;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: wa-float 3s ease-in-out infinite,
    wa-pulse 2.6s ease-in-out infinite;
  box-shadow: none !important;
}

/*.home .wa-fab {*/
/*    display: none;*/
/*}*/
.wa-fab:hover {
  transform: translateY(-2px) scale(1.05);
}

.wa-fab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle,
    rgba(37, 211, 102, 0.35) 0%,
    rgba(37, 211, 102, 0.25) 35%,
    rgba(37, 211, 102, 0) 60%
  );
  animation: wa-ring 1.6s ease-out infinite;
  z-index: -1;
}

.wa-fab img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.35s ease, filter 0.35s ease, opacity 0.35s ease;
  transform-origin: center;
}

.wa-fab:hover img {
  animation: wa-bounce 0.9s ease forwards, wa-spin 0.9s ease forwards;
  filter: hue-rotate(-15deg) brightness(1.1) saturate(1.3);
  opacity: 0.98;
}

@keyframes wa-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
@keyframes wa-pulse {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(37, 211, 102, 0));
  }
  50% {
    filter: drop-shadow(0 0 8px rgba(37, 211, 102, 0.25));
  }
}

@keyframes wa-ring {
  0% {
    transform: scale(0.9);
    opacity: 0.35;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

@keyframes wa-bounce {
  0% {
    transform: scale(1) translateY(0);
  }
  30% {
    transform: scale(1.15) translateY(-4px);
  }
  50% {
    transform: scale(0.95) translateY(2px);
  }
  70% {
    transform: scale(1.1) translateY(-2px);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}

@keyframes wa-spin {
  0% {
    rotate: 0deg;
  }
  40% {
    rotate: 8deg;
  }
  70% {
    rotate: -6deg;
  }
  100% {
    rotate: 0deg;
  }
}

@media (max-width: 480px) {
  .wa-fab {
    width: 56px;
    height: 56px;
    inset-inline-start: 14px;
    inset-block-end: 185px;
  }
}

/*----------------------------------------------------
 Pages Inside
----------------------------------------------------*/
/*--------------------------------------------------------------
 News Card - Base Styles
--------------------------------------------------------------*/
.news-card {
  margin-bottom: 30px;
  display: flex; /* Enable flex for equal height */
  flex-direction: column;
  height: 100%; /* Fill parent height */
}

.news-card__item {
  display: flex;
  flex-direction: column;
  height: 100%; /* Fill news-card height */
  border: none;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(34, 52, 72, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.news-card__item::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--secondary-c), var(--primary-c));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
  will-change: transform; /* Performance hint */
}

.news-card__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(34, 52, 72, 0.18);
}

.news-card__item:hover::before {
  transform: scaleY(1);
}

/*--------------------------------------------------------------
 News Card - Image
--------------------------------------------------------------*/
.news-card__thumb {
  display: block;
  position: relative;
  overflow: hidden;
  flex-shrink: 0; /* Prevent image from shrinking */
}

.news-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0) 55%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none; /* Don't block image interactions */
}

.news-card__thumb .card-img-top {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  will-change: transform; /* Performance hint */
}

.news-card__item:hover .card-img-top {
  transform: scale(1.06);
}

.news-card__item:hover .news-card__thumb::after {
  opacity: 1;
}

/*--------------------------------------------------------------
 News Card - Body (Flexible Height)
--------------------------------------------------------------*/
.news-card .card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 22px 20px;
}

.news-card .card-title {
  margin: 0 0 10px 0;
  font-size: 20px;
  line-height: 1.5;
  color: #000;
  font-weight: 700;
  /* min-height: 60px; */
  display: flex;
  align-items: flex-start;
}

.news-card .card-title a {
  color: inherit;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: color 0.25s ease;
}

.news-card .card-title a::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background: var(--primary-c);
  transition: width 0.3s ease;
}

.news-card__item:hover .card-title a {
  color: var(--primary-c);
}

.news-card__item:hover .card-title a::after {
  width: 100%;
}

.news-card .exc {
  flex: 1;
  font-size: 14px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*--------------------------------------------------------------
 News Card - Footer (Sticky to Bottom)
--------------------------------------------------------------*/
.news-card .global-url {
  display: flex;
  justify-content: flex-start;
  border-top: 1px solid rgba(34, 52, 72, 0.08);
  padding-top: 14px;
  margin-top: auto;
}

.news-card:hover .main-btn .btn-bg {
  width: 100%;
}

.news-card:hover .main-btn .btn-text {
  color: #fff;
  transform: translateX(5px);
}

/*--------------------------------------------------------------
 News Card - Responsive
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .news-card__thumb .card-img-top {
    height: 210px;
  }
  
  .news-card .card-title {
    font-size: 19px;
    min-height: 57px;
  }
}

@media (max-width: 576px) {
  .news-card__thumb .card-img-top {
    height: 200px;
  }

  .news-card .card-body {
    padding: 18px 18px 16px;
  }

  .news-card .card-title {
    font-size: 18px;
    min-height: auto;
  }

  .news-card .exc {
    -webkit-line-clamp: 4;
  }
}

/*--------------------------------------------------------------
 Performance Optimizations
--------------------------------------------------------------*/
@media (prefers-reduced-motion: reduce) {
  .news-card__item,
  .news-card__item::before,
  .news-card__thumb::after,
  .card-img-top,
  .card-title a::after,
  .main-btn .btn-bg,
  .main-btn .btn-text {
    transition: none !important;
  }
}
/*--------------------------------------------------------------
 End News Card Styles
--------------------------------------------------------------*/

.singlePage .whyus-row {
  margin-top: 0;
}

.simple-faq {
  &::before,
  &::after {
    display: none;
  }
}

.singlePage {
  margin-bottom: 70px;
}

.singlePage {
  .singlePage-img {
    inline-size: min(100%, 860px);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
    position: relative;
    transform: translateZ(0);
    margin-block-end: clamp(16px, 3vw, 28px);

    img {
      display: block;
      inline-size: 100%;
      block-size: auto;
      object-fit: cover;
      transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
        filter 0.6s ease;
    }

    &::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.06),
        transparent 30%,
        rgba(0, 0, 0, 0.1)
      );
      opacity: 0;
      transition: opacity 0.5s ease;
      pointer-events: none;
    }

    &::after {
      content: "";
      position: absolute;
      inset: -1px;
      border-radius: 18px;
      background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.42) 40%,
        transparent 75%
      );
      transform: translateX(-130%) skewX(-14deg);
      transition: transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
      pointer-events: none;
    }

    &:hover,
    &:focus-within {
      img {
        transform: scale(1.05);
        filter: saturate(1.04) contrast(1.03);
      }
      &::before {
        opacity: 0.35;
      }
      &::after {
        transform: translateX(130%) skewX(-14deg);
      }
    }
  }

  .singlePage-content {
    text-align: justify;
    max-inline-size: 78ch;
    margin-inline: auto;
    font-size: clamp(16px, 1.15vw + 0.5rem, 18.5px);
    line-height: 1.85;
    color: color-mix(in srgb, var(--c-black) 92%, transparent);

    > * {
      margin-block: clamp(12px, 1.5vw, 20px);
    }
    > :first-child {
      margin-block-start: 0;
    }
    > :last-child {
      margin-block-end: 0;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      color: var(--c-black);
      font-weight: 800;
      line-height: 1.25;
      letter-spacing: 0.2px;
    }
    h1 {
      font-size: clamp(28px, 2.6vw + 0.5rem, 40px);
    }
    h2 {
      font-size: clamp(24px, 2.2vw + 0.4rem, 34px);
      position: relative;
    }
    h3 {
      font-size: clamp(20px, 1.6vw + 0.35rem, 28px);
    }
    h4 {
      font-size: clamp(18px, 1.2vw + 0.3rem, 22px);
    }

    p {
      color: #000;
    }

    a {
      color: var(--secondary-c);
      text-decoration: underline;
      text-underline-offset: 3px;
      transition: color 0.25s ease, text-underline-offset 0.25s ease,
        background 0.25s ease;
    }
    a:hover {
      color: var(--secondary-c-hover);
      text-underline-offset: 5px;
      background: color-mix(in srgb, var(--c-secondary) 12%, transparent);
    }

    ul,
    ol {
      padding-inline-start: 1.25em;
    }
    li {
      margin-block: 0.35em;
    }
    ul li::marker {
      color: var(--c-secondary);
    }
    ol li::marker {
      color: var(--secondary-c);
      font-weight: 700;
    }

    blockquote {
      margin: clamp(14px, 2vw, 20px) 0;
      padding: 16px 18px;
      border-inline-start: 4px solid var(--secondary-c);
      background: color-mix(
        in srgb,
        var(--c-secondary) 16%,
        var(--c-white) 84%
      );
      border-radius: 12px;
      color: color-mix(in srgb, var(--c-black) 92%, transparent);
    }

    :where(img, .wp-block-image img) {
      max-inline-size: 100%;
      height: auto;
      border-radius: 12px;
      display: block;
    }
    figure {
      margin: clamp(10px, 2vw, 18px) 0;
      text-align: center;
    }
    figcaption {
      font-size: 0.9em;
      color: #6f6f6f;
      margin-top: 8px;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
      background: var(--c-white);
    }
    thead th {
      background: color-mix(
        in srgb,
        var(--secondary-c) 14%,
        var(--c-white) 86%
      );
      color: var(--c-black);
      text-align: start;
      font-weight: 800;
    }
    th,
    td {
      padding: 12px 14px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }
    tbody tr:hover {
      background: color-mix(
        in srgb,
        var(--c-secondary) 12%,
        var(--c-white) 88%
      );
    }

    code,
    kbd {
      font-family: ui-monospace, SFMono-Regular, Menlo, Consolas,
        "Liberation Mono", monospace;
      background: #f4f6f7;
      padding: 0.15em 0.35em;
      border-radius: 6px;
      font-size: 0.95em;
    }
    pre {
      background: #0f172a;
      color: #e2e8f0;
      padding: 16px 18px;
      border-radius: 12px;
      overflow: auto;
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
    }
    pre code {
      background: transparent;
      padding: 0;
      color: inherit;
    }

    hr {
      border: 0;
      height: 2px;
      background: linear-gradient(
        90deg,
        transparent,
        color-mix(in srgb, var(--c-black) 16%, transparent),
        transparent
      );
      margin-block: clamp(18px, 3vw, 28px);
      border-radius: 2px;
    }

    .wp-block-button__link,
    .button,
    .btn {
      background: var(--secondary-c);
      color: var(--c-white);
      border-radius: 999px;
      padding: 10px 18px;
      text-decoration: none;
      display: inline-block;
      transition: transform 0.2s ease, box-shadow 0.25s ease,
        background 0.25s ease;
    }
    .wp-block-button__link:hover,
    .button:hover,
    .btn:hover {
      background: var(--secondary-c-hover);
      transform: translateY(-1px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    }
  }

  @media (max-width: 576px) {
    .singlePage-img {
      border-radius: 14px;
    }
    .singlePage-content {
      padding-inline: 6px;
    }
  }

  @media (min-width: 1400px) {
    .singlePage-content {
      max-inline-size: 82ch;
    }
  }
}

.singlePage a:focus-visible,
.singlePage .wp-block-button__link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--secondary-c) 25%, transparent);
  border-radius: 12px;
}

.svc-archive {
  .svc-archive__title {
    font-weight: 800;
  }

  .svc-card {
    background: var(--c-white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
      box-shadow 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
    height: 100%;

    &:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
    }

    .svc-link {
      display: grid;
      color: inherit;
      text-decoration: none;
      height: 100%;
    }

    .svc-media {
      position: relative;
      aspect-ratio: 16/7;
      background: #eee;
      overflow: hidden;

      img {
        inline-size: 100%;
        block-size: 100%;
        object-fit: cover;
        transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
      }

      .svc-media__ph {
        inline-size: 100%;
        block-size: 100%;
        background: #e9ecef;
      }
    }

    &:hover .svc-media img {
      transform: scale(1.06);
    }

    .svc-body {
      text-align: center;
      padding: 18px 16px 20px;

      .svc-icon {
        inline-size: 99px;
        block-size: 99px;
        padding: 19px;
        margin: -55px auto 10px;
        border-radius: 50%;
        background: var(--c-white);
        display: grid;
        place-items: center;
        transform: translateY(0) scale(1);
        transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
          box-shadow 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.35s ease;

        img {
          max-block-size: 65px;
          filter: brightness(0) saturate(100%) invert(48%) sepia(9%)
            saturate(1063%) hue-rotate(128deg) brightness(91%) contrast(94%);
          transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        i {
          font-size: 28px;
          color: var(--c-white);
          transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
        }
      }

      .svc-title {
        font-size: 20px;
        font-weight: 800;
        color: var(--c-black);
        margin: 10px 0 16px;
      }

      .svc-excerpt {
        color: #000;
        line-height: 25px;
        font-size: 18px;
        margin: 0 0 16px;
      }

      .svc-cta {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: var(--secondary-c);
        font-weight: 700;
        position: relative;
        transition: color 0.3s ease;

        i {
          transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
        }
      }
    }

    &:hover .svc-icon {
      transform: translateY(-4px) scale(1.06);
    }

    &:hover .svc-icon img,
    &:hover .svc-icon i {
      transform: translateY(-1px) scale(1.06);
    }

    &:hover .svc-cta i {
      transform: translateX(-4px);
    }
  }

  [dir="ltr"] .svc-card:hover .svc-cta i {
    transform: translateX(4px);
  }
}

.singlePage.posts-section [class*="col-"] {
  margin-bottom: 30px;
}

.header-inside {
  background: #fff !important;
}

.singlePage.simple-faq .contact-form,
.singlePage.consult .contact-form {
  max-width: 800px;
  margin: 0 auto;
  border: 4px solid var(--primary-c);
  border-radius: 14px;
  padding: 22px 28px 28px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.form-note {
  font-size: 20px;
  font-weight: 500;
}

.singlePage.simple-faq .contact-form {
  background: #ffffff;
}

.singlePage.consult .contact-form {
  background: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(10px) brightness(1.24);
  backdrop-filter: blur(10px) brightness(1.24);
  border: 6px solid var(--primary-c);
  border-radius: 14px;
  isolation: isolate;
}

.singlePage .wpcf7-form-control-wrap {
  max-width: 100%;
}

.singlePage.simple-faq .contact-form .form-title,
.singlePage.simple-faq .contact-form > h2,
.singlePage.consult .contact-form .form-title,
.singlePage.consult .contact-form > h2 {
  margin: 0 0 14px;
  text-align: center;
  font-weight: 900;
  font-size: clamp(20px, 3vw, 28px);
  color: #000;
}

.singlePage.simple-faq .contact-form .row.g-3,
.singlePage.consult .contact-form .row.g-3 {
  row-gap: 14px;
  column-gap: 18px;
}

.singlePage.simple-faq .contact-form .form-label,
.singlePage.consult .contact-form .form-label {
  display: block;
  text-align: right;
  margin-bottom: 8px;
  font-weight: 800;
  color: #000;
}

.singlePage.simple-faq .contact-form .contact-input.form-control,
.singlePage.consult .contact-form .contact-input.form-control {
  display: block;
  width: 100%;
  height: 44px;
  background: #f3f0ec;
  border: 2px solid #8ba4a2;
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 14px;
  color: #000;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease,
    background 0.25s ease;
}
.singlePage.simple-faq .contact-form textarea.contact-input,
.singlePage.consult .contact-form textarea.contact-input {
  min-height: 90px;
  height: auto;
  resize: vertical;
}

.singlePage.simple-faq .contact-form .contact-input:focus,
.singlePage.consult .contact-form .contact-input:focus {
  border-color: var(--primary-c);
  background: #f7f4f0;
  box-shadow: 0 0 0 3px rgba(82, 122, 120, 0.15);
}

.singlePage.simple-faq .contact-form .cf7-btn-wrap,
.singlePage.consult .contact-form .cf7-btn-wrap {
  text-align: center;
  margin-top: 6px;
}
.singlePage.simple-faq .contact-form .main-btn,
.singlePage.consult .contact-form .main-btn {
  width: 185px;
}

.singlePage.simple-faq .wpcf7 form .wpcf7-response-output,
.singlePage.consult .wpcf7 form .wpcf7-response-output {
  margin-top: 12px;
  border-radius: 10px;
  padding: 10px 12px;
  border: 2px solid #ceb9a3;
  background: #fff;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #bb2124;
    background: #bb2124;
}
.singlePage.simple-faq .wpcf7-not-valid,
.singlePage.consult .wpcf7-not-valid {
  border-color: #c24 !important;
  background: #fff4f4 !important;
}
.singlePage.simple-faq .wpcf7 .wpcf7-not-valid-tip,
.singlePage.consult .wpcf7 .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 0.9rem;
}

@media (max-width: 576px) {
  .singlePage.simple-faq .contact-form,
  .singlePage.consult .contact-form {
    padding: 18px 16px 22px;
    border-width: 3px;
    border-radius: 12px;
  }
  .singlePage.simple-faq .contact-form .main-btn,
  .singlePage.consult .contact-form .main-btn {
    width: 100%;
  }
}

.singlePage.simple-faq .contact-form .form-title,
.singlePage.consult .contact-form .form-title {
  margin: 0 0 14px;
  text-align: center;
  font-weight: 900;
  font-size: clamp(20px, 3vw, 28px);
  color: #000;
}

.hero-title {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  min-height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  margin: 0 0 80px;
  padding: 18px 20px;

  color: #fff;
  font-weight: 900;
  font-size: clamp(22px, 4vw, 40px);
  line-height: 1.25;

  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);

  background-image: var(--hero-title-bg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-title::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
  pointer-events: none;
}

.hero-title > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 767.98px) {
  .hero-title {
    padding: 14px 16px;
  }
}

@media (pointer: coarse) {
  .hero-title {
    background-attachment: scroll;
  }
}

.page-id-2764 .wrap {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--consult-bg) center/cover no-repeat;
}

.page-id-2764 .wrap:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
  pointer-events: none;
}

/*----------------------------------------------------
 Global Responsive
----------------------------------------------------*/
@media (max-width: 1399.96px) {
  .contact-card {
    left: 35% !important;
  }

  .header-logo img {
    max-block-size: calc(clamp(64px, 6vw, 92px) - 25px) !important;
  }

  .main-btn span {
    font-size: 16px;
  }
}

@media (min-width: 992px) {
  .nav-list {
    display: flex;
    gap: 18px;
    align-items: center;
  }

  .site-sidebar,
  .sidebar-overlay {
    display: none !important;
  }

  .nav-list > li.menu-item {
    position: relative;
  }

  .nav-list > li > a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 12px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    line-height: 1.2;
    transition: color 0.25s ease;
  }

  .nav-list > li > a:hover,
  .nav-list > li > a:focus {
    color: var(--primary-c);
  }

  .nav-list > .menu-item-has-children > a::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-block;
    margin-inline-start: 6px;
    color: var(--c-black);
    transition: transform 0.25s ease, color 0.25s ease;
  }

  .nav-list > .menu-item-has-children:hover > a::after,
  .nav-list > .menu-item-has-children:focus-within > a::after {
    transform: rotate(180deg);
    color: var(--secondary-c);
  }

  .nav-list > .menu-item-has-children.active > a::after,
  .nav-list > .menu-item-has-children.current-menu-item > a::after,
  .nav-list > .menu-item-has-children.current_page_item > a::after,
  .nav-list > .menu-item-has-children.current-menu-ancestor > a::after,
  .nav-list > .menu-item-has-children.current_page_ancestor > a::after,
  .nav-list > .menu-item-has-children.current-menu-parent > a::after {
    color: var(--secondary-c);
  }

  .nav-list > li > .sub-menu {
    position: absolute;
    top: 100%;
    inset-inline-start: 0;
    z-index: 50;
    transform-origin: 0 0 0;
    min-width: 260px;
    padding: 10px;
    list-style: none;
    background: radial-gradient(
        600px 300px at 110% -10%,
        color-mix(in srgb, var(--secondary-c) 10%, transparent),
        transparent 60%
      ),
      linear-gradient(
        180deg,
        color-mix(in srgb, var(--c-white) 96%, transparent),
        color-mix(in srgb, var(--c-white) 88%, transparent)
      );
    border: 1px solid color-mix(in srgb, var(--c-black) 8%, transparent);
    border-radius: 16px;
    box-shadow: 0 18px 44px color-mix(in srgb, var(--c-black) 14%, transparent);
    transform-origin: top center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px) scale(0.98);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
    will-change: opacity, transform;
  }

  .nav-list > li.menu-item-has-children:hover > .sub-menu,
  .nav-list > li.menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
  }

  .nav-list .sub-menu > li {
    position: relative;
  }

  .nav-list .sub-menu > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    color: color-mix(in srgb, var(--c-black) 85%, var(--c-white) 15%);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
  }

  .nav-list .sub-menu > li > a:hover,
  .nav-list .sub-menu > li > a:focus {
    background: color-mix(in srgb, var(--c-secondary) 24%, var(--c-white) 76%);
    color: var(--c-black);
    transform: translateY(-1px);
  }

  .nav-list .sub-menu > li:not(:last-child) > a {
    margin-bottom: 6px;
  }

  .nav-list .sub-menu > li.menu-item-has-children > a::after {
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 13px;
    color: var(--c-black);
    transition: transform 0.2s ease, color 0.2s ease;
    margin-inline-start: 10px;
    line-height: 1;
  }

  html[dir="ltr"] .nav-list .sub-menu > li.menu-item-has-children > a::after {
    content: "\f054";
  }

  html[dir="rtl"] .nav-list .sub-menu > li.menu-item-has-children > a::after {
    content: "\f053";
  }

  .nav-list .sub-menu .sub-menu {
    position: absolute;
    top: 0;
    inset-inline-start: 100%;
    min-width: 240px;
    padding: 10px;
    background: var(--c-white);
    border: 1px solid color-mix(in srgb, var(--c-black) 8%, transparent);
    box-shadow: 0 16px 40px color-mix(in srgb, var(--c-black) 12%, transparent);
    transform-origin: top start;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px) scale(0.98);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
  }

  .nav-list .sub-menu > li.menu-item-has-children:hover > .sub-menu,
  .nav-list .sub-menu > li.menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
  }

  .btn-nav,
  .mobile-nav-list,
  .dd-trigger {
    display: none !important;
  }
}

/* Max-width: 992px */
@media (max-width: 992px) {
  .main-caption .headline-title {
    position: relative;
    font-size: clamp(45px, 5vw, 44px);
  }

  .sidebar-overlay {
    position: fixed;
    inset: 0;
    z-index: 9990;
    background: rgba(0, 0, 0, 0.42);
    opacity: 0;
    pointer-events: none;
    transform: scale(1.02);
    transition: opacity 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
      transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .sidebar-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        1200px 600px at 20% -10%,
        rgba(82, 122, 120, 0.18),
        transparent 60%
      ),
      radial-gradient(
        900px 520px at 120% 110%,
        rgba(206, 185, 163, 0.16),
        transparent 65%
      );
    opacity: 0;
    transition: opacity 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .sidebar-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .sidebar-overlay.is-open::before {
    opacity: 0.12;
  }

  @supports (backdrop-filter: blur(6px)) {
    .sidebar-overlay {
      backdrop-filter: blur(3px) saturate(110%);
    }

    .sidebar-overlay.is-open {
      backdrop-filter: blur(6px) saturate(120%);
    }
  }

  .site-sidebar {
    position: fixed;
    inset-block: 0;
    inset-inline-start: 0;
    inline-size: min(100vw, 400px);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    background: radial-gradient(
        900px 420px at 120% -10%,
        rgba(82, 122, 120, 0.16),
        transparent 50%
      ),
      radial-gradient(
        700px 360px at -10% 110%,
        rgba(206, 185, 163, 0.18),
        transparent 55%
      ),
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.92),
        rgba(255, 255, 255, 0.86)
      );
    border-inline-start: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 20px 0 70px rgba(0, 0, 0, 0.16);
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .site-sidebar.is-open {
    transform: translateX(0);
  }

  .site-sidebar .sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .site-sidebar .sidebar-head .sidebar-logo img {
    max-height: 40px;
    display: block;
    width: 100%;
  }

  .site-sidebar .sidebar-head .logo-text {
    font-weight: 800;
    color: var(--primary-c);
  }

  .site-sidebar .sidebar-head .sidebar-close {
    inline-size: 46px;
    block-size: 46px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.12);
  }

  .site-sidebar .sidebar-nav {
    padding: 12px;
    overflow: auto;
    scrollbar-width: thin;
  }

  .site-sidebar .sidebar-nav .sidebar-menu {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
  }

  .site-sidebar .sidebar-nav .sidebar-menu > li {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.18s cubic-bezier(0.2, 0.8, 0.2, 1),
      box-shadow 0.18s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .site-sidebar .sidebar-nav .sidebar-menu > li:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
  }

  .site-sidebar .sidebar-nav .sidebar-menu > li > a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    color: #000;
    text-decoration: none;
    font-weight: 400;
    line-height: 1.1;
    min-block-size: 56px;
  }

  .site-sidebar .sidebar-nav .sidebar-menu > li > a:hover {
    background: rgba(82, 122, 120, 0.08);
  }

  .site-sidebar .sidebar-nav .sidebar-menu > li.active > a,
  .site-sidebar .sidebar-nav .sidebar-menu > li > a.active {
    background: var(--primary-c);
    color: #fff;
  }

  .site-sidebar .sidebar-nav .sidebar-menu > li.has-dropdown > a {
    padding-inline-end: 62px;
  }

  .site-sidebar .sidebar-nav .sidebar-menu > li .dd-trigger {
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    color: #000;
    position: absolute;
    inset-inline-end: 12px;
    top: 50%;
    transform: translateY(-50%);
    inline-size: 38px;
    block-size: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background 0.18s cubic-bezier(0.2, 0.8, 0.2, 1),
      transform 0.18s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .site-sidebar .sidebar-nav .sidebar-menu > li .dd-trigger::before {
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f078";
    font-size: 14px;
    line-height: 1;
    display: inline-block;
    transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.2s;
  }

  .site-sidebar .sidebar-nav .sidebar-menu > li.is-open > a .dd-trigger {
    background: rgba(206, 185, 163, 0.24);
  }

  .site-sidebar .sidebar-nav .sidebar-menu > li.is-open > a .dd-trigger::before {
    transform: rotate(-180deg);
    color: #fff;
  }

  .site-sidebar .sidebar-nav .sidebar-menu > li .sub-menu {
    display: none;
    padding: 8px 10px 14px;
    margin: 0 14px 14px;
    border-inline-start: 2px solid #ceb9a3;
    background: rgba(206, 185, 163, 0.16);
  }

  .site-sidebar .sidebar-nav .sidebar-menu > li .sub-menu li {
    border: 0;
    background: transparent;
  }

  .site-sidebar .sidebar-nav .sidebar-menu > li .sub-menu li.active span {
    color: #fff;
  }

  .site-sidebar .sidebar-nav .sidebar-menu > li .sub-menu li a {
    position: relative;
    display: block;
    font-weight: 500;
    padding: 10px 12px;
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
  }

  .site-sidebar .sidebar-nav .sidebar-menu > li .sub-menu li a:hover {
    background: rgba(206, 185, 163, 0.26);
    color: #000;
  }

  .site-sidebar .sidebar-nav .sidebar-menu > li .sub-menu li.has-dropdown > a {
    padding-inline-end: 62px;
  }

  .site-sidebar .sidebar-nav .sidebar-menu > li .sub-menu li.is-open > a .dd-trigger {
    background: rgba(206, 185, 163, 0.24);
  }

  .site-sidebar .sidebar-nav .sidebar-menu > li .sub-menu li.is-open > a .dd-trigger::before {
    transform: rotate(-180deg);
  }

  .site-sidebar .sidebar-cta {
    margin-top: auto;
    padding: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: grid;
    gap: 12px;
    background: rgba(255, 255, 255, 0.8);
  }

  .site-sidebar .sidebar-cta .ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--primary-c);
    border: 1px solid var(--primary-c);
    font-weight: 400;
    transition: background 0.2s cubic-bezier(0.2, 0.8, 0.2, 1),
      color 0.2s cubic-bezier(0.2, 0.8, 0.2, 1),
      transform 0.18s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .site-sidebar .sidebar-cta .ghost-btn:hover {
    background: var(--primary-c);
    color: #fff;
    transform: translateY(-1px);
  }

  .hamburger {
    inline-size: 50px;
    block-size: 46px;
    border: 0;
    background: transparent;
    display: grid;
    place-content: center;
    gap: 6px;
  }

  .hamburger span {
    display: block;
    inline-size: 24px;
    block-size: 2px;
    background: #000;
    border-radius: 2px;
  }

  header .main-menu .nav-list > li > a {
    padding-inline: 5px;
    font-size: 15px;
  }

  .service-card__overlay {
    padding: 20px;
  }
}

@media (max-width: 991.96px) {
  .services  .service-card {
    padding: 20px;
  }

  .sec-tit {
  margin-bottom: 15px;
  }

  .contact-block {
    padding: 0 0 50px;
  }

  .home-stats {
    padding: 71px 0 50px;
  }

  .wpcf7 .wpcf7-form-control-wrap {
    max-width: 100%;
  }

  .contact-block .hold_contact .contact-form textarea.contact-input {
    max-width: 100%;
  }

  .section-banner__image-wrap {
    display: flex;
    justify-content: center;
  }

  .section-banner__content {
    text-align: center;
  }

  .contact-row {
    flex-direction: column-reverse;
  }

  .contact-photo {
    object-fit: none;
  }

  .footer .footer-badge img {
    height: 145px;
  }

  .main-caption {
    transform: translateY(-35%);
  }
}
@media (min-width: 1200px) {
  #main-header .main-menu,
  #fixed-header .main-menu {
    justify-self: center;
    text-align: center;
  }

  #main-header .header-actions,
  #fixed-header .header-actions {
    justify-self: end;
  }
}

@media (max-width: 991.96px){
  footer .hold-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* Max-width: 768px */
@media (max-width: 768px) {
  .main-caption .headline-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 27px;
  }

  .main-caption {
    transform: translateY(0);
  }

  .greatest-background {
    min-height: 350px;
  }

  .about .about-tabs .row {
    gap: 0;
  }

  .sec-tit {
    font-size: 39px;
    margin-bottom: 18px;
  }

  #main-header.header-on-video {
    position: relative !important;
  }
}

/* Max-width: 576px */
@media (max-width: 576px) {
  .stats .stats-wrap .stat-box {
    min-width: 160px;
  }

  .site-sidebar {
    position: fixed;
    inline-size: min(90vw, 400px);
  }

  .contact-form {
    margin-top: 40px;
  }

  .simple-faq .faq-q {
    font-size: 16px;
  }

  .txt {
    width: calc(100% - 28px);
  }


  .headline-title {
    line-height: 35px;
  }

  .whyus,
  .partners {
    margin-top: 40px;
  }

  .posts-section .post-card .post-body .post-title {
    font-size: 15px;
    line-height: 23px;
  }

  .posts-section .post-card .post-body .post-meta time {
    font-size: 15px;
  }

  .posts-section .post-card .post-body .post-cta {
    width: 36px;
    height: 36px;
  }

  .posts-section .post-card .post-body .post-cta i {
    font-size: 20px;
    line-height: 36px;
  }

  .hold_contact_photo {
    max-height: 390px !important;
  }

  .contact-photo {
    width: 100%;
    max-height: 387px;
    object-fit: cover;
    display: block;
    object-fit: cover;
  }
}

/* Max-width: 380px */
@media (max-width: 380px) {
  .main-btn span {
    font-size: 14px;
  }

  .gap-4 {
    gap: 0.9rem !important;
  }

  .posts-section .post-card .post-body .post-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 16px;
  }
}

/* Max-width: 1500px */
@media (max-width: 1500px) {
  .main-caption .headline-title {
    line-height: 1.5;
  }
}

/* Media Queries: hover support */
@media (hover: hover) {
  .sidebar-menu > li:hover .dd-trigger {
    transform: translateY(-50%) scale(1.04);
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .sidebar-overlay,
  .site-sidebar,
  .dd-trigger::before {
    transition: none !important;
  }
}

/*----------------------------------------------------
Search
----------------------------------------------------*/

/*--------------------------------------------------------------
 Custom Search - Overlay Shell
--------------------------------------------------------------*/
.custom-search-form {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, var(--primary-c) 0%, #1a2838 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.custom-search-form::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(237, 239, 202, 0.05) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.custom-search-form.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/*--------------------------------------------------------------
 Custom Search - Close Button
--------------------------------------------------------------*/
.search-overlay-close {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background: rgba(237, 239, 202, 0.1);
  border: 2px solid #edefca;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  opacity: 0;
  transform: rotate(-180deg) scale(0);
}

.custom-search-form.active .search-overlay-close {
  opacity: 1;
  transform: rotate(0) scale(1);
  transition-delay: 0.3s;
}

.search-overlay-close i {
  color: #edefca;
  font-size: 24px;
  transition: all 0.3s ease;
}

.search-overlay-close:hover {
  background: #edefca;
  transform: rotate(90deg) scale(1.1);
}

.search-overlay-close:hover i {
  color: var(--primary-c);
}

/*--------------------------------------------------------------
 Custom Search - Wrapper & Title
--------------------------------------------------------------*/
.search-wrapper {
  max-width: 800px;
  width: 90%;
  position: relative;
  z-index: 2;
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-search-form.active .search-wrapper {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.2s;
}

.search-overlay-title {
  color: #edefca;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 40px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-search-form.active .search-overlay-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

/*--------------------------------------------------------------
 Custom Search - Input Container
--------------------------------------------------------------*/
.search-input-container {
  position: relative;
  display: flex;
  align-items: center;
  background: #edefca;
  border-radius: 60px;
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  opacity: 0;
  transform: scale(0.9);
}

.custom-search-form.active .search-input-container {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.5s;
}

.search-input-container::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    var(--primary-c),
    #edefca,
    var(--primary-c)
  );
  border-radius: 60px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.search-input-container:focus-within::before {
  opacity: 1;
  animation: borderGlow 3s ease infinite;
}

@keyframes borderGlow {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.search-input-container:focus-within {
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);
}

/*--------------------------------------------------------------
 Custom Search - Input + Buttons
--------------------------------------------------------------*/
.search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 22px 30px;
  font-size: 20px;
  color: var(--primary-c);
  outline: none;
  font-family: inherit;
  font-weight: 500;
}

.search-input::placeholder {
  color: rgba(34, 52, 72, 0.5);
  transition: color 0.3s ease;
}

.search-input:focus::placeholder {
  color: rgba(34, 52, 72, 0.3);
}

.search-submit-btn {
  background: var(--primary-c);
  border: none;
  padding: 18px 35px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 18px;
  font-weight: 600;
  color: #edefca;
  position: relative;
  overflow: hidden;
}

.search-submit-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(237, 239, 202, 0.3);
  transition: width 0.6s ease, height 0.6s ease;
  transform: translate(-50%, -50%);
}

.search-submit-btn:hover::before {
  width: 300px;
  height: 300px;
}

.search-submit-btn i,
.search-submit-btn span {
  position: relative;
  z-index: 1;
}

.search-submit-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(34, 52, 72, 0.4);
}

.search-submit-btn:active {
  transform: scale(0.98);
}

.search-clear-btn {
  background: transparent;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 8px;
  transition: all 0.3s ease;
  color: var(--primary-c);
}

.search-clear-btn:hover {
  background: rgba(34, 52, 72, 0.1);
  transform: rotate(90deg);
}

.search-input:not(:placeholder-shown) ~ .search-clear-btn {
  display: flex;
}

/*--------------------------------------------------------------
 Custom Search - Suggestions Wrapper
--------------------------------------------------------------*/
.search-suggestions {
  margin-top: 20px;
  background: #edefca;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.search-suggestions.active {
  max-height: 380px;
  opacity: 1;
  padding: 10px 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}

/* Scrollbar */
.search-suggestions.active::-webkit-scrollbar {
  width: 8px;
}

.search-suggestions.active::-webkit-scrollbar-track {
  background: rgba(34, 52, 72, 0.05);
  border-radius: 10px;
}

.search-suggestions.active::-webkit-scrollbar-thumb {
  background: rgba(34, 52, 72, 0.4);
  border-radius: 10px;
}

.search-suggestions.active::-webkit-scrollbar-thumb:hover {
  background: rgba(34, 52, 72, 0.7);
}

/*--------------------------------------------------------------
 Custom Search - Suggestions Header & Footer
--------------------------------------------------------------*/
.suggestions-header {
  position: sticky;
  top: 0;
  z-index: 3;
  padding: 10px 22px 8px;
  background: #edefca;
  border-bottom: 1px solid rgba(34, 52, 72, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.results-count-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(34, 52, 72, 0.06);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-c);
}

.results-count-badge i {
  font-size: 13px;
}

.suggestions-footer {
  position: sticky;
  bottom: 0;
  z-index: 3;
  padding: 10px 20px 8px;
  background: #edefca;
  border-top: 1px solid rgba(34, 52, 72, 0.08);
}

.view-all-results {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  background: var(--primary-c);
  color: #edefca;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.view-all-results i {
  font-size: 14px;
  transition: transform 0.25s ease;
}

.view-all-results:hover {
  background: #2a4059;
  box-shadow: 0 4px 12px rgba(34, 52, 72, 0.4);
  transform: translateY(-1px);
}

.view-all-results:hover i {
  transform: translateX(-3px);
}

/*--------------------------------------------------------------
 Custom Search - Suggestion Items
--------------------------------------------------------------*/
.suggestions-group {
  padding: 8px 0;
}

.suggestions-group:not(:last-of-type) {
  border-bottom: 2px solid rgba(34, 52, 72, 0.08);
}

.group-label {
  padding: 8px 20px;
  background: rgba(34, 52, 72, 0.03);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-c);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.group-label i {
  font-size: 14px;
  opacity: 0.7;
}

.suggestions-group:first-child .group-label {
  padding-top: 2px;
}

.suggestion-item {
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.25s ease;
  border-bottom: 1px solid rgba(34, 52, 72, 0.06);
  color: var(--primary-c);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-decoration: none;
  animation: slideInLeft 0.25s ease both;
}

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

.suggestion-item:hover {
  background: rgba(34, 52, 72, 0.06);
  padding-inline-start: 26px;
}

.suggestion-item.selected {
  background: rgba(34, 52, 72, 0.12);
}

.suggestion-thumb,
.suggestion-thumb-placeholder {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 52, 72, 0.08);
}

.suggestion-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.suggestion-thumb-placeholder i {
  color: var(--primary-c);
  opacity: 0.6;
  font-size: 18px;
}

.suggestion-content {
  flex: 1;
}

.suggestion-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--primary-c);
}

.suggestion-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  margin-bottom: 4px;
}

.suggestion-date,
.suggestion-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(34, 52, 72, 0.05);
  color: rgba(34, 52, 72, 0.9);
}

.suggestion-meta i {
  font-size: 11px;
  opacity: 0.7;
}

.suggestion-excerpt {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  margin-top: 2px;
}

.suggestion-arrow {
  margin-inline-start: 6px;
  font-size: 14px;
  opacity: 0.5;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.suggestion-item:hover .suggestion-arrow,
.suggestion-item.selected .suggestion-arrow {
  transform: translateX(-3px);
  opacity: 0.9;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/*--------------------------------------------------------------
 Custom Search - Loading / Error / No Results
--------------------------------------------------------------*/
.loading-item,
.error-item,
.no-results-item {
  border-bottom: none;
}

.loading-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.error-item {
  color: #a62828;
  font-size: 14px;
}

.no-results-item {
  align-items: center;
}

.no-results-icon-small {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(34, 52, 72, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 6px;
}

.no-results-icon-small i {
  color: var(--primary-c);
  opacity: 0.7;
}

.no-results-content strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--primary-c);
}

.no-results-content p {
  margin: 0;
  font-size: 13px;
  color: #666;
}

.search-loading {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 3px solid rgba(34, 52, 72, 0.18);
  border-radius: 50%;
  border-top-color: var(--primary-c);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
 Custom Search - Popular Searches
--------------------------------------------------------------*/
.popular-searches {
  margin-top: 30px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.custom-search-form.active .popular-searches {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

.popular-label {
  color: #edefca;
  font-size: 16px;
  opacity: 0.8;
  margin-left: 15px;
}

.popular-tag {
  display: inline-block;
  background: rgba(237, 239, 202, 0.15);
  color: #edefca;
  padding: 10px 20px;
  border-radius: 25px;
  margin: 5px;
  text-decoration: none;
  border: 1px solid rgba(237, 239, 202, 0.3);
  transition: all 0.3s ease;
  font-size: 14px;
}

.popular-tag:hover {
  background: #edefca;
  color: var(--primary-c);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(237, 239, 202, 0.3);
}

/*--------------------------------------------------------------
 Custom Search - Responsive
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .search-overlay-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .search-input {
    font-size: 16px;
    padding: 18px 20px;
  }

  .search-submit-btn {
    padding: 15px 25px;
    font-size: 16px;
  }

  .search-submit-btn span {
    display: none;
  }

  .search-overlay-close {
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .search-suggestions.active {
    max-height: 320px;
  }
}

@media (max-width: 480px) {
  .search-overlay-title {
    font-size: 24px;
  }

  .search-input {
    font-size: 14px;
    padding: 15px;
  }

  .search-submit-btn {
    padding: 12px 20px;
  }
}

/*--------------------------------------------------------------
 Search Results Page
--------------------------------------------------------------*/
.search-results-page {
  background: #f5f5f5;
  min-height: 100vh;
  padding: 40px 0 70px;
}

/*--------------------------------------------------------------
 Search Results Header
--------------------------------------------------------------*/
.search-results-header {
  background: linear-gradient(135deg, var(--primary-c) 0%, #2a4059 100%);
  padding: 60px 0;
  margin-bottom: 50px;
  box-shadow: 0 10px 40px rgba(34, 52, 72, 0.2);
  position: relative;
  overflow: hidden;
}

.search-results-header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(237, 239, 202, 0.14) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.search-title {
  color: #edefca;
  font-size: 38px;
  margin: 0 0 20px 0;
  font-weight: 700;
  animation: fadeInDown 0.6s ease;
}

.search-meta {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 25px;
  animation: fadeIn 0.8s ease;
}

.search-meta span {
  color: #edefca;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.95;
  background: rgba(237, 239, 202, 0.12);
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(237, 239, 202, 0.25);
}

.search-meta i {
  font-size: 16px;
}

.search-query {
  background: rgba(237, 239, 202, 0.2);
  padding: 3px 12px;
  border-radius: 12px;
  font-weight: 700;
  border: 2px solid rgba(237, 239, 202, 0.35);
}

/*--------------------------------------------------------------
 Search Results - Inline Search Form
--------------------------------------------------------------*/
.search-again .custom-search-form {
  position: static;
  background: transparent;
  opacity: 1;
  visibility: visible;
  transform: none;
  height: auto;
}

.search-again .search-wrapper {
  max-width: 680px;
  margin: 0;
  opacity: 1;
  transform: none;
}

.search-again .search-input-container {
  opacity: 1;
  transform: none;
}

.search-again .search-overlay-close,
.search-again .search-overlay-title,
.search-again .popular-searches {
  display: none;
}

/*--------------------------------------------------------------
 Search Results List
--------------------------------------------------------------*/
.search-results-body .container {
  max-width: 1200px;
}

.search-results-list {
  display: grid;
  gap: 30px;
}

/*--------------------------------------------------------------
 Search Result Card
--------------------------------------------------------------*/
.search-result-item {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(34, 52, 72, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideUpFade 0.6s ease both;
  position: relative;
}

.search-result-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--primary-c);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}

.search-result-item:hover::before {
  transform: scaleY(1);
}

.search-result-item:hover {
  transform: translateX(4px);
  box-shadow: 0 10px 35px rgba(34, 52, 72, 0.16);
}

.result-content {
  display: flex;
  gap: 30px;
  padding: 30px;
}

/* thumbnail */
.result-thumbnail {
  flex-shrink: 0;
  width: 260px;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #f3f3f3;
}

.result-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.result-thumbnail:hover img {
  transform: scale(1.12);
}

.thumbnail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(34, 52, 72, 0.8),
    rgba(34, 52, 72, 0.3)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.result-thumbnail:hover .thumbnail-overlay {
  opacity: 1;
}

.thumbnail-overlay i {
  color: #edefca;
  font-size: 30px;
  transform: translateX(-10px);
  transition: transform 0.35s ease;
}

.result-thumbnail:hover .thumbnail-overlay i {
  transform: translateX(0);
}

/* content */
.result-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.result-meta-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.result-meta-top span {
  color: var(--primary-c);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.8;
  background: rgba(34, 52, 72, 0.05);
  padding: 4px 10px;
  border-radius: 999px;
}

.result-meta-top i {
  font-size: 11px;
  opacity: 0.7;
}

.result-title {
  margin: 0 0 15px 0;
  font-size: 26px;
  line-height: 1.4;
  color: var(--primary-c);
}

.result-title a {
  color: inherit;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: color 0.25s ease;
}

.result-title a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary-c);
  transition: width 0.3s ease;
}

.result-title a:hover::after {
  width: 100%;
}

.result-excerpt {
  color: #555;
  line-height: 1.9;
  margin-bottom: 20px;
  flex-grow: 1;
}

.highlight-term {
  background: #cdd266;
  color: var(--primary-c);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}

/* footer */
.result-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(34, 52, 72, 0.1);
  margin-top: auto;
}

.result-author {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-c);
  font-size: 14px;
}

.result-author img {
  border-radius: 50%;
  border: 2px solid #edefca;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-c);
  color: #edefca;
  padding: 11px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.read-more-btn i {
  transition: transform 0.3s ease;
}

.read-more-btn:hover {
  background: #2a4059;
  transform: translateX(-4px);
  box-shadow: 0 5px 15px rgba(34, 52, 72, 0.3);
}

.read-more-btn:hover i {
  transform: translateX(-4px);
}

/*--------------------------------------------------------------
 Search Pagination
--------------------------------------------------------------*/
.search-pagination {
  margin-top: 55px;
  text-align: center;
}

.search-pagination ul {
  display: inline-flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.search-pagination a,
.search-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  background: #ffffff;
  color: var(--primary-c);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(34, 52, 72, 0.08);
  padding: 0 14px;
  gap: 6px;
  font-size: 14px;
}

.search-pagination a:hover {
  background: var(--primary-c);
  color: #edefca;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(34, 52, 72, 0.18);
}

.search-pagination .current {
  background: var(--primary-c);
  color: #edefca;
}

/*--------------------------------------------------------------
 Search - No Results
--------------------------------------------------------------*/
.no-results {
  text-align: center;
  padding: 80px 20px;
  background: #ffffff;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(34, 52, 72, 0.12);
  animation: fadeIn 0.6s ease;
}

.no-results-icon {
  margin-bottom: 35px;
}

.no-results-icon i {
  font-size: 90px;
  color: var(--primary-c);
  opacity: 0.18;
  animation: float 3s ease-in-out infinite;
}

.no-results h2 {
  color: var(--primary-c);
  font-size: 30px;
  margin: 0 0 15px 0;
}

.no-results p {
  color: #666;
  font-size: 17px;
  margin-bottom: 35px;
}

/*--------------------------------------------------------------
 Search Results Animations
--------------------------------------------------------------*/
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/*--------------------------------------------------------------
 Search Results Responsive
--------------------------------------------------------------*/
@media (max-width: 992px) {
  .result-content {
    flex-direction: column;
    padding: 22px;
    gap: 20px;
  }

  .result-thumbnail {
    width: 100%;
    height: 220px;
  }

  .result-title {
    font-size: 22px;
  }

  .search-results-header {
    padding: 45px 0;
  }

  .search-title {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .search-results-page {
    padding-top: 25px;
  }

  .search-results-header {
    padding: 35px 0 30px;
    margin-bottom: 35px;
  }

  .search-title {
    font-size: 24px;
  }

  .search-meta span {
    font-size: 13px;
    width: 100%;
  }

  .result-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .read-more-btn {
    width: 100%;
    justify-content: center;
  }
}

.hidden-fields-container { display: none; }
.wpcf7-response-output:empty { display: none; }

.wpcf7 .screen-reader-response {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  position: absolute !important;
  pointer-events: none !important;
}

/*----------------------------------------------------
End of CSS
----------------------------------------------------*/
