/*
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: "bahijSans";
  src: url("../webFonts/design_fonts/Bahij_TheSansArabicPlain.woff2")
      format("woff2"),
    url("../webFonts/design_fonts/Bahij_TheSansArabicPlain.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "bahijSans";
  src: url("../webFonts/design_fonts/BahijTheSansArabic-Bold.woff2")
      format("woff2"),
    url("../webFonts/design_fonts/BahijTheSansArabic-Bold.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ========================
   Design Tokens
======================== */
:root {
  --main-c: #edefca;
  --c-primary: #223448;
  color-scheme: light;

  /* App tokens */
  --bg: var(--color-white);
  --text: var(--color-black);

  /* Fluid type */
  --h1: clamp(1.75rem, 1.2rem + 2.2vw, 3rem);
  --h2: clamp(1.4rem, 1rem + 1.6vw, 2.25rem);
  --h3: clamp(1.2rem, 0.9rem + 1vw, 1.5rem);
  --p: clamp(1rem, 0.9rem + 0.3vw, 1.15rem);
  --lh: 1.6;

  /* Borders & outlines  */
  --border: color-mix(in srgb, var(--color-black), transparent 85%);
  --outline: color-mix(in srgb, var(--color-primary), white 35%);

  --shadow-soft: 0 6px 22px rgba(0, 0, 0, 0.08);
  --shadow-hard: 0 12px 28px rgba(0, 0, 0, 0.12);

  --hdr-h: clamp(64px, 6vw, 92px);
  --gap: clamp(8px, 1.2vw, 16px);

  --surface: color-mix(in srgb, var(--c-primary), white 95%);
  --muted: color-mix(in srgb, var(--text), white 40%);
  --link: var(--c-primary);
  --link-hover: var(--c-primary-hover);

  --dur-fast: 0.15s;
  --strip-h: 220px;
  --dur: 0.25s;
  --easing: ease;
}

/* ========================
   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(--c-primary);
  border-color: var(--c-primary) !important;
  background: color-mix(in srgb, #f0f0f0 10%, #fff 90%);
}

.wp-pagenavi span.current {
  background: var(--c-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 22px color-mix(in srgb, var(--c-primary) 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(--c-primary) 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"]
  :where(
    input[type="email"],
    input[type="tel"],
    input[type="url"]
  )::placeholder {
  direction: ltr;
  text-align: left;
}

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

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

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

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

*::-webkit-scrollbar-thumb {
  background: var(--c-primary, #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: #223448;
  font-family: "bahijSans", Arial, sans-serif;
  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;
}

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: #223448;
}

/*--------------------------------------------------------------
 Breadcrumb Area
--------------------------------------------------------------*/
.breadcrumb-area {
  position: relative;
  padding: 50px;
  margin-bottom: 60px;
  background: linear-gradient(135deg, #223448 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;
  text-align: center;
  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;
  gap: 6px;
}

.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: #edefca;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
}

.breadcrumb-links a:hover {
  background: #edefca;
  color: #223448;
  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 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: start;
  width: 175px;
  height: 50px;
  border-radius: 40px;
  background: var(--main-c);
  text-decoration: none;
  overflow: hidden;
  font-family: "bahijSans", "Cairo", Arial, sans-serif;
  cursor: pointer;
  border: none;
  padding-block: 0;
  padding-inline-start: 20px;
  padding-inline-end: 5px;
}

.main-btn:hover {
  background: transparent;
  transition: 1.9s;
}

.main-btn::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-end: 0;
  width: 100%;
  height: 100%;
  background: var(--main-c);
  border-radius: 40px;
  z-index: 0;
  transition: width 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    opacity 0.4s ease;
  transform-origin: inline-end center;
}

.main-btn:hover::before {
  width: 50px;
  opacity: 0.3;
}

.btn-bg {
  position: absolute;
  inset-block-start: 0;
  inset-inline-end: 0;
  width: 50px;
  height: 50px;
  background: #223448;
  border-radius: 40px;
  transition: width 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: inline-end center;
  z-index: 1;
}

.btn-text {
  position: relative;
  z-index: 3;
  color: #223448;
  font-size: 15px;
  font-weight: 400;
  padding-inline-end: 55px;
  padding-inline-start: 0;
  transition: color 0.3s ease 0.2s,
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}

.btn-circle {
  position: absolute;
  inset-inline-end: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  z-index: 4;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
}

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

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

.main-btn:hover .btn-circle {
  transform: translateX(3px) scale(1.08);
}

