@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
@font-face {
  font-family: 'Cairo';
  src: url("../../fonts/cairo/Cairo-Bold.woff2") format("woff2"), url("../../fonts/cairo/Cairo-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Cairo';
  src: url("../../fonts/cairo/Cairo-SemiBold.woff2") format("woff2"), url("../../fonts/cairo/Cairo-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Cairo';
  src: url("../../fonts/cairo/Cairo-ExtraLight.woff2") format("woff2"), url("../../fonts/cairo/Cairo-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Cairo';
  src: url("../../fonts/cairo/Cairo-Light.woff2") format("woff2"), url("../../fonts/cairo/Cairo-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Cairo';
  src: url("../../fonts/cairo/Cairo-Black.woff2") format("woff2"), url("../../fonts/cairo/Cairo-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Cairo';
  src: url("../../fonts/cairo/Cairo-Regular.woff2") format("woff2"), url("../../fonts/cairo/Cairo-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
          transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*='owl-'] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

* {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

ul {
  list-style: none;
}

ol,
ul,
h1,
h2,
h3,
h5,
h4,
h6 {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none !important;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f1f1f1;
}

/* Reset */
/* Navbar Wrapper */
.navbar-wrapper {
  width: 100%;
  max-width: none;
  background: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  padding: 16px 60px;
  margin-top: 25px !important;
  position: relative;
  z-index: 2;
}

/* Navbar */
.navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
}

/* Logo */
.logo {
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  color: #0f172a;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.logo img {
  width: 180px;
}

.logo span {
  color: #0b5cff;
}

/* Links */
.nav-links {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  margin: 0;
  padding: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 700px;
  margin-left: auto;
  margin-right: 40px;
}

.nav-links li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}

.nav-links a {
  text-decoration: none;
  color: #0A396D;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  transition: color 0.3s ease;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #f68c1e;
}

/* Hamburger */
.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #0f172a;
  margin: 5px 0;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  margin-top: 12px;
}

.mobile-menu a {
  display: block;
  padding: 12px;
  text-decoration: none;
  color: #334155;
  font-weight: 600;
  border-radius: 12px;
}

.mobile-menu a:hover {
  background: #f1f5f9;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .navbar-wrapper {
  }
  .mobile-menu.active {
    display: block;
  }
}

/* ============ NAVBAR ============ */
.navbar-wrapper {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  padding: 16px 60px;
}

.navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
}

.logo {
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  color: #0f172a;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.logo span {
  color: #0b5cff;
}

.nav-links {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
  margin: 0;
  padding: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 700px;
  margin-left: auto;
  margin-right: 40px;
}

.nav-links li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}

.nav-links a {
  text-decoration: none;
  color: #0A396D;
  font-weight: 500;
  font-size: 16px;
  white-space: nowrap;
  transition: color 0.3s ease;
  letter-spacing: 0.3px;
}

.nav-links a:hover {
  color: #f68c1e;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #0f172a;
  margin: 5px 0;
}

.mobile-menu {
  display: none;
  margin-top: 12px;
}

.mobile-menu a {
  display: block;
  padding: 12px;
  text-decoration: none;
  color: #334155;
  font-weight: 600;
  border-radius: 12px;
}

.mobile-menu a:hover {
  background: #f1f5f9;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .navbar-wrapper {
    border-radius: 16px;
  }
  .mobile-menu.active {
    display: block;
  }
}

/* ============ PAGE ============ */
.page {
  margin: 18px auto 0;
  position: relative;
  top: -120px;
  z-index: 1;
}

/* ============ VIDEO SECTION ============ */
.hero-video {
  margin-top: 14px;
  overflow: visible;
  position: relative;
  z-index: 2;
}

.video-card {
  position: relative;
  overflow: visible;
  background: #000;
}

/* Smooth shadow transition to next section */
.video-card::before {
  content: "";
  display: block;
  padding-top: 52%;
}

.video-card::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -120px;
  height: 200px;
  background: linear-gradient(to bottom,
    rgba(30, 30, 30, 0.4) 0%,
    rgba(200, 180, 160, 0.3) 30%,
    rgba(241, 241, 241, 0.8) 70%,
    rgba(241, 241, 241, 1) 100%
  );
  z-index: 5;
  pointer-events: none;
  -webkit-filter: blur(20px);
          filter: blur(20px);
}

.video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* مهم عشان يملى الكادر */
}

/* ============ CUSTOM VIDEO CONTROLS ============ */
.video-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
  padding: 40px 24px 20px;
  z-index: 10;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.video-card:hover .video-controls {
  opacity: 1;
}

/* Progress Container */
.progress-container {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.time-current,
.time-duration {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  min-width: 65px;
  font-family: 'Poppins', sans-serif;
}

.time-duration {
  text-align: right;
}

/* Progress Bar */
.progress-bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  transition: height 0.2s ease;
}

.progress-bar:hover {
  height: 6px;
}

.progress-filled {
  height: 100%;
  background: linear-gradient(90deg, #f68c1e 0%, #f68c1e 100%);
  border-radius: 4px;
  width: 0%;
  transition: width 0.1s linear;
}

.progress-thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: #f68c1e;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.progress-bar:hover .progress-thumb {
  opacity: 1;
}

/* Controls Row */
.controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.controls-left,
.controls-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.controls-right {
  justify-content: flex-end;
}

