

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
  --arabic-font: "Cairo", sans-serif;
}

/* Font Display Optimization */
@font-face {
  font-family: "Roboto";
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  font-display: swap;
}

@font-face {
  font-family: "Cairo";
  font-display: swap;
}

/* Arabic font styling */
[dir="rtl"],
[lang="ar"] {
  font-family: var(--arabic-font);
}

[dir="rtl"] body,
[dir="rtl"] p,
[dir="rtl"] span,
[dir="rtl"] a,
[dir="rtl"] li,
[dir="rtl"] td,
[dir="rtl"] th,
[dir="rtl"] div,
[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4,
[dir="rtl"] h5,
[dir="rtl"] h6,
[lang="ar"] body,
[lang="ar"] p,
[lang="ar"] span,
[lang="ar"] a,
[lang="ar"] li,
[lang="ar"] td,
[lang="ar"] th,
[lang="ar"] div,
[lang="ar"] h1,
[lang="ar"] h2,
[lang="ar"] h3,
[lang="ar"] h4,
[lang="ar"] h5,
[lang="ar"] h6 {
  font-family: var(--arabic-font);
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #1A1A1A; /* Default color used for the majority of the text content across the entire website - Text Dark (Charcoal) */
  --heading-color: #002C5C; /* Color for headings, subheadings and title throughout the website - Primary (Navy Blue) */
  --accent-color: #F9C300; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out - Accent Yellow */
  --surface-color: #E6E6E6; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. - Secondary Gray */
  --contrast-color: #F5F7FA; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. - Text Light (White Smoke) */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #F5F7FA;  /* The default color of the main navmenu links - Text Light for navy background */
  --nav-hover-color: #F9C300; /* Applied to main navmenu links when they are hovered over or active - Accent Yellow */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #1A1A1A; /* Used for navigation links of the dropdown items in the navigation menu. - Text Dark */
  --nav-dropdown-hover-color: #F9C300; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. - Accent Yellow */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #E6E6E6;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #002C5C;
  --default-color: #F5F7FA;
  --heading-color: #F5F7FA;
  --surface-color: #0E3D78;
  --contrast-color: #F5F7FA;
}

/* Section Background Alternates */
.section-gray {
  background-color: #E6E6E6;
}

.section-navy {
  background-color: #002C5C;
  color: #F5F7FA;
}

.section-navy h1,
.section-navy h2,
.section-navy h3,
.section-navy h4,
.section-navy h5,
.section-navy h6 {
  color: #F5F7FA;
}

/* Yellow Accent Dividers & Icons */
.divider-yellow {
  border-top: 2px solid var(--accent-color);
  width: 50px;
  margin: 20px auto;
}

.icon-yellow {
  color: var(--accent-color);
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

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: var(--heading-font);
}

/* 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);
  }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--contrast-color);
  background-color: #002C5C;
  padding: 5px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 60px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--accent-color);
}

/* Hero Contact button - ensure brand colors on icon/text */
.hero .btn-contact-accent {
  background-color: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
  color: var(--heading-color) !important;
}

.hero .btn-contact-accent i,
.hero .btn-contact-accent span {
  color: #002c5c !important;
}

.hero .btn-contact-accent:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 12%) !important;
  border-color: color-mix(in srgb, var(--accent-color), #000 12%) !important;
}

.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 {
    color: var(--nav-color);
    padding: 6px 12px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  [dir="rtl"] .navmenu a,
  [dir="rtl"] .navmenu a:focus {
    font-family: var(--arabic-font);
  }

  .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;
  }

  /* Language Switcher Styles */
  .navmenu .language-switcher {
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid color-mix(in srgb, var(--nav-color), transparent 50%);
  }

  [dir="rtl"] .navmenu .language-switcher {
    margin-left: 0;
    margin-right: 15px;
    padding-left: 0;
    padding-right: 15px;
    border-left: none;
    border-right: 1px solid color-mix(in srgb, var(--nav-color), transparent 50%);
  }

  .navmenu .language-switcher {
    display: flex;
    align-items: center;
  }

  .navmenu .language-switcher a {
    padding: 4px 10px;
    margin: 0 2px;
    border-radius: 4px;
    transition: all 0.3s;
    font-weight: 500;
    display: inline-flex;
  }

  .navmenu .language-switcher a:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
  }

  .navmenu .language-switcher a.active {
    background-color: var(--accent-color);
    color: #002C5C;
    font-weight: 600;
  }

  .navmenu .language-switcher span {
    color: color-mix(in srgb, var(--nav-color), transparent 40%);
    margin: 0 4px;
    font-weight: 300;
  }

  /* Override default nav hover for language switcher */
  .navmenu .language-switcher:hover>a {
    color: inherit;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu li:not(.language-switcher):hover>a,
  .navmenu li:not(.language-switcher) .active,
  .navmenu li:not(.language-switcher) .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    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: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .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: 24px;
    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;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  [dir="rtl"] .navmenu a,
  [dir="rtl"] .navmenu a:focus {
    font-family: var(--arabic-font);
  }

  .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: #002C5C;
}

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  /* Language Switcher Mobile Styles */
  .navmenu .language-switcher {
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-top: 10px;
    padding-top: 15px;
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }

  [dir="rtl"] .navmenu .language-switcher {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
  }

  .navmenu .language-switcher a {
    display: inline-flex;
    padding: 6px 14px;
    margin: 0 4px;
    border-radius: 4px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    background-color: transparent;
    transition: all 0.3s;
    font-weight: 500;
    /* Ensure the language text is visible in the dark mobile sidebar */
    color: #ffffff;
  }

  .navmenu .language-switcher a:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-color: var(--accent-color);
    color: #002C5C;
  }

  .navmenu .language-switcher a.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #002C5C;
    font-weight: 600;
  }

  .navmenu .language-switcher span {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    margin: 0 6px;
  }

.navmenu .active i,
.navmenu .active:focus i {
  background-color: var(--accent-color);
  color: #002C5C;
  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: #ffffff;
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: #ffffff;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 28px;
    top: 5px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--contrast-color);
  background-color: #002C5C;
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--contrast-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
}

.footer .footer-about .logo img {
  max-height: 60px;
  height: auto;
  width: auto;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--accent-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
  display: flex;
  background-color: rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: transparent;
  color: var(--contrast-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: #002C5C;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: #D8A900;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--contrast-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

.footer .credits a {
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: 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 var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s 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: 20px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #002C5C;
  line-height: 0;
}

.scroll-top:hover {
  background-color: #D8A900;
  color: #002C5C;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 90px; /* Position below WhatsApp button (20px + 60px + 10px gap) */
}

@media (max-width: 768px) {
  .scroll-top {
    right: 15px;
  }
  
  .scroll-top.active {
    bottom: 80px; /* Position below WhatsApp button on mobile (15px + 55px + 10px gap) */
  }
}

/*--------------------------------------------------------------
# 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: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.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: 60px 0;
  scroll-margin-top: 55px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 35px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 80vh;
  position: relative;
  padding: 90px 0 0 0 !important;
  padding-bottom: 0 !important;
  display: flex;
  align-items: center;
  background-size: cover;
  overflow: hidden;
}

/* Video Background */
.hero-video-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  width: calc(100%) !important;
  max-width: calc(100%) !important;
  height: 90% !important;
  z-index: 0;
  object-fit: cover;
  object-position: center;
  background: #002C5C;
  display: block;
}

/* Ensure video fits perfectly on mobile */
@media (max-width: 768px) {
  .hero-video-bg {
    width: 100% !important;
    height: 100% !important;
    min-height: 60vh !important;
    max-width: 100% !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    object-fit: cover !important;
    object-position: center !important;
  }
}

/* Mobile Poster Image Background */
.hero-video-mobile {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 80vh;
  z-index: 0;
  display: none;
  pointer-events: none; /* Allow clicks to pass through */
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #002C5C; /* Fallback color */
}

.hero-mobile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  min-height: 80vh;
  position: absolute;
  top: 0;
  left: 0;
}

/* Show video on mobile - ensure it displays properly */
@media (max-width: 768px) {
  .hero-video-desktop {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 60vh !important;
    max-width: 100vw !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 0 !important;
    object-fit: cover !important;
    object-position: center !important;
  }
  /* Hide mobile image div on mobile since we're showing video */
  .hero-video-mobile {
    display: none !important;
    visibility: hidden !important;
  }
  /* Remove background color from hero section on mobile to show video */
  .hero.section,
  .hero {
    background-color: transparent !important;
    background-image: none !important;
  }
}

@media (min-width: 769px) {
  .hero-video-mobile {
    display: none !important;
    visibility: hidden !important;
  }
  .hero-video-desktop {
    display: block !important;
  }
}

/* Overlay for text readability */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
  .hero-overlay {
    height: 100%;
    min-height: 60vh; /* Match hero section mobile height */
  }
}

/* Ensure content stays above video */
.hero .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 1200px) {
  .hero {
    padding: 60px 0 0 0;
  }
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: var(--contrast-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero .btn-get-started {
  color: #002C5C;
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: #002C5C;
  background: #D8A900;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

/* Learn More Button - Overview Section */
.btn-learn-more {
  color: #002C5C;
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  border: none;
}

.btn-learn-more:hover {
  color: #002C5C;
  background: #D8A900;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
  text-decoration: none;
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--contrast-color);
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: #D8A900;
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

/* About Image Wrapper */
.about-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#about .about-image-wrapper img.img-fluid,
#about .about-image-wrapper .about-image {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.about-image-wrapper .about-image-box {
  position: absolute;
  bottom: 5%;
  right: -5%;
  width: 95%;
  padding-bottom: 67.67%;
  background: var(--accent-color);
  /* border-radius: 12px; */
  z-index: 1;
  box-shadow: 0 8px 25px rgba(249, 195, 0, 0.3);
  transition: all 0.3s ease;
  pointer-events: none;
}

.about-image-wrapper .about-image-box:hover {
  box-shadow: 0 12px 35px rgba(249, 195, 0, 0.4);
}

/* RTL adjustments for about image box */
[dir="rtl"] .about-image-wrapper .about-image-box {
  right: auto;
  left: -5%;
}

/* RTL layout - reverse row direction so image appears on left */
[dir="rtl"] #about .row {
  flex-direction: row-reverse !important;
}

/* Ensure RTL order works correctly - image first (left), text second (right) */
[dir="rtl"] #about .about-image-col {
  order: 1 !important;
}

