/**
* Cleaned Home Stylesheet
* Based on your current FlexStart-derived file, but trimmed and updated
*/

/*--------------------------------------------------------------
# Root Variables
--------------------------------------------------------------*/
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Nunito", sans-serif;
  --nav-font: "Poppins", sans-serif;

  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #012970;
  --accent-color: #4154f1;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;

  --nav-color: #012970;
  --nav-hover-color: #4154f1;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #4154f1;

  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Global
--------------------------------------------------------------*/
body {
  margin: 0;
  padding: 0;
  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 ease;
}

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

img {
  max-width: 100%;
  height: auto;
}

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 70px 0;
  scroll-margin-top: 90px;
  overflow: hidden;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 70px;
  }
}

/*--------------------------------------------------------------
# Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 50px;
}

.section-title h2 {
  margin: 0;
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  font-family: var(--default-font);
}

.section-title p {
  margin: 14px 0 0;
  font-size: 34px;
  font-weight: 800;
  color: var(--heading-color);
}

.section-title p .description-title {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .section-title {
    padding-bottom: 36px;
  }

  .section-title p {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 12px 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(1, 41, 112, 0.08);
  box-shadow: 0 8px 24px rgba(10, 25, 47, 0.08);
}

.header.fixed-top {
  z-index: 1030;
}

.header .container-fluid.container-xl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  flex-shrink: 0;
}

.header .logo img {
  max-height: 44px;
  width: auto;
  border-radius: 10px;
}

.header .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.header .sitename {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--heading-color);
}

.header .logo-text small {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 500;
  color: #6c757d;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(1, 41, 112, 0.1);
  background: #f8faff;
  color: var(--heading-color);
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn-header-call:hover {
  color: var(--accent-color);
  border-color: rgba(65, 84, 241, 0.25);
}

.header .whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  margin: 0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #25D366, #13b955);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.22);
  white-space: nowrap;
  transition: all 0.3s ease;
}

.header .whatsapp-btn:hover {
  color: #fff;
  transform: translateY(-1px);
}

/* push page content below fixed header */
main.main {
  padding-top: 92px;
}

/*--------------------------------------------------------------
# Navigation - Desktop
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
  }

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

  .navmenu li {
    position: relative;
  }

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

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

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

  .navmenu .dropdown ul {
    position: absolute;
    left: 0;
    top: calc(100% + 10px);
    z-index: 99;
    min-width: 240px;
    margin: 0;
    padding: 10px 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
    transition: all 0.25s ease;
  }

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

  .navmenu .dropdown ul a {
    padding: 11px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
    background: rgba(65, 84, 241, 0.04);
  }

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

  .mobile-nav-toggle {
    display: none;
  }
}

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

  .header .container-fluid.container-xl {
    gap: 10px;
  }

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

  .mobile-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    color: var(--nav-color);
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
    background: #f8faff;
    border: 1px solid rgba(1, 41, 112, 0.08);
  }

  .navmenu > ul {
    display: none;
    position: fixed;
    top: 76px;
    left: 12px;
    right: 12px;
    width: auto;
    list-style: none;
    margin: 0;
    padding: 12px 0;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--nav-font);
    color: var(--nav-dropdown-color);
  }

  .navmenu a i,
  .navmenu a:focus i {
    width: 28px;
    height: 28px;
    margin-left: 8px;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(65, 84, 241, 0.08);
  }

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

  .navmenu .dropdown ul {
    display: none;
    position: static;
    margin: 6px 14px 10px;
    padding: 8px 0;
    border-radius: 12px;
    background: #f8faff;
    border: 1px solid rgba(1, 41, 112, 0.08);
    box-shadow: none;
  }

  .navmenu .dropdown ul.dropdown-active {
    display: block;
  }

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

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

  .btn-header-call {
    display: none !important;
  }

  main.main {
    padding-top: 84px;
  }
}

@media (max-width: 768px) {
  .header .logo img {
    max-height: 38px;
  }

  .header .sitename {
    font-size: 22px;
  }

  .header .logo-text small {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .header .whatsapp-btn {
    padding: 9px 14px;
    font-size: 14px;
  }

  .navmenu > ul {
    top: 72px;
    left: 10px;
    right: 10px;
    max-height: calc(100vh - 90px);
  }
}

@media (max-width: 576px) {
  .header .sitename {
    font-size: 20px;
  }

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

  .mobile-nav-toggle {
    width: 40px;
    height: 40px;
    font-size: 27px;
  }

  .navmenu > ul {
    top: 70px;
    left: 8px;
    right: 8px;
  }

  main.main {
    padding-top: 80px;
  }
}



/* =========================
   MOBILE NAV FIX
========================= */

