.light-background {
  --background-color: #f3f4f4;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.services-item img{
    max-height: 150px !important;
}
/* Smooth scroll */
:root {
  scroll-behavior: smooth;

  /*
   * ─── Brand Color Mapping ────────────────────────────────────────────────────
   * Map admin panel dynamic colors (--color-primary/secondary/accent/dark)
   * to the legacy variables used throughout this template.
   * Fallback values match the original design.
   * ─────────────────────────────────────────────────────────────────────────── */

  /* Primary  → gold/brown tone  (#C29979 originally) */
  --brand-primary: var(--color-primary, #C29979);

  /* Secondary → deep blue        (#005C92 originally) */
  --brand-secondary: var(--color-secondary, #005C92);

  /* Accent   → teal              (#00AABF originally) */
  --brand-accent: var(--color-accent, #00AABF);

  /* Dark     → dark navy         (#132E41 originally) */
  --brand-dark: var(--color-dark, #132E41);
}

/* ────────────────────────────────────────────────────────────────────────────
 * Apply brand colors to every element that previously used hardcoded values
 * ──────────────────────────────────────────────────────────────────────────── */

/* ── Secondary color (#005C92) ── */
.widget .widget-heading,
.client-heading,
.mission-heading-third,
.mission-heading-about,
.goal-text-heading,
.section-subtitle,
.section-subtitle-about {
  color: var(--brand-secondary);
}

/* ── Primary color (#C29979) ── */
.mission-heading-second,
.mission-heading-second-about,
.goal-heading,
.section-subtitle-two,
.section-subtitle-two-about {
  color: var(--brand-primary);
}

.mission-text,
.mission-text-about-page {
  border-right-color: var(--brand-primary);
}

/* ── Accent color (#00AABF) ── */
.mission-heading,
.faq .custom-accordion .accordion-item .btn-link[aria-expanded="true"]:before,
.testimonial-btn {
  color: var(--brand-accent);
}

/* ── Dark color (#132E41) ── */
.mission-text,
.mission-text-about-page,
.mission-text-about,
.faq .custom-accordion .accordion-item .btn-link {
  color: var(--brand-dark);
}


/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  /* font-family: 'FFShamel', sans-serif !important; */
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: transparent;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 88px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 300;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    padding: 10px 10px;
    font-size: 17px;
    /* font-family: 'FFShamel', sans-serif !important; */
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin-top: 2px;
    padding: 5px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    width: 120px;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 2px 20px;
    font-size: 15px;
    text-transform: none;
    border-bottom: 1px solid #000;
    width: 120px;

  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    padding: 10px 20px;
    /* font-family: 'FFShamel', sans-serif !important; */
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-align: center;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown ul a {
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    /* color: #fff; */
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background:
      url(../img/mobil-nav-bg.png) top left no-repeat,
      url(../img/mobil-nav-bg.png) bottom right no-repeat;
    background-color: #fff;
    /* This ensures a white background color */
    background-repeat: no-repeat;
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  /* background: linear-gradient(180deg, #3b2a14 0%, #5a3e1b 35%, #7a5628 60%, #a07038 80%, #c8a055 100%) !important; */
  color: #f5e6cc !important;
  background: #30230e;
  padding: 60px 0 40px;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

/* Subtle decorative overlay */
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 80%, rgba(200, 160, 85, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 20%, rgba(255, 243, 226, 0.10) 0%, transparent 50%);
  pointer-events: none;
}

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

.footer-text {
  color: rgba(245, 230, 204, 0.80);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}

.footer a {
  color: rgba(245, 230, 204, 0.85) !important;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer a:hover {
  color: #f5e6cc !important;
}

.footer .copyright {
  margin-top: 50px;
  position: relative;
  padding-top: 20px;
  border-top: 1px solid rgba(245, 215, 144, 0.20);
}

/* Footer logo: ensure visibility on dark gradient */
.footer .logo-img-footer {
  filter: brightness(1.1) drop-shadow(0 1px 4px rgba(0, 0, 0, 0.25));
}

.footer .logo-text {
  color: #f5e6cc;
  font-weight: 700;
  font-size: 1.2rem;
}

.footer .copyright p,
.footer .copyright .credits {
  margin: 2px 0;
}

.footer .btn-learn-more {
  background-color: var(--accent-color);
  border-radius: 30px;
  padding: 8px 30px;
  border: 2px solid transparent;
  transition: 0.3s all ease-in-out;
  font-size: 14px;
  color: var(--contrast-color) !important;
}

.footer .btn-learn-more:hover {
  border-color: var(--accent-color);
  background-color: transparent;
  color: var(--accent-color) !important;
}

.footer .widget .widget-heading {
  font-size: 16px;
  font-weight: 700;
  color: #f5d790;
  margin-bottom: 20px;
  padding-right: 0;
  letter-spacing: 0.02em;
}

/* ---- Footer Nav Lists ---- */
.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-nav-list li a {
  color: rgba(245, 230, 204, 0.70) !important;
  font-size: 15px;
  font-weight: 400;
  transition: color 0.25s ease, padding-right 0.25s ease;
  display: inline-block;
}

.footer-nav-list li a:hover {
  color: #f5e6cc !important;
  padding-right: 4px;
  text-decoration: none;
}

/* ---- Social Icon Circles ---- */
.footer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  margin: 3px;
}

.footer-social-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245, 215, 144, 0.15);
  border: 1px solid rgba(245, 215, 144, 0.30);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.footer-social-circle i {
  font-size: 16px;
  color: #f5d790;
  transition: color 0.3s ease;
}

.footer-icon a:hover .footer-social-circle {
  background: #c8a055;
  border-color: #c8a055;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(200, 160, 85, 0.40);
}

.footer-icon a:hover .footer-social-circle i {
  color: #1a1006;
}

/* ---- Contact List ---- */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-contact-list li a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  text-decoration: none;
}

.footer-contact-icon {
  font-size: 17px;
  color: #f5d790;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-text {
  font-size: 14px;
  color: rgba(245, 230, 204, 0.80);
  word-break: break-word;
}

/* Care Email Block */
.footer-care-email-item {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(245, 215, 144, 0.25);
}

.footer-care-email-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #f5d790;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.footer-care-email-text {
  font-size: 13px;
  color: rgba(245, 230, 204, 0.75);
}

.footer .footer-subscribe form {
  position: relative;
}

.footer .footer-subscribe .form-control {
  font-size: 14px;
  height: 42px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 40%);
  background: none;
  color: var(--heading-color);
  padding-right: 40px;
}