[dir="rtl"] #about .about-text-col {
  order: 2 !important;
}

/* Override Bootstrap order-lg classes for RTL */
@media (min-width: 992px) {
  [dir="rtl"] #about .about-image-col.order-lg-2 {
    order: 1 !important;
  }
  
  [dir="rtl"] #about .about-text-col.order-lg-1 {
    order: 2 !important;
  }
}

/* Center content in about section */
#about .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

#about .content p {
  font-size: 0.95rem;
  line-height: 1.7;
}

#about .content h2 {
  font-size: 2rem;
}

@media (max-width: 991px) {
  #about .content {
    align-items: center;
    text-align: center;
  }
  
  #about .content p {
    font-size: 1rem;
  }
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
}

.about .content ul i {
  flex-shrink: 0;
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0;
}

.about .content ul h5 {
  font-size: 18px;
  font-weight: 700;
}

.about .content ul p {
  font-size: 15px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/* Overview Image Decorative Box */
#overview .col-lg-6.position-relative {
  padding-bottom: 0;
}

.overview-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#overview .overview-image-wrapper img.img-fluid {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.overview-image-wrapper .overview-image-box {
  position: absolute;
  bottom: 5%;
  right: -5%;
  width: 95%;
  padding-bottom: 67.67%;
  background: var(--accent-color);
  /* border-radius: 12px; */
  z-index: 1;
  box-shadow: 0 8px 25px rgba(249, 195, 0, 0.3);
  transition: all 0.3s ease;
  pointer-events: none;
}

.overview-image-wrapper .overview-image-box:hover {
  box-shadow: 0 12px 35px rgba(249, 195, 0, 0.4);
}

/* RTL adjustments for overview image box */
[dir="rtl"] .overview-image-wrapper .overview-image-box {
  right: auto;
  left: -5%;
}

/* RTL layout - reverse row direction so image appears on left */
[dir="rtl"] #overview .row {
  flex-direction: row-reverse !important;
}

/* Ensure RTL order works correctly - image first (left), text second (right) */
[dir="rtl"] #overview .overview-image-col {
  order: 1 !important;
}

[dir="rtl"] #overview .overview-text-col {
  order: 2 !important;
}

/* Override Bootstrap order-lg classes for RTL */
@media (min-width: 992px) {
  [dir="rtl"] #overview .overview-image-col.order-lg-2 {
    order: 1 !important;
  }
  
  [dir="rtl"] #overview .overview-text-col.order-lg-1 {
    order: 2 !important;
  }
}

/* Center content in overview section */
#overview .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

#overview .content p {
  font-size: 0.95rem;
  line-height: 1.7;
}

#overview .content h3 {
  font-size: 1.75rem;
}

@media (max-width: 991px) {
  #overview .content {
    align-items: center;
    text-align: center;
  }
  
  #overview .content p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .overview-image-wrapper .overview-image-box {
    bottom: 5%;
    right: -5%;
    width: 95%;
    padding-bottom: 67.67%;
  }
  
  [dir="rtl"] .overview-image-wrapper .overview-image-box {
    right: auto;
    left: -5%;
  }
  
  .overview-image-wrapper {
    margin-bottom: 2rem;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .features .features-item+.features-item {
    margin-top: 40px;
  }
}

.features .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

.features .features-item ul {
  list-style: none;
  padding: 0;
}

.features .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

.features .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .features-item p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  padding: 60px 30px 60px 70px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.services .service-item .icon {
  position: absolute;
  left: -20px;
  top: calc(50% - 30px);
}

.services .service-item .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

@media (min-width: 1365px) {
  .services .service-item:hover {
    transform: translateY(-10px);
  }

  .services .service-item:hover h3 {
    color: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Professional Service Cards Design
--------------------------------------------------------------*/
.services .service-card-modern {
  background: #ffffff;
  border-radius: 8px;
  padding: 40px 30px;
  overflow: hidden;
  position: relative;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Hide unused elements */
.services .service-card-bg-layer-1,
.services .service-card-bg-layer-2,
.services .service-card-bg-layer-3,
.services .card-shape-top-left,
.services .card-shape-bottom-right,
.services .service-top-decoration,
.services .service-top-decoration-glow,
.services .service-card-number,
.services .service-featured-badge,
.services .service-hover-overlay,
.services .icon-pulse {
  display: none;
}

/* Icon Section */
.services .service-card-icon-section {
  padding: 0 0 25px 0;
  text-align: center;
}

.services .service-icon-modern {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 8px;
  position: relative;
}

.services .service-icon-modern i {
  font-size: 32px;
  color: var(--accent-color);
}

/* Card Body */
.services .service-card-body {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.services .service-card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 12px 0;
  line-height: 1.4;
  text-align: left;
}

[dir="rtl"] .services .service-card-title {
  text-align: right;
}

.services .service-card-description {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 0 20px 0;
  text-align: left;
  flex: 1;
}

[dir="rtl"] .services .service-card-description {
  text-align: right;
}

.services .service-card-description-full {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 0 20px 0;
  text-align: left;
}

[dir="rtl"] .services .service-card-description-full {
  text-align: right;
}

/* Toggle More Button */
.services .service-toggle-more {
  background: none;
  border: none;
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 0;
  margin: 0 0 20px 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-align: left;
}

[dir="rtl"] .services .service-toggle-more {
  text-align: right;
}

.services .service-toggle-more i {
  font-size: 12px;
}

/* Card Footer */
.services .service-card-footer {
  padding: 20px 0 0 0;
  border-top: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

/* Service Card Button */
.services .service-card-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--accent-color);
  color: var(--heading-color);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  border-radius: 6px;
  text-align: center;
}

.services .service-card-btn i {
  font-size: 14px;
}

/* Quality Badge */
.services .service-quality-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  background: color-mix(in srgb, var(--heading-color), transparent 95%);
  color: var(--heading-color);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
}

.services .service-quality-badge i {
  font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .services .service-card-modern {
    padding: 30px 20px;
  }
  
  .services .service-card-icon-section {
    padding: 0 0 20px 0;
  }
  
  .services .service-icon-modern {
    width: 60px;
    height: 60px;
  }
  
  .services .service-icon-modern i {
    font-size: 28px;
  }
  
  .services .service-card-title {
    font-size: 18px;
  }
  
  .services .service-card-footer {
    flex-direction: column;
    align-items: stretch;
  }
  
  .services .service-card-btn {
    width: 100%;
  }
}

.services .service-item-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.services .service-item-enhanced:hover::before {
  opacity: 1;
}

.services .service-item-enhanced:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.15);
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

/* Service Number Badge */
.services .service-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 14px;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-family: var(--heading-font);
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

[dir="rtl"] .services .service-number {
  right: auto;
  left: 20px;
}

.services .service-item-enhanced:hover .service-number {
  color: var(--accent-color);
  transform: scale(1.1);
}

/* Icon Wrapper */
.services .service-icon-wrapper {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services .service-icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  opacity: 0.15;
  transform: rotate(-5deg);
  transition: all 0.4s ease;
}

.services .service-item-enhanced:hover .service-icon-bg {
  opacity: 0.25;
  transform: rotate(5deg) scale(1.1);
}

.services .service-icon {
  position: relative;
  z-index: 2;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.services .service-icon i {
  font-size: 36px;
  transition: all 0.4s ease;
}

.services .service-item-enhanced:hover .service-icon {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.services .service-item-enhanced:hover .service-icon i {
  transform: scale(1.1) rotate(5deg);
  filter: brightness(1.2);
}

/* Service Content */
.services .service-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.services .service-content h3 {
  font-weight: 700;
  margin: 0 0 15px 0;
  font-size: 22px;
  line-height: 1.3;
  color: var(--heading-color);
  transition: all 0.3s ease;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services .service-item-enhanced:hover .service-content h3 {
  color: var(--accent-color);
  transform: translateY(-2px);
}

.services .service-content p {
  line-height: 1.8;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 25px;
  min-height: 72px;
}

.services .service-item-enhanced:hover .service-content p {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

/* Service Link */
.services .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 10px 20px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  flex-shrink: 0;
}

.services .service-link i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.services .service-link:hover {
  background: var(--accent-color);
  color: var(--heading-color);
  transform: translateX(5px);
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 50%);
}

[dir="rtl"] .services .service-link:hover {
  transform: translateX(-5px);
}

.services .service-link:hover i {
  transform: translateX(3px);
}

[dir="rtl"] .services .service-link:hover i {
  transform: translateX(-3px);
}

/* Service Overlay */
.services .service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.services .service-item-enhanced:hover .service-overlay {
  opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
  .services .service-content h3 {
    font-size: 20px;
    min-height: 52px;
  }
  
  .services .service-content p {
    min-height: 68px;
  }
}

@media (max-width: 768px) {
  .services .service-item-enhanced {
    padding: 30px 25px;
  }
  
  .services .service-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
  }
  
  .services .service-icon {
    width: 60px;
    height: 60px;
  }
  
  .services .service-icon i {
    font-size: 30px;
  }
  
  .services .service-content h3 {
    font-size: 19px;
    min-height: auto;
    margin-bottom: 12px;
  }
  
  .services .service-content p {
    font-size: 14px;
    min-height: auto;
    margin-bottom: 20px;
  }
  
  .services .service-number {
    top: 15px;
    right: 15px;
    font-size: 12px;
  }
  
  [dir="rtl"] .services .service-number {
    right: auto;
    left: 15px;
  }
}

/* Service Badge */
.services .service-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #f3268c, #d91f7a);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(243, 38, 140, 0.3);
  animation: pulse-badge 2s infinite;
}