@media (max-width: 1199px) {

  .navmenu > ul {
    display: none;
    position: fixed;
    top: 80px;
    left: 10px;
    right: 10px;
    background: #fff;
    border-radius: 14px;
    padding: 10px 0;
    z-index: 9999;
  }

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

  body.mobile-nav-active {
    overflow: hidden;
  }
}
/*--------------------------------------------------------------
# Hero Slider
--------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 19, 42, 0.92), rgba(25, 83, 163, 0.78)),
    url("../img/hero-bg.png") center center / cover no-repeat;
}

.hero-slider-wrapper {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-slide-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease, visibility 0.8s ease;
  z-index: 1;
}

.hero-slide-item.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  z-index: 2;
}

.hero-slide-item .container {
  padding-top: 130px;
  padding-bottom: 80px;
}

.hero-content-box {
  max-width: 640px;
  color: #fff;
}

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.hero p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero .btn-get-started {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-color), #5c7cff);
  box-shadow: 0 12px 30px rgba(65, 84, 241, 0.35);
  transition: all 0.3s ease;
}

.hero .btn-get-started:hover {
  color: #fff;
  transform: translateY(-3px);
}

.hero .btn-watch-video {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: all 0.3s ease;
}

.hero .btn-watch-video i {
  font-size: 18px;
  color: #fff;
}

.hero .btn-watch-video:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}

.hero-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-card {
  width: 100%;
  max-width: 560px;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.22);
}

.hero-image-card img {
  display: block;
  width: 100%;
  border-radius: 20px;
}

.hero-slider-controls {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  pointer-events: auto;
  transition: all 0.3s ease;
}

.hero-nav:hover {
  background: rgba(255, 255, 255, 0.24);
}

.hero-nav.prev {
  left: 24px;
}

.hero-nav.next {
  right: 24px;
}

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  width: 34px;
  border-radius: 999px;
  background: #fff;
}

/*--------------------------------------------------------------
# Hero Responsive
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .hero h1 {
    font-size: 46px;
  }

  .hero-slide-item .container {
    padding-top: 120px;
  }

  .hero-nav {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 991px) {
  .hero,
  .hero-slider-wrapper {
    min-height: auto;
  }

  .hero-slider-wrapper {
    overflow: hidden;
  }

  .hero-slide-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
  }

  .hero-slide-item.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    z-index: 2;
  }

  .hero-slide-item .container {
    padding-top: 110px;
    padding-bottom: 70px;
  }

  .hero-content-box,
  .hero h1,
  .hero p {
    text-align: center;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image-card {
    max-width: 460px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-slide-item .container {
    padding-top: 100px;
    padding-bottom: 76px;
  }

  .hero-badge {
    margin-bottom: 14px;
    padding: 7px 13px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    width: 100%;
    max-width: 270px;
  }

  .hero-slider-controls {
    display: none;
  }

  .hero-slider-dots {
    bottom: 18px;
  }

  .hero-image-card {
    padding: 12px;
    border-radius: 20px;
  }

  .hero-image-card img {
    border-radius: 14px;
  }
}

@media (max-width: 576px) {
  .hero-slide-item .container {
    padding-top: 92px;
    padding-bottom: 68px;
  }

  .hero h1 {
    font-size: 26px;
  }

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

  .hero-content-box {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide-item,
  .hero-nav,
  .hero-dot,
  .hero .btn-get-started,
  .hero .btn-watch-video {
    transition: none;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content {
  padding: 40px;
  border-radius: 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.about .content h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-color);
}

.about .content h2 {
  font-size: 28px;
  font-weight: 800;
}

.about .content p {
  margin: 15px 0 30px;
  line-height: 1.8;
}

.about .content .btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.about .content .btn-read-more:hover {
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .about .content {
    padding: 28px 22px;
  }

  .about .content h2 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Values
--------------------------------------------------------------*/
.values .card {
  height: 100%;
  padding: 30px;
  border: 0;
  border-radius: 18px;
  text-align: center;
  background: var(--surface-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.values .card img {
  padding: 20px 30px;
  transform: scale(1.05);
  transition: 0.4s;
}

.values .card h3 {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 700;
}

.values .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.values .card:hover img {
  transform: scale(1);
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .service-item {
  height: 100%;
  padding: 40px 28px;
  text-align: center;
  border-radius: 18px;
  background: var(--surface-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.services .service-item .icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 24px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  line-height: 1;
  transition: 0.3s ease;
}

.services .service-item h3 {
  font-size: 24px;
  font-weight: 700;
}

.services .service-item .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 15px;
  font-weight: 700;
}

.services .service-item:hover {
  transform: translateY(-8px);
}

.services .service-item.item-cyan {
  border-bottom: 4px solid #0dcaf0;
}
.services .service-item.item-cyan .icon {
  color: #0dcaf0;
  background: rgba(13, 202, 240, 0.12);
}
.services .service-item.item-cyan .read-more {
  color: #0dcaf0;
}

.services .service-item.item-orange {
  border-bottom: 4px solid #fd7e14;
}
.services .service-item.item-orange .icon {
  color: #fd7e14;
  background: rgba(253, 126, 20, 0.12);
}
.services .service-item.item-orange .read-more {
  color: #fd7e14;
}

.services .service-item.item-teal {
  border-bottom: 4px solid #20c997;
}
.services .service-item.item-teal .icon {
  color: #20c997;
  background: rgba(32, 201, 151, 0.12);
}
.services .service-item.item-teal .read-more {
  color: #20c997;
}

.services .service-item.item-red {
  border-bottom: 4px solid #df1529;
}
.services .service-item.item-red .icon {
  color: #df1529;
  background: rgba(223, 21, 41, 0.12);
}
.services .service-item.item-red .read-more {
  color: #df1529;
}

.services .service-item.item-indigo {
  border-bottom: 4px solid #6610f2;
}
.services .service-item.item-indigo .icon {
  color: #6610f2;
  background: rgba(102, 16, 242, 0.12);
}
.services .service-item.item-indigo .read-more {
  color: #6610f2;
}

.services .service-item.item-pink {
  border-bottom: 4px solid #f3268c;
}
.services .service-item.item-pink .icon {
  color: #f3268c;
  background: rgba(243, 38, 140, 0.12);
}
.services .service-item.item-pink .read-more {
  color: #f3268c;
}

/* old colored service hover disabled for premium image cards */
.services .service-item:hover h3,
.services .service-item:hover p,
.services .service-item:hover .read-more {
  color: inherit;
}

.services .service-item:hover .icon {
  background: transparent;
}

.services .service-item.item-cyan:hover,
.services .service-item.item-orange:hover,
.services .service-item.item-teal:hover,
.services .service-item.item-red:hover,
.services .service-item.item-indigo:hover,
.services .service-item.item-pink:hover {
  background: #ffffff;
}

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

.portfolio .portfolio-filters li {
  display: inline-block;
  margin: 0 10px 8px;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

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

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.portfolio .portfolio-content img {
  transition: 0.3s ease;
}

.portfolio .portfolio-content .portfolio-info {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0;
  padding: 20px;
  background: rgba(0, 0, 0, 0.58);
  transition: 0.3s ease;
}

.portfolio .portfolio-content .portfolio-info h4 {
  display: inline-block;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  margin: 0;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.08);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-item {
  height: 100%;
  padding: 30px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--default-color), transparent 96%);
}

.contact .info-item i {
  font-size: 38px;
  color: var(--accent-color);
}

.contact .info-item h3 {
  margin: 20px 0 10px;
  font-size: 20px;
  font-weight: 700;
}

.contact .info-item p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.8;
}

.contact .php-email-form {
  height: 100%;
  padding: 30px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--default-color), transparent 96%);
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 12px;
  font-size: 14px;
  color: var(--default-color);
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  box-shadow: none;
  outline: none;
}