.footer .footer-subscribe .form-control:focus {
  border-color: color-mix(in srgb, var(--default-color), transparent 10%);
  box-shadow: none;
}

.footer .footer-subscribe .form-control::placeholder {
  color: color-mix(in srgb, var(--heading-color), transparent 60%);
}

.footer .footer-subscribe .btn-link {
  padding: 0;
  margin: 0;
  font-size: 1.5rem;
  background-color: none;
  border-color: none;
  position: absolute;
  line-height: 0;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  top: 20px;
  right: 10px;
  transform: translateY(-50%) rotate(0deg);
}

.footer .footer-subscribe .btn-link:hover,
.footer .footer-subscribe .btn-link:focus,
.footer .footer-subscribe .btn-link:active {
  text-decoration: none;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 300;
  margin: 0 0 5px 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 50px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 0;
}

.section-title p {
  font-size: 15px;
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about-section {

  background: #ffffff url(../img/main-bg-two.png) no-repeat center center;
  background-size: contain;
  margin-top: -186px;
  padding-top: 30%;
  padding-bottom: 10%;
  opacity: 0.35;
}

.about-section-inner {
  background: url('../img/pattern-main-bg.png') no-repeat top center;
  background-size: contain;
}

.about .btn-get-started {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  padding: 8px 30px;
  border: 2px solid transparent;
  transition: 0.3s all ease-in-out;
  font-size: 14px;
}

.about .btn-get-started:hover {
  border-color: var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
}

.about h1 {
  color: var(--heading-color);
  font-size: 30px;
}

.about p {
  line-height: 1.7;
  color: var(--default-color);
}

.about .swiper-pagination {
  position: absolute;
  bottom: 30px;
}

.about .swiper-pagination .swiper-pagination-bullet {
  margin: 0 5px;
  background: #ffffff;
  opacity: 0.3;
}

.about .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  opacity: 1;
}

.section-subtitle {
  font-size: 70px;
  font-weight: bold;
  color: #005C92;
}

.section-subtitle-about {
  font-size: 48px;
  font-weight: 600;
  color: #005C92;
}

.section-subtitle-two {
  font-size: 34px;
  font-weight: bold;
  color: #BD9677;
}

.section-subtitle-two-about {
  font-size: 48px;
  font-weight: 600;
  color: #BD9677;
}

.para-text {
  color: #091721;
  font-size: 24px;
  font-weight: 400;

}

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 .content {
  background-color: var(--surface-color);
  padding-top: 50px;
  padding-bottom: 50px;
}

.about-2 .content-subtitle {
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
  color: var(--default-color);
}

.about-2 .content-title {
  color: var(--heading-color);
  font-size: 22px;
  margin-bottom: 30px;
}

.about-2 p {
  line-height: 1.7;
  color: var(--default-color);
}

.about-2 .btn-get-started {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  padding: 8px 30px;
  border: 2px solid transparent;
  transition: 0.3s all ease-in-out;
  font-size: 14px;
}

.about-2 .btn-get-started:hover {
  border-color: var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
}