[dir="rtl"] .services .service-badge {
  left: auto;
  right: 15px;
}

.services .service-badge i {
  font-size: 10px;
}

@keyframes pulse-badge {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Service Icon Shine Effect */
.services .service-icon-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
  transform: rotate(-45deg);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: 3;
}

.services .service-item-enhanced:hover .service-icon-shine {
  opacity: 1;
  animation: shine-sweep 1.5s ease;
}

@keyframes shine-sweep {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(-45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(-45deg);
  }
}

/* Service Description Text */
.services .service-description-text {
  line-height: 1.8;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.services .service-description-full {
  line-height: 1.8;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 15px;
}

/* Read More Button */
.services .service-read-more {
  background: none;
  border: none;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  padding: 5px 0;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-align: center;
  width: 100%;
  justify-content: center;
}

.services .service-read-more i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.services .service-read-more:hover i {
  transform: translateY(2px);
}

.services .service-read-more:hover {
  color: color-mix(in srgb, var(--accent-color), black 20%);
}

/* Service Footer */
.services .service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  flex-shrink: 0;
}

/* Service Stats */
.services .service-stats {
  display: flex;
  gap: 10px;
  align-items: center;
}

.services .service-stat-item {
  display: flex;
  align-items: center;
  gap: 4px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 12px;
}

.services .service-stat-item i {
  font-size: 14px;
  color: #20c997;
}

/* Service Corner Accent */
.services .service-corner-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  border-radius: 24px 0 24px 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

[dir="rtl"] .services .service-corner-accent {
  right: auto;
  left: 0;
  border-radius: 0 24px 0 24px;
}

.services .service-item-enhanced:hover .service-corner-accent {
  opacity: 0.1;
}

/* Enhanced Service Content Layout */
.services .service-content h3 {
  flex-shrink: 0;
}

.services .service-description-text,
.services .service-description-full {
  flex: 1 1 auto;
  min-height: 0;
}

/* Dark mode adjustments */
.dark-background .services .service-item-enhanced {
  border-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
}

.dark-background .services .service-icon {
  background: color-mix(in srgb, var(--surface-color), var(--background-color) 30%);
}

/* Additional Card Enhancements */
.services .service-item-enhanced {
  position: relative;
  overflow: visible;
}

.services .service-item-enhanced::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--accent-color), transparent);
  border-radius: 26px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.services .service-item-enhanced:hover::after {
  opacity: 0.05;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .services .service-badge {
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    font-size: 11px;
  }
  
  [dir="rtl"] .services .service-badge {
    left: auto;
    right: 10px;
  }
  
  .services .service-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .services .service-link {
    width: 100%;
    justify-content: center;
  }
  
  .services .service-read-more {
    margin-bottom: 10px;
  }
}

/*--------------------------------------------------------------
# Enhanced Service Cards with Images
--------------------------------------------------------------*/
.services .service-card-enhanced {
  background: #fff;
  border-radius: 16px;
  overflow: visible;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
}

.services .service-card-enhanced:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.services .service-image-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.services .service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.services .service-card-enhanced:hover .service-image {
  transform: scale(1.1);
}

.services .service-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.services .service-image-placeholder i {
  font-size: 4rem;
  opacity: 0.8;
}

.services .service-overlay-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  pointer-events: none;
}

.services .service-number-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--heading-color);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

[dir="rtl"] .services .service-number-badge {
  right: auto;
  left: 15px;
}

.services .service-card-content {
  padding: 25px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.services .service-icon-badge {
  position: absolute;
  top: -30px;
  right: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  z-index: 2;
}

[dir="rtl"] .services .service-icon-badge {
  right: auto;
  left: 25px;
}

.services .service-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 15px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.services .service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  line-height: 1.3;
  flex: 1;
  min-width: 0;
}

.services .service-description-container {
  margin-bottom: 20px;
  min-height: 120px;
  position: relative;
}

.services .service-description-container.expanded {
  min-height: 120px;
}

.services .service-description-full {
  margin-top: 10px;
}

