@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Source+Sans+3:wght@300;400;500;600&display=swap');


/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Source Sans Pro", 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: "Montserrat", sans-serif;
  --nav-font: "Montserrat", sans-serif;
}

/* 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: #343A40; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #1B2951; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #C9A961; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* 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. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* 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: #1B2951;  /* The default color of the main navmenu links */
  --nav-hover-color: #C9A961; /* Applied to main navmenu links when they are hovered over or active */
  --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: #1B2951; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #C9A961; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* 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: #F8F9FA;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1B2951;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #2C5AA0;
  --contrast-color: #ffffff;
}


/* 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);
  overflow-x: hidden;
}

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


/* 
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
  color: var(--afm-light-gray) !important;
  background-color: var(--bs-btn-active-bg) !important;
  border-color: var(--bs-btn-active-border-color) !important;
} */

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --surface-color: #e8e6f3;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0 0 0;
  transition: all 0.5s;
  z-index: 997;
  margin: 0px 30px;
}

.header .header-container {
  background: var(--surface-color);
  transition: all 0.5s;
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header .logo {
  flex-shrink: 0;
}

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --surface-color: #e8e6f3;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0 0 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: var(--surface-color);
  transition: all 0.5s;
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.header .logo {
  flex-shrink: 0;
}

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

/*--------------------------------------------------------------
# Navigation Menu - Desktop
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .navmenu {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.4s ease;
  }

  /* Shift navbar to left when search is active */
  .navmenu.shift-left {
    /* justify-content: flex-start; */
    margin-left: 20px;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 5px;
    transition: gap 0.4s ease;
  }

  /* Reduce gap when search is active */
  .navmenu.shift-left ul {
    gap: 0;
  }

  .navmenu li {
    position: relative;
    display: flex;
    align-items: center;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 12px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.4s ease;
  }

  /* Compress nav items when search is active */
  .navmenu.shift-left a {
    padding: 18px 8px;
    font-size: 14px;
  }

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

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

  /* Hide mobile search in desktop */
  .mobile-search-item {
    display: none !important;
  }

  /* Dropdown Menu */
  .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:hover,
  .navmenu .dropdown ul .active,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

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

/*--------------------------------------------------------------
# Right Actions Container (Button + Search)
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .right-actions-container {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    transition: all 0.4s ease;
  }

  /* Shift button to left when search is active */
  .right-actions-container.search-active {
    margin-right: 0;
  }

  /* Button Styling */
  .btn-afm-secondary {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 10px 20px;
    transition: all 0.4s ease;
    opacity: 1;
    transform: translateX(0);
  }

  /* Hide button when search is active */
  .right-actions-container.search-active .btn-afm-secondary {
    /* opacity: 1; */
    transform: translateX(-20px);
    pointer-events: none;
    /* width: 0; */
    padding: 0;
    margin: 0;
    overflow: hidden;
  }

  /* Search Icon Button */
  .search-icon-btn {
    background: var(--accent-color);
    border: none;
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
  }

  .search-icon-btn:hover {
    background: color-mix(in srgb, var(--accent-color), black 10%);
    transform: scale(1.05);
  }

  .search-icon-btn.hidden {
    opacity: 0;
    transform: scale(0);
    pointer-events: none;
    width: 0;
    margin: 0;
  }

  /* Search Input Wrapper */
  .search-input-wrapper {
    width: 0;
    opacity: 0;
    overflow: visible;
    transition: all 0.4s ease;
    position: relative;
  }

  .search-input-wrapper.active {
    width: 300px;
    opacity: 1;
  }

  /* Search Form */
  .search-form-right {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 25px;
    padding: 5px;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    position: relative;
  }

  .search-input-right {
    flex: 1;
    border: none;
    outline: none;
    padding: 8px 15px;
    font-size: 14px;
    background: transparent;
    color: var(--default-color);
    min-width: 0;
  }

  .search-input-right::placeholder {
    color: #999;
  }

  .search-submit-right,
  .search-close-right {
    border: none;
    color: white;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }

  .search-submit-right {
    background: var(--accent-color);
    margin-right: 4px;
  }

  .search-close-right {
    background: #dc3545;
  }

  .search-submit-right:hover {
    background: color-mix(in srgb, var(--accent-color), black 15%);
    transform: scale(1.08);
  }

  .search-close-right:hover {
    background: #c82333;
    transform: scale(1.08);
  }

  .search-submit-right i,
  .search-close-right i {
    font-size: 14px;
  }

  /* Search Suggestions Dropdown */
  .search-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    max-height: 450px;
    overflow-y: auto;
    z-index: 10000;
    display: none;
    border: 2px solid var(--accent-color);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  .search-suggestions.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }

  .search-suggestion-item {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

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

  .search-suggestion-item:hover,
  .search-suggestion-item.active {
    background-color: #f0f7ff;
  }

  .suggestion-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }

  .suggestion-icon.services {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
  }

  .suggestion-icon.products {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
  }

  .suggestion-icon.company {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
  }

  .suggestion-content {
    flex: 1;
    min-width: 0;
  }

  .suggestion-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--default-color);
    margin-bottom: 4px;
    display: block;
    line-height: 1.4;
  }

  .suggestion-description {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 4px;
    line-height: 1.3;
  }

  .suggestion-category {
    font-size: 11px;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
  }

  .search-no-results {
    padding: 30px 20px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
  }

  .search-no-results i {
    font-size: 48px;
    margin-bottom: 12px;
    display: block;
    opacity: 0.3;
  }

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

  .search-suggestions::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }

  .search-suggestions::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
  }

  .search-suggestions::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
  }
}

/*--------------------------------------------------------------
# Navigation Menu - Mobile
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Mobile
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .header .header-container {
    gap: 10px;
  }

  /* Logo - Left side */
  .header .logo {
    order: 1;
    flex-shrink: 0;
  }

  /* Button - Middle */
  .right-actions-container {
    order: 2;
    display: flex;
    gap: 10px;
    margin-left: auto;
  }

  .btn-afm-secondary {
    padding: 8px 15px;
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Hide desktop search in mobile */
  .search-icon-btn,
  .search-input-wrapper {
    display: none !important;
  }

  /* Hamburger Menu - Right side */
  .navmenu {
    order: 3;
    padding: 0;
    z-index: 9997;
  }

  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    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;
  }

  .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:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .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>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  /* Mobile Search in hamburger */
  .mobile-search-item {
    display: block !important;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .mobile-search-form .input-group {
    display: flex;
    width: 100%;
  }

  .mobile-search-form .form-control {
    flex: 1;
    border-radius: 20px 0 0 20px;
    border: 1px solid #ddd;
    padding: 10px 15px;
    font-size: 15px;
    outline: none;
    background: white;
  }

  .mobile-search-form .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: none;
  }

  .mobile-search-form .btn {
    border-radius: 0 20px 20px 0;
    padding: 10px 20px;
    border: none;
    background: var(--accent-color);
    color: white;
  }

  .search-suggestions-mobile {
    margin-top: 10px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-height: 300px;
    overflow-y: auto;
    display: none;
  }

  .search-suggestions-mobile.active {
    display: block;
  }

  .search-suggestion-item {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
  }

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

  .search-suggestion-item:active {
    background-color: #f8f9fa;
  }

  .suggestion-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--default-color);
    margin-bottom: 3px;
    display: block;
  }

  .suggestion-description {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 3px;
  }

  .suggestion-category {
    font-size: 11px;
    color: var(--accent-color);
    font-weight: 500;
  }

  .search-no-results {
    padding: 20px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
  }

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

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

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

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

/*--------------------------------------------------------------
# Small Mobile Devices
--------------------------------------------------------------*/
@media (max-width: 576px) {
  .btn-afm-secondary {
    padding: 6px 10px;
    font-size: 11px;
  }

  .header .header-container {
    gap: 8px;
    padding: 8px 10px;
  }

  .header .logo img {
    max-height: 50px;
  }

  .mobile-nav-toggle {
    font-size: 24px;
  }
}

@media (max-width: 400px) {
  .btn-afm-secondary {
    padding: 5px 8px;
    font-size: 10px;
  }

  .header .logo img {
    max-height: 45px;
  }
}


/*--------------------------------------------------------------
# Responsive Adjustments
--------------------------------------------------------------*/
@media (min-width: 1400px) {
  .navmenu a {
    padding: 18px 15px;
    font-size: 16px;
  }

  .navmenu.shift-left a {
    padding: 18px 10px;
    font-size: 15px;
  }

  .search-input-wrapper.active {
    width: 320px;
  }

  .btn-afm-secondary {
    font-size: 14px;
    padding: 12px 24px;
  }
}

@media (min-width: 1600px) {
  .search-input-wrapper.active {
    width: 350px;
  }
}