.main-btn:hover .btn-circle i {
  animation: arrowPush 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes arrowPush {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  40% {
    transform: translateX(-10px);
    opacity: 0.6;
  }
  70% {
    transform: translateX(3px);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.main-btn:active {
  transform: scale(0.97);
}

.main-btn:active::before {
  width: 45px;
}

.main-btn,
.main-btn::before,
.btn-bg,
.btn-text,
.btn-circle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  will-change: transform;
}

.normal-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-block: 10px;
  padding-inline: 50px;
  border-radius: 30px;
  background: var(--c-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  border: none;
  font-family: "bahijSans", "Cairo", Arial, sans-serif;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.normal-btn .text {
  position: relative;
  z-index: 10;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.normal-btn [class*="circle"] {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  pointer-events: none;
}

.normal-btn .circle1 {
  inset-inline-start: -20%;
  inset-block-start: -20%;
  inline-size: 40px;
  block-size: 40px;
}

.normal-btn .circle2 {
  inset-inline-end: -15%;
  inset-block-start: 50%;
  inline-size: 60px;
  block-size: 60px;
}

.normal-btn .circle3 {
  inset-inline-start: 20%;
  inset-block-end: -30%;
  inline-size: 50px;
  block-size: 50px;
}

.normal-btn .circle4 {
  inset-inline-end: 30%;
  inset-block-start: -25%;
  inline-size: 35px;
  block-size: 35px;
}

.normal-btn .circle5 {
  inset-inline-start: 50%;
  inset-block-start: 50%;
  inline-size: 45px;
  block-size: 45px;
  transform: translate(-50%, -50%);
}

.normal-btn:hover .circle1 {
  animation: floatCircle1 2s ease-in-out infinite;
}

.normal-btn:hover .circle2 {
  animation: floatCircle2 2.5s ease-in-out infinite 0.2s;
}

.normal-btn:hover .circle3 {
  animation: floatCircle3 2.3s ease-in-out infinite 0.4s;
}

.normal-btn:hover .circle4 {
  animation: floatCircle4 2.7s ease-in-out infinite 0.1s;
}

.normal-btn:hover .circle5 {
  animation: floatCircle5 2.4s ease-in-out infinite 0.3s;
}

.normal-btn:hover .text {
  transform: scale(1.05);
}

.normal-btn:hover {
  background: #3d5a73;
  box-shadow: 0 8px 20px rgba(44, 74, 96, 0.3);
  transform: translateY(-2px);
}

@keyframes floatCircle1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }
  50% {
    transform: translate(30px, -30px) scale(1.5);
    opacity: 0.4;
  }
}

@keyframes floatCircle2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }
  50% {
    transform: translate(-40px, 20px) scale(1.3);
    opacity: 0.5;
  }
}

@keyframes floatCircle3 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }
  50% {
    transform: translate(-20px, -40px) scale(1.4);
    opacity: 0.35;
  }
}

@keyframes floatCircle4 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }
  50% {
    transform: translate(25px, 35px) scale(1.6);
    opacity: 0.3;
  }
}

@keyframes floatCircle5 {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
  50% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0.25;
  }
}

/*----------------------------------------------------
 Section Titles
----------------------------------------------------*/
.sec-tit {
  color: #000;
  font-weight: 500;
  font-size: 48px;
  text-align: center;
  margin-bottom: 65px;
}

.sec-tit::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -22px;
  width: 180px;
  height: 16px;
  background: url("../img/line.webp") no-repeat center;
  background-size: contain;
}

/*----------------------------------------------------
 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);
  padding-inline: clamp(8px, 1.2vw, 16px);
  /* backdrop-filter: saturate(130%) blur(6px); */
  animation: hdr-pop 1s var(--easing) both;
  animation-delay: 0.8s;
  z-index: 1001;
  margin-inline: 120px;
}

#main-header .header-logo img {
  max-block-size: calc(var(--hdr-h) - 18px);
  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: 500;
  color: var(--c-black);
  transition: color var(--dur) var(--easing);
}

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

#main-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(var(--hdr-h) - 18px);
  inline-size: auto;
}

.fixed-header .header-actions {
  gap: var(--gap);
}

.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 44px;
  block-size: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--c-primary);
  color: var(--c-primary);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.icon-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--c-primary);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 0;
}