.contact .php-email-form textarea {
  min-height: 130px;
  resize: vertical;
}

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

.contact .php-email-form button[type="submit"] {
  border: 0;
  padding: 12px 30px;
  border-radius: 999px;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s ease;
}

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

/*--------------------------------------------------------------
# Welcome Message
--------------------------------------------------------------*/
.welcome-message-section {
  position: relative;
  padding: 20px 0 40px;
}

.welcome-content h2 {
  margin-bottom: 25px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--heading-color);
}

.welcome-content .highlight {
  position: relative;
  display: inline-block;
  color: var(--accent-color);
}

.welcome-content p {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

@media (max-width: 768px) {
  .welcome-message-section {
    padding: 10px 0 30px;
  }

  .welcome-content h2 {
    font-size: 28px;
  }

  .welcome-content p {
    font-size: 16px;
    line-height: 1.6;
  }
}

@media (max-width: 576px) {
  .welcome-content h2 {
    font-size: 24px;
  }

  .welcome-content p {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  position: relative;
  padding-bottom: 40px;
  font-size: 14px;
  color: var(--default-color);
  background: var(--background-color);
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about a {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer h4 {
  position: relative;
  padding-bottom: 12px;
  font-size: 16px;
  font-weight: 700;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul li {
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul i {
  margin-right: 6px;
  font-size: 12px;
  color: var(--accent-color);
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .social-links a {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 16px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.footer .copyright {
  margin-top: 20px;
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

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

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

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

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

/*--------------------------------------------------------------
# AOS Delay Fix
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* =========================================================
   PREMIUM HOME SECTIONS - MUZADI TECHNOLOGIES
   For: intro, services, products, features, pricing, clients, cta
========================================================= */

.premium-intro,
.premium-services-section,
.premium-products-section,
.premium-features-section,
.premium-pricing-section,
.premium-clients-section,
.premium-cta-section {
  position: relative;
  z-index: 2;
  padding: 90px 0;
}

.premium-services-section,
.premium-features-section,
.premium-clients-section {
  background: #f8fbff;
}

.premium-products-section,
.premium-pricing-section,
.premium-intro {
  background: #ffffff;
}

/* Section headings */
.section-mini-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(13, 110, 253, 0.08);
  color: #0d6efd;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
  margin-bottom: 18px;
}

.premium-section-heading {
  font-size: 2.2rem;
  line-height: 1.25;
  font-weight: 800;
  color: #0b1220;
  margin-bottom: 18px;
}

.premium-section-text {
  color: #5f6b7a;
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 14px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #0d6efd;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 2rem;
  font-weight: 800;
  color: #0b1220;
  margin-bottom: 0;
  line-height: 1.3;
}

/* Intro */
.premium-intro-points {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.intro-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #1e293b;
}

.intro-point i {
  color: #0d6efd;
  font-size: 18px;
}

.premium-intro-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.mini-stat-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(13, 110, 253, 0.08);
  border-radius: 20px;
  padding: 22px 18px;
  height: 100%;
  transition: all 0.3s ease;
}

.mini-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(13, 110, 253, 0.08);
}

.mini-stat-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #0b1220;
}

.mini-stat-card p {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Cards general */
.premium-service-card,
.premium-product-card,
.premium-feature-box,
.premium-pricing-card,
.client-box,
.premium-cta-box {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 16px 50px rgba(15, 23, 42, 0.06);
  transition: all 0.35s ease;
}

.premium-service-card,
.premium-product-card,
.client-box {
  padding: 30px 24px;
  height: 100%;
}

.premium-service-card:hover,
.premium-product-card:hover,
.premium-feature-box:hover,
.premium-pricing-card:hover,
.client-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
}

/* Icons */
.service-icon-wrap,
.product-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d6efd, #2bb3ff);
  color: #fff;
  font-size: 28px;
  margin-bottom: 20px;
}

/* Services */
.premium-service-card h3,
.premium-product-card h3,
.client-box h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0b1220;
  margin-bottom: 12px;
}

.premium-service-card p,
.premium-product-card p,
.client-box p {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 0;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0 0;
}

.service-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: #334155;
  font-weight: 500;
  line-height: 1.7;
}

.service-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #0d6efd;
  font-size: 20px;
  line-height: 1;
}

/* Products */
.premium-product-card.card {
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.product-tag {
  display: inline-block;
  margin-top: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eff6ff;
  color: #0d6efd;
  font-size: 13px;
  font-weight: 700;
}

/* Features */
.premium-feature-image {
  width: 100%;
  border-radius: 24px;
  filter: drop-shadow(0 20px 40px rgba(15, 23, 42, 0.12));
}

.premium-feature-box {
  padding: 24px 20px;
  height: 100%;
}

.premium-feature-box i {
  font-size: 28px;
  color: #0d6efd;
  margin-bottom: 12px;
  display: inline-block;
}

.premium-feature-box h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #0b1220;
}

.premium-feature-box p {
  margin: 0;
  color: #64748b;
  line-height: 1.7;
}

/* Pricing */
.premium-pricing-card {
  padding: 34px 26px;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.premium-pricing-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0b1220;
  margin-bottom: 10px;
}

.premium-pricing-card .price {
  font-size: 2rem;
  font-weight: 800;
  color: #0b1220;
  margin: 18px 0 12px;
}

.premium-pricing-card .price span {
  font-size: 1rem;
  font-weight: 700;
  color: #0d6efd;
}

.premium-pricing-card .icon {
  margin: 20px 0;
}

.premium-pricing-card .icon i {
  font-size: 42px;
  color: #0d6efd;
}

.premium-pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.premium-pricing-card ul li {
  padding: 9px 0;
  color: #475569;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.08);
  font-weight: 500;
}

.premium-pricing-card ul li:last-child {
  border-bottom: none;
}

.featured-plan {
  border: 2px solid #0d6efd;
  transform: scale(1.03);
  box-shadow: 0 25px 60px rgba(13, 110, 253, 0.15);
}

.featured-plan:hover {
  transform: translateY(-8px) scale(1.03);
}

.featured-plan .featured {
  position: absolute;
  top: 18px;
  right: -34px;
  background: #0d6efd;
  color: #fff;
  padding: 8px 40px;
  font-size: 12px;
  font-weight: 700;
  transform: rotate(45deg);
}

.btn-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0d6efd, #2bb3ff);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-buy:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(13, 110, 253, 0.25);
}