@media (max-width: 576px) {
  .btn-afm-secondary {
    padding: 6px 10px;
    font-size: 11px;
  }

  .header .header-container {
    gap: 8px;
    padding: 8px 10px;
  }

  .header .logo img {
    max-height: 50px;
  }

  .mobile-nav-toggle {
    font-size: 24px;
  }
}

@media (max-width: 400px) {
  .btn-afm-secondary {
    padding: 5px 8px;
    font-size: 10px;
  }

  .header .logo img {
    max-height: 45px;
  }
}


/*--------------------------------------------------------------
# Right Actions Container (Button + Search)
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .right-actions-container {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    transition: all 0.4s ease;
  }

  /* Button Styling */
  .btn-afm-secondary {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 10px 20px;
    transition: all 0.4s ease;
  }

  /* Compress button when search is active - DON'T HIDE IT */
  .right-actions-container.search-active .btn-afm-secondary {
    font-size: 11px;
    padding: 8px 12px;
  }

  /* Search Icon Button */
  .search-icon-btn {
    background: var(--accent-color);
    border: none;
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
  }

  .search-icon-btn:hover {
    background: color-mix(in srgb, var(--accent-color), black 10%);
    transform: scale(1.05);
  }

  .search-icon-btn.hidden {
    opacity: 0;
    transform: scale(0);
    pointer-events: none;
    width: 0;
    margin: 0;
  }

  /* Search Input Wrapper */
  .search-input-wrapper {
    width: 0;
    opacity: 0;
    overflow: visible;
    transition: all 0.4s ease;
    position: relative;
  }

  .search-input-wrapper.active {
    width: 280px;
    opacity: 1;
  }

  /* Search Form */
  .search-form-right {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 25px;
    padding: 5px;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    position: relative;
  }

  .search-input-right {
    flex: 1;
    border: none;
    outline: none;
    padding: 8px 15px;
    font-size: 14px;
    background: transparent;
    color: var(--default-color);
    min-width: 0;
  }

  .search-input-right::placeholder {
    color: #999;
  }

  .search-submit-right,
  .search-close-right {
    border: none;
    color: white;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }

  .search-submit-right {
    background: var(--accent-color);
    margin-right: 4px;
  }

  .search-close-right {
    background: #dc3545;
  }

  .search-submit-right:hover {
    background: color-mix(in srgb, var(--accent-color), black 15%);
    transform: scale(1.08);
  }

  .search-close-right:hover {
    background: #c82333;
    transform: scale(1.08);
  }

  .search-submit-right i,
  .search-close-right i {
    font-size: 14px;
  }

  /* Search Suggestions Dropdown */
  .search-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    max-height: 450px;
    overflow-y: auto;
    z-index: 10000;
    display: none;
    border: 2px solid var(--accent-color);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  .search-suggestions.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }

  .search-suggestion-item {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

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

  .search-suggestion-item:hover,
  .search-suggestion-item.active {
    background-color: #f0f7ff;
  }

  .suggestion-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }

  .suggestion-icon.services {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
  }

  .suggestion-icon.products {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
  }

  .suggestion-icon.company {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
  }

  .suggestion-content {
    flex: 1;
    min-width: 0;
  }

  .suggestion-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--default-color);
    margin-bottom: 4px;
    display: block;
    line-height: 1.4;
  }

  .suggestion-description {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 4px;
    line-height: 1.3;
  }

  .suggestion-category {
    font-size: 11px;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
  }

  .search-no-results {
    padding: 30px 20px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
  }

  .search-no-results i {
    font-size: 48px;
    margin-bottom: 12px;
    display: block;
    opacity: 0.3;
  }

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

  .search-suggestions::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }

  .search-suggestions::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
  }

  .search-suggestions::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
  }
}




/* AFM Footer Styles - Scoped to prevent conflicts */

/* Layout 1: Minimal Horizontal Footer */
.afm-footer {
  background: linear-gradient(135deg, #1B2951 0%, #2C5AA0 100%);
  color: white;
  padding: 40px 0 0;
  margin-top: 50px;
}

.afm-footer .afm-footer-main {
  padding-bottom: 30px;
}

.afm-footer .afm-footer-brand {
  /* display: flex; */
  /* align-items: center; */
  gap: 15px;
}

.afm-footer .afm-footer-logo {
  background:#ffffff;
  height: 150px;
  width: auto;
}

.afm-footer .afm-footer-info h5 {
  color: #C9A961;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.afm-footer .afm-footer-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin: 0;
}

.afm-footer .afm-footer-links h6,
.afm-footer .afm-footer-contact h6,
.afm-footer .afm-footer-cta h6 {
  color: #C9A961;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.afm-footer .afm-links-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.afm-footer .afm-links-grid a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.afm-footer .afm-links-grid a:hover {
  color: #C9A961;
}

.afm-footer .afm-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
}

.afm-footer .afm-contact-item i {
  color: #C9A961;
  width: 16px;
}

.afm-footer .afm-contact-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.afm-footer .afm-contact-item a:hover {
  color: #C9A961;
}

.afm-footer .afm-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.afm-footer .afm-btn-primary {
  background: linear-gradient(45deg, #C9A961, #D4B574);
  color: #1B2951;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  transition: all 0.3s ease;
}

.afm-footer .afm-btn-primary:hover {
  background: linear-gradient(45deg, #D4B574, #C9A961);
  transform: translateY(-1px);
}

.afm-footer .afm-btn-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  transition: all 0.3s ease;
}

.afm-footer .afm-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #C9A961;
  color: #C9A961;
}

.afm-footer .afm-social-links {
  display: flex;
  gap: 10px;
}

.afm-footer .afm-social-links a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.afm-footer .afm-social-links a:hover {
  background: #C9A961;
  color: #1B2951;
}

.afm-footer .afm-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.2);
}

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

.afm-footer .afm-footer-bottom a {
  color: #C9A961;
  text-decoration: none;
}

/* Layout 2: Card-Based Footer */
.afm-footer-cards {
  background: #F8F9FA;
  padding: 50px 0 20px;
  margin-top: 50px;
}

.afm-footer-cards .afm-card {
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease;
}

.afm-footer-cards .afm-card:hover {
  transform: translateY(-3px);
}

.afm-footer-cards .afm-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.afm-footer-cards .afm-card-logo {
  height: 40px;
  width: auto;
}

.afm-footer-cards .afm-card-header h5,
.afm-footer-cards .afm-card-header h6 {
  color: #1B2951;
  margin: 0;
  font-weight: 700;
}

.afm-footer-cards .afm-card-body p {
  color: #6C757D;
  font-size: 14px;
  margin-bottom: 15px;
}

.afm-footer-cards .afm-card-contact div {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 13px;
  color: #6C757D;
}

.afm-footer-cards .afm-card-contact i {
  color: #C9A961;
  width: 14px;
}