.icon-btn i,
.icon-btn .lang-text {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.icon-btn .lang-text {
  font-weight: 500;
  font-size: 14px;
}

/* هوفر أزرار الأيقونات */
.icon-btn:hover::before {
  transform: scale(1);
}

.icon-btn:hover {
  border-color: var(--c-primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(44, 74, 96, 0.25);
}

.icon-btn:hover i {
  animation: iconBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.icon-btn:hover .lang-text {
  animation: textFlip 0.5s ease;
}

/* أنيميشن الأيقونة */
@keyframes iconBounce {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.2) rotate(-10deg);
  }
  50% {
    transform: scale(0.9) rotate(10deg);
  }
  75% {
    transform: scale(1.1) rotate(-5deg);
  }
}

@keyframes textFlip {
  0%,
  100% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(180deg);
  }
}

/* Active state */
.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;
}
/*----------------------------------------------------
 HomeCaption Section
----------------------------------------------------*/
.greatest-background {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.greatest-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  animation: parallaxMove 18s ease-in-out infinite,
    smoothZoom 16s ease-in-out infinite alternate;
  transform-origin: center center;
  z-index: -1;
  will-change: transform;
}

.greatest-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      1100px 540px at 12% -10%,
      rgba(82, 122, 120, 0.14),
      transparent 60%
    ),
    radial-gradient(
      900px 520px at 90% 110%,
      rgba(206, 185, 163, 0.12),
      transparent 65%
    );
  mix-blend-mode: soft-light;
  opacity: 0.85;
  pointer-events: none;
  animation: overlayDrift 22s ease-in-out infinite alternate;
  z-index: 0;
}

@media (max-width: 1200px) {
  .greatest-background {
    min-height: 600px;
  }
}

@media (max-width: 768px) {
  .greatest-background {
    min-height: 450px;
  }
}

@media (max-width: 480px) {
  .greatest-background {
    min-height: 350px;
  }
}

.main-caption {
  position: absolute;
  inset-inline: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.headline-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-caption .headline-title {
  position: relative;
  font-size: clamp(64px, 5vw, 44px);
  color: #fff;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 0.2px;
  opacity: 0;
  transform: translateY(16px);
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  animation: titleSlide 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.12s forwards;
}

.main-caption .headline-title::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-end: -10px;
  inline-size: 62%;
  block-size: 3px;
  background: linear-gradient(
    90deg,
    var(--c-primary) 0%,
    var(--c-secondary) 100%
  );
  border-radius: 3px;
  transform-origin: left center;
  transform: scaleX(0);
  opacity: 0.95;
  animation: underlineGrow 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) 0.48s forwards;
}

.main-caption .headline-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
}

.main-caption .main-btn {
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  animation: btnPop 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.7s forwards;
}