.controls-center {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

/* Video Title */
.video-title {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
}

/* Control Buttons */
.ctrl-btn {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s ease;
  position: relative;
  opacity: 0.85;
}

.ctrl-btn:hover {
  opacity: 1;
  background: rgba(255,255,255,0.1);
}

.ctrl-btn.active {
  color: #f68c1e;
}

/* Play Button - Large Orange Circle */
.ctrl-btn--play {
  width: 56px;
  height: 56px;
  background: transparent;
  border: 3px solid #f68c1e;
  border-radius: 50%;
  font-size: 18px;
  color: #f68c1e;
  margin: 0 8px;
  opacity: 1;
}

.ctrl-btn--play:hover {
  background: rgba(232, 184, 74, 0.15);
  transform: scale(1.05);
}

.ctrl-btn--play i {
  margin-left: 3px;
}

/* Time Skip Labels (10, 30) */
.time-skip {
  position: absolute;
  top: 2px;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
}

#rewindBtn .time-skip {
  left: 50%;
  transform: translateX(-50%);
}

#forwardBtn .time-skip {
  left: 50%;
  transform: translateX(-50%);
}

#rewindBtn i,
#forwardBtn i {
  font-size: 14px;
  margin-top: 4px;
}

/* Responsive Video Controls */
@media (max-width: 991px) {
  .video-controls {
    padding: 30px 16px 16px;
  }

  .controls-left {
    display: none;
  }

  .ctrl-btn {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .ctrl-btn--play {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }

  .controls-center {
    gap: 8px;
  }
}

@media (max-width: 768px) {
  .progress-container {
    gap: 10px;
  }

  .time-current,
  .time-duration {
    font-size: 11px;
    min-width: 55px;
  }

  #shuffleBtn,
  #loopBtn,
  #captionsBtn,
  #pipBtn,
  #moreBtn {
    display: none;
  }

  .ctrl-btn--play {
    width: 44px;
    height: 44px;
    font-size: 14px;
    border-width: 2px;
  }

  .video-card::before {
    padding-top: 62%;
  }
}

.afftersection {
  position: relative;
  top: -10px;
}

.afftersection img {
  width: 100%;
  height: 250px;
}

/* ========== WHO WE ARE SECTION ========== */
.who-we-are {
  position: relative;
  padding: 120px 24px 100px;
  top: -80px;
  background: linear-gradient(180deg,
    rgba(241, 241, 241, 0) 0%,
    rgba(241, 241, 241, 0.3) 5%,
    rgba(241, 241, 241, 0.6) 10%,
    rgba(241, 241, 241, 0.85) 18%,
    rgba(241, 241, 241, 1) 25%,
    #f1f1f1 100%
  );
  z-index: 1;
  overflow: hidden;
}

/* Wavy Lines Pattern */
.who-wavy-lines {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 400px;
  height: 400px;
  z-index: 1;
  pointer-events: none;
}

.who-wavy-lines svg {
  width: 100%;
  height: 100%;
}

.who-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* Content Wrapper with Oval */
.who-content-wrapper {
  position: relative;
  max-width: 680px;
  padding: 80px 120px 80px 60px;
}

/* Oval Outline Shape */
.who-oval-outline {
  position: absolute;
  top: -100px;
  left: 0;
  right: -180px;
  bottom: -50px;
  border: 1px solid rgba(200, 200, 200, 0.4);
  border-left: none;
  border-top-color: transparent;
  border-radius: 0 50% 50% 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 100%);
}

/* 2D Shadow effect for oval - right and bottom */
.who-oval-outline::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: -8px;
  bottom: -8px;
  border: 1px solid rgba(180, 180, 180, 0.2);
  border-left: none;
  border-top-color: transparent;
  border-radius: 0 50% 50% 0;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 100%);
}

.who-oval-outline::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: -4px;
  bottom: -4px;
  border: 1px solid rgba(190, 190, 190, 0.3);
  border-left: none;
  border-top-color: transparent;
  border-radius: 0 50% 50% 0;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 100%);
}

/* Text */
.who-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.who-content h2 {
  font-size: 44px;
  font-weight: 800;
  color: #0A396D;
  margin-bottom: 28px;
}

.who-content p {
  font-size: 18px;
  line-height: 1.85;
  color: #0A396D;
}

/* Counters Wrapper */
.who-counters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-top: 50px;
  margin-left: 60px;
  position: relative;
}

.counter {
  min-width: 150px;
  padding: 24px 32px 28px;
  text-align: center;
  -webkit-transition-delay: var(--d, 0ms);
          transition-delay: var(--d, 0ms);
  border-radius: 8px 8px 20px 20px;
  position: relative;
}