.afm-footer-cards .afm-service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.afm-footer-cards .afm-service-list a {
  color: #6C757D;
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.afm-footer-cards .afm-service-list a:hover {
  color: #C9A961;
}

.afm-footer-cards .afm-cta-card {
  background: linear-gradient(135deg, #1B2951, #2C5AA0);
  color: white;
}

.afm-footer-cards .afm-cta-card .afm-card-header h6 {
  color: #C9A961;
}

.afm-footer-cards .afm-cta-card p {
  color: rgba(255, 255, 255, 0.8);
}

.afm-footer-cards .afm-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.afm-footer-cards .afm-cta-btn {
  background: #C9A961;
  color: #1B2951;
  padding: 12px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.afm-footer-cards .afm-cta-btn:hover {
  background: #D4B574;
  transform: translateY(-1px);
}

.afm-footer-cards .afm-cta-btn-outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.afm-footer-cards .afm-cta-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #C9A961;
}

.afm-footer-cards .afm-social-row {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.afm-footer-cards .afm-social-row a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.afm-footer-cards .afm-social-row a:hover {
  background: #C9A961;
  color: #1B2951;
}

.afm-footer-cards .afm-copyright {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #DEE2E6;
  margin-top: 30px;
}

.afm-footer-cards .afm-copyright p {
  color: #6C757D;
  font-size: 14px;
  margin: 0;
}

.afm-footer-cards .afm-copyright a {
  color: #C9A961;
  text-decoration: none;
}

/* Layout 3: Simple Centered Footer */
.afm-simple-footer {
  background: linear-gradient(135deg, #1B2951, #2C5AA0);
  color: white;
  padding: 50px 0 20px;
  margin-top: 50px;
}

.afm-simple-footer .afm-simple-logo {
  height: 60px;
  width: auto;
  margin-bottom: 20px;
}

.afm-simple-footer h4 {
  color: #C9A961;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.afm-simple-footer .afm-simple-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.afm-simple-footer .afm-simple-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.afm-simple-footer .afm-simple-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.afm-simple-footer .afm-simple-item i {
  color: #C9A961;
}

.afm-simple-footer .afm-simple-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.afm-simple-footer .afm-simple-item a:hover {
  color: #C9A961;
}

.afm-simple-footer .afm-simple-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.afm-simple-footer .afm-simple-btn {
  background: #C9A961;
  color: #1B2951;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.afm-simple-footer .afm-simple-btn:hover {
  background: #D4B574;
  transform: translateY(-2px);
}

.afm-simple-footer .afm-simple-btn-outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.afm-simple-footer .afm-simple-btn-outline:hover {
  border-color: #C9A961;
  color: #C9A961;
}

.afm-simple-footer .afm-simple-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.afm-simple-footer .afm-simple-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.afm-simple-footer .afm-simple-social a:hover {
  background: #C9A961;
  color: #1B2951;
  transform: translateY(-2px);
}

.afm-simple-footer .afm-simple-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

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

.afm-simple-footer .afm-simple-bottom a {
  color: #C9A961;
  text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .afm-footer .afm-footer-brand {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .afm-footer .afm-cta-buttons {
    flex-direction: row;
  }
  
  .afm-simple-footer .afm-simple-info {
    flex-direction: column;
    gap: 15px;
  }
  
  .afm-simple-footer .afm-simple-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .afm-simple-footer .afm-simple-btn,
  .afm-simple-footer .afm-simple-btn-outline {
    width: 200px;
    text-align: center;
  }
}


/*--------------------------------------------------------------
# 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 0.5s linear infinite;
}

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

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

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

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

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

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

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


/* hero section */

/*--------------------------------------------------------------
# AFM Hero Section - Fully Responsive (Mobile to Desktop)
--------------------------------------------------------------*/

/* Reset & Base */
.afm-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

/* Owl Carousel Background Slider */
.afm-hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.afm-hero-slider .owl-stage-outer,
.afm-hero-slider .owl-stage,
.afm-hero-slider .owl-item {
  height: 100%;
}

.afm-hero-slider-item {
  position: relative;
  height: 100%;
  width: 100%;
}

.afm-hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay for better text visibility */
.afm-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg, 
    rgba(27, 41, 81, 0.88) 0%, 
    rgba(27, 41, 81, 0.75) 50%, 
    rgba(27, 41, 81, 0.82) 100%
  );
  z-index: 2;
}

/* Hide default Owl Carousel controls */
.afm-hero-slider.owl-carousel .owl-nav,
.afm-hero-slider.owl-carousel .owl-dots {
  display: none !important;
}

/* Custom Navigation Controls - Hidden on Mobile */
.afm-hero-nav-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 8;
  pointer-events: none;
}

.afm-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  background: rgba(201, 169, 97, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  z-index: 10;
  outline: none;
}

.afm-nav-arrow.afm-nav-prev {
  left: 25px;
}

.afm-nav-arrow.afm-nav-next {
  right: 25px;
}

.afm-nav-arrow:hover {
  background: rgba(201, 169, 97, 0.7);
  border-color: #C9A961;
  transform: translateY(-50%) scale(1.05);
}

.afm-nav-arrow i {
  font-size: 24px;
  line-height: 1;
}

/* Custom Dots - Mobile First */
.afm-hero-dots-wrapper {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  z-index: 8;
  pointer-events: none;
}

.afm-hero-dots-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
  padding: 0 15px;
}

.afm-hero-dot-item {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}

.afm-hero-dot-item.afm-dot-active {
  background: #C9A961;
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.3);
}

.afm-hero-dot-item:hover {
  background: rgba(201, 169, 97, 0.7);
}

/* Static Hero Content - MOBILE FIRST (320px - 767px) */
.afm-hero-content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  text-align: center;
  pointer-events: none;
  padding: 0 0 60px 0;
}

.afm-hero-content-wrapper .container-fluid,
.afm-hero-content-wrapper a,
.afm-hero-content-wrapper button {
  pointer-events: auto;
}

/* Enhanced Badge - Mobile First */
.afm-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(201, 169, 97, 0.4);
  border-radius: 50px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.afm-badge-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: afmShimmerAnimation 3s ease-in-out infinite;
}

@keyframes afmShimmerAnimation {
  0% { left: -100%; }
  100% { left: 100%; }
}

.afm-hero-badge i {
  color: #C9A961;
  font-size: 15px;
  flex-shrink: 0;
}

.afm-hero-badge span {
  color: white;
  font-weight: 500;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.3px;
}

/* Enhanced Title - Mobile First */
.afm-hero-title-wrapper {
  margin-bottom: 18px;
}

.afm-hero-main-title {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}

.afm-title-line-1 {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.35em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.afm-title-line-2 {
  display: block;
  margin-bottom: 4px;
  line-height: 1.1;
}

.afm-brand-al-falah {
  color: #C9A961;
  text-shadow: 0 0 25px rgba(201, 169, 97, 0.4);
  animation: afmBrandGlowAnimation 3s ease-in-out infinite alternate;
}

@keyframes afmBrandGlowAnimation {
  0% { text-shadow: 0 0 15px rgba(201, 169, 97, 0.3); }
  100% { text-shadow: 0 0 30px rgba(201, 169, 97, 0.6); }
}

.afm-brand-meridian {
  color: white;
}

.afm-title-line-3 {
  display: block;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.5em;
  font-weight: 600;
  letter-spacing: 1px;
}

.afm-title-decoration-line {
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #C9A961, #D4B574);
  border-radius: 2px;
  animation: afmDecorationGrowAnimation 2s ease-out 1s forwards;
}

@keyframes afmDecorationGrowAnimation {
  to { width: 70px; }
}

/* Enhanced Subtitle - Mobile */
.afm-hero-description-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 25px;
  line-height: 1.5;
  font-weight: 400;
  padding: 0 10px;
}

/* Enhanced Action Buttons - Mobile First */
.afm-hero-button-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  padding: 0 15px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.afm-btn-primary-gold,
.afm-btn-secondary-outline {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 260px;
  letter-spacing: 0.5px;
  -webkit-tap-highlight-color: transparent;
}

.afm-btn-primary-gold {
  background: linear-gradient(135deg, #C9A961, #D4B574);
  color: #1B2951;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.afm-btn-primary-gold:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(201, 169, 97, 0.4);
  color: #1B2951;
}

.afm-btn-secondary-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.afm-btn-secondary-outline:active {
  background: rgba(201, 169, 97, 0.15);
  color: white;
}

.afm-btn-icon {
  font-size: 15px;
  transition: transform 0.3s ease;
}

/* Small Mobile - 360px and up */
@media (min-width: 360px) {
  .afm-hero-badge span {
    font-size: 11px;
  }

  .afm-hero-main-title {
    font-size: 2rem;
  }

  .afm-hero-description-text {
    font-size: 0.95rem;
  }

  .afm-btn-primary-gold,
  .afm-btn-secondary-outline {
    font-size: 13px;
    padding: 14px 28px;
    max-width: 280px;
  }
}

/* Tablet Styles - 576px and up */
@media (min-width: 576px) {
  .afm-hero-content-wrapper {
    padding: 0 0 70px 0;
  }

  .afm-hero-badge {
    padding: 12px 22px;
    gap: 10px;
    margin-bottom: 22px;
  }

  .afm-hero-badge i {
    font-size: 17px;
  }

  .afm-hero-badge span {
    font-size: 12px;
  }

  .afm-hero-title-wrapper {
    margin-bottom: 20px;
  }

  .afm-hero-main-title {
    font-size: 2.3rem;
    margin-bottom: 14px;
  }

  .afm-hero-description-text {
    font-size: 1.05rem;
    padding: 0 20px;
    margin-bottom: 28px;
  }

  .afm-hero-button-group {
    gap: 14px;
  }

  .afm-btn-primary-gold,
  .afm-btn-secondary-outline {
    font-size: 14px;
    padding: 15px 30px;
  }

  .afm-hero-dots-wrapper {
    bottom: 25px;
  }

  .afm-hero-dots-container {
    gap: 10px;
  }

  .afm-hero-dot-item {
    width: 11px;
    height: 11px;
  }

  @keyframes afmDecorationGrowAnimation {
    to { width: 90px; }
  }
}

/* Medium Devices - 768px and up - CRITICAL FIX */
@media (min-width: 768px) {
  .afm-hero-section {
    min-height: 700px;
  }

  .afm-hero-content-wrapper {
    padding: 0 0 80px 0;
  }

  .afm-hero-badge {
    padding: 13px 24px;
    margin-bottom: 25px;
  }

  .afm-hero-badge span {
    font-size: 13px;
  }

  .afm-hero-badge i {
    font-size: 18px;
  }

  .afm-hero-title-wrapper {
    margin-bottom: 22px;
  }

  .afm-hero-main-title {
    font-size: 2.8rem;
    margin-bottom: 16px;
  }

  .afm-hero-description-text {
    font-size: 1.15rem;
    margin-bottom: 32px;
    padding: 0 30px;
  }

  .afm-hero-button-group {
    flex-direction: row;
    gap: 16px;
    max-width: 100%;
  }

  .afm-btn-primary-gold,
  .afm-btn-secondary-outline {
    font-size: 14px;
    padding: 15px 30px;
    max-width: none;
    width: auto;
  }

  .afm-btn-primary-gold:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #D4B574, #E6C485);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
    color: #1B2951;
  }

  .afm-btn-secondary-outline:hover {
    border-color: #C9A961;
    background: rgba(201, 169, 97, 0.12);
    color: #C9A961;
    transform: translateY(-3px);
  }

  .afm-btn-primary-gold:hover .afm-btn-icon,
  .afm-btn-secondary-outline:hover .afm-btn-icon {
    transform: translateX(5px);
  }

  .afm-btn-icon {
    font-size: 16px;
  }

  .afm-hero-dots-wrapper {
    bottom: 35px;
  }

  .afm-hero-dots-container {
    gap: 12px;
  }

  .afm-hero-dot-item {
    width: 12px;
    height: 12px;
  }

  @keyframes afmDecorationGrowAnimation {
    to { width: 110px; }
  }
}