.services .service-description,
.services .service-description-short,
.services .service-description-full p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.services .service-expand-btn {
  background: none;
  border: none;
  color: var(--accent-color);
  padding: 5px 0;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.services .service-expand-btn:hover {
  color: var(--heading-color);
  gap: 8px;
}

.services .service-expand-btn .expand-icon {
  transition: transform 0.3s ease;
  font-size: 0.8rem;
}

.services .service-expand-btn.expanded .expand-icon {
  transform: rotate(180deg);
}

.services .service-actions {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.services .service-details-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff !important;
  background: var(--accent-color) !important;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  padding: 10px 20px;
  border-radius: 8px;
  width: 100%;
  text-align: center;
  box-shadow: 0 2px 8px rgba(249, 195, 0, 0.3);
  visibility: visible !important;
  opacity: 1 !important;
}

.services .service-details-btn:hover {
  background: var(--heading-color);
  color: #fff;
  gap: 12px;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.services .service-details-btn i {
  transition: transform 0.3s ease;
  font-size: 1rem;
}

.services .service-details-btn:hover i {
  transform: translateX(5px);
}

[dir="rtl"] .services .service-details-btn:hover i {
  transform: translateX(-5px);
}

.services .service-quality-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(40, 167, 69, 0.15);
  color: #28a745;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(40, 167, 69, 0.2);
  flex-shrink: 0;
}

.services .service-quality-badge i {
  font-size: 0.9rem;
}

/* Make entire card clickable */
.services .service-card-enhanced {
  position: relative;
}

.services .service-card-enhanced > * {
  position: relative;
  z-index: 2;
}

.services .service-card-enhanced a,
.services .service-card-enhanced button {
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

.services .service-actions {
  position: relative;
  z-index: 10;
}

/* Responsive adjustments for enhanced cards */
@media (max-width: 768px) {
  .services .service-image-wrapper {
    height: 200px;
  }

  .services .service-card-content {
    padding: 20px;
  }

  .services .service-title {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .card-item {
  background: var(--surface-color);
  padding: 50px 30px;
  transition: all ease-in-out 0.3s;
  height: 100%;
  position: relative;
}

.why-us .card-item span {
  color: var(--default-color);
  display: block;
  font-size: 28px;
  font-weight: 700;
}

.why-us .card-item h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: var(--default-color);
}

.why-us .card-item h4 a {
  color: var(--default-color);
}

.why-us .card-item p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  padding: 0;
}

.why-us .card-item:hover {
  background: var(--accent-color);
  padding: 30px 30px 70px 30px;
}

.why-us .card-item:hover span,
.why-us .card-item:hover h4 a,
.why-us .card-item:hover p {
  color: #002C5C;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  padding: 40px 0 30px 0;
}

.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item i {
  color: var(--accent-color);
  display: block;
  font-size: 44px;
  float: left;
  line-height: 0;
}

.stats .stats-item .purecounter {
  color: var(--heading-color);
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  margin-left: 60px;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-family: var(--heading-font);
  font-size: 14px;
}

/* Modern 3D Stats Design */
.stats-item-modern {
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stats-item-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(249, 195, 0, 0.1) 0%, rgba(0, 44, 92, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}


.stats-item-modern > * {
  position: relative;
  z-index: 1;
}

.stats-icon-wrapper {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stats-icon-wrapper i {
  font-size: 56px;
  color: var(--accent-color);
  background: linear-gradient(135deg, var(--accent-color) 0%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(249, 195, 0, 0.3));
  transition: all 0.4s ease;
}

.stats-item-modern:hover .stats-icon-wrapper i {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 8px 16px rgba(249, 195, 0, 0.5));
}

.stats-number-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.stats-number-3d {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  color: var(--accent-color);
  background:var(--accent-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  
  transform: perspective(500px) rotateX(10deg);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-block;
  font-family: var(--heading-font);
  letter-spacing: -2px;
}

.stats-item-modern:hover .stats-number-3d {
  transform: perspective(500px) rotateX(0deg) scale(1.1);
 
}

.stats-plus {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-color);
  background: linear-gradient(135deg, var(--accent-color) 0%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 
    0 2px 4px rgba(249, 195, 0, 0.3),
    0 4px 8px rgba(249, 195, 0, 0.2);
  transform: translateY(-5px);
  display: inline-block;
  line-height: 1;
  transition: all 0.4s ease;
  font-family: var(--heading-font);
}

.stats-item-modern:hover .stats-plus {
  transform: translateY(-5px) scale(1.2);
  text-shadow: 
    0 2px 4px rgba(249, 195, 0, 0.4),
    0 4px 8px rgba(249, 195, 0, 0.3),
    0 6px 12px rgba(249, 195, 0, 0.2);
}

.stats-label {
  margin: 0;
  padding: 0;
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-size: 16px;
  line-height: 1.6;
  transition: all 0.4s ease;
}

.stats-label strong {
  display: block;
  color: var(--contrast-color);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stats-subtitle {
  display: block;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  font-size: 14px;
  font-weight: 400;
  margin-top: 5px;
}

.stats-item-modern:hover .stats-label {
  color: var(--contrast-color);
}

.stats-item-modern:hover .stats-label strong {
  color: var(--accent-color);
  text-shadow: 0 2px 4px rgba(249, 195, 0, 0.2);
}

/* RTL Support for Stats */
[dir="rtl"] .stats-number-wrapper {
  flex-direction: row-reverse;
}

/* Responsive Design for Stats */
@media (max-width: 992px) {
  .stats-number-3d {
    font-size: 56px;
  }
  
  .stats-plus {
    font-size: 42px;
  }
  
  .stats-icon-wrapper i {
    font-size: 48px;
  }
  
  .stats-item-modern {
    padding: 35px 25px;
  }
}

@media (max-width: 768px) {
  .stats-number-3d {
    font-size: 48px;
  }
  
  .stats-plus {
    font-size: 36px;
  }
  
  .stats-icon-wrapper i {
    font-size: 42px;
  }
  
  .stats-item-modern {
    padding: 30px 20px;
  }
  
  .stats-label strong {
    font-size: 16px;
  }
  
  .stats-subtitle {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .stats-number-3d {
    font-size: 42px;
    letter-spacing: -1px;
  }
  
  .stats-plus {
    font-size: 32px;
  }
  
  .stats-icon-wrapper i {
    font-size: 38px;
  }
  
  .stats-item-modern {
    padding: 25px 15px;
  }
}

/*--------------------------------------------------------------
# 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: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  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 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  padding: 15px;
  pointer-events: none;
  overflow: hidden;
}

/* Overlay from top-left corner - expands as square to fill entire image */
.portfolio .portfolio-content .portfolio-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--heading-color) 75%, transparent);
  clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

/* Overlay from bottom-right corner - expands as square to fill entire image */
.portfolio .portfolio-content .portfolio-info::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--heading-color) 75%, transparent);
  clip-path: polygon(100% 100%, 100% 100%, 100% 100%, 100% 100%);
  transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

/* Animate overlays on hover - they expand from corners as squares and fill the entire image */
.portfolio .portfolio-content:hover .portfolio-info::before {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.portfolio .portfolio-content:hover .portfolio-info::after {
  clip-path: polygon(100% 100%, 0 100%, 0 0, 100% 0);
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s;
}

.portfolio .portfolio-content:hover .portfolio-info h4 {
  opacity: 1;
  transform: translateY(0);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s;
}

.portfolio .portfolio-content:hover .portfolio-info p {
  opacity: 1;
  transform: translateY(0);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: all 0.4s ease 0.4s;
  line-height: 1.2;
  z-index: 2;
  opacity: 0;
  transform: scale(0.5);
  pointer-events: auto;
}

.portfolio .portfolio-content:hover .portfolio-info .preview-link,
.portfolio .portfolio-content:hover .portfolio-info .details-link {
  opacity: 1;
  transform: scale(1);
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
  transform: scale(1.1);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
  pointer-events: auto;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item .testimonial-content {
  border-left: 3px solid var(--accent-color);
  padding-left: 30px;
}

.testimonials .testimonial-item .testimonial-img {
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0 0 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: var(--accent-color);
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .member-img {
  margin: 0 80px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1024px) {
  .team .member .member-img {
    margin: 0 60px;
  }
}

.team .member .member-img img {
  position: relative;
  z-index: 1;
}

.team .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding-bottom: 20px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.team .member .member-img .social a {
  transition: 0.3s;
  color: var(--contrast-color);
  font-size: 20px;
  margin: 0 8px;
}

.team .member .member-img .social a:hover {
  color: var(--accent-color);
}

.team .member .member-info {
  margin-top: 30px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
}

.team .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.team .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.team .member:hover .member-img .social {
  padding-bottom: 0;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
/* Old clients grid styles - only apply to old structure */
.clients .clients-wrap:not(.clients-carousel-wrapper) {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.clients .client-logo:not(.client-carousel-item) {
  background-color: var(--surface-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  overflow: hidden;
}

.clients .client-logo img {
  padding: 50px;
  max-width: 80%;
  transition: 0.3s;
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 30px;
    max-width: 50%;
  }
}

.clients .client-logo:hover img {
  transform: scale(1.1);
}

/* Clients Section - Swiper Carousel */
.clients-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.clients-section-title {
  font-family: var(--default-font), sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--heading-color);
  margin: 0;
  padding: 0;
  text-align: center;
}

.clients-carousel-wrapper {
  position: relative;
  padding: 40px 0 60px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Navigation Wrapper - Above Logos */
.clients-navigation-wrapper {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
  margin-bottom: 30px !important;
  padding-left: 0 !important;
  position: relative !important;
  width: 100% !important;
  z-index: 1 !important;
}

/* Swiper Container */
.clients-swiper {
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
  overflow: visible;
}

.clients-swiper .swiper-wrapper {
  align-items: center !important;
  display: flex !important;
}

.clients-swiper .swiper-slide {
  width: calc((100% - 60px) / 3);
  height: 160px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
}

/* Logo Slide Container */
.client-logo-slide {
  width: 100% !important;
  height: 160px !important;
  min-width: 0 !important;
  min-height: 160px !important;
  max-width: 100% !important;
  max-height: 160px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px !important;
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-sizing: border-box !important;
  overflow: hidden;
  margin: 0 !important;
}

.client-logo-link {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
  text-decoration: none;
  margin: 0 !important;
  padding: 0 !important;
}

.client-logo-img {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  filter: grayscale(0%) !important;
  opacity: 1 !important;
  transition: all 0.3s ease;
  display: block !important;
  margin: auto !important;
}

.client-logo-slide:hover {
  border-color: var(--accent-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.client-logo-slide:hover .client-logo-img {
  filter: grayscale(0%) !important;
  opacity: 1 !important;
  transform: scale(1.05);
}

/* Placeholder Brand Logos */
.client-logo-placeholder {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px;
  color: var(--default-color);
  filter: grayscale(0%) !important;
  opacity: 1 !important;
  transition: all 0.3s ease;
  margin: 0 !important;
  padding: 0 !important;
}

.client-logo-slide:hover .client-logo-placeholder {
  filter: grayscale(0%) !important;
  opacity: 1 !important;
  transform: scale(1.05);
}

.brand-logo-svg {
  width: 50px;
  height: 50px;
  color: currentColor;
}

.brand-name {
  font-family: var(--default-font), sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: currentColor;
}

.brand-name-large {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2px;
}

/* Navigation Buttons */
.clients-swiper-button {
  position: relative !important;
  width: 40px !important;
  height: 40px !important;
  background: #ffffff !important;
  border: 2px solid rgba(0, 0, 0, 0.15) !important;
  border-radius: 4px !important;
  color: #333333 !important;
  font-size: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 10 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important;
  line-height: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
}

.clients-swiper-button:hover {
  background: #ffffff !important;
  border-color: var(--accent-color) !important;
  color: var(--accent-color) !important;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12) !important;
  transform: scale(1.05) !important;
}

.clients-swiper-button:active {
  transform: scale(0.95) !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

.clients-swiper-button i {
  font-size: 18px;
  line-height: 1;
  display: block;
}

.clients-swiper-button.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: auto;
}

/* Progress Bar */
.clients-progress-wrapper {
  margin-top: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.clients-progress-bar {
  width: 100%;
  max-width: 600px;
  height: 4px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.clients-progress-fill {
  height: 100%;
  background: var(--accent-color);
  border-radius: 2px;
  width: 0%;
  transition: width 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .clients-carousel-wrapper {
    padding: 35px 0 55px;
  }
  
  .clients-navigation-wrapper {
    margin-bottom: 25px;
  }
  
  .clients-swiper {
    width: 100%;
  }
  
  .clients-swiper .swiper-slide {
    width: calc((100% - 60px) / 3);
    height: 150px !important;
  }
  
  .client-logo-slide {
    width: 100% !important;
    height: 150px !important;
    min-width: 0 !important;
    min-height: 150px !important;
    max-width: 100% !important;
    max-height: 150px !important;
    padding: 18px !important;
  }
  
  .clients-swiper-button {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }
  
  .clients-swiper-button i {
    font-size: 17px;
  }
}

@media (max-width: 992px) {
  .clients-section-title {
    font-size: 24px;
    letter-spacing: 1.5px;
  }
  
  .clients-carousel-wrapper {
    padding: 30px 0 50px;
  }
  
  .clients-navigation-wrapper {
    margin-bottom: 25px;
  }
  
  .clients-swiper {
    width: 100%;
  }
  
  .clients-swiper .swiper-slide {
    width: calc((100% - 50px) / 3);
    height: 140px !important;
  }
  
  .client-logo-slide {
    width: 100% !important;
    height: 140px !important;
    min-width: 0 !important;
    min-height: 140px !important;
    max-width: 100% !important;
    max-height: 140px !important;
    padding: 15px !important;
  }
  
  .brand-name-large {
    font-size: 28px;
  }
  
  .clients-swiper-button {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  
  .clients-swiper-button i {
    font-size: 16px;
  }
  
  .clients-progress-bar {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .clients-section-header {
    margin-bottom: 40px;
  }
  
  .clients-section-title {
    font-size: 20px;
    letter-spacing: 1px;
  }
  
  .clients-carousel-wrapper {
    padding: 25px 0 45px;
  }
  
  .clients-navigation-wrapper {
    margin-bottom: 20px;
  }
  
  .clients-swiper {
    width: 100%;
  }
  
  .clients-swiper .swiper-slide {
    width: calc((100% - 50px) / 3);
    height: 120px !important;
  }
  
  .client-logo-slide {
    width: 100% !important;
    height: 120px !important;
    min-width: 0 !important;
    min-height: 120px !important;
    max-width: 100% !important;
    max-height: 120px !important;
    padding: 12px !important;
  }
  
  .brand-name {
    font-size: 16px;
  }
  
  .brand-name-large {
    font-size: 24px;
  }
  
  .brand-logo-svg {
    width: 40px;
    height: 40px;
  }
  
  .clients-swiper-button {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }
  
  .clients-swiper-button i {
    font-size: 15px;
  }
  
  .clients-progress-wrapper {
    margin-top: 30px;
  }
  
  .clients-progress-bar {
    max-width: 400px;
    height: 3px;
  }
}

@media (max-width: 576px) {
  .clients-section-title {
    font-size: 18px;
  }
  
  .clients-carousel-wrapper {
    padding: 20px 0 40px;
  }
  
  .clients-navigation-wrapper {
    margin-bottom: 15px;
  }
  
  .clients-swiper {
    width: 100%;
  }
  
  .clients-swiper .swiper-slide {
    width: calc((100% - 30px) / 2);
    height: 100px !important;
  }
  
  .client-logo-slide {
    width: 100% !important;
    height: 100px !important;
    min-width: 0 !important;
    min-height: 100px !important;
    max-width: 100% !important;
    max-height: 100px !important;
    padding: 10px !important;
  }
  
  .brand-name {
    font-size: 14px;
  }
  
  .brand-name-large {
    font-size: 20px;
  }
  
  .brand-logo-svg {
    width: 35px;
    height: 35px;
  }
  
  .clients-swiper-button {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  
  .clients-swiper-button i {
    font-size: 14px;
  }
  
  .clients-progress-bar {
    max-width: 300px;
    height: 2px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item {
  padding: 25px 20px;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 12px;
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  transition: all 0.3s ease-in-out;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact .info-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
  background: color-mix(in srgb, var(--background-color), transparent 30%);
}

.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: var(--default-color);
}

.contact .info-item p a {
  color: var(--default-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact .info-item p a:hover {
  color: var(--accent-color);
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: #002C5C;
  transform: scale(1.1);
}

.contact .php-email-form {
  height: 100%;
}

/*--------------------------------------------------------------
# Quote Section
--------------------------------------------------------------*/
.quote .php-email-form {
  padding: 40px 35px;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 12px;
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.quote .php-email-form:hover {
  border-color: var(--accent-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  background: color-mix(in srgb, var(--background-color), transparent 30%);
}

.quote .php-email-form input[type=text],
.quote .php-email-form input[type=email],
.quote .php-email-form textarea {
  font-size: 14px;
  padding: 12px 18px;
  box-shadow: none;
  border-radius: 8px;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--surface-color), transparent 30%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: all 0.3s ease;
}

.quote .php-email-form input[type=text]:focus,
.quote .php-email-form input[type=email]:focus,
.quote .php-email-form textarea:focus {
  border-color: var(--accent-color);
  background-color: var(--surface-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
  outline: none;
}

.quote .php-email-form input[type=text]::placeholder,
.quote .php-email-form input[type=email]::placeholder,
.quote .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.quote .php-email-form button[type=submit] {
  color: #002C5C;
  background: var(--accent-color);
  border: 0;
  padding: 12px 40px;
  transition: 0.4s;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.quote .php-email-form button[type=submit]:hover {
  background: #D8A900;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  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 button[type=submit] {
  color: #002C5C;
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #D8A900;
}

.contact .map-container {
  position: relative !important;
  width: 100% !important;
  height: 450px !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1) !important;
  min-height: 300px !important;
}

.contact .map-container iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  border-radius: 8px !important;
  display: block !important;
}

@media (max-width: 768px) {
  .contact .map-container {
    height: 350px;
    min-height: 350px;
  }
}

/*--------------------------------------------------------------
# Location Section
--------------------------------------------------------------*/
.location .info-item {
  margin-bottom: 30px;
}

.location .info-item:last-child {
  margin-bottom: 0;
}

.location .info-item i {
  color: var(--accent-color) !important;
  background: color-mix(in srgb, var(--accent-color), transparent 92%) !important;
  font-size: 20px !important;
  width: 44px !important;
  height: 44px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  border-radius: 50px !important;
  transition: all 0.3s ease-in-out !important;
  margin-right: 15px !important;
  flex-shrink: 0 !important;
}

[dir="rtl"] .location .info-item i {
  margin-right: 0;
  margin-left: 15px;
}

.location .info-item h3 {
  padding: 0 !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  margin-bottom: 10px !important;
  color: var(--heading-color) !important;
}

.location .info-item p {
  padding: 0 !important;
  margin-bottom: 8px !important;
  font-size: 14px !important;
  color: var(--default-color) !important;
}

.location .info-item p:last-child {
  margin-bottom: 0;
}

.location .info-item:hover i {
  background: var(--accent-color);
  color: #002C5C;
}

.location .map-container {
  position: relative !important;
  width: 100% !important;
  height: 450px !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1) !important;
  min-height: 300px !important;
}

.location .map-container iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  border-radius: 8px !important;
  display: block !important;
}

@media (max-width: 768px) {
  .location .map-container {
    height: 350px;
    min-height: 350px;
  }
}

.location .map-container .alert {
  padding: 20px;
  margin: 0;
  border-radius: 8px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border: 1px solid var(--accent-color);
  color: var(--heading-color);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/* Service Info Card */
.service-details .service-info-card {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-info-card h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.service-details .service-info-card p {
  margin-bottom: 0;
  line-height: 1.7;
}

/* Service Icon Display */
.service-details .service-icon-display {
  text-align: center;
}

.service-details .service-icon-large {
  display: inline-block;
  padding: 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.service-details .service-icon-large:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: scale(1.05);
}

/* Service Contact CTA */
.service-details .service-contact-cta {
  margin-top: 20px;
}

.service-details .service-contact-cta .btn-get-started {
  display: block;
  padding: 12px 20px;
  text-align: center;
}

/* Service Features List */
.service-details .service-features-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.service-details .service-features-list li {
  padding: 12px 0;
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.service-details .service-features-list li:last-child {
  border-bottom: none;
}

.service-details .service-features-list li:hover {
  padding-left: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  margin: 0 -15px;
  padding-left: 25px;
  padding-right: 15px;
  border-radius: 8px;
}

[dir="rtl"] .service-details .service-features-list li:hover {
  padding-left: 15px;
  padding-right: 25px;
}

.service-details .service-features-list li i {
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.service-details .service-features-list li span {
  margin-left: 12px;
  line-height: 1.6;
}

[dir="rtl"] .service-details .service-features-list li span {
  margin-left: 0;
  margin-right: 12px;
}

/* Service Description */
.service-details .service-description {
  margin-top: 30px;
}

.service-details .service-description p {
  line-height: 1.8;
  margin-bottom: 15px;
}

.service-details .service-description p:last-child {
  margin-bottom: 0;
}

/* Service Benefits */
.service-details .service-benefits {
  margin-top: 30px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-details .benefit-item {
  padding: 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.service-details .benefit-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  transform: translateX(5px);
}

[dir="rtl"] .service-details .benefit-item:hover {
  transform: translateX(-5px);
}

.service-details .benefit-item i {
  font-size: 20px;
  margin-right: 10px;
}

[dir="rtl"] .service-details .benefit-item i {
  margin-right: 0;
  margin-left: 10px;
}

.service-details .benefit-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.service-details .benefit-item p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

/* Service Images Gallery */
.service-images-gallery {
  margin-top: 40px;
}

.service-images-gallery h4 {
  margin-bottom: 25px;
  color: var(--heading-color);
  font-weight: 600;
}

.service-images-scroll-container {
  position: relative;
  padding: 20px 0;
}

.service-images-scroll-wrapper {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 0 30px 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-color) transparent;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  cursor: grab;
}

.service-images-scroll-wrapper:active {
  cursor: grabbing;
}

.service-images-scroll-wrapper::-webkit-scrollbar {
  height: 8px;
}

.service-images-scroll-wrapper::-webkit-scrollbar-track {
  background: var(--surface-color);
  border-radius: 10px;
}

.service-images-scroll-wrapper::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 10px;
}

.service-images-scroll-wrapper::-webkit-scrollbar-thumb:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
}

.service-image-item {
  flex: 0 0 auto;
  width: 300px;
  height: 250px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  scroll-snap-align: start;
}


.service-image-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-image-item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-image-item:hover img {
  transform: scale(1.1);
}

.service-image-item .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-image-item:hover .image-overlay {
  opacity: 1;
}

.service-image-item .image-overlay i {
  font-size: 2.5rem;
  color: white;
  z-index: 1;
}

.scroll-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.scroll-btn {
  background: var(--accent-color);
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-size: 1.2rem;
}

.scroll-btn:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.scroll-btn:active {
  transform: scale(0.95);
}

.scroll-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.scroll-btn:disabled:hover {
  transform: none;
  background: var(--accent-color);
}

[dir="rtl"] .scroll-btn-left i::before {
  content: "\f285"; /* bi-chevron-right for RTL */
}

[dir="rtl"] .scroll-btn-right i::before {
  content: "\f284"; /* bi-chevron-left for RTL */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .service-details .service-info-card,
  .service-details .service-benefits {
    padding: 20px;
  }
  
  .service-details .service-features-list li:hover {
    margin: 0 -10px;
    padding-left: 20px;
    padding-right: 10px;
  }
  
  [dir="rtl"] .service-details .service-features-list li:hover {
    padding-left: 10px;
    padding-right: 20px;
  }

  .service-image-item {
    width: 250px;
    height: 200px;
  }

  .service-images-scroll-wrapper {
    gap: 15px;
    padding: 10px 0 25px 0;
  }

  .scroll-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Secondary Button Style
--------------------------------------------------------------*/
.btn-secondary {
  color: #002C5C;
  background: transparent;
  border: 2px solid #002C5C;
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
  text-decoration: none;
}

.btn-secondary:hover {
  color: #F5F7FA;
  background: #0E3D78;
  border-color: #0E3D78;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Quick Summary Info Box
--------------------------------------------------------------*/
.info-box {
  padding: 30px 20px;
  border-radius: 8px;
  transition: all 0.3s;
  height: 100%;
  background-color: var(--surface-color);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.info-box h4 {
  margin-top: 15px;
  margin-bottom: 10px;
  color: var(--heading-color);
  font-weight: 600;
}

.info-box p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
}

.info-box:hover h4 {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Values Section (About Page)
--------------------------------------------------------------*/
.values .value-card {
  background-color: var(--surface-color);
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  border-radius: 18px;
  transition: all ease-in-out 0.3s;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(249, 195, 0, 0.1);
}

.values .value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), #D8A900);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.values .value-card:hover::before {
  transform: scaleX(1);
}

.values .value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px 0 rgba(0, 0, 0, 0.2);
  border-color: var(--accent-color);
}

.values .value-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 95%));
  border-radius: 50%;
  transition: all 0.3s ease;
}

.values .value-card:hover .value-icon-wrapper {
  background: linear-gradient(135deg, var(--accent-color), #D8A900);
  transform: scale(1.1) rotate(5deg);
}

.values .value-icon-wrapper i {
  font-size: 2.5rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.values .value-card:hover .value-icon-wrapper i {
  color: #ffffff;
  transform: scale(1.1);
}

.values .value-card h5 {
  font-weight: 700;
  margin: 15px 0;
  color: var(--heading-color);
  font-size: 1.25rem;
}

.values .value-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.8;
  font-size: 1rem;
}

/*--------------------------------------------------------------
# Vision & Mission Sections (About Page & Home)
--------------------------------------------------------------*/
.vision-mission {
  position: relative;
  padding: 80px 0;
}

.vision-mission .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.vision-mission .section-title p {
  font-size: 1.125rem;
  color: var(--default-color);
  opacity: 0.8;
  font-weight: 400;
  margin-top: 0.5rem;
}

.vision-mission .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: 0;
  margin-right: 0;
}

.vision-mission .row > [class*="col-"] {
  display: flex;
  flex-direction: column;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .vision-mission .row > .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .vision-mission .row > .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.vision-mission .vision-card-enhanced,
.vision-mission .mission-card-enhanced {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.vision .card,
.mission .card,
.vision-mission .vision-card,
.vision-mission .mission-card {
  border-radius: 18px;
  transition: all ease-in-out 0.3s;
  border: none;
  background: #ffffff;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.vision-mission .vision-card-enhanced,
.vision-mission .mission-card-enhanced {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.vision-card-enhanced,
.mission-card-enhanced {
  border: 2px solid rgba(249, 195, 0, 0.12);
  border-radius: 20px;
  overflow: hidden;
}

.vision-mission .vision-card-enhanced .card-body,
.vision-mission .mission-card-enhanced .card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 2.5rem;
}

.vision-mission .vision-card-enhanced h3,
.vision-mission .mission-card-enhanced h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 2rem;
  letter-spacing: -0.3px;
  line-height: 1.3;
}

.vision-card-enhanced::before,
.mission-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-color), #D8A900);
  transition: width 0.3s ease;
}

.vision-card-enhanced:hover::before,
.mission-card-enhanced:hover::before {
  width: 8px;
}

.vision .card:hover,
.mission .card:hover,
.vision-mission .vision-card:hover,
.vision-mission .mission-card:hover,
.vision-card-enhanced:hover,
.mission-card-enhanced:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: var(--accent-color);
}

.vision-icon-wrapper,
.mission-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 90%));
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
}

.vision-icon-wrapper::after,
.mission-icon-wrapper::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  opacity: 0.2;
  transition: all 0.3s ease;
}

.vision-card-enhanced:hover .vision-icon-wrapper,
.mission-card-enhanced:hover .mission-icon-wrapper {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--accent-color), #D8A900);
}

.vision-card-enhanced:hover .vision-icon-wrapper::after,
.mission-card-enhanced:hover .mission-icon-wrapper::after {
  transform: scale(1.2);
  opacity: 0.4;
}

.vision-icon-wrapper i,
.mission-icon-wrapper i {
  font-size: 3.25rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
  z-index: 1;
  position: relative;
  filter: drop-shadow(0 2px 4px rgba(249, 195, 0, 0.3));
}

.vision-card-enhanced:hover .vision-icon-wrapper i,
.mission-card-enhanced:hover .mission-icon-wrapper i {
  color: #ffffff;
  transform: scale(1.1);
}

.vision .card-body ul li,
.mission .card-body ul li,
.vision-mission .card-body ul li {
  padding: 10px 0;
  line-height: 1.8;
  list-style: none;
}

.vision-item,
.mission-item {
  transition: all 0.3s ease;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  margin-bottom: 1rem !important;
  background: rgba(249, 195, 0, 0.02);
  border-left: 3px solid transparent;
}

.vision-item:hover,
.mission-item:hover {
  background: rgba(249, 195, 0, 0.05);
  border-left-color: var(--accent-color);
  transform: translateX(5px);
  box-shadow: 0 2px 8px rgba(249, 195, 0, 0.1);
}


[dir="rtl"] .vision-item:hover,
[dir="rtl"] .mission-item:hover {
  transform: translateX(-5px);
}

.vision-text,
.mission-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--default-color);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.vision-check-icon,
.mission-check-icon {
  font-size: 1.35rem;
  color: var(--accent-color);
  margin-top: 3px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  filter: drop-shadow(0 1px 2px rgba(249, 195, 0, 0.3));
}

.vision-item:hover .vision-check-icon,
.mission-item:hover .mission-check-icon {
  transform: scale(1.2);
  color: #D8A900;
}

.vision .card-body ul li i,
.mission .card-body ul li i,
.vision-mission .card-body ul li i {
  font-size: 1.2rem;
  vertical-align: middle;
  color: var(--accent-color);
  margin-right: 10px;
}

.vision-mission .card-title,
.vision-mission h2.card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.vision-mission .card-title i {
  font-size: 24px;
  margin-right: 10px;
  color: var(--accent-color);
}

[dir="rtl"] .vision-mission .card-title i,
[dir="rtl"] .vision .card-body ul li i,
[dir="rtl"] .mission .card-body ul li i,
[dir="rtl"] .vision-mission .card-body ul li i {
  margin-right: 0;
  margin-left: 10px;
}

[dir="rtl"] .vision-item:hover,
[dir="rtl"] .mission-item:hover {
  transform: translateX(-5px);
}

[dir="rtl"] .vision-check-icon,
[dir="rtl"] .mission-check-icon {
  margin-right: 0;
  margin-left: 12px;
}

/* Responsive Styles for About Page */
@media (max-width: 768px) {
  .about .content h2 {
    font-size: 2rem;
  }
  
  .about-image-wrapper {
    margin-bottom: 2rem;
  }
  
  .about-image-wrapper .about-image-box {
    bottom: 5%;
    right: -5%;
    width: 95%;
    padding-bottom: 67.67%;
  }
  
  .vision-icon-wrapper,
  .mission-icon-wrapper {
    width: 80px;
    height: 80px;
  }
  
  .vision-icon-wrapper i,
  .mission-icon-wrapper i {
    font-size: 2.5rem;
  }
  
  .vision-icon-wrapper::after,
  .mission-icon-wrapper::after {
    width: 100px;
    height: 100px;
  }
  
  .vision-text,
  .mission-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .vision-item,
  .mission-item {
    padding: 0.875rem 1rem;
    margin-bottom: 0.875rem !important;
  }
  
  .values .value-icon-wrapper {
    width: 70px;
    height: 70px;
  }
  
  .values .value-icon-wrapper i {
    font-size: 2rem;
  }
  
  .vision-card-enhanced .card-body,
  .mission-card-enhanced .card-body {
    padding: 30px 20px !important;
  }
  
  .vision-mission .row {
    gap: 1.5rem;
  }
  
  .vision-mission .row > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .vision-mission .vision-card-enhanced h3,
  .vision-mission .mission-card-enhanced h3 {
    font-size: 1.5rem;
  }
  
  .value-card {
    padding: 30px 20px !important;
  }
}

/*--------------------------------------------------------------
# Services Overview Section (Home Page)
--------------------------------------------------------------*/
.services-overview .service-overview-item {
  text-align: center;
  padding: 30px 20px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  height: 100%;
}

.services-overview .service-overview-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

.services-overview .service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 8px;
}

.services-overview .service-icon i {
  font-size: 36px;
  color: var(--accent-color);
}

.services-overview .service-overview-item h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.services-overview .service-overview-item p {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Home Page Specific Styles (Moved from inline for performance)
--------------------------------------------------------------*/

/* Industries We Serve Section */
.industries .industry-item {
    text-align: center;
    padding: 25px 15px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.industries .industry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.industries .industry-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.industries .industry-item:hover .industry-icon {
    background: var(--accent-color);
    transform: scale(1.1);
}

.industries .industry-icon i {
    font-size: 32px;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.industries .industry-item:hover .industry-icon i {
    color: #ffffff;
}

.industries .industry-item h5 {
    font-size: 15px;
    font-weight: 600;
    color: var(--heading-color);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .industries .industry-item {
        padding: 20px 10px;
    }

    .industries .industry-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }

    .industries .industry-icon i {
        font-size: 28px;
    }

    .industries .industry-item h5 {
        font-size: 14px;
    }
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
    /* Reduce animations on mobile for better performance */
    * {
        animation-duration: 0.3s !important;
        transition-duration: 0.3s !important;
    }
    
    /* Disable hover effects on mobile (touch devices) */
    .features-image-wrapper:hover {
        transform: none;
    }
    
    .features-image-wrapper:hover .features-workshop-img {
        transform: none;
    }
    
    .industry-item:hover {
        transform: none;
    }
    
    .industry-item:hover .industry-icon {
        transform: none;
    }
    
    /* Optimize hero section for mobile */
    .hero {
        min-height: 60vh;
        padding: 60px 0 0 0;
        background-color: transparent !important; /* Allow video to show */
        background-image: none !important;
        width: 100% !important;
        overflow: hidden !important;
        position: relative !important;
    }
    
    /* Ensure video is visible and fits perfectly on mobile */
    .hero-video-desktop,
    .hero-video-bg {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        max-width: 100vw !important;
        height: 100% !important;
        min-height: 60vh !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        object-fit: cover !important;
        object-position: center !important;
    }
    
    /* Hide mobile image div on mobile */
    .hero-video-mobile {
        display: none !important;
        visibility: hidden !important;
    }
    
    .hero h1 {
        font-size: 32px;
        line-height: 40px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    /* Reduce padding on mobile */
    .why-choose-us-content {
        padding: 25px 20px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    /* Optimize images for mobile */
    .features-workshop-img,
    .about section img.img-fluid,
    #overview img.img-fluid {
        max-width: 100%;
    }
    
    /* Reduce font sizes for better mobile performance */
    .why-choose-us-content h2 {
        font-size: 1.75rem;
    }
    
    .why-choose-list li {
        font-size: 1rem;
        padding: 12px 0;
    }
    
    /* Optimize stats section */
    .stats-item {
        padding: 20px 15px;
    }
    
    .stats-item-modern {
        padding: 25px 15px;
    }
    
    .stats-number-3d {
        font-size: 40px;
    }
    
    .stats-plus {
        font-size: 30px;
    }
    
    .stats-icon-wrapper i {
        font-size: 36px;
    }
    
    /* Reduce client logo sizes on mobile */
    .client-logo img {
        max-width: 120px;
        height: auto;
    }
}

/* Features Section - Why Choose Us Modern Design */
.features.light-background {
    background: var(--surface-color);
    padding: 80px 0;
    position: relative;
    overflow: visible;
}

.features .container {
    overflow: visible;
}

/* Features Row - Reduce gap between image and features */
.features-row {
    position: relative;
    overflow: visible;
}

.features-row > div:first-child {
    padding-right: 20px;
}

.features-row > div:last-child {
    padding-left: 20px;
}

@media (max-width: 991px) {
    .features-row > div:first-child,
    .features-row > div:last-child {
        padding-left: 0;
        padding-right: 0;
    }
}

/* Features List - Simple and Clean Design */
.features-list-col {
    position: relative;
}

.features-list-col::before {
    content: '';
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 78%;
    background: var(--accent-color, #F9C300);
    opacity: 0.6;
}

@media (max-width: 991px) {
    .features-list-col {
        padding-left: 0 !important;
    }
    
    .features-list-col::before {
        display: none !important;
    }
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    margin-bottom: 12px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.features-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.features-list li:last-child {
    margin-bottom: 0;
}

.features-list .feature-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.features-list li:hover .feature-icon {
    background: var(--accent-color);
    transform: scale(1.1);
}

.features-list .feature-icon i {
    font-size: 20px;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.features-list li:hover .feature-icon i {
    color: #ffffff;
}

.features-list .feature-content {
    flex: 1;
}

.features-list .feature-content h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--heading-color);
    margin: 0 0 5px 0;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.features-list li:hover .feature-content h5 {
    color: var(--accent-color);
}

.features-list .feature-content p {
    font-size: 0.8rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.4;
    margin: 0;
}

[dir="rtl"] .features-list li {
    flex-direction: row-reverse;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.features-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: visible;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2), 0 0 0 3px rgba(249, 195, 0, 0.2), inset 0 0 30px rgba(249, 195, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 50%, #ffffff 100%);
    padding: 15px;
}

.features-image-wrapper::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, var(--accent-color), var(--heading-color), var(--accent-color), var(--heading-color));
    background-size: 300% 300%;
    border-radius: 30px;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    filter: blur(12px);
    animation: gradient-border 3s ease infinite;
}

@keyframes gradient-border {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.features-image-wrapper:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3), 0 0 60px rgba(249, 195, 0, 0.4), inset 0 0 40px rgba(249, 195, 0, 0.15);
}

.features-image-wrapper:hover::before {
    opacity: 0.8;
}

.features-image-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    z-index: 3;
    transition: left 0.6s ease;
    pointer-events: none;
    border-radius: 12px;
}

.features-image-wrapper:hover .features-image-shine {
    left: 100%;
}

.features-image-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ffd700 50%, var(--accent-color) 100%);
    background-size: 200% 200%;
    color: #002C5C;
    padding: 14px 26px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 900;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(249, 195, 0, 0.6), 0 0 25px rgba(249, 195, 0, 0.5), inset 0 2px 10px rgba(255, 255, 255, 0.5);
    animation: pulse-badge 2s ease-in-out infinite, gradient-shift 3s ease infinite;
    border: 3px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-image-badge i {
    font-size: 1.2rem;
    animation: rotate-star 2s linear infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 44, 92, 0.3));
}

@keyframes rotate-star {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.features-image-decoration {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--accent-color) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.2;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
    filter: blur(20px);
}

.features-image-decoration-2 {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--heading-color) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
    animation: float 7s ease-in-out infinite reverse;
    filter: blur(15px);
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
    }
}

.features-workshop-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

.features-image-wrapper:hover .features-workshop-img {
    transform: scale(1.08);
}

.features-image-overlay {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 44, 92, 0.15) 100%);
    pointer-events: none;
    border-radius: 12px;
    z-index: 2;
}