@keyframes parallaxMove {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  25% {
    transform: translate3d(-10px, -6px, 0) rotate(-0.2deg);
  }
  50% {
    transform: translate3d(0, -12px, 0) rotate(0.15deg);
  }
  75% {
    transform: translate3d(10px, -6px, 0) rotate(0.2deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

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

@keyframes overlayDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(0, -8px, 0) scale(1.02);
  }
}

@keyframes titleSlide {
  0% {
    opacity: 0;
    transform: translateY(16px);
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    clip-path: polygon(0 0%, 100% 0%, 100% 100%, 0 100%);
  }
}

@keyframes underlineGrow {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

@keyframes btnPop {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  70% {
    opacity: 1;
    transform: translateY(0) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .greatest-background::before,
  .greatest-background::after,
  .main-caption .headline-title,
  .main-caption .headline-title::after {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/*.main-caption h1 {*/
/*    opacity: 0;*/
/*    transform: translateY(30px);*/
/*    animation: fadeSlideUp 1s ease-out forwards;*/
/*}*/

/*----------------------------------------------------
 HomeAbout Section
----------------------------------------------------*/
.about {
  background: #ffffff;
  padding-block: clamp(70px, 8vw, 110px);
  padding-bottom: 99px !important;
}

/* عنوان من نحن */
.about-section__title {
  font-size: clamp(1.7rem, 2.1vw, 2.2rem);
  font-weight: 800;
  color: var(--c-black, #111827);
  margin: 0;
}

.about-section__underline {
  width: 110px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0,
    var(--c-primary, #223448) 30%,
    var(--c-primary, #223448) 70%,
    transparent 100%
  );
}

@media (max-width: 992px) {
  .about-section__content {
    margin-inline: auto;
  }
}

.about-section__heading {
  font-size: clamp(35px, 1.9vw, 1.8rem);
  font-weight: 500;
  color: #547892;
  margin: 0 0 1rem;
}

.about-section__text p {
  margin: 0 0 0.8rem;
  line-height: 32px;
  color: #051a3b;
  font-size: clamp(18px, 1.02vw, 1.02rem);
}

.about-section__button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.6rem;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  background: var(--c-primary, #223448);
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.about-section__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
  background: color-mix(in srgb, var(--c-primary, #223448) 92%, #ffffff 8%);
}

@media (max-width: 992px) {
  .about-section__button {
    margin-inline: auto;
  }
}

.about-section__button-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #f5f7fb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-section__button-arrow {
  font-size: 1.1rem;
  transform: scaleX(-1);
}

.about-section__button-text {
  white-space: nowrap;
}

.about-section__media {
  max-width: 508px;
}

@media (max-width: 992px) {
  .about-section__media {
    margin-inline: auto;
    margin-top: 1.5rem;
  }
}
.about-section__figure {
  position: relative;
  margin: 0;
  z-index: 1;
}

.about-section__figure img {
  display: block;
  width: 100%;
  height: auto;
}

.about-section__metric {
  position: absolute;
  inset-block-end: 40%;
  inset-inline-end: 0px;
  background: #ffffff;
  border-radius: 20px;
  padding: 15px 30px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.14);
  max-width: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
}

.about-section__metric-gauge {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-section__metric-svg {
  width: 220px;
  max-width: 100%;
  display: block;
}

.about-metric-bg {
  fill: none;
  stroke: #f4f5dd;
  stroke-width: 18;
  stroke-linecap: butt;
}

.about-metric-value-arc {
  fill: none;
  stroke: #223448;
  stroke-width: 18;
  stroke-linecap: butt;
  transition: stroke-dashoffset 0.6s ease;
}

.about-metric-dot {
  fill: #547892;
}

.about-section__metric-value {
  position: relative;
  top: -14px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  color: #111827;
}

.about-section__metric-info {
  margin-top: 0.1rem;
}

.about-section__metric-label {
  margin: 0;
  font-size: 14px;
  font-weight: 00;
  color: #111827;
}

/*----------------------------------------------------
 HomeServices Section
----------------------------------------------------*/
.services {
  background: #ffffff;
}

.service-card {
  position: relative;
  min-height: 600px;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  background-image: var(--service-bg);
  background-size: cover;
  background-position: center;
  transform: translateZ(0);
}

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

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

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: none;
  z-index: 0;
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  padding: 26px 65px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  transform: translateY(0);
  transition: transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1),
    background 0.55s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.service-card__title {
  position: relative;
  margin: 0;
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1),
    color 0.45s ease;
}

.service-card__excerpt,
.service-card .serv-url {
  opacity: 0;
  transform: translateY(25px);
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
    max-height 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
    margin-top 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.service-card__excerpt {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  color: #ffffff;
}

.service-card__btn-text {
  white-space: nowrap;
}

.service-card:hover .service-card__overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #edefca 100%);
  transform: translateY(0);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.28);
}

.service-card:hover .service-card__title {
  transform: translateY(0);
  margin-bottom: 10px;
}

.service-card:hover .service-card__excerpt,
.service-card:hover .serv-url {
  opacity: 1;
  transform: translateY(0);
  max-height: 260px;
  pointer-events: auto;
}

.service-card:hover .service-card__excerpt {
  margin-top: 0.55rem;
  transition-delay: 0.08s;
}

.service-card .serv-url {
  margin-top: 30px;
}

.service-card:hover .serv-url {
  transition-delay: 0.16s;
}

@media (max-width: 767.98px) {
  .service-card {
    min-height: 420px;
  }

  .service-card__overlay {
    padding-inline: 20px;
    transform: translateY(40%);
  }
}

.service-card__overlay {
  overflow: hidden;
}

.service-card__overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #1a1c01ba 100%);
  transform: translateY(100%);
  transition: transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 0;
}

.service-card__overlay > * {
  position: relative;
  z-index: 1;
}

.service-card:hover .service-card__overlay::after {
  transform: translateY(0);
}

/*----------------------------------------------------
 HomeStats Section
----------------------------------------------------*/
.home-stats {
  position: relative;
  background: #ffffff;
  padding: 70px 0 100px;
}

.stat-head {
  margin-bottom: 50px;
}

.home-stats__head {
  text-align: center;
}

.home-stats__title {
  font-size: clamp(1.7rem, 2.25vw, 2.4rem);
  font-weight: 800;
  color: #111827;
  margin: 0;
}

.home-stats__media {
  position: relative;
  max-width: 552px;
  margin-inline: auto;
}
.home-stats__media-img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 40px;
  object-fit: cover;
  z-index: 1;
}

@media (max-width: 991.98px) {
  .home-stats__media {
    margin-bottom: 1.75rem;
  }
  
  .services [class*='col-'] {
      margin-bottom: 30px;
  }
}

.home-stats__item {
  background: var(--main-c);
  border-radius: 16px;
  padding-block: 18px 20px;
  padding-inline: 20px;
  min-height: 130px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;

  opacity: 0;
  transform: translateY(18px) scale(0.97);
  animation: homeStatsCardIn 0.65s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;

  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.home-stats__grid > .col-6:nth-child(1) .home-stats__item {
  animation-delay: 0.05s;
}
.home-stats__grid > .col-6:nth-child(2) .home-stats__item {
  animation-delay: 0.15s;
}
.home-stats__grid > .col-6:nth-child(3) .home-stats__item {
  animation-delay: 0.25s;
}
.home-stats__grid > .col-6:nth-child(4) .home-stats__item {
  animation-delay: 0.35s;
}

.home-stats__item:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.18);
  background: #f2f4d8;
}

.home-stats__icon {
  margin-inline-start: auto;
  margin-bottom: 0.45rem;
}

.home-stats__icon img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.home-stats__item:hover .home-stats__icon img {
  transform: translateY(-2px);
}

.home-stats__content {
  margin-top: auto;
  align-self: flex-start;
  text-align: start;
}

.home-stats__number {
  display: inline-block;
  font-size: 48px;
  font-weight: 400;
  color: #547892;
  font-family: "changa one";
  line-height: 1.1;
  direction: ltr;
}

.home-stats__label {
  font-size: 20px;
  color: #000;
  margin-top: 0.15rem;
  font-family: changa;
}

@media (max-width: 575.98px) {
  .home-stats__item {
    padding-block: 14px 16px;
    padding-inline: 14px;
    min-height: 120px;
  }

  .home-stats__number {
    font-size: 1.45rem;
  }

  .home-stats__label {
    font-size: 0.85rem;
  }
}

@keyframes homeStatsCardIn {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/*----------------------------------------------------
 HomeBannerSection
----------------------------------------------------*/
.section-banner {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background-color: #111827;
  background-image: var(--banner-bg);
  background-size: cover;
  background-position: center;
}

.section-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0 0 0 / 70%);
  z-index: 0;
}

.section-banner__inner {
  position: relative;
  z-index: 1;
}

.section-banner__content {
  max-width: 520px;
  margin-inline: auto;
}

.section-banner__title {
  font-size: clamp(36px, 2.2vw, 2.4rem);
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

.section-banner__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.86);
}