/* Large Devices - 992px and up */
@media (min-width: 992px) {
  .afm-hero-section {
    min-height: 750px;
  }

  .afm-hero-content-wrapper {
    padding: 0 0 90px 0;
  }

  .afm-hero-badge {
    padding: 14px 26px;
    margin-bottom: 28px;
  }

  .afm-hero-badge span {
    font-size: 14px;
  }

  .afm-hero-title-wrapper {
    margin-bottom: 24px;
  }

  .afm-hero-main-title {
    font-size: 3.3rem;
    margin-bottom: 18px;
  }

  .afm-hero-description-text {
    font-size: 1.25rem;
    margin-bottom: 36px;
    padding: 0 40px;
  }

  .afm-hero-button-group {
    gap: 18px;
  }

  .afm-btn-primary-gold,
  .afm-btn-secondary-outline {
    font-size: 15px;
    padding: 16px 32px;
  }

  .afm-nav-arrow {
    width: 60px;
    height: 60px;
  }

  .afm-nav-arrow.afm-nav-prev {
    left: 30px;
  }

  .afm-nav-arrow.afm-nav-next {
    right: 30px;
  }

  .afm-hero-dots-wrapper {
    bottom: 40px;
  }

  .afm-hero-dot-item {
    width: 13px;
    height: 13px;
  }

  @keyframes afmDecorationGrowAnimation {
    to { width: 130px; }
  }
}

/* Extra Large Devices - 1200px and up */
@media (min-width: 1200px) {
  .afm-hero-section {
    min-height: 800px;
  }

  .afm-hero-content-wrapper {
    padding: 0 0 100px 0;
  }

  .afm-hero-badge {
    padding: 15px 28px;
    margin-bottom: 30px;
  }

  .afm-hero-badge span {
    font-size: 15px;
  }

  .afm-hero-title-wrapper {
    margin-bottom: 26px;
  }

  .afm-hero-main-title {
    font-size: 3.8rem;
    margin-bottom: 20px;
  }

  .afm-hero-description-text {
    font-size: 1.32rem;
    margin-bottom: 40px;
    padding: 0 50px;
  }

  .afm-hero-button-group {
    gap: 20px;
  }

  .afm-btn-primary-gold,
  .afm-btn-secondary-outline {
    font-size: 16px;
    padding: 16px 34px;
  }

  @keyframes afmDecorationGrowAnimation {
    to { width: 150px; }
  }

  .afm-hero-dots-wrapper {
    bottom: 45px;
  }

  .afm-hero-dot-item {
    width: 14px;
    height: 14px;
  }
}

/* Extra Extra Large - 1400px and up */
@media (min-width: 1400px) {
  .afm-hero-main-title {
    font-size: 4rem;
  }

  .afm-hero-description-text {
    font-size: 1.38rem;
  }
}

/* Ultra Wide - 1600px and up */
@media (min-width: 1600px) {
  .afm-hero-main-title {
    font-size: 4.2rem;
  }
}




/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-image:  linear-gradient(to right, rgb(91 99 120), rgb(0 0 0 / 65%), #000000a3), url(../img/header.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position:center;
  position: relative;
}

.page-title{
 
}

.page-title .heading {
  padding: 120px 0 0 0;
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

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

.page-title nav 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: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 20px;
  }

  .section-title h2:before,
  .section-title h2:after {
    content: "";
    width: 20px;
    height: 2px;
    background: var(--accent-color);
    display: inline-block;
  }
}

/* Enhanced Hero Section */


/* Animated Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 40%, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
  animation: overlayPulse 8s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes overlayPulse {
  0% { opacity: 0.3; }
  100% { opacity: 0.7; }
}

/* Floating Particles */
.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-particles::before,
.hero-particles::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(201, 169, 97, 0.6);
  border-radius: 50%;
  animation: floatParticles 15s linear infinite;
}

.hero-particles::before {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.hero-particles::after {
  top: 60%;
  left: 80%;
  animation-delay: 7s;
}

@keyframes floatParticles {
  0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0; }
  10%, 90% { opacity: 1; }
  50% { transform: translateY(-100px) translateX(50px); }
}

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

/* Enhanced Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 15px 25px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(201, 169, 97, 0.3);
  border-radius: 50px;
  backdrop-filter: blur(15px);
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.hero-badge:hover {
  border-color: rgba(201, 169, 97, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 97, 0.2);
}

.badge-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.hero-badge i {
  color: #C9A961;
  font-size: 18px;
}

.hero-badge span {
  color: white;
  font-weight: 500;
  font-size: 15px;
}

/* Enhanced Title */
.hero-title-container {
  margin-bottom: 25px;
  position: relative;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.title-line-1 {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.4em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 5px;
}

.title-line-2 {
  display: block;
  margin-bottom: 5px;
}

.brand-al-falah {
  color: #C9A961;
  text-shadow: 0 0 30px rgba(201, 169, 97, 0.5);
  animation: brandGlow 3s ease-in-out infinite alternate;
}

@keyframes brandGlow {
  0% { text-shadow: 0 0 20px rgba(201, 169, 97, 0.3); }
  100% { text-shadow: 0 0 40px rgba(201, 169, 97, 0.7); }
}

.brand-meridian {
  /* background: linear-gradient(135deg, #C9A961, #D4B574, #E6C485); */
  background: var(--afm-navy);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-line-3 {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.6em;
  font-weight: 600;
}

.title-decoration {
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #C9A961, #D4B574);
  border-radius: 2px;
  animation: decorationGrow 2s ease-out 1s forwards;
}

@keyframes decorationGrow {
  to { width: 150px; }
}

/* Enhanced Subtitle & Description */
.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  line-height: 1.5;
  font-weight: 400;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}

.hero-description i {
  color: #C9A961;
  font-size: 1.2rem;
}

/* Industry Grid */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-bottom: 40px;
}

.industry-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.industry-card:hover {
  background: rgba(201, 169, 97, 0.1);
  border-color: rgba(201, 169, 97, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 169, 97, 0.2);
}

.industry-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #C9A961, #D4B574);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1B2951;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.industry-card span {
  color: white;
  font-weight: 500;
  font-size: 15px;
}

.card-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.1), transparent);
  transition: left 0.5s ease;
}

.industry-card:hover .card-glow {
  left: 100%;
}

/* Enhanced Action Buttons */
.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.btn-afm-primary,
.btn-afm-secondary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.4s ease;
}

.btn-afm-primary {
  background: linear-gradient(135deg, #C9A961, #D4B574);
  color: #1B2951;
  border: 2px solid transparent;
}

.btn-afm-primary:hover {
  background: linear-gradient(135deg, #D4B574, #E6C485);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
  color: #1B2951;
}

.btn-afm-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-afm-secondary:hover {
  border-color: #C9A961;
  background: rgba(201, 169, 97, 0.1);
  color: #C9A961;
  transform: translateY(-3px);
}

.btn-icon {
  transition: transform 0.3s ease;
}

.btn-afm-primary:hover .btn-icon,
.btn-afm-secondary:hover .btn-icon {
  transform: translateX(5px);
}

.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.stat-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #C9A961, #D4B574);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1B2951;
  font-size: 1.1rem;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #C9A961;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Floating Shapes */
.hero-visual-element {
  position: relative;
  height: 100%;
  min-height: 400px;
  /* display: none; */
}




.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(201, 169, 97, 0.05));
  animation: floatShape 6s ease-in-out infinite;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.shape-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 30%;
  animation-delay: 2s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  bottom: 30%;
  left: 60%;
  animation-delay: 4s;
}

@keyframes floatShape {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero {
    min-height: 90vh;
    text-align: center;
  }
  
  .industry-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
    gap: 20px;
  }
  
  .floating-shapes {
    display: none;
  }

  /* Floating Shapes */
.hero-visual-element {
  display: none;
}

}