.why-choose-us-content {
    padding: 60px 65px;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 30%, #ffffff 60%, #f8fafc 100%);
    border-radius: 32px;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.15), 0 0 0 2px rgba(249, 195, 0, 0.15), inset 0 2px 20px rgba(255, 255, 255, 0.8);
    position: relative;
    border: 3px solid rgba(249, 195, 0, 0.2);
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.why-choose-us-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--heading-color) 30%, var(--accent-color) 60%, var(--heading-color) 100%);
    background-size: 300% 100%;
    animation: gradient-shift 2.5s ease infinite;
    box-shadow: 0 2px 10px rgba(249, 195, 0, 0.5);
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.why-choose-us-content::after {
    content: '';
    position: absolute;
    top: -60%;
    right: -60%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 195, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: rotate-glow 20s linear infinite;
}

@keyframes rotate-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ffd700 50%, var(--accent-color) 100%);
    background-size: 200% 200%;
    color: #002C5C;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 6px 20px rgba(249, 195, 0, 0.5), 0 0 15px rgba(249, 195, 0, 0.3), inset 0 2px 8px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
    border: 2px solid rgba(255, 255, 255, 0.4);
    animation: gradient-shift 3s ease infinite;
}

.why-choose-us-content h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--heading-color);
    margin-bottom: 30px;
    line-height: 1.15;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--heading-color) 0%, #004080 50%, var(--heading-color) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
    text-shadow: 0 2px 10px rgba(0, 44, 92, 0.1);
    letter-spacing: -1px;
}