.section-banner__image-wrap {
  position: relative;
}

.section-banner__image {
  max-width: 526px;
  width: 100%;
  height: auto;
  transform: translateY(5px);
}

@media (max-width: 991.98px) {
  .section-banner__image {
    max-width: 260px;
    margin-bottom: 0.75rem;
  }

  .section-banner__overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.6) 40%,
      rgba(0, 0, 0, 0.1) 100%
    );
  }
}

/*----------------------------------------------------
 HomeWhyus Section
----------------------------------------------------*/

.why-us {
  padding: 70px 0 40px;
  background: #ffffff;
}

.why-us__title {
  font-size: clamp(1.7rem, 2.1vw, 2.2rem);
  font-weight: 800;
  color: var(--c-black, #111827);
  margin: 0;
}

.why-us__underline {
  width: 110px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0,
    var(--c-primary, #223448) 30%,
    var(--c-primary, #223448) 70%,
    transparent 100%
  );
}
.why-card {
  position: relative;
  min-height: 315px;
  border-radius: 52px;
  overflow: hidden;
  background: #111827;
  background-image: var(--why-bg);
  background-size: cover;
  background-position: center;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.25);
  transform: translateZ(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 0;
}

.why-card .sec-tit {
  margin-bottom: 40px;
}

.why-card__text {
  position: absolute;
  padding-inline: 40px;
  inset-block-end: 18px;
  margin: 0;
  color: #ffffff;
  font-size: 26px;
  line-height: 42px;
  z-index: 1;
  font-weight: 500;
}

@media (min-width: 992px) {
  .why-card--raised {
    transform: translateY(-50px);
  }

  .why-card--raised:hover {
    transform: translateY(-30px) scale(1.02);
  }

  .why-us__media-img {
    bottom: -41px;
  }
}

.why-card:hover {
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.32);
  transform: scale(1.02);
}

@media (max-width: 991.98px) {
  .why-card--raised {
    transform: none;
  }
}

.why-us__media {
  position: relative;
  max-width: 553px;
}

.why-us__media-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}