@media (max-width: 576px) {
  .hero-badge {
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .industry-card {
    padding: 15px;
  }
  
  .industry-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .stat-item {
    padding: 12px 16px;
  }

  /* Floating Shapes */
.hero-visual-element {
  display: none;
}

}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .about .content h2 {
    font-size: 2rem;
  }
}

.about .content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .about .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .about .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.about .stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.about .stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.about .stat-item .stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about .image-wrapper {
  position: relative;
}

.about .image-wrapper img {
  border-radius: 20px;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .image-wrapper .floating-card {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: var(--surface-color);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 200px;
}

@media (max-width: 768px) {
  .about .image-wrapper .floating-card {
    bottom: 1rem;
    right: 1rem;
    padding: 1rem;
    min-width: 160px;
  }
}

.about .image-wrapper .floating-card .card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b6b 30%));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.about .image-wrapper .floating-card .card-content h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--heading-color);
}

.about .image-wrapper .floating-card .card-content p {
  font-size: 0.8rem;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .features-grid {
  margin-top: 5rem;
  margin-bottom: 3rem;
}

.about .feature-card {
  background: var(--surface-color);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.about .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px color-mix(in srgb, var(--default-color), transparent 80%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.about .feature-card .feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b6b 30%));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.about .feature-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.about .feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.about .cta-section {
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 95%));
  padding: 4rem 3rem;
  border-radius: 24px;
  margin-top: 4rem;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

@media (max-width: 768px) {
  .about .cta-section {
    padding: 3rem 2rem;
  }
}

.about .cta-section h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .about .cta-section h3 {
    font-size: 1.75rem;
  }
}

.about .cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .cta-section .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.about .cta-section .cta-buttons .btn {
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.about .cta-section .cta-buttons .btn.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about .cta-section .cta-buttons .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.about .cta-section .cta-buttons .btn.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.about .cta-section .cta-buttons .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}


/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  position: relative;
  overflow: hidden;
}

.call-to-action .container {
  position: relative;
  z-index: 2;
}

.call-to-action h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.call-to-action .lead {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.call-to-action .cta-card {
  background: var(--surface-color);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  position: relative;
  overflow: hidden;
}

.call-to-action .cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6c63ff 50%));
}

@media (max-width: 992px) {
  .call-to-action .cta-card {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .call-to-action .cta-card {
    padding: 1.5rem;
  }
}

.call-to-action .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 576px) {
  .call-to-action .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.call-to-action .stat-item {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6c63ff 30%));
  border-radius: 16px;
  color: var(--contrast-color);
  transition: transform 0.3s ease;
}

.call-to-action .stat-item:hover {
  transform: translateY(-5px);
}

.call-to-action .stat-item .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.call-to-action .stat-item .stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  display: block;
  margin-top: 0.5rem;
}

.call-to-action .cta-content h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.call-to-action .cta-content p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2rem;
}

.call-to-action .cta-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (max-width: 576px) {
  .call-to-action .cta-buttons {
    flex-direction: column;
  }
}

.call-to-action .cta-buttons .btn {
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.call-to-action .cta-buttons .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.call-to-action .cta-buttons .btn:hover::before {
  left: 100%;
}

.call-to-action .cta-buttons .btn-primary {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6c63ff 30%));
  color: var(--contrast-color);
  border: none;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.call-to-action .cta-buttons .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.call-to-action .cta-buttons .btn-outline {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.call-to-action .cta-buttons .btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.call-to-action .trust-indicators {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .call-to-action .trust-indicators {
    justify-content: center;
  }
}

.call-to-action .trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.call-to-action .trust-item i {
  color: #28a745;
  font-size: 1.1rem;
}

.call-to-action .cta-visual {
  position: relative;
  height: 100%;
  min-height: 400px;
}

@media (max-width: 992px) {
  .call-to-action .cta-visual {
    min-height: 300px;
  }
}

.call-to-action .image-stack {
  position: relative;
  height: 100%;
}

.call-to-action .image-stack .main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.call-to-action .floating-card {
  position: absolute;
  background: var(--surface-color);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--surface-color), transparent 20%);
}

.call-to-action .floating-card.card-1 {
  top: 20%;
  right: -10%;
  z-index: 3;
}

@media (max-width: 992px) {
  .call-to-action .floating-card.card-1 {
    right: 10px;
    top: 10%;
  }
}

.call-to-action .floating-card.card-2 {
  bottom: 15%;
  left: -5%;
  z-index: 3;
}

@media (max-width: 992px) {
  .call-to-action .floating-card.card-2 {
    left: 10px;
    bottom: 10%;
  }
}

.call-to-action .floating-card .card-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.call-to-action .floating-card .card-content i {
  font-size: 2rem;
  color: var(--accent-color);
}