.why-choose-us-content .intro-text {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 45px;
    line-height: 2;
    position: relative;
    z-index: 1;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.feature-number {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(249, 195, 0, 0.25);
    line-height: 1;
    z-index: 0;
    font-family: var(--heading-font);
    transition: all 0.5s ease;
    text-shadow: 0 2px 10px rgba(249, 195, 0, 0.2);
}

[dir="rtl"] .feature-number {
    right: auto;
    left: 25px;
}

.why-choose-list li {
    display: flex;
    align-items: flex-start;
    padding: 32px 28px;
    margin-bottom: 20px;
    font-size: 1.15rem;
    color: #333;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 50%, #ffffff 100%);
    border-radius: 24px;
    border: 3px solid rgba(249, 195, 0, 0.2);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(249, 195, 0, 0.1), inset 0 2px 10px rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.why-choose-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--accent-color) 0%, var(--heading-color) 100%);
    transform: scaleY(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(249, 195, 0, 0.5);
}

.feature-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 195, 0, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.why-choose-list li:hover {
    transform: translateX(12px) translateY(-4px);
    border-color: rgba(249, 195, 0, 0.6);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2), 0 0 30px rgba(249, 195, 0, 0.4), inset 0 2px 15px rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 30%, #ffffff 60%, #f8fafc 100%);
}