.about-2 .lead {
  line-height: 1.6;
  font-size: 18px;
  font-weight: normal;
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services-section {
  background: url('../img/Pattern-services.png') no-repeat center center;
  background-size: contain;
}

.services-tab-bg {
  background-color: #00000052;
  background-size: cover;
  padding: 8% 4%;
  border-radius: 20px;
  text-align: center;
  height: 330px;
}

.services-tab-bg-one {
  background: url('../img/service-one-bg.png') no-repeat center center;
  background-size: cover;
  padding: 10%;
  border-radius: 32px;
  text-align: center;
}

.services-tab-bg-two {
  background: url('../img/service-two-bg.png') no-repeat center center;
  background-size: cover;
  padding: 10%;
  border-radius: 32px;
  text-align: center;
}

.logo-img {
  width: 100%;
  max-width: 100%;
}

.logo-img-footer {
  width: 75%;
  max-width: 100%;
  margin-top: -20px;
}

.services-tab-bg-three {
  background: url('../img/service-three-bg.png') no-repeat center center;
  background-size: cover;
  padding: 15% 10%;
  border-radius: 32px;
  text-align: center;
}

.services-tab-bg-four {
  background: url('../img/service-four-bg.png') no-repeat center center;
  background-size: cover;
  padding: 10%;
  border-radius: 32px;
  text-align: center;
}

.services-tab-bg-five {
  background: url('../img/service-five-bg.png') no-repeat center center;
  background-size: cover;
  padding: 10%;
  border-radius: 32px;
  text-align: center;
}

.services-tab-bg-six {
  background: url('../img/service-six bg.png') no-repeat center center;
  background-size: cover;
  padding: 10%;
  border-radius: 32px;
  text-align: center;
}

.services-tab-bg-seven {
  background: url('../img/service-seven-bg.png') no-repeat center center;
  background-size: cover;
  padding: 10%;
  border-radius: 32px;
  text-align: center;
}

.services-tab-bg-eight {
  background: url('../img/service-eight-bg.png') no-repeat center center;
  background-size: cover;
  padding: 10%;
  border-radius: 32px;
  text-align: center;
}

.services-tab-bg-nine {
  background: url('../img/service-nine-bg.png') no-repeat center center;
  background-size: cover;
  padding: 10%;
  border-radius: 32px;
  text-align: center;
}

.services-tab-bg-ten {
  background: url('../img/service-ten-bg.png') no-repeat center center;
  background-size: cover;
  padding: 10%;
  border-radius: 32px;
  text-align: center;
}

.service-heading {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.service-heading-two {
  font-size: 48px;
  font-weight: 600;
  color: var(--brand-accent);
  text-align: center;
}

.service-heading-two-new {
  font-size: 48px;
  font-weight: 600;
  color: #C29979;
  text-align: center;
}

.service-text-middle {
  padding-top: 25%;
}

.service-text {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-align: center;
}

.services {
  padding-top: 60px;
  padding-bottom: 60px;
}

.services .services-item .services-icon {
  color: var(--accent-color);
  margin-bottom: 20px;
}

.services .services-item .services-icon i {
  font-size: 48px;
}

.services .services-item h3 {
  font-size: 17px;
  font-weight: 400;
  color: var(--heading-color);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/

.mission-heading {
  font-size: 50px;
  font-weight: 400;
  color: var(--brand-secondary);
  text-align: center;
}

.mission-heading-second {
  font-size: 50px;
  font-weight: 400;
  color: #C29979;
  text-align: center;
}

.mission-heading-second-about {
  font-size: 48px;
  font-weight: 600;
  color: #C29979;
  text-align: center;
}

.mission-heading-third {
  font-size: 48px;
  font-weight: 700;
  color: var(--brand-primary);
  text-align: center;
}

.mission-heading-about {
  font-size: 48px;
  font-weight: 400;
  color: var(--brand-secondary);
  text-align: center;
}

.mission-image {
  width: 100%;
  background-size: cover;
}

.value-image {
  width: 100%;
  background-size: cover;
  /*margin-top: -50px;*/
}

.mission-text {
  font-size: 24px;
  /*margin-top: -150px;*/
  font-weight: 500;
  color: #132E41;
  width: 64%;
  padding: 20px;
  border-right: 5px solid #C29979;
}

.mission-text-about-page {
  font-size: 24px;
  margin-top: -150px;
  font-weight: 500;
  color: #132E41;
  width: 74%;
  padding: 20px;
  border-right: 5px solid #C29979
}

.mission-text-about {
  font-size: 24px;
  font-weight: 500;
  color: #132E41;
  padding: 20px;
  text-align: center;
}

.vission-bg {
  background: url('../img/vission-bg.png') no-repeat center center;
  background-size: cover;
  border-radius: 20px;
  padding: 5%;
}

.vission-heading {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
}

.vission-text {
  font-size: 28px;
  font-weight: 400;
  color: #D9D9D9;

}

.vision-img {
  margin-top: -100px;
}

.goal-img {
  margin-top: -100px;
}

.vision-img-about {
  margin-top: -160px;
}

.goal-heading {
  font-size: 45px;
  font-weight: 600;
  color: #C29979;
  margin-top: -55px;
}

.goal-text-heading {
  font-size: 42px;
  font-weight: 600;
  color: var(--brand-primary);

}

.goal-text {
  font-size: 24px;
  font-weight: 400;
  color: #6E6E6E;

}

.goal-padding {
  padding: 4% 6%;
}









.stats {
  padding-top: 60px;
}

.stats .content-subtitle {
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
  color: var(--default-color);
}

.stats .lead {
  line-height: 1.6;
  font-size: 18px;
  font-weight: normal;
  color: var(--default-color);
}

.stats .content-title {
  color: var(--heading-color);
  font-size: 22px;
  margin-bottom: 30px;
}

.stats p {
  line-height: 1.7;
  color: var(--default-color);
}

.stats .btn-get-started {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  padding: 8px 30px;
  border: 2px solid transparent;
  transition: 0.3s all ease-in-out;
  font-size: 14px;
}

.stats .btn-get-started:hover {
  border-color: var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
}

.stats .count-numbers .number {
  font-size: 1.8rem;
  color: var(--heading-color);
  position: relative;
  display: block;
  padding-bottom: 7px;
  margin-bottom: 10px;
}

.stats .count-numbers .number:after {
  content: "";
  left: 0;
  bottom: 0;
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--accent-color);
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts .title-wrap {
  padding-bottom: 30px;
}

.blog-posts .content-subtitle {
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
  color: var(--default-color);
}

.blog-posts .content-title {
  color: var(--heading-color);
  font-size: 22px;
  margin-bottom: 30px;
}

.blog-posts .post-entry .thumb {
  margin-bottom: 20px;
}

.blog-posts .post-entry .thumb img {
  transition: 0.3s all ease;
}

.blog-posts .post-entry .thumb:hover img {
  opacity: 0.8;
}

.blog-posts .post-entry .meta {
  font-size: 12px;
  margin-bottom: 20px;
}

.blog-posts .post-entry .meta .cat {
  text-transform: uppercase;
  font-weight: normal;
  color: var(--heading-color);
}

.blog-posts .post-entry .meta .date {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.blog-posts .post-entry .post-content {
  padding-left: 30px;
  padding-right: 30px;
}

.blog-posts .post-entry .post-content h3 {
  font-size: 18px;
  line-height: 1.2;
}

.blog-posts .post-entry .post-content h3 a {
  color: var(--heading-color);
}

.blog-posts .post-entry .post-content h3 a:hover {
  color: var(--accent-color);
}

.blog-posts .author .pic {
  flex: 0 0 50px;
  margin-right: 20px;
}

.blog-posts .author .author-name {
  line-height: 1.3;
}

.blog-posts .author .author-name strong {
  color: var(--heading-color);
  font-weight: normal;
}

.blog-posts .author .author-name span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
.tabs .service-item .service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 4px;
  position: relative;
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  margin-right: 20px;
  font-size: 16px;
}

.tabs .service-item .service-contents h3 {
  font-size: 16px;
  color: var(--heading-color);
}

.tabs .service-item.link {
  padding: 20px;
  margin-bottom: 10px;
  border-radius: 7px;
}

.tabs .service-item.link .service-contents {
  color: var(--default-color);
}

.tabs .service-item.link .service-contents *:last-child {
  margin-bottom: 0;
}

.tabs .service-item.link:hover {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
}

.tabs .service-item.link:hover .service-icon {
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
}

.tabs .service-item.link.active {
  background: var(--surface-color);
}

.tabs .service-item.link.active .service-icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 .content-subtitle {
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
  color: var(--default-color);
}

.services-2 .content-title {
  color: var(--heading-color);
  font-size: 22px;
  margin-bottom: 30px;
}

.services-2 p {
  line-height: 1.7;
  color: var(--default-color);
}

.services-2 .lead {
  line-height: 1.6;
  font-size: 18px;
  font-weight: normal;
  color: var(--default-color);
}

.services-2 .btn-get-started {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  padding: 8px 30px;
  border: 2px solid transparent;
  transition: 0.3s all ease-in-out;
  font-size: 14px;
}

.services-2 .btn-get-started:hover {
  border-color: var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
}

.services-2 .services-item .services-icon {
  color: var(--accent-color);
  margin-bottom: 20px;
}

.services-2 .services-item .services-icon i {
  font-size: 48px;
}

.services-2 .services-item h3 {
  font-size: 17px;
  font-weight: 400;
  color: var(--heading-color);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.pricing .pricing-item h3 {
  padding: 15px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
}

.pricing .pricing-item h4 {
  color: var(--accent-color);
  font-size: 42px;
  /* font-family: 'FFShamel', sans-serif !important; */
  font-weight: 500;
}

.pricing .pricing-item h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .pricing-item ul {
  padding: 20px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .pricing-item ul li {
  padding-bottom: 16px;
}

.pricing .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  text-decoration: line-through;
}

.pricing .pricing-item .btn-wrap {
  padding: 15px;
  text-align: center;
}

#service-types-mobile {
  display: none;
}

#service-types-web {
  display: block;
}

.pricing .pricing-item .btn-buy {
  color: var(--accent-color);
  background-color: transparent;
  border: 2px solid var(--accent-color);
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 50px;
  font-size: 14px;
  /* font-family: 'FFShamel', sans-serif !important; */
  font-weight: 600;
  transition: 0.3s;
}

.pricing .pricing-item .btn-buy:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .recommended .btn-buy {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .recommended .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .recommended-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 13px;
  padding: 3px 25px 6px 25px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border-radius: 50px;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
#faq {
  direction: rtl;
}

.faq .content-subtitle {
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
  color: var(--default-color);
}

.faq .content-title {
  color: var(--heading-color);
  font-size: 22px;
  margin-bottom: 30px;
}

.faq p {
  line-height: 1.7;
  color: var(--default-color);
}

.faq .custom-accordion .accordion-item {
  background-color: var(--surface-color);
  margin-bottom: 0px;
  position: relative;
  overflow: hidden;
  border: 1px solid #cdc5c5;
  border-radius: 10px;
}

.faq .custom-accordion .accordion-item .btn-link {
  display: block;
  width: 100%;
  padding: 15px 0;
  text-decoration: none;
  color: var(--default-color);
  border: none;
  padding-left: 40px;
  border-radius: 0;
  position: relative;
  font-size: 20px;
  font-weight: 600;
  background-color: #fff;
  color: #132E41;
}

.faq .custom-accordion .accordion-item .btn-link:before {
  content: "+";
  display: inline-block;
  font-family: inherit;
  font-size: 20px;
  font-weight: 600;
  width: 28px;
  height: 28px;
  color: #6F6C90;
  background-color: #F7F7FF;
  text-align: center;
  line-height: 35px;
  border-radius: 4px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  transition: all 0.3s ease;
}

.faq .custom-accordion .accordion-item .btn-link[aria-expanded="true"]:before {
  color: #fff;
  background-color: #00AABF;
  content: "-";
}

.faq .custom-accordion .accordion-item .btn-link[aria-expanded=true] {
  color: var(--accent-color);
}



.faq .custom-accordion .accordion-item .accordion-body {
  padding: 20px 20px 20px 20px;
  color: #6E6E6E;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials-section {

  background: url('../img/pattern-main-bg.png') no-repeat center center;
  background-size: cover;
  padding: 0px;
  margin-top: -50px;
}

.testimonial-bg-one {
  background: linear-gradient(to bottom,
      rgba(19, 46, 65, 0.2) 0%,
      rgba(19, 46, 65, 0.8) 66%,
      rgba(19, 46, 65, 1) 100%), url('../img/news-one-bg.jpg') no-repeat center center;
  background-size: cover;
  margin: 5px;
  padding: 8% 5%;
  border-radius: 15px;
}

.testimonial-bg-two {
  background: linear-gradient(to bottom,
      rgba(19, 46, 65, 0.2) 0%,
      rgba(19, 46, 65, 0.8) 66%,
      rgba(19, 46, 65, 1) 100%), url('../img/news-two-bg.jpg') no-repeat center center;
  background-size: cover;
  margin: 5px;
  padding: 8% 5%;
  border-radius: 15px;
}

.testimonial-bg-three {
  background: linear-gradient(to bottom,
      rgba(19, 46, 65, 0.2) 0%,
      rgba(19, 46, 65, 0.8) 66%,
      rgba(19, 46, 65, 1) 100%), url('../img/news-three-bg.jpg') no-repeat center center;
  background-size: cover;
  margin: 5px;
  padding: 8% 5%;
  border-radius: 15px;
}

.testimonial-bg-four {
  background: linear-gradient(to bottom,
      rgba(19, 46, 65, 0.2) 0%,
      rgba(19, 46, 65, 0.8) 66%,
      rgba(19, 46, 65, 1) 100%), url('../img/news-one-bg.jpg') no-repeat center center;
  background-size: cover;
  margin: 5px;
  padding: 8% 5%;
  border-radius: 15px;
}

.testimonial-heading {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
}

.client-heading {
  color: var(--brand-primary);
  font-size: 48px;
  font-weight: 600;
  text-align: center;
}

.testimonial-text {
  color: #C3C3C3;
  font-size: 14px;
  font-weight: 400;
}

#service-pattern-text {
  display: block;
}

.testimonial-btn {
  color: var(--brand-primary);
  background: #fff url('../img/left-arrow.png') no-repeat left 5px center;
  font-size: 16px;
  font-weight: 400;
  padding-left: 30px;
  padding-top: 5px;
  padding-right: 10px;
  border: 1px solid #fff;
  border-radius: 20px;

}

.testimonials .testimonial {
  max-width: 500px;
  text-align: center;
  margin-bottom: 30px;
}

.testimonials .testimonial .name {
  font-size: 18px;
  color: var(--heading-color);
}

.testimonials .testimonial .img-wrap img {
  margin: 0 auto;
  width: 70px;
  border-radius: 50%;
}

.testimonials .swiper-pagination {

  bottom: 0px;
  padding-top: 30px;
}

.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {

  top: 96.5%;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  margin: 0 5px;
  padding-top: 30px;
  background-color: color-mix(in srgb, var(--default-color) 65%, transparent);
  opacity: 0.3;
}

.testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  opacity: 1;
}