.call-to-action .floating-card .card-content .card-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.call-to-action .floating-card .card-content .card-text {
  display: block;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.call-to-action .urgency-bar {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  border-radius: 16px;
  padding: 1.5rem;
  color: var(--contrast-color);
  text-align: center;
  box-shadow: 0 8px 25px rgba(238, 90, 36, 0.3);
}

.call-to-action .urgency-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .call-to-action .urgency-content {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.call-to-action .urgency-content i {
  font-size: 1.5rem;
  animation: pulse 2s infinite;
}

.call-to-action .urgency-content .urgency-text {
  font-weight: 600;
  font-size: 1.1rem;
}

.call-to-action .countdown {
  gap: 1rem;
}

.call-to-action .countdown>div {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  min-width: 70px;
}

.call-to-action .countdown>div span {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.call-to-action .countdown>div small {
  font-size: 0.8rem;
  opacity: 0.9;
  margin-top: 0.25rem;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-slider {
  width: 100%;
  position: relative;
  padding-bottom: 60px;
}

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

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
}

@media (max-width: 575px) {
  .testimonials .testimonial-item {
    padding: 20px;
  }
}

.testimonials .testimonial-item h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.testimonials .testimonial-item p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonials .testimonial-item .profile {
  gap: 15px;
}

.testimonials .testimonial-item .profile .profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials .testimonial-item .profile .profile-info h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

.testimonials .testimonial-item .profile .profile-info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
}

.testimonials .testimonial-item .featured-img-wrapper {
  min-height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.testimonials .testimonial-item .featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.testimonials .swiper-navigation {
  position: absolute;
  bottom: 0;
  gap: 10px;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  margin: 0;
  width: 44px;
  height: 44px;
  background-color: var(--surface-color);
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  transition: 0.3s;
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 20px;
  color: var(--default-color);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.testimonials .swiper-button-prev:hover::after,
.testimonials .swiper-button-next:hover::after {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Enhanced Contact Section
--------------------------------------------------------------*/
.contact .container {
  max-width: 1280px;
}

.contact .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .contact .contact-wrapper {
    grid-template-columns: 38% 62%;
    gap: 30px;
  }
}

/* Enhanced Contact Info Panel */
.contact .contact-info-panel {
  background: linear-gradient(145deg, #1B2951, #2C5AA0);
  color: white;
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(27, 41, 81, 0.2);
  position: relative;
  overflow: hidden;
}

.contact .contact-info-panel::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(201, 169, 97, 0.1), transparent);
  transform: rotate(45deg);
  pointer-events: none;
}

.contact .contact-info-panel .contact-info-header {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.contact .contact-info-panel .contact-info-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.contact .contact-info-panel .contact-info-header p {
  font-size: 15px;
  opacity: 0.9;
  line-height: 1.7;
}

/* Enhanced Info Cards */
.contact .contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: auto;
  position: relative;
  z-index: 2;
}

@media (min-width: 576px) and (max-width: 991px) {
  .contact .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .info-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact .info-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(201, 169, 97, 0.3);
  transform: translateY(-8px) translateX(5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.contact .info-card .icon-container {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #C9A961, #D4B574);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

.contact .info-card .icon-container i {
  font-size: 22px;
  color: white;
}

.contact .info-card .card-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}

.contact .info-card .card-content p {
  font-size: 15px;
  margin-bottom: 5px;
  opacity: 0.9;
  line-height: 1.5;
}

.contact .info-card .card-content small {
  font-size: 12px;
  opacity: 0.7;
  font-style: italic;
}

/* Enhanced Social Links */
.contact .social-links-panel {
  margin-top: 35px;
  position: relative;
  z-index: 2;
}

.contact .social-links-panel h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.contact .social-links-panel .social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact .social-links-panel .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact .social-links-panel .social-icons a:hover {
  background: linear-gradient(135deg, #C9A961, #D4B574);
  border-color: rgba(201, 169, 97, 0.3);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(201, 169, 97, 0.4);
}

.contact .quick-actions .btn {
  font-size: 12px;
  padding: 8px 16px;
  transition: all 0.3s ease;
}

.contact .quick-actions .btn:hover {
  background: white !important;
  color: #1B2951 !important;
  transform: translateY(-2px);
}

/* Enhanced Form Panel */
.contact .contact-form-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .map-container {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.contact .map-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
}

.contact .map-badge {
  background: linear-gradient(135deg, #1B2951, #2C5AA0);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(27, 41, 81, 0.3);
  backdrop-filter: blur(10px);
}

/* Enhanced Form Container */
.contact .form-container {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(201, 169, 97, 0.1);
}

.contact .form-container h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1B2951;
}

.contact .form-container p {
  font-size: 15px;
  color: #6C757D;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Enhanced Form Controls */
.contact .form-container .form-floating {
  margin-bottom: 20px;
}

.contact .form-container .form-floating .form-control,
.contact .form-container .form-floating .form-select {
  border-radius: 12px;
  border: 2px solid #E9ECEF;
  padding: 24px 20px 8px 20px;
  height: calc(3.5rem + 4px);
  background: #FAFAFA;
  color: #1B2951;
  transition: all 0.3s ease;
  font-size: 15px;
}

.contact .form-container .form-floating .form-control:focus,
.contact .form-container .form-floating .form-select:focus {
  box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.15);
  border-color: #C9A961;
  background: white;
}

.contact .form-container .form-floating label {
  color: #6C757D;
  padding: 1rem 1.25rem;
  font-weight: 500;
}

.contact .form-container .form-floating .form-control:focus ~ label,
.contact .form-container .form-floating .form-control:not(:placeholder-shown) ~ label,
.contact .form-container .form-floating .form-select:focus ~ label,
.contact .form-container .form-floating .form-select:not([value=""]) ~ label {
  color: #C9A961;
}

/* Enhanced Submit Button */
.contact .form-container .btn-submit {
  background: linear-gradient(135deg, #C9A961, #D4B574);
  color: #1B2951;
  border: none;
  padding: 18px 30px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  width: 100%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(201, 169, 97, 0.3);
}

.contact .form-container .btn-submit:hover {
  background: linear-gradient(135deg, #1B2951, #2C5AA0);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(27, 41, 81, 0.4);
}

.contact .form-container .btn-submit .btn-icon {
  transition: transform 0.3s ease;
}

.contact .form-container .btn-submit:hover .btn-icon {
  transform: translateX(5px);
}

/* Form Status Messages */
.contact .loading {
  padding: 15px;
  background: #E3F2FD;
  border: 1px solid #BBDEFB;
  border-radius: 8px;
  color: #1976D2;
}

.contact .sent-message {
  background: #E8F5E8 !important;
  border-color: #C8E6C9 !important;
  color: #2E7D32 !important;
}

.contact .error-message {
  background: #FFEBEE !important;
  border-color: #FFCDD2 !important;
  color: #C62828 !important;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .contact .contact-info-panel {
    padding: 30px 25px;
  }

  .contact .form-container {
    padding: 30px 25px;
  }
  
  .contact .map-container {
    height: 250px;
  }
  
  .contact .info-card {
    padding: 20px 15px;
  }
  
  .contact .info-card .icon-container {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 576px) {
  .contact .social-links-panel .social-icons {
    justify-content: center;
  }
  
  .contact .quick-actions {
    justify-content: center !important;
  }
  
  .contact .contact-info-cards {
    grid-template-columns: 1fr;
  }
}

/* Contact Guarantee */
.contact .contact-guarantee { 
  border-radius: 10px;
}

/* Form Text Enhancement */
.contact .form-text {
  margin-top: 8px;
}

/* Tooltip Styling */
[data-bs-toggle="tooltip"] {
  cursor: pointer;
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 80px 0;
  margin: 0 auto;
}

.error-404 .error-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}

.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.error-404 .search-box {
  max-width: 500px;
  margin: 0 auto;
}

.error-404 .search-box .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .error-404 .error-title {
    font-size: 1.5rem;
  }

  .error-404 .error-text {
    font-size: 1rem;
    padding: 0 20px;
  }

  .error-404 .search-box {
    margin: 0 20px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}


/*--------------------------------------------------------------
# about Section
--------------------------------------------------------------*/

/* AFM Brand Variables */
:root {
  --afm-navy: #1B2951;
  --afm-gold: #C9A961;
  --afm-light-gold: #D4B574;
  --afm-light-blue: #2C5AA0;
  --afm-light-gray: #F8F9FA;
}

/* About Section Styling */
.about.section {
  background: linear-gradient(135deg, #ffffff 0%, rgba(248, 249, 250, 0.8) 100%);
  position: relative;
  overflow: hidden;
}

.about.section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: linear-gradient(45deg, rgba(201, 169, 97, 0.05), transparent);
  transform: rotate(15deg);
  z-index: 0;
}

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

/* Section Title Enhancements */
.afm-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, var(--afm-navy), var(--afm-gold));
  border-radius: 2px;
}

/* Content Styling */
.content {
  padding: 20px 0;
}

.content-decoration {
  position: absolute;
  top: -10px;
  left: -20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(27, 41, 81, 0.1));
  border-radius: 50%;
  z-index: -1;
}

.quote-mark {
  font-size: 3rem;
  color: var(--afm-gold);
  font-family: serif;
  line-height: 1;
  float: left;
  margin: -10px 10px 0 0;
}

/* Feature Points */
.feature-point {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  background: rgba(248, 249, 250, 0.8);
  border-radius: 8px;
  border-left: 3px solid var(--afm-gold);
  transition: all 0.3s ease;
}

.feature-point:hover {
  transform: translateX(5px);
  box-shadow: 0 3px 15px rgba(201, 169, 97, 0.2);
}

/* Image Wrapper Enhancements */
.image-wrapper {
  perspective: 1000px;
}

.image-frame {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}

.image-frame:hover {
  transform: rotateY(5deg) rotateX(2deg);
}

.image-frame img {
  width: 100%;
  border: 8px solid white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 169, 97, 0.2);
  transition: all 0.3s ease;
}

.floating-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.floating-card-1 {
  top: 20%;
  left: -10%;
  z-index: 2;
}

.floating-card-2 {
  bottom: 20%;
  right: -10%;
  z-index: 2;
}

.card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--afm-gold), var(--afm-light-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

/* Image Decorations */
.image-decoration-1 {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(27, 41, 81, 0.1), transparent);
  border-radius: 50%;
  z-index: -1;
}

.image-decoration-2 {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), transparent);
  border-radius: 50%;
  z-index: -1;
}