.why-choose-list li:hover::before {
    transform: scaleY(1);
    box-shadow: 0 0 20px rgba(249, 195, 0, 0.6);
}

.why-choose-list li:hover .feature-number {
    color: rgba(249, 195, 0, 0.4);
    transform: scale(1.15);
    text-shadow: 0 4px 15px rgba(249, 195, 0, 0.4);
}

.why-choose-list li:hover .feature-hover-effect {
    left: 100%;
}

[dir="rtl"] .why-choose-list li:hover {
    transform: translateX(-8px);
}

[dir="rtl"] .why-choose-list li::before {
    left: auto;
    right: 0;
}

.why-choose-list li:last-child {
    margin-bottom: 0;
}

.list-icon-wrapper {
    margin-right: 20px;
    flex-shrink: 0;
    position: relative;
}

[dir="rtl"] .list-icon-wrapper {
    margin-right: 0;
    margin-left: 20px;
}

.list-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(249, 195, 0, 0.3) 0%, rgba(0, 44, 92, 0.2) 100%);
    border-radius: 20px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(249, 195, 0, 0.3);
    box-shadow: 0 4px 15px rgba(249, 195, 0, 0.2), inset 0 2px 8px rgba(255, 255, 255, 0.5);
}

.list-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--heading-color) 50%, var(--accent-color) 100%);
    background-size: 200% 200%;
    opacity: 0;
    transition: opacity 0.6s ease;
    animation: gradient-shift 3s ease infinite;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 195, 0, 0.8) 0%, rgba(249, 195, 0, 0.4) 50%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    pointer-events: none;
    filter: blur(10px);
}