/* Clients */
.client-box {
  text-align: center;
}

.client-box i {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 30px;
  color: #0d6efd;
  background: rgba(13, 110, 253, 0.08);
}

.clients-note p {
  max-width: 850px;
  margin: 0 auto;
  color: #5f6b7a;
  line-height: 1.9;
  font-size: 1rem;
}

/* CTA */
.premium-cta-section {
  background: linear-gradient(135deg, #071a35 0%, #0d6efd 100%);
  padding: 100px 0;
}

.premium-cta-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 55px 30px;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.cta-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.premium-cta-box h2 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.3;
}

.premium-cta-box p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 760px;
  margin: 0 auto 28px;
  line-height: 1.9;
  font-size: 1rem;
}

.premium-cta-box .btn-get-started,
.premium-cta-box .btn-watch-video {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.premium-cta-box .btn-get-started {
  background: #fff;
  color: #0d6efd;
}

.premium-cta-box .btn-get-started:hover {
  transform: translateY(-3px);
  color: #0d6efd;
  box-shadow: 0 14px 30px rgba(255, 255, 255, 0.2);
}

.premium-cta-box .btn-watch-video {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.premium-cta-box .btn-watch-video:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.14);
}

/* Spacing fixes */
.premium-services-section .service-item,
.premium-products-section .card,
.premium-pricing-section .pricing-tem {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1199px) {
  .premium-section-heading,
  .premium-cta-box h2,
  .section-title p {
    font-size: 1.9rem;
  }
}