@media (max-width: 991.98px) {
  .why-us__media {
    margin-top: 1.5rem;
  }
}

.why-card {
  transform-origin: center center;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.why-card__text {
  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
    letter-spacing 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.why-card:hover {
  transform: translateY(-10px) scale(1.04) rotate3d(1, -1, 0, 4deg);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.4);
}

.why-card:hover .why-card__text {
  transform: translateY(-6px);
  letter-spacing: 0.02em;
}

@media (min-width: 992px) {
  .why-card--raised:hover {
    transform: translateY(-50px) scale(1.06) rotate3d(1, -1, 0, 5deg);
    box-shadow: 0 32px 70px rgba(15, 23, 42, 0.45);
  }
}

/*----------------------------------------------------
 HomeTerminals Section
----------------------------------------------------*/
.feedback {
  position: relative;
  padding: 100px 0 90px;
  background-color: #000;
  background-image: var(--feedback-img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.feedback::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 0;
}

.feedback .sec-tit,
.feedback .owl-feedback {
  position: relative;
  z-index: 1;
}

.feedback .owl-stage {
  padding-top: 5px;
}

.owl-feedback .owl-dots {
  margin-top: 12px;
}

.owl-feedback .owl-dot span {
  background: #cfcfcf;
}

.owl-feedback .owl-dot.active span {
  background: var(--main);
}

.feedback-card {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  padding: 40px 35px 50px;
  color: #222;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feedback-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.f-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 25px;
}

.f-title {
  margin: 0;
  font-weight: 500;
  font-size: 24px;
  color: #000;
}

.star-rating {
  --rating-p: 0%;
  position: relative;
  display: inline-block;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 3px;
  color: #d7d7d7;
  direction: ltr;
}

.star-rating::before {
  content: "★★★★★";
  color: #d7d7d7;
}

.star-rating::after {
  content: "★★★★★";
  position: absolute;
  inset: 0;
  width: var(--rating-p);
  color: #ffc107;
  overflow: hidden;
  white-space: nowrap;
}

.f-text {
  margin: 0 0 26px;
  text-align: start;
  color: #00000099;
  font-size: 16px;
  line-height: 37px;
  font-weight: 300;
}

.f-foot {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
}

.f-meta {
  display: flex;
  flex-direction: column;
  text-align: start;
}

.f-name {
  font-weight: 500;
  font-size: 20px;
  color: #000;
  margin-bottom: 5px;
}

.f-city {
  color: #000;
  font-weight: 500;
  font-size: 20px;
}

.f-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin-inline-end: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.f-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 576px) {
  .f-text {
    font-size: 15px;
  }
}

/*----------------------------------------------------
 HomeContact Section
----------------------------------------------------*/
.contact-block {
  padding: 55px 0 100px;
  background: #fff;
}
.contact-form7 {
  margin-top: 28px;
}

.contact-form7 .contact-form-row {
  row-gap: 18px;
}

.contact-input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.18);
  background: #fafafa;
  color: #111827;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  text-align: right;
  transition: border-color 0.32s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.32s cubic-bezier(0.22, 0.61, 0.36, 1),
    background-color 0.25s ease,
    transform 0.22s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.wpcf7-textarea {
  border-radius: 16px !important;
}

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


.contact-input--area {
  border-radius: 24px;
  min-height: 150px;
  padding-top: 18px;
  padding-bottom: 18px;
  resize: vertical;
  line-height: 1.8;
}

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

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

.contact-input:hover {
  background: #fafafa;
  border-color: rgba(17, 24, 39, 0.38);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
  transform: translateY(-1px);
}

.contact-input:focus,
.contact-input:focus-visible {
  border-color: var(--c-primary, #151d41);
  box-shadow: 0 0 0 1px rgba(24, 20, 65, 0.35),
    0 18px 40px rgba(15, 23, 42, 0.16);
  background: #ffffff;
  transform: translateY(-2px);
}

.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: rgba(15, 23, 42, 0.92);
  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 .main-btn .btn-circle {
  position: relative;
  inset-inline-end: -22px;
}

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

.hold_contact .main-btn.is-loading .btn-circle::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #fff;
  border-top-color: transparent;
  animation: btnSpin 0.7s linear infinite;
}

@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
============== */

.footer {
  position: relative;
  background-color: #020b18;
  background-image: var(--footer-bg);
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding-block: clamp(50px, 6vw, 70px);
}

.footer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 11, 20, 0.9);
  z-index: 0;
}

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