.list-icon i {
    font-size: 2.1rem;
    color: var(--accent-color);
    position: relative;
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 3px 6px rgba(249, 195, 0, 0.5));
}

.why-choose-list li:hover .list-icon {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 10px 35px rgba(249, 195, 0, 0.5), 0 0 25px rgba(249, 195, 0, 0.4), inset 0 2px 10px rgba(255, 255, 255, 0.6);
    border-color: var(--accent-color);
    border-width: 4px;
}

.why-choose-list li:hover .list-icon::before {
    opacity: 1;
}

.why-choose-list li:hover .icon-glow {
    width: 100px;
    height: 100px;
}

.why-choose-list li:hover .list-icon i {
    color: #ffffff;
    transform: scale(1.2);
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}

.list-content {
    flex: 1;
}

.list-content {
    position: relative;
    z-index: 1;
}

.list-content strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--heading-color);
    margin-bottom: 12px;
    transition: all 0.5s ease;
    letter-spacing: -0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.why-choose-list li:hover .list-content strong {
    color: var(--heading-color);
    transform: translateX(5px);
    text-shadow: 0 2px 8px rgba(0, 44, 92, 0.2);
}

[dir="rtl"] .why-choose-list li:hover .list-content strong {
    transform: translateX(-5px);
}

.list-content .item-description {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin: 0;
    transition: all 0.5s ease;
    font-weight: 400;
}

.why-choose-list li:hover .list-content .item-description {
    color: #444;
    transform: translateX(3px);
}

[dir="rtl"] .why-choose-list li:hover .list-content .item-description {
    transform: translateX(-3px);
}

.why-choose-list li span {
    font-weight: 500;
}

@media (max-width: 991px) {
    .features.light-background {
        padding: 90px 0;
    }

    .why-choose-us-content {
        padding: 50px 45px;
        margin-top: 30px;
    }

    .why-choose-us-content h2 {
        font-size: 2.5rem;
    }

    .why-choose-list li {
        font-size: 1.05rem;
        padding: 28px 24px;
        margin-bottom: 16px;
    }

    .feature-number {
        font-size: 3rem;
        top: 20px;
        right: 20px;
    }

    [dir="rtl"] .feature-number {
        left: 20px;
    }

    .list-icon {
        width: 64px;
        height: 64px;
    }

    .list-icon i {
        font-size: 1.8rem;
    }

    .list-content strong {
        font-size: 1.2rem;
    }

    .features-image-badge {
        top: 25px;
        right: 25px;
        padding: 12px 22px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .features.light-background {
        padding: 70px 0;
    }

    .why-choose-us-content {
        padding: 40px 32px;
    }

    .why-choose-us-content h2 {
        font-size: 2.1rem;
    }

    .why-choose-us-content .intro-text {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }

    .why-choose-list li {
        font-size: 1rem;
        padding: 24px 20px;
        margin-bottom: 14px;
    }

    .why-choose-list li:hover {
        transform: translateX(8px) translateY(-2px);
    }

    [dir="rtl"] .why-choose-list li:hover {
        transform: translateX(-8px) translateY(-2px);
    }

    .feature-number {
        font-size: 2.5rem;
        top: 18px;
        right: 18px;
    }

    [dir="rtl"] .feature-number {
        left: 18px;
    }

    .list-icon {
        width: 60px;
        height: 60px;
        border-radius: 18px;
    }

    .list-icon i {
        font-size: 1.7rem;
    }

    .list-icon-wrapper {
        margin-right: 18px;
    }

    [dir="rtl"] .list-icon-wrapper {
        margin-left: 18px;
    }

    .list-content strong {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }

    .list-content .item-description {
        font-size: 1rem;
        line-height: 1.75;
    }

    .features-image-badge {
        top: 20px;
        right: 20px;
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .section-badge {
        padding: 9px 22px;
        font-size: 0.85rem;
        margin-bottom: 25px;
    }
}

/*--------------------------------------------------------------
# Floating WhatsApp Button
--------------------------------------------------------------*/
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 32px;
    line-height: 1;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 20px;
}

[dir="rtl"] .scroll-top {
    right: auto;
    left: 20px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
        font-size: 28px;
    }

    .whatsapp-float i {
        font-size: 28px;
    }

    [dir="rtl"] .whatsapp-float {
        left: 15px;
        right: auto;
    }

    [dir="rtl"] .scroll-top {
        left: 15px;
        right: auto;
    }
}

/*--------------------------------------------------------------
# Download Buttons - Catalog & Company Profile
--------------------------------------------------------------*/

/* Hero Section Download Buttons */
.hero-buttons-wrapper {
    margin-top: 20px;
    gap: 15px !important;
}

.btn-download-catalog,
.btn-download-profile {
    color: #002C5C !important;
    background: var(--accent-color) !important;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    padding: 10px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(216, 169, 0, 0.3);
    text-decoration: none;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-download-catalog:hover,
.btn-download-profile:hover {
    color: #002C5C !important;
    background: #D8A900 !important;
    box-shadow: 0 6px 20px rgba(216, 169, 0, 0.5);
    transform: translateY(-2px);
    border-color: rgba(0, 44, 92, 0.2);
}

.btn-download-catalog i,
.btn-download-profile i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-download-catalog:hover i,
.btn-download-profile:hover i {
    transform: scale(1.1);
}

/* Overview Section Download Buttons */
.btn-download-outline {
    color: #002C5C;
    background: transparent;
    border: 2px solid var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(216, 169, 0, 0.2);
    text-decoration: none;
}

.btn-download-outline:hover {
    color: #002C5C;
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(216, 169, 0, 0.4);
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-download-outline i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-download-outline:hover i {
    transform: translateY(-2px);
}

.overview-buttons-wrapper {
    gap: 15px !important;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 520px;
}

.overview-downloads {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
}

.overview-buttons-wrapper .btn-learn-more {
    width: 100%;
    justify-content: center;
}

.overview-downloads .btn-download-outline {
    flex: 1;
    justify-content: center;
}

/* Responsive adjustments for download buttons */
@media (max-width: 768px) {
    .hero-buttons-wrapper {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons-wrapper .btn,
    .hero-buttons-wrapper a {
        width: 100%;
        justify-content: center;
    }
    
    .btn-download-catalog,
    .btn-download-profile {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .overview-buttons-wrapper {
        flex-direction: column;
    }
    
    .btn-download-outline {
        width: 100%;
        justify-content: center;
        font-size: 14px;
        padding: 12px 24px;
    }
}

@media (max-width: 576px) {
    .hero-buttons-wrapper {
        gap: 10px !important;
    }
    
    .overview-buttons-wrapper {
        gap: 10px !important;
    }
}

/*--------------------------------------------------------------
# Download CTA Section
--------------------------------------------------------------*/
.download-cta {
    background: linear-gradient(135deg, #002C5C 0%, #003d7a 100%);
    position: relative;
    overflow: hidden;
}

.download-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(216,169,0,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.download-cta .container {
    position: relative;
    z-index: 1;
}

.download-cta-title {
    color: var(--contrast-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.download-cta-description {
    color: color-mix(in srgb, var(--contrast-color), transparent 15%);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.download-cta-buttons {
    gap: 20px !important;
}

.btn-download-cta {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #002C5C;
    padding: 20px 30px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
    min-width: 280px;
    position: relative;
    overflow: hidden;
}

.btn-download-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(216, 169, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-download-cta:hover::before {
    left: 100%;
}

.btn-download-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    border-color: var(--accent-color);
    background: #ffffff;
}

.download-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent-color), #D8A900);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.download-icon-wrapper i {
    font-size: 24px;
    color: #002C5C;
    transition: transform 0.3s ease;
}

.btn-download-cta:hover .download-icon-wrapper {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 4px 15px rgba(216, 169, 0, 0.4);
}

.btn-download-cta:hover .download-icon-wrapper i {
    transform: scale(1.1);
}

.download-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    text-align: left;
}

[dir="rtl"] .download-content {
    align-items: flex-end;
    text-align: right;
}

.download-label {
    font-weight: 700;
    font-size: 1.1rem;
    color: #002C5C;
    line-height: 1.3;
    margin-bottom: 4px;
}

.download-subtitle {
    font-size: 0.9rem;
    color: color-mix(in srgb, #002C5C, transparent 30%);
    font-weight: 500;
}

.download-arrow {
    font-size: 20px;
    color: var(--accent-color);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-download-cta:hover .download-arrow {
    transform: translateY(3px);
    color: #D8A900;
}

/* Responsive adjustments for download CTA */
@media (max-width: 768px) {
    .download-cta-title {
        font-size: 2rem;
    }
    
    .download-cta-description {
        font-size: 1rem;
    }
    
    .download-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-download-cta {
        width: 100%;
        min-width: auto;
        padding: 18px 25px;
    }
}

@media (max-width: 576px) {
    .download-cta-title {
        font-size: 1.75rem;
    }
    
    .btn-download-cta {
        padding: 15px 20px;
        gap: 12px;
    }
    
    .download-icon-wrapper {
        width: 45px;
        height: 45px;
    }
    
    .download-icon-wrapper i {
        font-size: 20px;
    }
    
    .download-label {
        font-size: 1rem;
    }
    
    .download-subtitle {
        font-size: 0.85rem;
    }
}

.top-bar-social a {
    color: var(--accent-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #002C5C;
    /* border: 2px solid #002C5C; */
}

@media (max-width: 991px) {
    .top-bar-social a {
        width: 26px;
        height: 27px;
        font-size: 0.9rem;
    }
}