@media (max-width: 991px) {
  .premium-intro,
  .premium-services-section,
  .premium-products-section,
  .premium-features-section,
  .premium-pricing-section,
  .premium-clients-section,
  .premium-cta-section {
    padding: 75px 0;
  }

  .premium-section-heading,
  .premium-cta-box h2,
  .section-title p {
    font-size: 1.7rem;
  }

  .premium-intro-card {
    margin-top: 20px;
  }

  .featured-plan {
    transform: none;
  }

  .featured-plan:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 767px) {
  .premium-intro,
  .premium-services-section,
  .premium-products-section,
  .premium-features-section,
  .premium-pricing-section,
  .premium-clients-section,
  .premium-cta-section {
    padding: 60px 0;
  }

  .section-mini-badge,
  .cta-badge {
    font-size: 12px;
    padding: 7px 14px;
  }

  .premium-section-heading,
  .premium-cta-box h2,
  .section-title p {
    font-size: 1.45rem;
    line-height: 1.35;
  }

  .premium-section-text,
  .premium-cta-box p,
  .clients-note p {
    font-size: 0.96rem;
    line-height: 1.8;
  }

  .premium-service-card,
  .premium-product-card,
  .client-box,
  .premium-pricing-card,
  .premium-feature-box {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .service-icon-wrap,
  .product-icon,
  .client-box i {
    width: 60px;
    height: 60px;
    font-size: 24px;
    border-radius: 16px;
  }

  .premium-pricing-card .price {
    font-size: 1.7rem;
  }

  .premium-cta-box {
    padding: 40px 20px;
    border-radius: 22px;
  }

  .featured-plan .featured {
    right: -38px;
    top: 16px;
    font-size: 11px;
  }
}

@media (max-width: 575px) {
  .premium-section-heading,
  .premium-cta-box h2,
  .section-title p {
    font-size: 1.28rem;
  }

  .premium-service-card h3,
  .premium-product-card h3,
  .client-box h4,
  .premium-feature-box h3,
  .premium-pricing-card h3 {
    font-size: 1.05rem;
  }

  .mini-stat-card {
    padding: 18px 15px;
  }

  .premium-cta-box .btn-get-started,
  .premium-cta-box .btn-watch-video,
  .btn-buy {
    width: 100%;
  }

  .premium-cta-box .d-flex {
    flex-direction: column;
  }
}
/* =========================================================
   IMAGE CARDS FOR SERVICES & PRODUCTS
========================================================= */

.image-card-service,
.premium-product-image-card {
  overflow: hidden;
  padding: 0;
}

.service-card-image,
.product-card-image {
  position: relative;
  height: 230px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

.service-card-image img,
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.image-card-service:hover .service-card-image img,
.premium-product-image-card:hover .product-card-image img {
  transform: scale(1.08);
}

.service-card-content,
.product-card-content {
  padding: 24px 24px 28px;
}

.service-card-image::after,
.product-card-image::after {
  content: "";
  position: absolute;-
  inset: 0;
  background: linear-gradient(to top, rgba(7, 26, 53, 0.18), rgba(7, 26, 53, 0.02));
}

.service-card-content .service-icon-wrap,
.product-card-content .product-icon {
  margin-top: -56px;
  position: relative;
  z-index: 2;
  box-shadow: 0 14px 30px rgba(13, 110, 253, 0.22);
}

/* =========================================================
   PREMIUM FOOTER
========================================================= */

.premium-footer {
  background: #071a35;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 0;
  padding-top: 0;
}

.footer-main {
  padding: 80px 0 50px;
}

.footer-brand p {
  margin-top: 20px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.78);
}

.footer-logo {
  text-decoration: none;
  color: #fff;
}

.footer-logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 14px;
}