swiper-pagination {
  position: relative !important;
  text-align: center;
  transition: .3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination-bullet {
  width: auto;
  height: auto;
  margin: 0 5px;
  font-size: 16px;
  /* Adjust size as needed */
  line-height: 1;
  color: #000;
  /* Customize color */
  background: none;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  transition: color 0.3s ease;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  /* font-family: 'FFShamel', sans-serif !important; */
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

.portfolio-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team h3 {
  font-size: 20px;
}

.team .team h3 a {
  color: var(--heading-color);
}

.team .team .pic {
  margin-bottom: 30px;
}

.team .team .pic img {
  border-radius: 4px;
}

.team .team .position {
  display: block;
  margin-bottom: 20px;
  font-size: 14px;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
}

.team p {
  line-height: 1.7;
  color: var(--default-color);
}

.team .more {
  position: relative;
  padding-right: 30px;
  display: inline-block;
}

.team .more span {
  position: absolute;
  top: 50%;
  right: 0;
  font-size: 16px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: transparent;
  color: var(--contrast-color);
  line-height: 1.6;
  text-align: center;
  transition: 0.3s all ease;
}

.team .more span:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.team .more:hover {
  color: var(--contrast-color);
}

.team .more:hover span {
  background: var(--accent-color);
}

.team .more.dark {
  color: var(--default-color);
}

.team .more.dark>span {
  color: var(--default-color);
}

.team .more.dark:hover {
  color: var(--accent-color);
}

.team .more.dark:hover span {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.team .swiper-wrapper {
  height: auto;
}

.team .slider-nav a {
  width: 40px;
  height: 40px;
  position: relative;
  background: var(--accent-color);
  border-radius: 4px;
  transition: 0.2s all ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .slider-nav a i {
  color: var(--contrast-color);
}

.team .slider-nav a:hover {
  background-color: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

.team .slider-nav a:first-child {
  margin-right: 5px;
}

/*--------------------------------------------------------------
# Blog Posts 2 Section
--------------------------------------------------------------*/
.blog-posts-2 article {
  height: 100%;
}

.blog-posts-2 .post-img {
  max-height: 440px;
  overflow: hidden;
}

.blog-posts-2 .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 5px 0;
}

.blog-posts-2 .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts-2 .title a:hover {
  color: var(--accent-color);
}

.blog-posts-2 .meta-top {
  margin-top: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts-2 .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-posts-2 .meta-top i {
  font-size: 24px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.blog-posts-2 .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info {
  background-color: var(--surface-color);
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact .info h3 {
  font-weight: 600;
  font-size: 24px;
}

.contact .info p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 30px;
  font-size: 15px;
}

.contact .info-item+.info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .info-item i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email] {
  height: 48px;
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
  height: 290px;
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 13px 50px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  margin: 60px 0 30px 0;
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  padding: 0 0 0 10px;
  margin: 0 0 20px 0;
  border-left: 4px solid var(--accent-color);
}

.widget-item {
  margin-bottom: 30px;
  background-color: color-mix(in srgb, var(--default-color), transparent 98%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 30px;
  border-radius: 5px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.blog-author-widget img {
  max-width: 160px;
}

.blog-author-widget h4 {
  font-weight: 600;
  font-size: 24px;
  margin: 15px 0 0 0;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author-widget .social-links {
  margin: 5px 0;
}

.blog-author-widget .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin: 0 3px;
  font-size: 18px;
}

.blog-author-widget .social-links a:hover {
  color: var(--accent-color);
}

.blog-author-widget p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 10px 0 0 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.recent-posts-widget .post-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

.index-page {
  direction: rtl;
}

.about-page {
  direction: rtl;
}

.service-page {
  direction: rtl;
}

.nav-bg {
  background-color: #E5E5E533;
  /* 20% opacity */
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  padding: 8px;

}

/* General Styling */
.icons-container {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.icon img {
  width: 50px;
  height: 50px;

}

.icon.active img {
  transform: scale(1.2);
  background-color: #005C92;
  border-radius: 50%;
}

/* Carousel Container */
.carousel-container {
  position: relative;
  height: 450px;
  overflow: hidden;
}

/* Content rows */
.content-row {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.content-row.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Icon and Content Row Animations */
@keyframes highlight {

  0%,
  20% {
    transform: scale(1.2);
    background-color: var(--brand-primary);
  }

  25%,
  100% {
    transform: scale(1);
    background-color: transparent;
  }
}

@keyframes carousel-row {

  0%,
  20% {
    opacity: 1;
    transform: translateY(0);
  }

  25%,
  100% {
    opacity: 0;
    transform: translateY(-100%);
  }
}

/* Synchronizing animations */
.icon:nth-child(1) {
  animation: highlight 15s infinite ease-out;
  border-radius: 50%;
  width: 75px;
  height: 75px;
  padding: 1.5% 1%;
  text-align: center;
}

.icon:nth-child(2) {
  animation: highlight 15s infinite ease-out 3s;
  border-radius: 50%;
  width: 75px;
  height: 75px;
  padding: 1.5% 1%;
  text-align: center;
}

.icon:nth-child(3) {
  animation: highlight 15s infinite ease-out 6s;
  border-radius: 50%;
  padding: 1.5% 1%;
  width: 75px;
  height: 75px;
  text-align: center;
}

.icon:nth-child(4) {
  animation: highlight 15s infinite ease-out 9s;
  border-radius: 50%;
  padding: 1.5% 1%;
  width: 75px;
  height: 75px;
  text-align: center;
}

.icon:nth-child(5) {
  animation: highlight 15s infinite ease-out 12s;
  border-radius: 50%;
  padding: 1.5% 1%;
  width: 75px;
  height: 75px;
  text-align: center;
}

.content-row:nth-of-type(1) {
  animation: carousel-row 15s infinite ease-out;
}

.content-row:nth-of-type(2) {
  animation: carousel-row 15s infinite ease-out 3s;
}

.content-row:nth-of-type(3) {
  animation: carousel-row 15s infinite ease-out 6s;
}

.content-row:nth-of-type(4) {
  animation: carousel-row 15s infinite ease-out 9s;
}

.content-row:nth-of-type(5) {
  animation: carousel-row 15s infinite ease-out 12s;
}

/* ─── Single goal: no animation, always visible ─── */
#goals.single-goal .icon {
  animation: none;
}

#goals.single-goal .content-row {
  animation: none;
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

#goals.single-goal .carousel-container {
  height: auto;
  overflow: visible;
}



.cleint-bg {

  border: 1px solid #005C92;
  border-radius: 20px;
  padding: 2%;
}

.custom-col {
  flex: 0 0 20%;
  max-width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.service-slide {

  background: url('../img/service-slide.png') no-repeat center center;
  background-size: cover;
  width: 100%;
  padding: 5%;
  height: 600px;
}

.service-slide-two {

  background: url('../img/news-six-bg.png') no-repeat center center;
  background-size: cover;
  width: 100%;
  padding: 5%;
  height: 600px;
}

.service-slide-three {

  background: url('../img/gallery-three-bg.png') no-repeat center center;
  background-size: cover;
  width: 100%;
  padding: 5%;
  height: 600px;
}

.service-slide-four {

  background: url('../img/service-page-four-bg.png') no-repeat center center;
  background-size: cover;
  width: 100%;
  padding: 5%;
  height: 600px;
}

.service-slide-five {

  background: url('../img/service-page-five-bg.png') no-repeat center center;
  background-size: cover;
  width: 100%;
  padding: 5%;
  height: 600px;
}

.service-bg {

  background: url('../img/service-bg.png') no-repeat center center;
  background-size: cover;
  width: 100%;
}

.service-type-heading {
  font-size: 30px;
  font-weight: 700;
  color: #005C92;
  line-height: 36px;

}

.service-type-heading-numbers {
  font-size: 24px;
  font-weight: 600;
  color: #005C92;
}

.service-span-heading {
  font-size: 32px;
  font-weight: 700;
  color: #BD9677;
}

.patter-service-img {
  width: 98%;

}

.about-gallery-section-new {

  background: url('../img/background-pattern.png') no-repeat top center;
  background-size: cover;
  margin-top: -245px;
  padding-top: 15%;
  padding-bottom: 18%;
}

.about-gallery-section {

  background: url('../img/pattern-main-bg.png') no-repeat top center;
  background-size: contain;
  margin-top: -240px;
  padding-top: 11.5%;
}

.main-pattern-section {

  background: url('../img/pattern-main-bg.png') no-repeat top center;
  background-size: contain;
  margin-top: -80px;
  padding-top: 7%;
}

.main-pattern-section-gallery {

  background: url('../img/pattern-main-bg.png') no-repeat top center;
  background-size: cover;
  margin-top: -80px;
  padding-top: 7%;
}

.service-pattern-section {

  background: url('../img/pattern-main-bg.png') no-repeat top center;
  background-size: cover;
  margin-top: -80px;
  padding-top: 7%;
}

.faq-section {

  background: url('../img/pattern-main-bg.png') no-repeat top center;
  background-size: cover;
  margin-top: -80px;
  padding-top: 7%;
}

.news-section {

  background: url('../img/pattern-main-bg.png') no-repeat center center;
  background-size: cover;
  margin-top: -106px;
  padding-top: 6%;
}

.gallery-bg-one {
  background: linear-gradient(to bottom,
      rgba(19, 46, 65, 0.2) 0%,
      rgba(19, 46, 65, 0.8) 66%,
      rgba(19, 46, 65, 1) 100%), url('../img/gallery-one-bg.png') no-repeat center center;
  background-size: cover;
  margin: 5px;
  padding: 5%;
  padding-bottom: 2%;
  border-radius: 15px;
  height: 300px;
  align-content: flex-end;
}

.gallery-bg-two {
  background: linear-gradient(to bottom,
      rgba(19, 46, 65, 0.2) 0%,
      rgba(19, 46, 65, 0.8) 66%,
      rgba(19, 46, 65, 1) 100%), url('../img/gallery-two-bg.png') no-repeat center center;
  background-size: cover;
  margin: 5px;
  padding: 5%;
  padding-bottom: 2%;
  border-radius: 15px;
  height: 300px;
  align-content: flex-end
}

.gallery-bg-three {
  background: linear-gradient(to bottom,
      rgba(19, 46, 65, 0.2) 0%,
      rgba(19, 46, 65, 0.8) 66%,
      rgba(19, 46, 65, 1) 100%), url('../img/gallery-three-bg.png') no-repeat center center;
  background-size: cover;
  margin: 5px;
  padding: 5%;
  padding-bottom: 2%;
  border-radius: 15px;
  height: 300px;
  align-content: flex-end
}

.gallery-bg-repeat {
  background: linear-gradient(to bottom,
      rgba(19, 46, 65, 0.2) 0%,
      rgba(19, 46, 65, 0.8) 66%,
      rgba(19, 46, 65, 1) 100%), #132E41 url('../img/gallery-one-bg.png') no-repeat center center;
  background-size: cover;
  margin: 5px;
  padding: 5%;
  padding-bottom: 2%;
  border-radius: 15px;
  height: 300px;
  align-content: flex-end
}

.gallery-bg-four {
  background: linear-gradient(to bottom,
      rgba(19, 46, 65, 0.2) 0%,
      rgba(19, 46, 65, 0.8) 66%,
      rgba(19, 46, 65, 1) 100%), #132E41 url(../img/gallery-four-bg.png) no-repeat center center;
  background-size: cover;
  margin: 5px;
  padding: 5%;
  padding-bottom: 2%;
  border-radius: 15px;
  height: 300px;
  align-content: flex-end
}

.gallery-bg-five {
  position: relative;
  /* Needed for overlay alignment */
  background:
    linear-gradient(to bottom,
      rgba(19, 46, 65, 0.2) 0%,
      rgba(19, 46, 65, 0.8) 66%,
      rgba(19, 46, 65, 1) 100%),
    url(../img/gallery-five-bg.png) no-repeat center center;
  background-size: cover;
  margin: 5px;
  padding: 5%;
  padding-bottom: 2%;
  border-radius: 15px;
  height: 300px;
  align-content: flex-end
}

.gallery-bg-six {
  background: linear-gradient(to bottom,
      rgba(19, 46, 65, 0.2) 0%,
      rgba(19, 46, 65, 0.8) 66%,
      rgba(19, 46, 65, 1) 100%), url('../img/gallery-six-bg.png') no-repeat center center;
  background-size: cover;
  margin: 5px;
  padding: 5%;
  padding-bottom: 2%;
  border-radius: 15px;
  height: 300px;
  align-content: flex-end
}

.news-btn {
  background-color: #005C92;
  font-size: 18px;
  color: #ffffff;
  font-weight: 400;
  border: 1px solid #fff;
  border-radius: 20px;
  width: 15%;
  padding: 6px;
  text-align: center;
}

.contact-form-heading {
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.contact-form-text {
  font-size: 17px;
  font-weight: 400;

}

.contact-form-section {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgb(215 211 211 / 50%);
  padding: 4%;
}

.form-btn {
  background-color: #005C92;
  font-size: 18px;
  color: #ffffff;
  font-weight: 400;
  border: 1px solid #fff;
  border-radius: 20px;
  width: 15%;
  padding: 6px;
}

.lable-text {
  font-size: 16px;
  font-weight: 600;
  color: #161616;
}

.placeholder-text {
  color: #efefef;
  font-weight: 400;
  font-size: 16px;
}

.number-color {
  color: #00AABF;
  font-weight: 700;
  font-size: 40Fpx;

}

.button-contact {
  padding: 2px;
  padding-right: 15px;
  border-radius: 15px;
  margin-right: 30px;
}

.goal-two {
  width: 90%;
  border-radius: 25px;
  background-size: contain;
  background-position: center;
  height: auto;
}

.goal-one {
  width: 90%;

}

.service-number-img {
  width: 100%;
  background-size: cover;
  margin-right: -50px;
}

.service-number-div {
  margin-top: -120px;
}

.slider-image {
  width: 75%;
  max-width: 100%;
  border-radius: 20px;
  margin-top: 60px;
}

.image-slide-column {
  text-align: left;
  float: left;
  padding-left: 5%;
}

.text-slide-column {
  padding-top: 4%;
}

.carousel-inner img {
  transition: transform 0.5s ease-in-out;
}

.service-type-bg {

  background: url('../img/services-bg.png') no-repeat center center;
  background-size: cover;
}

.arrow-three-img-number {
  margin-right: -70px;
}

.arrow-two-img-number {
  margin-top: -180px;
}

.about-slide-two {
  padding-top: 2%;
}

.vission-arrow-img {
  width: 18%;
  margin-right: 160px;
  margin-top: -100px;
}

.slider-last-home {
  background: var(--brand-primary) url(../img/pattern-main-bg.png) no-repeat center center;
  background-size: cover;
  width: 100%;
  padding: 5%;
}

.slider-heading {
  font-size: 48px;
  font-weight: 600;
  color: #ffffff;
}

.last-slider-img-class {
  width: 100%;
}

.slides-heading {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
}

.slides-text {
  color: #C3C3C3;
  font-size: 20px;
  font-weight: 400;
}

.swiper-pagination-bullet::before {
  content: '__';
  font-weight: 900;
  font-size: 30px;
  letter-spacing: 2px;
  -webkit-text-stroke: 1px;
  color: #fff;
  border-radius: 10px;
}

.swiper-pagination-bullet-active::before {
  content: '__';
  color: #fff;
  font-weight: bolder;
  -webkit-text-stroke: 1.5px;
  border-radius: 10px;
}

@media screen and (max-width: 600px) {
  .main-column-text {
    background: #fff;
    padding: 5%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    position: absolute;
    top: 65%;
    z-index: 100;
    width: 90%;
  }

  .swiper-slide {
    flex-shrink: 0;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block;
    margin-left: 0px !important;
  }

  .section-subtitle {
    font-size: 42px;
  }

  .section-subtitle-two {
    font-size: 22px;
  }

  .about-section-two {
    margin-top: 0px;
    padding-top: 50%;
  }

  .about-section {
    margin-top: -60px;
    padding-top: 20%;
    padding-bottom: 20%;
  }

  .service-heading-two {
    font-size: 28px;
  }

  .service-heading-two-new {
    font-size: 28px;
  }

  .service-heading {
    font-size: 24px;
  }

  .service-text-middle {
    padding-top: 10%;
  }

  .mission-heading {
    font-size: 24px;
  }

  .mission-heading-second {
    font-size: 24px;
  }

  .mission-heading-third {
    font-size: 24px;
  }

  .mission-text {
    font-size: 16px;
    margin-top: -65px;
    width: 100%;
  }

  .mission-image {
/*     margin-top: -110px; */
    width: 100%;
    height: 480px;
    background-size: cover;
  }

  .vission-arrow-img {
    width: 18%;
    margin-right: 120px;
    margin-top: -80px;
  }

  .vission-heading {
    font-size: 32px;
    padding-top: 6%;
  }

  .vission-text {
    font-size: 16px;
    width: 65%;
  }

  .goal-heading {
    font-size: 24px;
    margin-top: 10px;
  }

  .goal-heading-subtitle {
    font-size: 28px;
  }

  .goal-text-heading {
    font-size: 20px;
    margin-top: 20px;
  }

  .goal-text {
    font-size: 16px;
  }

  .slides-heading {
    font-size: 20px;
    padding-top: 10%;
  }

  .slides-text {
    font-size: 16px;
  }

  .client-heading {
    font-size: 20px;
  }

  .cleint-bg {
    padding: 10% 3%;
  }

  .button-contact {
    padding-right: 15px;
    border-radius: 15px;
    margin-right: 10px;
  }

  .header {
    padding: 0%;
  }

  .about-multi-color-heading {
    font-size: 32px;
    line-height: 48px;
  }

  .about-gallery-section {
    margin-top: -50px;
    padding-top: 1%;
    background: url(../img/pattern-main-bg.png) no-repeat center center;
    background-size: contain;
    padding: 2%;
  }

  .about-gallery-section-new {
    margin-top: -100px;
    padding-top: 1%;
    background: url(../img/background-pattern.png) no-repeat;
    background-size: cover;
    padding: 0%;
    padding-bottom: 10%;
  }

  .image-slide-column {
    text-align: left;
    float: left;
    padding-left: 8%;
    padding-top: 15%;
  }

  .about-small-heading {
    font-size: 18px;
  }

  .para-text {
    font-size: 16px;
  }

  .about-span-heading {
    font-size: 32px;
  }

  img.image-main-bc.aos-init.aos-animate {
    width: 90%;
  }

  .two-image-about {
    position: relative;
    left: 0%;
    width: 125%;
  }

  .three-image-about {
    margin-top: -55px;
    position: relative;
    left: 4%;
    width: 100%;
  }

  .about-span-heading-offer {
    font-size: 30px;
  }

  .about-multi-color-heading-offer {
    font-size: 30px;
    line-height: 38px;
  }

  .offer-text {
    font-size: 14px;

  }

  .offer-box {
    height: 180px;
  }

  .main-column-text-about {
    background: #fff;
    padding: 5%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    position: absolute;
    top: 63%;
    z-index: 100;
    width: 85%;
  }

  .about-two-bg {
    padding-top: 25%;
    padding-bottom: 25%;
    margin-top: 280px;
  }

  .value-image {
    width: 100%;
    background-size: contain;
    height: 300px;
    margin-top: -70px;
  }

  .mission-text-about {
    font-size: 16px;
  }

  .mission-heading-about {
    font-size: 32px;
  }

  .mission-heading-second-about {
    font-size: 32px;
  }

  .mission-text-about-page {
    font-size: 16px;
    margin-top: 0px;
    width: 100%;
  }

  .slider-heading {
    font-size: 24px;
    padding: 20px 5px;
  }

  .section-subtitle-about {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
  }

  .news-btn {
    width: 35%;
    padding-top: 10px;
  }

  .news-container {
    padding: 2% 10%;
  }

  .testimonial-bg-two {
    margin-top: 8%;
  }

  .testimonial-bg-three {
    margin-top: 8%;
  }

  .news-heading {
    font-size: 24px;
  }

  .news-inner-text {
    font-size: 12px;
  }

  .faq .custom-accordion .accordion-item .btn-link {
    font-size: 16px;
  }

  .faq .custom-accordion .accordion-item .accordion-body {
    font-weight: 600;
    font-size: 14px;
    text-align: center;
  }

  .footer-icon {
    display: flex;
    width: 10%;
  }

  .widget {
    padding-top: 2%;
  }

  .footer a {
    font-size: 16px;
  }

  .footer-contact-text {
    font-size: 16px;
  }

  section,
  .section {
    padding: 20px 0;
  }

  .services-tab-bg {

    padding: 3% 2%;
  }

  .service-type-heading {
    font-size: 20px;
  }

  .service-span-heading {
    font-size: 20px;
  }

  .patter-service-img {
    width: 100%;
    height: 40%;
  }

  .contact-section {
    padding: 5%;
  }

  .form-btn {
    padding: 6px;
    padding-top: 10px;
    width: 25%;
  }

  .vision-img {
    margin-top: -200px;
    width: 40%;
    float: left;
  }

  .slider-image {
    width: 90%;
    max-width: 100%;
  }

  .stats-section {
    padding-top: 10%;
  }

  .section-subtitle-two-about {
    font-size: 34px;
    text-align: center;
  }

  .vision-img-about {
    margin-top: -200px;
    width: 40%;
    float: left;
  }

  .goal-img {
    margin-top: -40px;
    width: 39%;
    float: left;
  }

  .goal-two {
    width: 95%;
  }

  .about-slide-two {
    padding-top: 3%;
  }

  .service-heading-padding-top {
    padding-top: 12%;
  }

  .news-section {
    margin-top: -84px;
    padding-top: 15%;

  }

  .testimonials-section {
    margin-top: 0px;
  }

  #service-types-mobile {
    display: block;
  }

  #service-types-web {
    display: none;
  }

  .service-number-img {
    margin-right: 0px;
  }

  .padding-service-mob {
    padding: 10% 2%;
  }

  #service-pattern-text {
    display: none;
  }

  .padding-mob {
    padding: 3%;
  }

  .service-slide {

    background: url('../img/service-slide.png') no-repeat center center;
    background-size: cover;
    width: 100%;
    padding: 8%;
    height: 350px;
  }

  .service-slide-two {

    background: url('../img/news-six-bg.png') no-repeat center center;
    background-size: cover;
    width: 100%;
    padding: 8%;
    height: 350px;
  }

  .service-slide-three {

    background: url('../img/gallery-three-bg.png') no-repeat center center;
    background-size: cover;
    width: 100%;
    padding: 8%;
    height: 350px;
  }

  .service-slide-four {

    background: url('../img/service-page-four-bg.png') no-repeat center center;
    background-size: cover;
    width: 100%;
    padding: 8%;
    height: 350px;
  }

  .service-slide-five {

    background: url('../img/service-page-five-bg.png') no-repeat center center;
    background-size: cover;
    width: 100%;
    padding: 8%;
    height: 350px;
  }

  .icons-container {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    margin-right: 20px;
    padding-left: 5%;
  }

  /* Synchronizing animations */
  .icon:nth-child(1) {
    animation: highlight 15s infinite ease-out;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    padding: 1.5% 1%;
    text-align: center;
  }

  .icon:nth-child(2) {
    animation: highlight 15s infinite ease-out 3s;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    padding: 1.5% 1%;
    text-align: center;
  }

  .icon:nth-child(3) {
    animation: highlight 15s infinite ease-out 6s;
    border-radius: 50%;
    padding: 1.5% 1%;
    width: 65px;
    height: 65px;
    text-align: center;
  }

  .icon:nth-child(4) {
    animation: highlight 15s infinite ease-out 9s;
    border-radius: 50%;
    padding: 1.5% 1%;
    width: 65px;
    height: 65px;
    text-align: center;
  }

  .icon:nth-child(5) {
    animation: highlight 15s infinite ease-out 12s;
    border-radius: 50%;
    padding: 1.5% 1%;
    width: 65px;
    height: 65px;
    text-align: center;
  }

  /* Carousel Container */
  .carousel-container {
    position: relative;
    height: 500px;
    overflow: hidden;
  }











}

/* =============================================================
 * FAQ Page – Accordion Styles
 * ============================================================= */

/* ── Page section background ── */
.faq-section {
  background: linear-gradient(160deg, #f7f9fc 0%, #eef3f9 100%);
  min-height: 70vh;
  padding: 60px 0 80px;
}

/* ── Accordion wrapper ── */
.custom-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Each accordion item ── */
.custom-accordion .accordion-item {
  background: #ffffff;
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(19, 46, 65, 0.07);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  margin-bottom: 12px !important;
  margin-top: 0 !important;
}

.custom-accordion .accordion-item:hover {
  box-shadow: 0 6px 24px rgba(19, 46, 65, 0.14);
  transform: translateY(-1px);
}

/* ── Question button ── */
.custom-accordion .btn-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 22px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-dark, #132E41);
  text-decoration: none;
  background: transparent;
  border: none;
  text-align: right;
  direction: rtl;
  gap: 12px;
  cursor: pointer;
  /* transition: background 0.25s ease; */
}

/* Arrow icon via pseudo-element */
.custom-accordion .btn-link::after {
  content: '\f107';
  /* bi bi-chevron-down equivalent via Unicode ▾ */
  font-family: 'bootstrap-icons', sans-serif;
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 400;
  flex-shrink: 0;
  color: var(--brand-primary, #C29979);
  transition: transform 0.3s ease;
  display: inline-block;
}

/* Rotate arrow when open */
.custom-accordion .btn-link:not(.collapsed)::after {
  transform: rotate(180deg);
}

/* Active question – gold left border + light tint */
.custom-accordion .btn-link:not(.collapsed) {
  color: var(--brand-secondary, #005C92);
  background: linear-gradient(90deg, rgba(0, 92, 146, 0.05) 0%, transparent 100%);
}

/* Gold left border for open item */
.custom-accordion .accordion-item:has(.btn-link:not(.collapsed)) {
  border-right: 4px solid var(--brand-primary, #C29979);
}

/* ── Answer body ── */
.custom-accordion .accordion-body {
  padding: 0 22px 20px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #4a5568;
  direction: rtl;
  text-align: right;
  border-top: 1px solid rgba(19, 46, 65, 0.07);
  visibility: visible !important;
  /* override any theme .collapse {visibility:collapse} inheritance */
}

/* Force collapse wrappers inside FAQ to be visible when they are "show" */
.custom-accordion .collapse.show,
.custom-accordion .collapsing {
  visibility: visible !important;
}

/* ── Focus ring (accessibility) ── */
.custom-accordion .btn-link:focus {
  outline: 2px solid var(--brand-primary, #C29979);
  outline-offset: 2px;
}

/* ── Collapse animation ── */
.custom-accordion .collapse,
.custom-accordion .collapsing {
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .faq-section {
    padding: 40px 0 60px;
  }

  .custom-accordion .btn-link {
    font-size: 0.9rem;
    padding: 15px 16px;
  }

  .custom-accordion .accordion-body {
    font-size: 0.88rem;
    padding: 0 16px 16px;
  }
}