.footer-badge img {
  max-width: 220px;
  height: auto;
  display: block;
  margin-inline: auto;
}
.footer-info-card {
  position: relative;
  display: flex;
  align-items: center;
  background: #00233d;
  border-radius: 16px;
  padding: 18px 22px;
  color: #e5edf9;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.footer-info-card__title {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 0.4rem;
  color: #547892;
}

.footer-info-card__text {
  font-size: 14px;
  margin: 0;
  color: #fff;
}

.footer-info-card__text a {
  color: inherit;
  text-decoration: none;
}

.footer-info-card__text a:hover {
  text-decoration: underline;
}

.footer-info-card__icon {
  position: relative;
  margin-inline-end: 22px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.6);
  background: rgba(4, 27, 55, 0.98);
}

.footer-nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.footer-nav li a {
  color: #e5edf9;
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-nav li a:hover {
  color: #edefca;
}

.footer-copy p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}

.footer-copy a {
  color: #edefca;
  text-decoration: none;
}

.footer-copy a:hover {
  text-decoration: underline;
}

.wa-fab {
  position: fixed;
  inset-inline-start: 20px;
  inset-block-end: 20px;
  z-index: 999;
  display: inline-flex;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-fab img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wa-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767.98px) {
  .footer-nav {
    gap: 1rem;
  }
}

/*----------------------------------------------------
 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
--------------------------------------------------------------*/
.news-card {
  margin-bottom: 30px;
}

.news-card__item {
  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, #547892, #223448);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}

.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;
}

.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;
}

.news-card__thumb .card-img-top {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

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

/*--------------------------------------------------------------
 News Card - Body
--------------------------------------------------------------*/
.news-card .card-body {
  padding: 22px 22px 20px;
}

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

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

.news-card .card-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
  color: #223448;
  font-weight: 700;
}

.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: -3px;
  width: 0;
  height: 2px;
  background: #547892;
  transition: width 0.3s ease;
}

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

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

/*--------------------------------------------------------------
 News Card - Footer Button
--------------------------------------------------------------*/

.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: 4px;
}

.news-card .main-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #223448;
  color: #edefca;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.news-card .main-btn .arrow {
  font-size: 12px;
  transition: transform 0.25s ease;
}

.news-card .main-btn:hover {
  background: #547892;
  box-shadow: 0 6px 18px rgba(34, 52, 72, 0.35);
  transform: translateX(-3px);
}

.news-card .main-btn:hover .arrow {
  transform: translateX(-4px);
}

/*--------------------------------------------------------------
 News Card - Responsive
--------------------------------------------------------------*/
@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;
  }

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

.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);
    }

    a {
      color: var(--c-primary);
      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(--c-primary-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(--c-primary);
      font-weight: 700;
    }

    blockquote {
      margin: clamp(14px, 2vw, 20px) 0;
      padding: 16px 18px;
      border-inline-start: 4px solid var(--c-primary);
      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(--c-primary) 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(--c-primary);
      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(--c-primary-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(--c-primary) 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(--c-primary);
        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;
  margin-bottom: 80px !important;
}

.singlePage.simple-faq .contact-form,
.singlePage.consult .contact-form {
  max-width: 800px;
  margin: 0 auto;
  border: 4px solid #223448;
  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 #223448;
  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: #223448;
  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;
}
.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: 75px !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: var(--c-black);
    text-decoration: none;
    line-height: 1.2;
    transition: color 0.25s ease;
  }

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

  .nav-list > .menu-item-has-children > a::after {
    content: "\f078"; /* chevron-down */
    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(--c-primary);
  }

  .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(--c-primary);
  }

  .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(--c-primary) 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";
  }

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

  /* chevron-left */
  .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;
  }
}

@media (max-width: 992px) {

  .main-caption .headline-title {
  position: relative;
  font-size: clamp(45px, 5vw, 44px);
  }

  /* sidebar  */
  .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%);
    }
  }

  /* Sidebar */
  .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);
  }

  /* Head */
  .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: 80px;
    display: block;
  }

  .site-sidebar .sidebar-head .logo-text {
    font-weight: 800;
    color: #223448;
  }

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

  /* Nav */
  .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);
    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: #223448;
    color: #fff;
  }

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

  /* Dropdown trigger */
  .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;
  }

  /* Submenu */
  .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);
  }

  /* Sidebar CTA */
  .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: #223448;
    border: 1px solid #223448;
    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: #223448;
    color: #fff;
    transform: translateY(-1px);
  }

  /* Hamburger */
  .hamburger {
    inline-size: 50px;
    block-size: 46px;
    border: 0;
    background: transparent;
    display: grid;
    place-content: center;
    gap: 6px;
    /* box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12); */
  }

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

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

  .about-section__content {
    inset-block-end: 12%;
  }

  .service-card__overlay {
  padding: 20px;
  }

  .why-card__text {
  font-size: 21px;
  line-height: 32px;
  }

}