/* Enhanced CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(27, 41, 81, 0.05) 0%, rgba(201, 169, 97, 0.05) 100%);
  border: 2px solid rgba(201, 169, 97, 0.2);
  position: relative;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23C9A961" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%231B2951" opacity="0.1"/><circle cx="40" cy="80" r="2.5" fill="%23C9A961" opacity="0.1"/></svg>');
  z-index: 0;
}

.cta-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--afm-navy), var(--afm-light-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 2rem;
  color: white;
  box-shadow: 0 10px 30px rgba(27, 41, 81, 0.2);
}

/* AFM Buttons */
.btn-afm-primary {
  background: linear-gradient(45deg, var(--afm-gold), var(--afm-light-gold));
  border: none;
  color: var(--afm-navy);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-afm-primary:hover {
  background: linear-gradient(45deg, var(--afm-navy), var(--afm-light-blue));
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(27, 41, 81, 0.3);
}

.btn-afm-outline {
  background: transparent;
  border: 2px solid var(--afm-navy);
  color: var(--afm-navy);
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-afm-outline:hover {
  background: var(--afm-navy);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(27, 41, 81, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .floating-card-1,
  .floating-card-2 {
    position: static;
    margin: 20px 0;
    transform: none;
  }
  
  .quote-mark {
    font-size: 2rem;
    margin: -5px 8px 0 0;
  }
  
  .cta-buttons .btn {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
}

/* Text Colors */
.text-navy { color: var(--afm-navy) !important; }
.text-gold { color: var(--afm-gold) !important; }


/* ********* */
/* Responsive fixes */
@media (max-width: 768px) {
  .display-5 {
    font-size: 2rem !important;
  }
  
  .fs-1 {
    font-size: 2rem !important;
  }
  
  .p-5 {
    padding: 2rem !important;
  }
  
  .nav-link {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem !important;
  }
}

@media (max-width: 576px) {
  .display-5 {
    font-size: 1.75rem !important;
  }
  
  .h3 {
    font-size: 1.5rem !important;
  }
  
  .p-4, .p-5 {
    padding: 1.5rem !important;
  }
}

/* Tab button styles */
.nav-pills .nav-link:not(.active) {
  background: transparent !important;
}

.nav-pills .nav-link:not(.active):hover {
  background: rgba(27, 41, 81, 0.1) !important;
  color: #1B2951 !important;
}






/*--------------------------------------------------------------
# our client Section
--------------------------------------------------------------*/

/* Client Section Enhancements */
.client-feature {
  cursor: pointer;
}

.client-feature:hover {
  background: rgba(201, 169, 97, 0.15) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 169, 97, 0.2);
}

.industry-badge:hover {
  background: rgba(201, 169, 97, 0.15) !important;
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Card hover effect */
.clients .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
}

/* Icon animations */
.client-feature .rounded-circle {
  transition: all 0.3s ease;
}

.client-feature:hover .rounded-circle {
  transform: scale(1.1);
  background: linear-gradient(135deg, #C9A961, #D4B574) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .display-6 {
    font-size: 2rem !important;
  }
  
  .client-feature {
    margin-bottom: 1rem;
  }
  
  .card-body {
    padding: 2rem !important;
  }
  
  .industry-badge {
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .industry-badge {
    padding: 1rem !important;
  }
  
  .client-feature {
    flex-direction: column;
    text-align: center;
  }
  
  .client-feature .rounded-circle {
    margin-bottom: 1rem;
    margin-right: 0 !important;
  }
}




/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.projects .projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
}

@media (max-width: 992px) {
  .projects .projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .projects .projects-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.projects .project-item {
  display: flex;
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px
    color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.4s ease;
  min-height: 280px;
}

.projects .project-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px
    color-mix(in srgb, var(--default-color), transparent 85%);
}

.projects .project-item:hover .project-visual img {
  transform: scale(1.08);
}

.projects .project-item:hover .project-link {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.projects .project-item:hover .project-link i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .projects .project-item {
    flex-direction: column;
    min-height: auto;
  }
}

.projects .project-content {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .projects .project-content {
    padding: 25px;
  }
}

.projects .project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.projects .project-category {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.projects .project-status {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.projects .project-status.completed {
  background: #22c55e;
  color: #ffffff;
}

.projects .project-status.in-progress {
  background: var(--accent-color);
  color: #ffffff;
}

.projects .project-status.planning {
  background: #f59e0b;
  color: #ffffff;
}

.projects .project-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .projects .project-title {
    font-size: 20px;
  }
}

.projects .project-details {
  margin-bottom: 25px;
}

.projects .project-info {
  margin-bottom: 20px;
}

.projects .project-info p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.projects .project-specs {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

@media (max-width: 576px) {
  .projects .project-specs {
    flex-direction: column;
    gap: 8px;
  }
}

.projects .spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.projects .spec-item i {
  color: var(--accent-color);
  font-size: 14px;
}

.projects .project-location {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.projects .project-location i {
  color: var(--accent-color);
  font-size: 14px;
}

.projects .project-location span {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 900;
}

.projects .project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.projects .project-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.projects .project-visual {
  flex: 0 0 300px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .projects .project-visual {
    flex: none;
    height: 100px;
  }
}

.projects .project-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.projects .project-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.projects .project-badge i {
  color: var(--accent-color);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Products Section
--------------------------------------------------------------*/

/* Product Section Enhancements */
.product-category-card .card {
  transition: all 0.3s ease;
  overflow: hidden;
}

.product-category-card:hover .card {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

/* Image hover effects */
.product-category-card:hover img {
  transform: scale(1.05);
}

.category-item:hover {
  background: rgba(201, 169, 97, 0.1) !important;
  border-color: #C9A961 !important;
  transform: translateX(5px);
}

.quality-badge {
  border-radius: 10px !important;
}

/* Image overlay effects for main intro */
.position-relative img {
  transition: transform 0.3s ease;
}

.position-relative:hover img {
  transform: scale(1.05);
}

/* Floating badges animation */
.badge {
  animation: float 3s ease-in-out infinite;
}

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

/* Corner icons hover effect */
.product-category-card:hover .position-absolute .rounded-circle {
  transform: scale(1.1);
}

/* Button hover effects */
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .display-4 {
    font-size: 2.5rem !important;
  }
  
  .card-body {
    padding: 2rem !important;
  }
  
  .category-item {
    margin-bottom: 0.75rem;
  }
  
  /* Adjust image height for mobile */
  .product-category-card .position-relative {
    height: 200px !important;
  }
}

@media (max-width: 576px) {
  .product-category-card .position-relative {
    height: 180px !important;
  }
}

/*--------------------------------------------------------------
# why choose us Section
--------------------------------------------------------------*/
/* Why Choose Us */

/* AFM Brand Colors */
:root {
    --afm-navy: #1B2951;
    --afm-gold: #C9A961;
    --afm-light-gold: #D4B574;
    --afm-light-blue: #2C5AA0;
}

.text-navy { color: var(--afm-navy) !important; }
.text-gold { color: var(--afm-gold) !important; }

/* Section Styling */
#why-choose-us {
    background: linear-gradient(135deg, #F8F9FA 0%, rgba(201, 169, 97, 0.05) 100%);
}

/* Section Divider */
.afm-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--afm-navy), var(--afm-gold));
    border-radius: 2px;
}

/* Feature Cards */
.feature-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(27, 41, 81, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 97, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(27, 41, 81, 0.15);
    border-color: var(--afm-gold);
}

/* Icon Styling */
.icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--afm-gold), var(--afm-light-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.3);
}

.icon-wrapper i {
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--afm-navy), var(--afm-light-blue));
    box-shadow: 0 8px 25px rgba(27, 41, 81, 0.3);
}

/* Hover Overlay Effect */
.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 41, 81, 0.9), rgba(201, 169, 97, 0.9));
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.feature-card:hover .feature-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.feature-card:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
}

.overlay-content span {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, 
        rgba(27, 41, 81, 0.05) 0%, 
        rgba(201, 169, 97, 0.1) 100%);
    border: 2px solid rgba(201, 169, 97, 0.2);
}