.footer-logo h3 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0;
}

.footer-logo span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links-wrap h4,
.footer-contact-wrap h4 {
  font-size: 1.05rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}

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

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

.footer-links-wrap ul li a,
.footer-contact-wrap a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links-wrap ul li a:hover,
.footer-contact-wrap a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-contact-wrap p {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.footer-contact-wrap i {
  color: #4da3ff;
  margin-right: 8px;
}

.footer-socials {
  gap: 12px;
  margin-top: 22px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: #0d6efd;
  color: #fff;
  transform: translateY(-4px);
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-bottom strong {
  color: #fff;
}

.footer-bottom-text {
  text-align: right;
}

@media (max-width: 991px) {
  .footer-main {
    padding: 65px 0 35px;
  }
}

@media (max-width: 767px) {
  .service-card-image,
  .product-card-image {
    height: 210px;
    border-radius: 20px 20px 0 0;
  }

  .service-card-content,
  .product-card-content {
    padding: 22px 18px 24px;
  }

  .footer-bottom-text {
    text-align: left;
    margin-top: 8px;
  }
}

@media (max-width: 575px) {
  .service-card-image,
  .product-card-image {
    height: 190px;
  }

  .footer-logo h3 {
    font-size: 1.05rem;
  }
}

/* ==========================================
   FIX IMAGE SERVICE CARDS HOVER TEXT ISSUE
========================================== */

.image-card-service:hover,
.image-card-service:hover .service-card-content {
  background: #ffffff !important;
}

.image-card-service:hover h3 {
  color: #0b1220 !important;
}

.image-card-service:hover p {
  color: #64748b !important;
}

.image-card-service:hover .service-list li {
  color: #334155 !important;
}

.image-card-service:hover .service-list li::before {
  color: #0d6efd !important;
}

.image-card-service:hover .service-icon-wrap {
  background: linear-gradient(135deg, #0d6efd, #2bb3ff) !important;
  color: #ffffff !important;
}

.image-card-service:hover .icon {
  color: #ffffff !important;
  background: transparent !important;
}

.image-card-service:hover .read-more {
  color: #0d6efd !important;
}
/* =========================================================
   MOVING CLIENT LOGOS SECTION
========================================================= */

.logo-clients-section {
  overflow: hidden;
  background: #f8fbff;
}

.clients-intro p,
.clients-note p {
  max-width: 860px;
  margin: 0 auto;
  color: #5f6b7a;
  line-height: 1.9;
  font-size: 1rem;
}

.client-logo-slider-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
}

.client-logo-slider-wrap::before,
.client-logo-slider-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.client-logo-slider-wrap::before {
  left: 0;
  background: linear-gradient(to right, #f8fbff 0%, rgba(248, 251, 255, 0) 100%);
}

.client-logo-slider-wrap::after {
  right: 0;
  background: linear-gradient(to left, #f8fbff 0%, rgba(248, 251, 255, 0) 100%);
}

.client-logo-slider {
  overflow: hidden;
  white-space: nowrap;
}

.client-logo-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: clientLogoScroll 28s linear infinite;
}

.reverse-slider .client-logo-track {
  animation: clientLogoScrollReverse 30s linear infinite;
}

.client-logo-item {
  width: 210px;
  min-width: 210px;
  height: 110px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: all 0.35s ease;
}

.client-logo-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
  border-color: rgba(13, 110, 253, 0.15);
}

.client-logo-item img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.35s ease;
}

.client-logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.04);
}

@keyframes clientLogoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes clientLogoScrollReverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

@media (max-width: 991px) {
  .client-logo-item {
    width: 180px;
    min-width: 180px;
    height: 100px;
  }

  .client-logo-track {
    gap: 18px;
  }
}

@media (max-width: 767px) {
  .client-logo-slider-wrap::before,
  .client-logo-slider-wrap::after {
    width: 60px;
  }

  .client-logo-item {
    width: 150px;
    min-width: 150px;
    height: 86px;
    border-radius: 18px;
    padding: 14px;
  }

  .client-logo-item img {
    max-height: 42px;
  }

  .client-logo-track {
    gap: 14px;
    animation-duration: 22s;
  }

  .reverse-slider .client-logo-track {
    animation-duration: 24s;
  }
}