/* Media queries */
  @media (max-width: 1500px) {
    .main-caption .headline-title {
      line-height: 1.5;
    }
  }
  @media (min-width: 992px) {
    .site-sidebar {
      inline-size: 440px;
    }
  }

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

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


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

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

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

  .about-photo {
    min-height: 250px;
    background-position: inherit !important;
    background-size: cover !important;
  }

  .whyus {
    .whyus-canvas {
      margin-bottom: 15px;
    }
  }

  .stories {
    & .in_stroies {
      padding: 90px 20px 30px;
    }
  }

  .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 .container > .d-flex,
  #fixed-header .container > .d-flex {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  #main-header .header-logo,
  #fixed-header .header-logo {
    justify-self: start;
  }

  #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: 768px) {
  .main-caption {
    & .headline-title {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 27px;
    }

    transform: translateY(0);
  }

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

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

  .sec-tit {
    color: #000;
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 40px;
  }

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

@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);
  }
  .footer {
    & .footer-copy {
      & p {
        margin: 0;
        color: var(--c-secondary);
        font-weight: 500;
        font-size: 15px;
        line-height: 25px;
      }
    }
  }

  .footer {
    margin-top: 60px;
  }

  #main-header {
    margin-inline: 25px;
  }

  .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;
          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;
  }
}

@media (max-width: 380px) {
.sh-social-icon__circle {
  width: 35px !important;
  height: 35px !important;
}

.sh-social-icon__circle i, .sh-social-icon__circle svg {
  font-size: 20px !important;
}

.sh-social-icons {
  right: 12px !important;
}

}
@media (max-width: 380px) {
  .main-btn span {
    font-size: 14px;
  }
  
  #main-header > div:nth-child(1) > div:nth-child(1) {
      flex-direction: column;
  }
  
  .header-logo {
      margin-bottom: 10px;
  }

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

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

@media (max-width: 360px) {
.main-btn {
  width: 160px;
  height: 45px;
}

.btn-bg {
  width: 46px;
  height: 46px;
}

.btn-circle {
  width: 34px;
  height: 34px;
}

.about-section__metric {
  position: absolute;
  inset-block-end: 15%;
}

}

/*----------------------------------------------------
Search
----------------------------------------------------*/
/*--------------------------------------------------------------
 Custom Search - Full Screen Overlay
--------------------------------------------------------------*/

/*--------------------------------------------------------------
 Custom Search - Overlay Shell
--------------------------------------------------------------*/
.custom-search-form {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #223448 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: #223448;
}

/*--------------------------------------------------------------
 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, #223448, #edefca, #223448);
  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: #223448;
  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: #223448;
  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: #223448;
}

.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: #223448;
}

.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: #223448;
  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: #223448;
  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: #223448;
  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: #223448;
  opacity: 0.6;
  font-size: 18px;
}

.suggestion-content {
  flex: 1;
}

.suggestion-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #223448;
}

.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: #223448;
  opacity: 0.7;
}

.no-results-content strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  color: #223448;
}

.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: #223448;
  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: #223448;
  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, #223448 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: #223448;
  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: #223448;
  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: #223448;
}

.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: #223448;
  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: #223448;
  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: #223448;
  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: #223448;
  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: #223448;
  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: #223448;
  color: #edefca;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(34, 52, 72, 0.18);
}

.search-pagination .current {
  background: #223448;
  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: #223448;
  opacity: 0.18;
  animation: float 3s ease-in-out infinite;
}

.no-results h2 {
  color: #223448;
  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;
  }
}


.sh-social-icons {
    position: fixed;
    top: 50%;
    right: 32px;         
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    z-index: 50;
}

body.ltr .sh-social-icons {
    left: 32px;
    right: auto;
}

.sh-social-icon {
    display: block;
    text-decoration: none;
}

.sh-social-icon__circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #9fb9c6; 
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}

.sh-social-icon__circle i,
.sh-social-icon__circle svg {
    font-size: 28px;
    color: #ffffff;
}

.sh-social-icon:hover .sh-social-icon__circle {
    background-color: #111827;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.45);
    transform: translateY(-2px);
}


@media (max-width: 435px) {
    .main-caption {
        top: 41%;
    }
}

@media (max-width: 380px) {
    .main-caption {
        top: 50%;
    }
}

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