/* AFM Button */
.btn-afm-gold {
    background: linear-gradient(45deg, var(--afm-gold), var(--afm-light-gold));
    border: none;
    color: var(--afm-navy);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-afm-gold:hover {
    background: linear-gradient(45deg, var(--afm-navy), var(--afm-light-blue));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(27, 41, 81, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .feature-card {
        margin-bottom: 20px;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .cta-section {
        padding: 30px 20px !important;
    }
}

/* Animation for cards on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(2) { animation-delay: 0.1s; }
.feature-card:nth-child(3) { animation-delay: 0.2s; }
.feature-card:nth-child(4) { animation-delay: 0.3s; }
.feature-card:nth-child(5) { animation-delay: 0.4s; }
.feature-card:nth-child(6) { animation-delay: 0.5s; }


/*--------------------------------------------------------------
# Button styles
--------------------------------------------------------------*/

/* AFM CTA Buttons - Responsive Design */

/* Primary CTA Button */
.btn-afm-cta {
  background: linear-gradient(45deg, #C9A961, #D4B574);
  border: none;
  color: #1B2951;
  font-weight: 700;
  padding: 15px 35px;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  box-shadow: 0 5px 20px rgba(201, 169, 97, 0.3);
}

.btn-afm-cta:hover {
  background: linear-gradient(45deg, #1B2951, #2C5AA0);
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(27, 41, 81, 0.4);
}

/* Secondary CTA Button */
.btn-afm-secondary {
  background: linear-gradient(45deg, #1B2951, #2C5AA0);
  border: none;
  color: white;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  box-shadow: 0 5px 20px rgba(27, 41, 81, 0.2);
}

.btn-afm-secondary:hover {
  background: linear-gradient(45deg, #C9A961, #D4B574);
  color: #1B2951;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

/* Outline Button */
.btn-afm-outline {
  background: transparent;
  border: 2px solid #1B2951;
  color: #1B2951;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
}

.btn-afm-outline:hover {
  background: #1B2951;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27, 41, 81, 0.3);
}

/* Gold Outline Button */
.btn-afm-gold-outline {
  background: transparent;
  border: 2px solid #C9A961;
  color: #C9A961;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
}

.btn-afm-gold-outline:hover {
  background: linear-gradient(45deg, #C9A961, #D4B574);
  color: #1B2951;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 169, 97, 0.3);
}

/* Button Icon Animations */
.btn-afm-cta i,
.btn-afm-secondary i,
.btn-afm-outline i,
.btn-afm-gold-outline i {
  transition: transform 0.3s ease;
}

.btn-afm-cta:hover i,
.btn-afm-secondary:hover i,
.btn-afm-outline:hover i,
.btn-afm-gold-outline:hover i {
  transform: translateX(3px);
}

/* Button Groups */
.cta-group {
  margin: 2rem 0;
}

.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

/* Responsive Design */
@media (min-width: 768px) {
  .cta-stack {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  
  .cta-stack .btn {
    width: auto !important;
  }
}

@media (max-width: 767px) {
  /* Mobile Button Adjustments */
  .btn-afm-cta {
    padding: 12px 25px;
    font-size: 13px;
    min-width: 140px;
  }
  
  .btn-afm-secondary,
  .btn-afm-outline,
  .btn-afm-gold-outline {
    padding: 10px 20px;
    font-size: 13px;
    min-width: 120px;
  }
  
  /* Full width on small screens */
  .cta-group .btn,
  .cta-stack .btn {
    width: 100%;
    margin-bottom: 0.75rem;
  }
  
  .cta-group {
    flex-direction: column !important;
  }
  
  /* Reduce spacing */
  .cta-group,
  .cta-stack {
    margin: 1.5rem 0;
  }
}

@media (max-width: 576px) {
  /* Extra small screens */
  .btn-afm-cta {
    padding: 10px 20px;
    font-size: 12px;
    letter-spacing: 0.5px;
  }
  
  .btn-afm-secondary,
  .btn-afm-outline,
  .btn-afm-gold-outline {
    padding: 8px 16px;
    font-size: 12px;
    letter-spacing: 0.3px;
  }
}

/* Focus States for Accessibility */
.btn-afm-cta:focus,
.btn-afm-secondary:focus,
.btn-afm-outline:focus,
.btn-afm-gold-outline:focus {
  outline: 3px solid rgba(201, 169, 97, 0.5);
  outline-offset: 2px;
}

/* Loading State (Optional) */
.btn-afm-cta.loading,
.btn-afm-secondary.loading,
.btn-afm-outline.loading,
.btn-afm-gold-outline.loading {
  pointer-events: none;
  opacity: 0.7;
}

.btn-afm-cta.loading::after,
.btn-afm-secondary.loading::after,
.btn-afm-outline.loading::after,
.btn-afm-gold-outline.loading::after {
  content: '';
  width: 16px;
  height: 16px;
  margin-left: 10px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/*--------------------------------------------------------------
# WhatsApp Floating Button - Mobile First with Floating Effect
--------------------------------------------------------------*/

/* Base styles for mobile (default) */
.floating-whatsapp {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 15px;
  left: 15px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 26px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  /* Combined animations: pulse + float */
  animation: pulse-whatsapp 2s infinite, float-whatsapp 3s ease-in-out infinite;
}

.floating-whatsapp:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  color: #fff;
  text-decoration: none;
  /* Pause floating on hover */
  animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp:focus {
  outline: 3px solid rgba(37, 211, 102, 0.5);
  outline-offset: 2px;
}

.fab-icon {
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/

/* Pulse animation (expanding circle effect) */
@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Floating animation (up and down movement) */
@keyframes float-whatsapp {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/*--------------------------------------------------------------
# Responsive Breakpoints
--------------------------------------------------------------*/

/* Small phones (320px - 480px) */
@media (min-width: 320px) and (max-width: 480px) {
  .floating-whatsapp {
    width: 50px;
    height: 50px;
    bottom: 15px;
    left: 15px;
    font-size: 26px;
  }
  
  @keyframes float-whatsapp {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
  }
}

/* Medium phones and small tablets (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
  .floating-whatsapp {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
    font-size: 28px;
  }
  
  @keyframes float-whatsapp {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }
}

/* Tablets (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .floating-whatsapp {
    width: 58px;
    height: 58px;
    bottom: 25px;
    right: 25px;
    font-size: 30px;
  }
  
  @keyframes float-whatsapp {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
  }
}

/* Small desktops (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .floating-whatsapp {
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    font-size: 32px;
  }
  
  @keyframes float-whatsapp {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
  }
}

/* Medium desktops (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .floating-whatsapp {
    width: 62px;
    height: 62px;
    bottom: 30px;
    right: 35px;
    font-size: 34px;
  }
  
  @keyframes float-whatsapp {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
  }
}

/* Large desktops (1400px and above) */
@media (min-width: 1400px) {
  .floating-whatsapp {
    width: 65px;
    height: 65px;
    bottom: 35px;
    right: 40px;
    font-size: 36px;
  }
  
  @keyframes float-whatsapp {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
  }
}

/*--------------------------------------------------------------
# Landscape Mode Adjustments
--------------------------------------------------------------*/
@media (max-height: 500px) and (orientation: landscape) {
  .floating-whatsapp {
    width: 45px;
    height: 45px;
    bottom: 10px;
    right: 10px;
    font-size: 24px;
  }
  
  @keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
  }
  
  @keyframes float-whatsapp {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
  }
}

/*--------------------------------------------------------------
# Touch Device Optimization
--------------------------------------------------------------*/
@media (hover: none) and (pointer: coarse) {
  .floating-whatsapp {
    min-width: 50px;
    min-height: 50px;
  }
  
  .floating-whatsapp:active {
    transform: scale(0.95);
    background-color: #128c7e;
    animation: pulse-whatsapp 2s infinite;
  }
}

/*--------------------------------------------------------------
# Accessibility - Reduced Motion
--------------------------------------------------------------*/
@media (prefers-reduced-motion: reduce) {
  .floating-whatsapp {
    animation: none !important;
    transition: background-color 0.3s ease;
  }
  
  .floating-whatsapp:hover {
    transform: none;
  }
}

/*--------------------------------------------------------------
# Print Media - Hide Button
--------------------------------------------------------------*/
@media print {
  .floating-whatsapp {
    display: none;
  }
}

/*--------------------------------------------------------------
# High DPI Screens
--------------------------------------------------------------*/
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .floating-whatsapp {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  }
}



/* Products */

/* Product Card Hover Effect */
.product-card {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
}

/* Image Hover Effects */
.product-image:hover {
    transform: scale(1.1);
}

.image-wrapper:hover .image-overlay {
    background: rgba(0, 123, 255, 0.7) !important;
}

.image-wrapper:hover .image-overlay span {
    opacity: 1 !important;
}

/* Hero Image Zoom */
.hover-zoom:hover {
    transform: scale(1.05);
}

/* List Item Hover */
.product-list li {
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 8px;
}

.product-list li:hover {
    background: #f8f9fa;
    transform: translateX(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Smooth transitions for all elements */
* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}



/* *********************** */
/* Our Clients section */
/* *********************** */

/* Client Categories */
.client-category {
  margin-bottom: 60px;
}

/* Category Headers */
.category-header {
  margin-bottom: 40px;
}

.category-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), #d19000);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.category-icon i {
  font-size: 2rem;
  color: white;
}

.category-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.category-subtitle {
  color: var(--default-color);
  opacity: 0.8;
  font-size: 1rem;
}

/* Client Cards */
.clients-grid {
  margin-bottom: 20px;
}

.client-card {
  background: white;
  border-radius: 16px;
  padding: 25px 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(242, 169, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--accent-color);
}

.client-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  position: relative;
}

.client-logo img {
  max-height: 70px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.client-card:hover .client-logo img {
  transform: scale(1.1);
}

.client-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1.3;
  margin-top: auto;
}

/* Client Stats */
.client-stats {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-item {
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Alternative Layout - Logo Carousel Style */
.client-carousel {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.carousel-track {
  display: inline-flex;
  animation: scroll 30s linear infinite;
  gap: 40px;
  align-items: center;
}

.carousel-item {
  flex-shrink: 0;
  width: 150px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(242, 169, 0, 0.1);
  transition: all 0.3s ease;
}

.carousel-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.carousel-item img {
  max-height: 60px;
  max-width: 120px;
  object-fit: contain;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-150px * 10 - 400px)); }
}

/* Responsive Design */
@media (max-width: 992px) {
  .category-title {
    font-size: 1.5rem;
  }
  
  .client-card {
    padding: 20px 10px;
  }
  
  .client-logo {
    height: 70px;
    margin-bottom: 12px;
  }
  
  .client-logo img {
    max-height: 60px;
  }
  
  .client-name {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .category-icon {
    width: 60px;
    height: 60px;
  }
  
  .category-icon i {
    font-size: 1.5rem;
  }
  
  .category-title {
    font-size: 1.3rem;
  }
  
  .category-subtitle {
    font-size: 0.9rem;
  }
  
  .client-card {
    padding: 15px 8px;
  }
  
  .client-logo {
    height: 60px;
    margin-bottom: 10px;
  }
  
  .client-logo img {
    max-height: 50px;
  }
  
  .client-name {
    font-size: 0.75rem;
  }
  
  .stat-number {
    font-size: 2rem !important;
  }
}

@media (max-width: 576px) {
  .client-category {
    margin-bottom: 40px;
  }
  
  .category-header {
    margin-bottom: 30px;
  }
  
  .client-card {
    margin-bottom: 15px;
  }
  
  .client-stats {
    padding: 2rem !important;
  }
}

/* Loading Animation for Images */
.client-logo img {
  opacity: 0;
  animation: fadeInLogo 0.5s ease forwards;
}

@keyframes fadeInLogo {
  to {
    opacity: 1;
  }
}

/* Staggered Animation Delays */
.client-card:nth-child(1) .client-logo img { animation-delay: 0.1s; }
.client-card:nth-child(2) .client-logo img { animation-delay: 0.2s; }
.client-card:nth-child(3) .client-logo img { animation-delay: 0.3s; }
.client-card:nth-child(4) .client-logo img { animation-delay: 0.4s; }
.client-card:nth-child(5) .client-logo img { animation-delay: 0.5s; }
.client-card:nth-child(6) .client-logo img { animation-delay: 0.6s; }