.counter.gray {
  background: linear-gradient(180deg, #d1d5db 0%, #e5e7eb 100%);
  color: #0A396D;
}

.counter.orange {
  background: linear-gradient(180deg, #f68c1e 0%, #f68c1e 100%);
  color: #fff;
}

.counter .label {
  display: block;
  font-size: 12px;
  text-transform: lowercase;
  opacity: 0.85;
  margin-bottom: 8px;
  color: #fff;
}

.counter.gray .label {
  color: #f68c1e;
}

.counter h3,
.counter .count {
  font-size: 48px;
  font-weight: 700;
  margin: 4px 0 10px;
  line-height: 1;
}

.counter.gray .count {
  color: #f68c1e;
}

.counter.orange .count {
  color: #fff;
}

.counter p {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.counter.gray p {
  color: #0A396D;
}

.counter.orange p {
  color: #0A396D;
}

/* Responsive Who We Are */
@media (max-width: 991px) {
  .who-content-wrapper {
    padding: 60px 80px 60px 40px;
  }

  .who-oval-outline {
    right: -100px;
  }
}

@media (max-width: 768px) {
  .who-we-are {
    padding: 40px 16px 80px;
  }

  .who-content-wrapper {
    padding: 30px 20px;
  }

  .who-oval-outline {
    display: none;
  }

  .who-wavy-lines {
    opacity: 0.4;
    width: 200px;
    height: 200px;
  }

  .who-content h2 {
    font-size: 32px;
  }

  .who-content p {
    font-size: 16px;
  }

  .who-counters {
    margin-left: 0;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .who-counters::before {
    display: none;
  }

  .counter {
    min-width: 100px;
    flex: 1;
    padding: 16px 20px 20px;
    border-radius: 12px;
  }

  .counter .count {
    font-size: 32px;
  }

  .counter p {
    font-size: 14px;
  }
}

/* Decorative glow right side (قريب من الإحساس في الصورة) */
/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  -webkit-transform: translateY(18px);
          transform: translateY(18px);
  -webkit-transition: opacity .6s ease, -webkit-transform .6s ease;
  transition: opacity .6s ease, -webkit-transform .6s ease;
  transition: opacity .6s ease, transform .6s ease;
  transition: opacity .6s ease, transform .6s ease, -webkit-transform .6s ease;
}

.reveal.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .who-counters {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .who-content h2 {
    font-size: 32px;
  }
  .who-counters {
    margin-top: 32px;
  }
  .counter {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}

.who-we-are-shep {
  position: relative;
  padding: 80px 24px 0px 24px;
  top: -120px;
  background-image: url(../../img/back-shev.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  min-height: 800px;
}

.card-slid {
  /* section background with waves (simple) */
  /* Carousel area */
  /* Owl nav buttons (arrows on sides like screenshot) */
  /* Dots (orange) */
  /* Responsive */
}

.card-slid .header-row {
  gap: 12px;
  margin-bottom: 28px;
}

.card-slid .header-row div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.card-slid h2 {
  font-size: 38px;
  line-height: 1.1;
  color: #0A396D;
  font-weight: 800;
  letter-spacing: .2px;
  text-align: center;
}

.card-slid .view-all {
  font-size: 14px;
  color: #f68c1e;
  text-decoration: none;
  font-weight: 600;
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}

.card-slid .view-all:hover {
  text-decoration: underline;
}

.card-slid .carousel-wrap {
  position: relative;
  padding: 10px 46px;
}

.card-slid .brand-card {
  background: #d9d9d9;
  border-radius: 6px;
  height: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.card-slid .brand-card span {
  font-size: 40px;
  color: #f1f1f1;
  font-weight: 800;
  letter-spacing: 1px;
}

.card-slid .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  pointer-events: none;
}

.card-slid .owl-nav button {
  pointer-events: auto;
  width: 26px;
  height: 20px;
  border-radius: 0;
  border: none !important;
  background: transparent !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  padding: 0 !important;
  display: block;
  -webkit-transition: -webkit-transform .15s ease;
  transition: -webkit-transform .15s ease;
  transition: transform .15s ease;
  transition: transform .15s ease, -webkit-transform .15s ease;
}

.card-slid .owl-nav button.owl-prev {
  background-image: url(../../img/arrow-left.svg) !important;
  
}

.card-slid .owl-nav button.owl-next {
  background-image: url(../../img/arrow-right.svg) !important;
}

.card-slid .owl-nav button:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.card-slid .owl-nav button:focus {
  outline: none;
}

.card-slid .owl-dots {
  margin-top: 22px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 28px;
}

.card-slid .owl-theme .owl-dots .owl-dot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.card-slid .owl-theme .owl-dots .owl-dot span {
  width: 6px;
  height: 6px;
  background: #f68c1e;
  margin: 0 4px;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
          transition: all 0.3s ease;
}

/* Active dot is biggest */
.card-slid .owl-theme .owl-dots .owl-dot.active span {
  width: 16px;
  height: 16px;
  background: #f68c1e;
}

/* Distance 1 from active */
.card-slid .owl-theme .owl-dots .owl-dot.dist-1 span {
  width: 12px;
  height: 12px;
}

/* Distance 2 from active */
.card-slid .owl-theme .owl-dots .owl-dot.dist-2 span {
  width: 9px;
  height: 9px;
}

/* Distance 3 from active */
.card-slid .owl-theme .owl-dots .owl-dot.dist-3 span {
  width: 7px;
  height: 7px;
}

@media (max-width: 768px) {
  .card-slid h2 {
    font-size: 28px;
  }
  .card-slid .carousel-wrap {
    padding: 10px 30px;
  }
  .card-slid .brand-card {
    height: 120px;
  }
}

.card-slid .brand-card {
  background: #d9d9d9;
  border-radius: 8px;
  height: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  /* مهم */
}

.card-slid .brand-card img {
  -o-object-fit: cover;
     object-fit: cover;
}

.card-slid .owl-theme .owl-dots .owl-dot.active span {
  background: #f68c1e;
}

.card-slid .owl-nav {
  top: 40%;
  margin-left: -50px;
  margin-right: -50px;
}

.balanc {
  /* SECTION */
  /* BACKGROUND BARS (faint) */
  /* CARDS */
  /* ICON BUBBLE ON LEFT CARD */
  /* CENTER SHAPE (the S / yin-yang like) */
  /* main colored circle base */
  /* carve inner white to create the S feel */
  /* add soft depth like the screenshot */
  /* middle bulb circle */
  /* small top icon bubble (inside orange part like screenshot) */
  /* OPTIONAL center image if you want it */
  /* RESPONSIVE */
}

.balanc .mv-section {
  padding: 60px 0;
}

/* New Mission/Vision Layout */
.mv-layout {
  position: relative;
  min-height: 480px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mv-center-img {
  position: relative;
  z-index: 1;
}

.mv-center-img img {
  width: 280px;
  height: auto;
  display: block;
}

.mv-layout .mv-card {
  position: absolute;
  max-width: 380px;
  padding: 20px 24px;
  background: rgba(240, 240, 240, 0.7);
  border-radius: 14px;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  z-index: 2;
}

.mv-layout .mv-card--left {
  top: 20px;
  left: 0;
  right: 55%;
  text-align: center;
}

.mv-layout .mv-card--right {
  bottom: 20px;
  right: 0;
  left: 55%;
  text-align: center;
}

.mv-layout .mv-title {
  font-size: 24px;
  font-weight: 800;
  color: #0A396D;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.mv-layout .mv-text {
  font-size: 13px;
  line-height: 1.65;
  color: #6b7280;
}

/* Background Bars */
.mv-bg-bars {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 16px;
  z-index: 0;
}

.mv-bg-bars span {
  width: 35px;
  background: rgba(200, 200, 200, 0.18);
  border-radius: 6px 6px 0 0;
}

.mv-bg-bars--left {
  left: 50px;
  bottom: 20px;
}

.mv-bg-bars--left span:nth-child(1) { height: 70px; }
.mv-bg-bars--left span:nth-child(2) { height: 120px; }
.mv-bg-bars--left span:nth-child(3) { height: 90px; }
.mv-bg-bars--left span:nth-child(4) { height: 140px; }
.mv-bg-bars--left span:nth-child(5) { height: 100px; }

.mv-bg-bars--right {
  right: 50px;
  top: 40px;
}

.mv-bg-bars--right span:nth-child(1) { height: 100px; }
.mv-bg-bars--right span:nth-child(2) { height: 140px; }
.mv-bg-bars--right span:nth-child(3) { height: 90px; }
.mv-bg-bars--right span:nth-child(4) { height: 120px; }
.mv-bg-bars--right span:nth-child(5) { height: 70px; }

@media (max-width: 1100px) {
  .mv-layout .mv-card--left {
    right: 50%;
  }
  .mv-layout .mv-card--right {
    left: 50%;
  }
}

@media (max-width: 992px) {
  .mv-layout {
    min-height: auto;
    padding: 20px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }

  .mv-layout .mv-card {
    position: relative;
    max-width: 100%;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }

  .mv-center-img img {
    width: 200px;
  }

  .mv-bg-bars {
    display: none;
  }
}

.balanc .mv-container {
  position: relative;
  margin: 0 auto;
  min-height: 420px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.balanc .bars {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.balanc .bars span {
  position: absolute;
  bottom: 40px;
  width: 60px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 8px 8px 0 0;
}

.balanc .bars span:nth-child(1) {
  left: 210px;
  height: 140px;
}

.balanc .bars span:nth-child(2) {
  left: 300px;
  height: 90px;
}

.balanc .bars span:nth-child(3) {
  left: 390px;
  height: 170px;
}

.balanc .bars span:nth-child(4) {
  right: 330px;
  height: 120px;
}

.balanc .bars span:nth-child(5) {
  right: 240px;
  height: 170px;
}

.balanc .bars span:nth-child(6) {
  right: 150px;
  height: 110px;
}

.balanc .mv-card__content {
  padding: 18px 22px;
  width: 50
 0px;
  background: #f2f2f2;
  border-radius: 14px;
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
          box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.balanc .mv-title {
  font-size: 22px;
  font-weight: 800;
  color: #083b7a;
  letter-spacing: .4px;
  margin-bottom: 6px;
}

.balanc .mv-text {
  font-size: 12px;
  line-height: 1.55;
  color: #6b7280;
  max-width: 430px;
}

.balanc .mv-card--left {
  left: 70px;
  top: 72px;
}

.balanc .mv-card--left .itemmv-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.balanc .mv-card--right {
  right: 60px;
  bottom: 62px;
  text-align: right;
}

.balanc .mv-card--right .itemmv-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.balanc .mv-title--right {
  text-align: right;
}

.balanc .mv-text--right {
  margin-left: auto;
  text-align: right;
}

.balanc .mv-bubble {
  width: 64px;
  height: 64px;
  position: relative;
  background: #ededed;
  border-radius: 50%;
  z-index: 4;
  -webkit-box-shadow: 0 12px 18px rgba(0, 0, 0, 0.12);
          box-shadow: 0 12px 18px rgba(0, 0, 0, 0.12);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.balanc .mv-bubble svg {
  fill: #f68c1e;
  width: 40px;
  height: 40px;
}

.balanc .mv-bubble svg path {
  fill: #f68c1e;
}

.balanc .mv-bubble img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.balanc .mv-center {
  position: relative;
  width: 200px;
  height: 280px;
  z-index: 1;
}

.balanc .mv-center:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0A386C;
  background: -webkit-gradient(linear, left bottom, left top, from(#0a386c), to(#f68c1e));
  background: linear-gradient(0deg, #0a386c 0%, #f68c1e 100%);
  -webkit-box-shadow: 0 18px 18px rgba(0, 0, 0, 0.18);
          box-shadow: 0 18px 18px rgba(0, 0, 0, 0.18);
}

.balanc .mv-center .mv-center__shade {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 45%, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0) 60%);
  opacity: .65;
}

.balanc .mv-center__mid {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  -webkit-box-shadow: 0 12px 18px rgba(0, 0, 0, 0.14);
          box-shadow: 0 12px 18px rgba(0, 0, 0, 0.14);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 3;
}

.balanc .mv-center__mid img {
  width: 34px;
  height: 34px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.balanc .mv-center__topIcon {
  right: 42px;
  top: 40px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #fff;
  -webkit-box-shadow: 0 12px 18px rgba(0, 0, 0, 0.12);
          box-shadow: 0 12px 18px rgba(0, 0, 0, 0.12);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 3;
}

.balanc .mv-center__topIcon img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.balanc .mv-center__img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 4;
  display: block;
  pointer-events: none;
}

@media (max-width: 1050px) {
  .balanc .mv-container {
    height: auto;
  }
  .balanc .mv-card {
    position: relative;
    width: 92%;
    max-width: 640px;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin: 14px auto;
    text-align: left;
    padding: 0;
  }
  .balanc .mv-card--left {
    padding-right: 0;
  }
  .balanc .mv-card--right {
    padding-left: 0;
    text-align: left;
  }
  .balanc .mv-title--right, .balanc .mv-text--right {
    text-align: left;
    margin-left: 0;
  }
  .balanc .mv-center {
    position: relative;
    left: auto;
    top: auto;
    -webkit-transform: none;
            transform: none;
    margin: 22px auto;
  }
}

.bg-bars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 20px 0;
}

.bg-bars .bar {
  width: 60px;
  height: 200px;
  background-color: #817d7d0a;
}

.who-we-are-shep1 {
  position: relative;
  padding: 0px 24px;
  top: 0px;
  background-image: url(../../img/back-shev1.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  min-height: 700px;
  /* Section */
  /* Waves background (light) */
  /* Container */
  /* Grid */
  /* Card */
  /* Orange special card */
  /* Responsive */
}

.who-we-are-shep1 .spec {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

.who-we-are-shep1 .spec__bg {
  position: absolute;
  inset: 0;
  opacity: .9;
  pointer-events: none;
}

.who-we-are-shep1 .spec__container {
  position: relative;
  margin: 0 auto;
  z-index: 2;
}

.who-we-are-shep1 .spec__title {
  text-align: center;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: .3px;
  color: #0A396D;
  margin-bottom: 58px;
}

.who-we-are-shep1 .spec__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.who-we-are-shep1 .card {
  background: #fff;
  border-radius: 18px;
  padding: 22px 22px 20px;
  -webkit-box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
          box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
  min-height: 140px;
  border: 0;
  -webkit-transition: all 0.3s ease;
          transition: all 0.3s ease;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.who-we-are-shep1 .card:hover {
  background: #f68c1e;
  -webkit-transform: rotate(-3deg);
          transform: rotate(-3deg);
  -webkit-box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
          box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

.who-we-are-shep1 .card:hover .card__title {
  color: #fff;
}

.who-we-are-shep1 .card:hover .card__text {
  color: rgba(255, 255, 255, 0.92);
}

.who-we-are-shep1 .card__title {
  font-size: 18px;
  font-weight: 800;
  color: #0A396D;
  margin-bottom: 10px;
  -webkit-transition: color 0.3s ease;
          transition: color 0.3s ease;
}

.who-we-are-shep1 .card__text {
  font-size: 12px;
  line-height: 1.65;
  color: #0A396D;
  -webkit-transition: color 0.3s ease;
          transition: color 0.3s ease;
}

.who-we-are-shep1 .card--orange {
  background: #f68c1e;
  -webkit-box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
          box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

.who-we-are-shep1 .card--tilt {
  -webkit-transform: rotate(-3deg);
          transform: rotate(-3deg);
}

.who-we-are-shep1 .card__title--white {
  color: #fff;
}

.who-we-are-shep1 .card__text--white {
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 980px) {
  .who-we-are-shep1 .spec__title {
    font-size: 34px;
  }
  .who-we-are-shep1 .spec__grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .who-we-are-shep1 .card--tilt {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
}

@media (max-width: 620px) {
  .who-we-are-shep1 .spec__grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .who-we-are-shep1 .card--tilt {
    -webkit-transform: none;
            transform: none;
  }
}

.who-we-are-shep2 {
  position: relative;
  padding: 0px 24px;
  top: 0px;
  background-image: url(../../img/back-shev2.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  min-height: auto;
  /* Section */
  /* Background waves */
  /* Container */
  /* Title */
  /* Happy word with curved underline */
  /* Description */
  /* Responsive */
}

.who-we-are-shep2 .happy {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

.who-we-are-shep2 .happy__bg {
  position: absolute;
  inset: -40px -40px -40px -40px;
  opacity: .6;
  pointer-events: none;
}

.who-we-are-shep2 .happy__container {
  position: relative;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}

.who-we-are-shep2 .happy__title {
  font-size: 46px;
  line-height: 1.15;
  font-weight: 900;
  color: #0A396D;
  margin-bottom: 18px;
}

.who-we-are-shep2 .happy__word {
  position: relative;
  color: #f68c1e;
  display: inline-block;
  padding-bottom: 10px;
}

.who-we-are-shep2 .happy__word span {
  color: #0A396D;
}

.who-we-are-shep2 .happy__word::after {
  content: "";
  position: absolute;
  left: 67px;
  bottom: -20px;
  width: 40px;
  height: 20px;
  background-image: url(../../img/shep-sm.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  z-index: 55;
}

.who-we-are-shep2 .happy__desc {
  font-size: 14px;
  line-height: 1.7;
  color: #0A396D;
  max-width: 620px;
  margin: 0 auto;
  margin-top: 25px;
}

@media (max-width: 768px) {
  .who-we-are-shep2 .happy__title {
    font-size: 34px;
  }
}

.question {
  /* LEFT */
  /* RIGHT */
  /* Responsive */
}

.question .why {
  padding: 60px 0;
}

.question .why__container {
  margin: 0 auto;
}

.question .why__title {
  font-size: 40px;
  font-weight: 900;
  color: #0a396d;
  text-align: center;
  margin-bottom: 34px;
  letter-spacing: .2px;
}

.question .why__brand {
  color: #f68c1e;
  -webkit-animation: flash 1.5s ease-in-out infinite;
          animation: flash 1.5s ease-in-out infinite;
}

@-webkit-keyframes flash {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

@keyframes flash {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.question .why__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}

.question .why__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 350px;
          flex: 0 0 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.question .why__qmark {
  width: 310px;
  max-width: 100%;
  height: auto;
  display: block;
}

.question .why__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.question .why__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
}

.question .why__arrow {
  width: 44px;
  height: 44px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin-top: 6px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.question .why__text {
  max-width: 520px;
  font-size: 14px;
  line-height: 1.75;
  color: #0a396d;
}

@media (max-width: 980px) {
  .question .why__title {
    font-size: 32px;
  }
  .question .why__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 26px;
  }
  .question .why__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .question .why__qmark {
    width: 300px;
  }
  .question .why__text {
    max-width: 680px;
    text-align: center;
  }
  .question .why__item {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.question .why__title p {
  color: #7991ac;
  font-size: 14px;
  display: inline-block;
  vertical-align: middle;
}

.graph {
  margin-top: 30px;
}

.graph img {
  width: 100%;
}

@media (max-width: 991px) {
  .who-we-are-shep,
  .who-we-are-shep1,
  .who-we-are-shep2 {
    min-height: auto;
  }
}

.who {
  position: relative;
  overflow: hidden;
}

/* Waves on sides (very light like screenshot) */
.who__waves {
  position: absolute;
  top: 10px;
  bottom: 0;
  width: 320px;
  pointer-events: none;
  opacity: .55;
}

.who__waves--left {
  left: -110px;
  -webkit-transform: rotate(12deg);
          transform: rotate(12deg);
}

.who__waves--right {
  right: -110px;
  -webkit-transform: rotate(-12deg);
          transform: rotate(-12deg);
}

.who__container {
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* The big white curved panel */
.who__panel {
  position: relative;
  background: #eeeeee;
  border-radius: 0 0 50% 50%;
  padding: 150px 60px 120px;
  -webkit-box-shadow: 0 30px 50px rgba(0, 0, 0, 0.22);
          box-shadow: 0 30px 50px rgba(0, 0, 0, 0.22);
  margin-bottom: 60px;
}

/* extra curve depth shadow feel */
.who__panel:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -48px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 120px;
  -webkit-filter: blur(1px);
          filter: blur(1px);
  opacity: .35;
  pointer-events: none;
}

/* Title + line */
.who__title {
  text-align: center;
  font-size: 40px;
  font-weight: 900;
  color: #0A396D;
  margin-bottom: 14px;
}

.who__line {
  height: 2px;
  background: #f68c1e;
  width: 78%;
  margin: 0 auto 26px;
  border-radius: 2px;
}

/* Text */
.who__text {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  color: #0A396D;
  font-size: 13px;
  line-height: 1.9;
}

.who__text p {
  margin: 0 0 18px;
}

/* Responsive */
@media (max-width: 900px) {
  .who__panel {
    padding: 36px 22px 60px;
    border-radius: 0 0 180px 180px / 0 0 140px 140px;
  }
  .who__title {
    font-size: 32px;
  }
  .who__line {
    width: 90%;
  }
}

.who-OurServices .who__panel {
  background: none;
  -webkit-box-shadow: 0 0 0;
          box-shadow: 0 0 0;
}

.who-OurServices {
  position: relative;
  padding: 0px 24px;
  top: 0px;
  background-image: url(../../img/back-shev1.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  min-height: 700px;
  /* Section */
  /* Waves background (light) */
  /* Container */
  /* Grid */
  /* Card */
  /* Orange special card */
  /* Responsive */
}

.who-OurServices .spec {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

.who-OurServices .spec__bg {
  position: absolute;
  inset: 0;
  opacity: .9;
  pointer-events: none;
}

.who-OurServices .spec__container {
  position: relative;
  margin: 0 auto;
  z-index: 2;
}

.who-OurServices .spec__title {
  text-align: center;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: .3px;
  color: #0A396D;
  margin-bottom: 58px;
}

.who-OurServices .spec__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.who-OurServices .card {
  background: #fff;
  border-radius: 18px;
  padding: 22px 22px 20px;
  -webkit-box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
          box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
  min-height: 140px;
  border: 0;
}

.who-OurServices .card__title {
  font-size: 18px;
  font-weight: 800;
  color: #0A396D;
  margin-bottom: 10px;
}

.who-OurServices .card__text {
  font-size: 12px;
  line-height: 1.65;
  color: #0A396D;
}

.who-OurServices .card--orange {
  background: #f68c1e;
  -webkit-box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
          box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

.who-OurServices .card--tilt {
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.who-OurServices .card__title--white {
  color: #fff;
}

.who-OurServices .card__text--white {
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 980px) {
  .who-OurServices .spec__title {
    font-size: 34px;
  }
  .who-OurServices .spec__grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .who-OurServices .card--tilt {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
}

@media (max-width: 620px) {
  .who-OurServices .spec__grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .who-OurServices .card--tilt {
    -webkit-transform: none;
            transform: none;
  }
}

.add-sec {
  text-align: center;
}

.vid-sec {
  position: relative;
}

.vid-sec img {
  width: 100%;
}

.vid-sec::after {
  content: "";
  position: absolute;
  inset-inline-end: -60px;
  top: 50%;
  width: 40px;
  height: 40px;
  background-image: url(../../img/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  z-index: 5;
}

.vid-sec2::after {
  content: "";
  position: absolute;
  inset-inline-start: -60px;
  top: 50%;
  width: 40px;
  height: 40px;
  background-image: url(../../img/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  z-index: 5;
  rotate: 180deg;
}

.add-sec img {
  width: 100%;
}

.contact-us {
  padding: 40px 20px;
  border-radius: 30px 0;
  background-color: #1D3C5E;
}

.google {
  border-radius: 7px;
  overflow: hidden;
}

.soc {
  padding: 20px;
}

.soc ul li {
  margin-bottom: 20px;
}

.soc ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.soc ul li a span {
  color: #fff;
}

/* Overlay */
.loader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 9999;
}

/* Logo PNG animation */
.loader-logo {
  width: 120px;
  height: auto;
  -webkit-animation: pulse 1.5s ease-in-out infinite;
          animation: pulse 1.5s ease-in-out infinite;
}

/* Pulse animation */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 0.6;
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 0.6;
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 0.6;
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 0.6;
  }
}

/*end genral*/
@media (min-width: 1200px) {
  .container {
    max-width: 1250px;
  }
}

@media (max-width: 1200px) {
  .gw-tab-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .gtc__img {
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  .dog {
    overflow: hidden;
  }
  .img-kid {
    display: none;
  }
  .owl-slider .owl-dots {
    right: 10px;
    bottom: 30%;
  }
  .fl-ro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .half-back::after {
    width: 100%;
    height: 250px;
  }
  .o1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .o2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .o3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .ov-items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .ov-items .ovi-50 {
    width: 100%;
  }
  .ov-items .ovi-25 {
    width: 50%;
  }
  .elected-img {
    margin-top: 20px;
  }
  .elected-img img {
    width: 100%;
  }
  .border-r,
  .border-l {
    border: 0;
  }
  .nave-responsive {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 10px 15px;
  }
  .nave-responsive a img {
    width: 120px;
  }
  .in-title h2 {
    margin-bottom: 20px;
  }
  .legislation .ovi-30 {
    width: 100%;
  }
  .legislation {
    background-size: cover;
  }
  .overview {
    top: -200px;
  }
  .overview::before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    right: -30vw;
    background-color: #112334;
    height: 100%;
    width: 30vw;
  }
}

@media (max-width: 768px) {
  .over-top {
    padding: 0;
  }
  .header-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .ht__info {
    margin-bottom: 50px;
  }
  .list-contact {
    display: none;
  }
  .item-foot {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .ov-items .ovi-50 {
    width: 100%;
  }
  .ov-items .ovi-25 {
    width: 100%;
  }
  .national-info p,
  .iup-info p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
  }
  .main-card {
    margin-top: 20px;
  }
  .main-card a {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@media (max-width: 575.98px) {
  .gw-tab-container .gtc-tab .nav-item {
    min-width: 100%;
  }
}

/* ============ FOOTER ============ */
.site-footer {
  background: #0A396D;
  padding-top: 60px;
  margin-top: 60px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-col {
  flex: 1;
}

/* Brand Column */
.footer-col--brand {
  max-width: 280px;
}

.footer-logo {
  display: inline-block;
  background: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  margin-bottom: 24px;
}

.footer-logo img {
  width: 140px;
  display: block;
}

.footer-social-label {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social__link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-social__link:hover {
  background: #f68c1e;
  color: #fff;
  transform: translateY(-3px);
}

/* Links Column */
.footer-col--links {
  max-width: 200px;
}

.footer-title {
  color: #f68c1e;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #fff;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f68c1e;
}

/* Contact Column */
.footer-col--contact {
  max-width: 320px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #fff;
  font-size: 14px;
}

.footer-contact li i {
  color: #f68c1e;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.footer-contact li a {
  color: #fff;
  transition: color 0.3s ease;
}

.footer-contact li a:hover {
  color: #f68c1e;
}

.footer-map {
  border-radius: 8px;
  overflow: hidden;
}

/* Copyright Bar */
.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 18px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin: 0;
}

/* Footer Responsive */
@media (max-width: 991px) {
  .footer-main {
    flex-wrap: wrap;
  }

  .footer-col {
    flex: 1 1 45%;
    max-width: none;
  }

  .footer-col--brand {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 30px;
  }

  .footer-logo img {
    margin: 0 auto 24px;
    display: block;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .footer-main {
    flex-direction: column;
    text-align: center;
  }

  .footer-col {
    flex: 1 1 100%;
    margin-bottom: 30px;
  }

  .footer-col--links {
    max-width: none;
  }

  .footer-contact {
    justify-content: center;
  }

  .footer-contact li {
    justify-content: center;
  }
}

/* ============ COMPREHENSIVE RESPONSIVE FIXES ============ */

/* TABLET - 991px and below */
@media (max-width: 991px) {
  /* Navbar */
  .navbar-wrapper {
    padding: 14px 30px;
    margin-top: 15px !important;
  }

  .logo img {
    width: 140px;
  }

  /* Page offset */
  .page {
    top: -80px;
  }

  /* Who We Are section */
  .who-we-are {
    padding: 80px 20px 60px;
    top: -60px;
  }

  .who-content h2 {
    font-size: 36px;
  }

  .who-counters {
    margin-left: 20px;
    gap: 10px;
  }

  .counter {
    min-width: 120px;
    padding: 18px 20px 22px;
  }

  .counter .count {
    font-size: 38px;
  }

  /* Brands Carousel section */
  .who-we-are-shep {
    top: -80px;
    padding: 60px 20px 0;
    min-height: auto;
    background-size: cover;
  }

  .card-slid h2 {
    font-size: 32px;
  }

  .card-slid .owl-nav {
    margin-left: -30px;
    margin-right: -30px;
  }

  .card-slid .carousel-wrap {
    padding: 10px 40px;
  }

  /* Mission/Vision section */
  .mv-center-img img {
    width: 220px;
  }

  .mv-layout .mv-card {
    max-width: 340px;
    padding: 16px 20px;
  }

  .mv-layout .mv-title {
    font-size: 20px;
  }

  .mv-layout .mv-text {
    font-size: 12px;
  }

  /* Areas of Specialization */
  .who-we-are-shep1 {
    min-height: auto;
    background-size: cover;
  }

  .who-we-are-shep1 .spec__title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  /* Happy Clients section */
  .who-we-are-shep2 {
    min-height: auto;
    background-size: cover;
  }

  .who-we-are-shep2 .happy__title {
    font-size: 36px;
  }

  /* Why Choose SmartWin */
  .question .why__title {
    font-size: 34px;
  }

  .question .why__qmark {
    width: 280px;
  }

  /* Our Services */
  .who-OurServices {
    min-height: auto;
    background-size: cover;
  }
}

/* MOBILE - 768px and below */
@media (max-width: 768px) {
  /* Navbar */
  .navbar-wrapper {
    padding: 12px 16px;
    border-radius: 14px;
    margin-top: 10px !important;
  }

  .logo img {
    width: 120px;
  }

  /* Page offset */
  .page {
    top: -60px;
  }

  /* Video section */
  .video-card::after {
    bottom: -80px;
    height: 140px;
  }

  /* Who We Are section */
  .who-we-are {
    padding: 60px 16px 40px;
    top: -40px;
  }

  .who-content-wrapper {
    padding: 20px 16px;
  }

  .who-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .who-content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .who-counters {
    margin-left: 0;
    margin-top: 24px;
    gap: 8px;
    flex-wrap: wrap;
  }

  .counter {
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
    padding: 14px 12px 18px;
  }

  .counter .count {
    font-size: 28px;
  }

  .counter p {
    font-size: 12px;
  }

  .counter .label {
    font-size: 10px;
  }

  /* Brands Carousel section */
  .who-we-are-shep {
    top: -40px;
    padding: 40px 16px 0;
  }

  .card-slid h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .card-slid .carousel-wrap {
    padding: 10px 24px;
  }

  .card-slid .owl-nav {
    margin-left: -20px;
    margin-right: -20px;
  }

  .card-slid .owl-nav button {
    width: 20px;
    height: 16px;
  }

  .card-slid .brand-card {
    height: 180px;
  }

  /* Mission/Vision section */
  .balanc .mv-section {
    padding: 40px 0;
  }

  .mv-layout {
    padding: 0 16px;
  }

  .mv-center-img img {
    width: 160px;
  }

  .mv-layout .mv-card {
    padding: 16px;
  }

  .mv-layout .mv-title {
    font-size: 18px;
  }

  .mv-layout .mv-text {
    font-size: 11px;
  }

  /* Areas of Specialization */
  .who-we-are-shep1 {
    padding: 0 16px;
  }

  .who-we-are-shep1 .spec {
    padding: 40px 0;
  }

  .who-we-are-shep1 .spec__title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .who-we-are-shep1 .spec__grid {
    gap: 16px;
  }

  .who-we-are-shep1 .card {
    padding: 18px;
    min-height: auto;
  }

  .who-we-are-shep1 .card__title {
    font-size: 16px;
  }

  .who-we-are-shep1 .card__text {
    font-size: 11px;
  }

  /* Happy Clients section */
  .who-we-are-shep2 {
    padding: 0 16px;
  }

  .who-we-are-shep2 .happy {
    padding: 40px 0;
  }

  .who-we-are-shep2 .happy__title {
    font-size: 28px;
  }

  .who-we-are-shep2 .happy__desc {
    font-size: 13px;
    padding: 0 10px;
  }

  .who-we-are-shep2 .happy__word::after {
    left: 50px;
    width: 30px;
    height: 15px;
  }

  /* Why Choose SmartWin */
  .question .why {
    padding: 40px 0;
  }

  .question .why__title {
    font-size: 26px;
    margin-bottom: 24px;
  }

  .question .why__title p {
    font-size: 12px;
  }

  .question .why__content {
    padding: 0 16px;
  }

  .question .why__left {
    flex: 0 0 auto;
  }

  .question .why__qmark {
    width: 220px;
  }

  .question .why__right {
    gap: 20px;
  }

  .question .why__arrow {
    width: 36px;
    height: 36px;
  }

  .question .why__text {
    font-size: 13px;
  }

  /* Our Services */
  .who-OurServices {
    padding: 0 16px;
  }

  .who-OurServices .spec {
    padding: 40px 0;
  }

  .who-OurServices .spec__title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .who-OurServices .spec__grid {
    gap: 16px;
  }

  .who-OurServices .card {
    padding: 18px;
  }

  /* Who panel */
  .who__panel {
    padding: 80px 20px 60px;
  }

  .who__title {
    font-size: 28px;
  }

  .who__text {
    font-size: 12px;
  }

  /* Footer */
  .site-footer {
    padding-top: 40px;
    margin-top: 40px;
  }

  .footer-logo {
    padding: 10px 16px;
  }

  .footer-logo img {
    width: 120px;
  }

  .footer-title {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .footer-links a,
  .footer-contact li {
    font-size: 13px;
  }

  .footer-map iframe {
    height: 120px;
  }
}

/* SMALL MOBILE - 480px and below */
@media (max-width: 480px) {
  /* Navbar */
  .navbar-wrapper {
    padding: 10px 12px;
    margin-top: 8px !important;
  }

  .logo img {
    width: 100px;
  }

  /* Who We Are */
  .who-content h2 {
    font-size: 24px;
  }

  .who-content p {
    font-size: 13px;
  }

  .counter {
    flex: 1 1 100%;
  }

  .counter .count {
    font-size: 32px;
  }

  /* Brands Carousel */
  .card-slid h2 {
    font-size: 20px;
  }

  .card-slid .brand-card {
    height: 150px;
  }

  /* Mission/Vision */
  .mv-center-img img {
    width: 140px;
  }

  /* Section titles */
  .who-we-are-shep1 .spec__title,
  .who-we-are-shep2 .happy__title,
  .question .why__title,
  .who-OurServices .spec__title {
    font-size: 22px;
  }

  /* Why Choose SmartWin */
  .question .why__qmark {
    width: 180px;
  }

  .question .why__arrow {
    width: 30px;
    height: 30px;
  }

  .question .why__text {
    font-size: 12px;
  }

  /* Footer */
  .footer-social__link {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

/*# sourceMappingURL=style.css.map */
