
/* Fonts */
:root {
  --default-font:"messiri";
  --heading-font: "messiri-bold";
  --nav-font: "messiri-bold";
}

/* 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: #55514f; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #211c18; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #4e7466; /* 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: #55514f;  /* The default color of the main navmenu links */
  --nav-hover-color: #089f5f; /* 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: #55514f; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #089f5f; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

body {
  --footer-bg: url('../img/20.jpg');
  --cta-bg :url('../img/map.jpg');
}

body.dark-background {
  --footer-bg: url('../img/dark.jpg');
  --cta-bg :url('../img/2151625818.jpg');

}

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

.dark-background {
  --background-color: #16221c;
  --default-color: #f5f5f5;
  --heading-color: #ffffff;
  --surface-color: #28422d !important;
  --contrast-color: #ffffff;

  /* Accent (slightly brighter for dark mode visibility) */
  --accent-color: #0a3f29;

  /* NAVIGATION */
  --nav-color: #e6e6e6;
  --nav-hover-color: #19c37d;
  --nav-mobile-background-color: #322f2d;
  --nav-dropdown-background-color: #3a3532;
  --nav-dropdown-color: #e6e6e6;
  --nav-dropdown-hover-color: #19c37d;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

@font-face {
  font-family: 'cairo';
  src: url('../fonts/Cairo-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'cairo-bold';
  src: url('../fonts/Cairo-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'messiri';
  src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'messiri-bold';
  src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
}



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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: var(--background-color);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

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

.header .logo span {
  font-size: 30px;
  color: var(--accent-color);
  margin-left: 2px;
  font-weight: 700;
}

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 13px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 0;
  transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .logo h1 {
    font-size: 24px;
  }

  .header .cta-btn {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(0, 0, 0, 0.1);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --nav-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: var(--surface-color);
  --default-color: var(--default-color);
  --heading-color: var(--heading-color);
  --nav-color: var(--nav-color);
}

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

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

  .navmenu a,
  .navmenu a:focus {
    color: color-mix(in srgb, var(--nav-color), transparent 30%);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -27px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

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

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 0;
    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: 14px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

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

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

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

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

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

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

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 0;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

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

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 18px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    transition: 0.3s;
    color: var(--nav-dropdown-color);
  }

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

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

  .navmenu .active i,
  .navmenu .active:focus i {
    color: var(--nav-dropdown-hover-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-image: var(--footer-bg);
  background-size: cover;
  font-size: 18px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 4px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 18px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

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

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

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

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

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

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

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

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

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

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

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

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

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

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}
/*--------------------------------------------------------------
# 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: 0;
  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;
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  text-align: center;
  padding: 20px 0 40px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .breadcrumbs {
  margin-bottom: 1rem;
}

.page-title .breadcrumbs .breadcrumb {
  justify-content: center;
  margin: 0;
  padding: 0;
  background: none;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item.active {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a:hover {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a i {
  font-size: 0.9rem;
  margin-right: 0.2rem;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .title-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
}

.page-title .title-wrapper h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  font-weight: 300;
  color: var(--heading-color);
}

.page-title .title-wrapper p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-title .title-wrapper h1 {
    font-size: 2rem;
  }

  .page-title .title-wrapper p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .page-title .title-wrapper h1 {
    font-size: 1.75rem;
  }
}

main{


}
/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  /* background-color: var(--background-color); */

  padding: 60px 0;
  scroll-margin-top: 72px;
  overflow: clip;

}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

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

.section-title p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 900px;
  margin: 0 auto;
  text-wrap: balance;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
  background-color: #0a0a0a;
}

.hero .cinema-slider {
  position: relative;
}

.hero .swiper {
  overflow: hidden;
}

.hero .swiper-wrapper {
  height: auto !important;
}

.hero .cinema-frame {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
}

.hero .cinema-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero .swiper-slide-active .cinema-frame img {
  transform: scale(1.08);
}

.hero .frame-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.55) 40%, rgba(0, 0, 0, 0.15) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero .frame-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.hero .content-inner {
  max-width: 600px;
}

.hero .accent-line {
  width: 56px;
  height: 2px;
  background: var(--accent-color);
  margin-bottom: 28px;
  transition: width 0.6s ease;
}

.hero .swiper-slide-active .accent-line {
  width: 80px;
}

.hero .tag-label {
  display: inline-block;
  font-family: var(--default-font);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.7s ease 0.2s;
}

.hero .swiper-slide-active .tag-label {
  opacity: 1;
  transform: translateY(0);
}

.hero .content-inner h3 {
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease 0.35s;
}

.hero .swiper-slide-active .content-inner h3 {
  opacity: 1;
  transform: translateY(0);
}

.hero .content-inner p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: color-mix(in srgb, #ffffff 72%, transparent);
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease 0.5s;
}

.hero .swiper-slide-active .content-inner p {
  opacity: 1;
  transform: translateY(0);
}

.hero .refined-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid color-mix(in srgb, #ffffff 40%, transparent);
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(20px);
}

.hero .refined-btn i {
  font-size: 14px;
  transition: transform 0.5s ease;
}

.hero .refined-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero .refined-btn:hover i {
  transform: translateX(5px);
}

.hero .swiper-slide-active .refined-btn {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.7s ease 0.65s;
}

.hero .swiper-slide-active .refined-btn:hover {
  transition: all 0.5s ease;
}

.hero .slider-controls {
  position: absolute;
  bottom: 48px;
  right: 8%;
  z-index: 3;
}

.hero .controls-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero .swiper-pagination {
  position: static;
  width: auto;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: color-mix(in srgb, #ffffff 60%, transparent);
}

.hero .swiper-pagination .swiper-pagination-current {
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
}

.hero .nav-arrows {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero .swiper-button-prev,
.hero .swiper-button-next {
  position: static;
  width: 52px;
  height: 52px;
  margin: 0;
  border: 1px solid color-mix(in srgb, #ffffff 25%, transparent);
  border-radius: 0;
  background: transparent;
  transition: all 0.5s ease;
}

.hero .swiper-button-prev::after,
.hero .swiper-button-next::after {
  font-size: 16px;
  font-weight: 300;
  color: color-mix(in srgb, #ffffff 70%, transparent);
  transition: color 0.5s ease;
}

.hero .swiper-button-prev:hover,
.hero .swiper-button-next:hover {
  background: color-mix(in srgb, #ffffff 10%, transparent);
  border-color: color-mix(in srgb, #ffffff 50%, transparent);
}

.hero .swiper-button-prev:hover::after,
.hero .swiper-button-next:hover::after {
  color: #ffffff;
}

@media (max-width: 1200px) {
  .hero .content-inner h3 {
    font-size: 42px;
  }

  .hero .content-inner {
    max-width: 520px;
  }
}

@media (max-width: 992px) {
  .hero .cinema-frame {
    min-height: 480px;
  }

  .hero .content-inner h3 {
    font-size: 36px;
  }

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

  .hero .frame-content {
    padding: 0 6%;
  }

  .hero .slider-controls {
    right: 6%;
    bottom: 36px;
  }
}

@media (max-width: 768px) {
  .hero .cinema-frame {
    min-height: 520px;
  }

  .hero .frame-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.85) 100%);
  }

  .hero .frame-content {
    align-items: flex-end;
    padding: 0 24px 120px;
  }

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

  .hero .content-inner h3 {
    font-size: 30px;
  }

  .hero .content-inner p {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .hero .refined-btn {
    padding: 14px 32px;
    font-size: 12px;
  }

  .hero .slider-controls {
    bottom: 24px;
    right: 24px;
  }

  .hero .controls-inner {
    gap: 20px;
  }

  .hero .swiper-button-prev,
  .hero .swiper-button-next {
    width: 44px;
    height: 44px;
  }

  .hero .swiper-button-prev::after,
  .hero .swiper-button-next::after {
    font-size: 14px;
  }

  .hero .swiper-pagination .swiper-pagination-current {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .hero .cinema-frame {
    min-height: 460px;
  }

  .hero .content-inner h3 {
    font-size: 26px;
  }

  .hero .accent-line {
    width: 40px;
    margin-bottom: 20px;
  }

  .hero .swiper-slide-active .accent-line {
    width: 56px;
  }

  .hero .tag-label {
    font-size: 11px;
    margin-bottom: 18px;
  }

  .hero .frame-content {
    padding: 0 20px 100px;
  }

  .hero .slider-controls {
    right: 20px;
    bottom: 20px;
  }

  .hero .controls-inner {
    gap: 16px;
  }

  .hero .swiper-button-prev,
  .hero .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 992px) {
  .about .about-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

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

.about .image-gallery .gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 576px) {
  .about .image-gallery .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.about .image-gallery .gallery-item {
  overflow: hidden;
  border-radius: 16px;
}

.about .image-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about .image-gallery .gallery-item:hover img {
  transform: scale(1.05);
}

.about .image-gallery .main-image {
  height: 400px;
  box-shadow: 0 20px 50px color-mix(in srgb, var(--default-color), transparent 85%);
}

@media (max-width: 576px) {
  .about .image-gallery .main-image {
    height: 280px;
  }
}

.about .image-gallery .side-image {
  height: 400px;
  align-self: end;
  margin-top: 3rem;
}

@media (max-width: 576px) {
  .about .image-gallery .side-image {
    height: 220px;
    margin-top: 0;
  }
}

.about .image-gallery .experience-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.about .image-gallery .experience-badge .badge-inner {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  color: var(--contrast-color);
  padding: 1.5rem 2.5rem;
  border-radius: 60px;
  text-align: center;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 60%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (max-width: 576px) {
  .about .image-gallery .experience-badge .badge-inner {
    padding: 1rem 1.75rem;
  }
}

.about .image-gallery .experience-badge .number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

@media (max-width: 576px) {
  .about .image-gallery .experience-badge .number {
    font-size: 2rem;
  }
}

.about .image-gallery .experience-badge .label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

@media (max-width: 992px) {
  .about .info-panel {
    margin-top: 2rem;
  }
}

.about .info-panel .panel-header {
  margin-bottom: 1.5rem;
}

.about .info-panel .panel-header .tagline {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.about .info-panel .panel-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
}

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

.about .info-panel .description {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: justify;

}

.about .info-panel .highlights-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 576px) {
  .about .info-panel .highlights-row {
    grid-template-columns: 1fr;
  }
}

.about .info-panel .highlight-box {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--surface-color);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.about .info-panel .highlight-box:hover {
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  transform: translateY(-3px);
}

.about .info-panel .highlight-box .icon-wrap {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .info-panel .highlight-box .icon-wrap i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.about .info-panel .highlight-box .highlight-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.about .info-panel .highlight-box .highlight-content p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  line-height: 1.5;
}

.about .info-panel .stats-row {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  margin-bottom: 2rem;
}

@media (max-width: 576px) {
  .about .info-panel .stats-row {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

.about .info-panel .stats-row .stat-block {
  text-align: center;
  flex: 1;
}

@media (max-width: 576px) {
  .about .info-panel .stats-row .stat-block {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

.about .info-panel .stats-row .stat-block h3 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent-color);
  margin: 0;
  line-height: 1;
}

@media (max-width: 768px) {
  .about .info-panel .stats-row .stat-block h3 {
    font-size: 1.75rem;
  }
}

.about .info-panel .stats-row .stat-block span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-weight: 500;
  display: block;
  margin-top: 0.5rem;
}

.about .info-panel .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.about .info-panel .cta-button i {
  transition: transform 0.3s ease;
}

.about .info-panel .cta-button:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about .info-panel .cta-button:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .services-grid {
  margin-bottom: 5rem;
}

.services .services-grid .featured-service-card {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  position: relative;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 93%);
}

.services .services-grid .featured-service-card .service-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b6b 20%));
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .services-grid .featured-service-card .service-icon-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #4facfe 30%));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto 1.5rem;
  transition: transform 0.4s ease;
}

.services .services-grid .featured-service-card .service-icon-large i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.services .services-grid .featured-service-card h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.services .services-grid .featured-service-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.services .services-grid .featured-service-card .feature-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.services .services-grid .featured-service-card .feature-highlights .highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}

.services .services-grid .featured-service-card .feature-highlights .highlight-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.services .services-grid .featured-service-card .feature-highlights .highlight-item span {
  font-size: 0.95rem;
  color: var(--default-color);
  font-weight: 500;
}

.services .services-grid .featured-service-card .btn-primary {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #667eea 30%));
  border: none;
  color: var(--contrast-color);
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .services-grid .featured-service-card .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.services .services-grid .featured-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 88%);
}

.services .services-grid .featured-service-card:hover .service-icon-large {
  transform: scale(1.1);
}

.services .services-grid .service-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--default-color), transparent 95%);
}

.services .services-grid .service-card .service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 90%));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.services .services-grid .service-card .service-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.services .services-grid .service-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.services .services-grid .service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 1.5rem;
}

.services .services-grid .service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.services .services-grid .service-card .service-link i {
  transition: transform 0.3s ease;
}

.services .services-grid .service-card .service-link:hover {
  color: var(--heading-color);
}

.services .services-grid .service-card .service-link:hover i {
  transform: translateX(4px);
}

.services .services-grid .service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 90%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.services .services-grid .service-card:hover .service-icon {
  transform: scale(1.1);
}

.services .services-tabs .nav-pills {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 50px;
  padding: 8px;
  display: inline-flex;
  margin: 0 auto;
}

.services .services-tabs .nav-pills .nav-item .nav-link {
  background: transparent;
  border: none;
  color: var(--default-color);
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin: 0;
}

.services .services-tabs .nav-pills .nav-item .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .services-tabs .nav-pills .nav-item .nav-link:hover:not(.active) {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.services .services-tabs .tab-service-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--default-color), transparent 95%);
}

.services .services-tabs .tab-service-card .service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 90%));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.services .services-tabs .tab-service-card .service-icon i {
  font-size: 1.6rem;
  /* color: var(--accent-color); */
}

.services .services-tabs .tab-service-card h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.services .services-tabs .tab-service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2rem;
}

.services .services-tabs .tab-service-card .tab-service-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  padding: 10px 20px;
  border: 2px solid var(--accent-color);
  border-radius: 8px;
  display: inline-block;
  transition: all 0.3s ease;
}

.services .services-tabs .tab-service-card .tab-service-link:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services .services-tabs .tab-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--default-color), transparent 88%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .services-tabs .tab-service-card:hover .service-icon {
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .services .services-grid .featured-service-card {
    margin-bottom: 2rem;
    padding: 2.5rem 2rem;
  }

  .services .services-grid .featured-service-card .feature-highlights {
    margin-bottom: 2rem;
  }

  .services .services-tabs .nav-pills {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }

  .services .services-tabs .nav-pills .nav-item {
    width: 100%;
  }

  .services .services-tabs .nav-pills .nav-item .nav-link {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .services .services-grid {
    margin-bottom: 4rem;
  }

  .services .services-grid .featured-service-card {
    padding: 2rem 1.5rem;
  }

  .services .services-grid .featured-service-card .service-icon-large {
    width: 70px;
    height: 70px;
  }

  .services .services-grid .featured-service-card .service-icon-large i {
    font-size: 1.8rem;
  }

  .services .services-grid .featured-service-card h3 {
    font-size: 1.5rem;
  }

  .services .services-grid .featured-service-card .feature-highlights .highlight-item {
    justify-content: flex-start;
  }

  .services .services-grid .service-card {
    padding: 1.5rem;
  }

  .services .services-tabs .tab-service-card {
    padding: 2rem 1.5rem;
  }
}


/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
  /* padding: 80px 0; */
}

.why-us .intro-content {
  padding-right: 40px;
}

.why-us .info-panel .panel-header {
  margin-bottom: 1.5rem;
}

.why-us .info-panel .panel-header .tagline {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.why-us .info-panel .panel-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .why-us .info-panel .panel-header h2 {
    font-size: 2rem;
  }
}

.why-us .intro-content h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.why-us .intro-content .intro-text {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: justify;
}

.why-us .intro-content .stats-row {
  display: flex;
  gap: 40px;
}

.why-us .intro-content .stats-row .stat-item .stat-value {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
}

.why-us .intro-content .stats-row .stat-item .stat-unit {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
}

.why-us .intro-content .stats-row .stat-item .stat-desc {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 5px;
}

@media (max-width: 991px) {
  .why-us .intro-content {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }

  .why-us .intro-content .stats-row {
    justify-content: center;
  }
}

.why-us .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.why-us .features-grid .grid-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 25px;
  background: var(--surface-color);
  border-radius: 16px;
  border-left: 4px solid var(--accent-color);
  transition: all 0.3s ease;
}

.why-us .features-grid .grid-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 90%);
}

.why-us .features-grid .grid-item .grid-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-us .features-grid .grid-item .grid-icon i {
  font-size: 22px;
  /* color: var(--accent-color); */
}

.why-us .features-grid .grid-item .grid-content h5 {
  font-size: 17px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.why-us .features-grid .grid-item .grid-content p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .why-us .features-grid {
    grid-template-columns: 1fr;
  }
}

.why-us .highlight-cards {
  margin-top: 60px;
}

.why-us .highlight-cards .highlight-card {
  background: var(--surface-color);
  padding: 35px 30px;
  border-radius: 20px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
}

.why-us .highlight-cards .highlight-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), #6366f1 40%));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-us .highlight-cards .highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px color-mix(in srgb, var(--default-color), transparent 88%);
}

.why-us .highlight-cards .highlight-card:hover::before {
  opacity: 1;
}

.why-us .highlight-cards .highlight-card:hover .card-link i {
  transform: translateX(5px);
}

.why-us .highlight-cards .highlight-card.featured {
  background: linear-gradient(145deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6366f1 35%));
}

.why-us .highlight-cards .highlight-card.featured::before {
  display: none;
}

.why-us .highlight-cards .highlight-card.featured .card-header i {
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  color: var(--contrast-color);
}

.why-us .highlight-cards .highlight-card.featured .card-header .card-badge {
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  color: var(--contrast-color);
}

.why-us .highlight-cards .highlight-card.featured h4 {
  color: var(--contrast-color);
}

.why-us .highlight-cards .highlight-card.featured p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
}

.why-us .highlight-cards .highlight-card.featured .card-link {
  color: var(--contrast-color);
}

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

.why-us .highlight-cards .highlight-card .card-header i {
  width: 45px;
  height: 45px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent-color);
}

.why-us .highlight-cards .highlight-card .card-header .card-badge {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  border-radius: 20px;
}

.why-us .highlight-cards .highlight-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.why-us .highlight-cards .highlight-card p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.why-us .highlight-cards .highlight-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.why-us .highlight-cards .highlight-card .card-link i {
  transition: transform 0.3s ease;
}

.why-us .cta-banner {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 92%), color-mix(in srgb, var(--accent-color), transparent 96%));
  border-radius: 24px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.why-us .cta-banner .cta-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.why-us .cta-banner .cta-content p {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.why-us .cta-banner .cta-actions {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.why-us .cta-banner .cta-actions .btn-cta-primary {
  display: inline-block;
  padding: 16px 32px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.why-us .cta-banner .cta-actions .btn-cta-primary:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.why-us .cta-banner .cta-actions .btn-cta-secondary {
  display: inline-block;
  padding: 16px 32px;
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.why-us .cta-banner .cta-actions .btn-cta-secondary:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .why-us .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }

  .why-us .cta-banner .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .why-us .cta-banner .cta-actions a {
    width: 100%;
    text-align: center;
  }
}

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

  .why-us .intro-content h3 {
    font-size: 26px;
  }

  .why-us .intro-content .stats-row {
    gap: 30px;
  }

  .why-us .intro-content .stats-row .stat-item .stat-value {
    font-size: 36px;
  }

  .why-us .intro-content .stats-row .stat-item .stat-unit {
    font-size: 24px;
  }

  .why-us .highlight-cards {
    margin-top: 40px;
  }

  .why-us .highlight-cards .highlight-card {
    padding: 28px 24px;
  }

  .why-us .highlight-cards .highlight-card h4 {
    font-size: 20px;
  }

  .why-us .cta-banner .cta-content h3 {
    font-size: 22px;
  }
}
/*--------------------------------------------------------------
# Call To Action Section
*/
.call-to-action {
  padding: 80px 0;
  background-image: var(--footer-bg);
  background-position: center;
  background-size:cover;
  /* border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%); */
  /* border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%); */
}

.call-to-action .content h2 {
  color: var(--heading-color);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .call-to-action .content h2 {
    font-size: 28px;
  }
}

.call-to-action .content p {
  color: var(--default-color);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.call-to-action .content .benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.call-to-action .content .benefits-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  color: var(--default-color);
  font-size: 15px;
  font-weight: 500;
}

.call-to-action .content .benefits-list li i {
  /* color: var(--accent-color); */
  font-size: 20px;
  margin-right: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 991px) {
  .call-to-action .cta-actions {
    margin-top: 32px;
  }
}

.call-to-action .cta-actions .btn-primary,
.call-to-action .cta-actions .btn-secondary {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.call-to-action .cta-actions .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
  margin-bottom: 12px;
}

.call-to-action .cta-actions .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.call-to-action .cta-actions .btn-secondary {
  background-color: var(--background-color);
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  margin-bottom: 24px;
}

.call-to-action .cta-actions .btn-secondary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action .cta-actions .trust-indicators {
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.call-to-action .cta-actions .trust-indicators .clients-served {
  color: var(--default-color);
  font-size: 14px;
  margin-bottom: 12px;
  text-align: center;
}

.call-to-action .cta-actions .trust-indicators .clients-served strong {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 18px;
}

.call-to-action .cta-actions .trust-indicators .rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 14px;
}

.call-to-action .cta-actions .trust-indicators .rating i {
  color: #ffc107;
  font-size: 16px;
}

.call-to-action .cta-actions .trust-indicators .rating span {
  color: var(--default-color);
  font-weight: 500;
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .feature-item {
  padding: 48px 32px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 2px;
  transition: border-color 0.3s ease;
}

.features .feature-item:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .feature-item:hover i {
  color: var(--accent-color);
}

.features .feature-item i {
  font-size: 1.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: color 0.3s ease;
}

.features .feature-item h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.features .feature-item p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  line-height: 1.7;
  margin-bottom: 0;
}

.features .highlight-block {
  padding: 32px 40px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 2px;
  max-width: 780px;
  transition: border-color 0.3s ease;
}

.features .highlight-block:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

@media (max-width: 768px) {
  .features .highlight-block {
    text-align: center;
  }

  .features .highlight-block .row {
    flex-direction: column;
    gap: 1rem;
  }
}

.features .highlight-block i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.features .highlight-block h5 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--heading-color);
}

.features .highlight-block p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin-bottom: 0;
  line-height: 1.6;
}

.features .cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 0.6rem 1.5rem;
  border-radius: 2px;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.features .cta-link:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}


/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 64px;
  padding: 0;
  list-style: none;
}

.portfolio .filter-bar li {
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: color 0.3s ease;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
}

.portfolio .filter-bar li:hover {
  color: var(--default-color);
}

.portfolio .filter-bar li.filter-active {
  color: var(--default-color);
  border-bottom-color: var(--accent-color);
}

.portfolio .work-entry {
  margin-bottom: 16px;
}

.portfolio .work-entry .work-thumb {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 2px;
}

.portfolio .work-entry .work-thumb img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.portfolio .work-entry .work-thumb .work-actions {
  position: absolute;
  top: 16px;
  right: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio .work-entry .work-thumb .work-actions a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-color);
  color: var(--default-color);
  border-radius: 0;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.portfolio .work-entry .work-thumb .work-actions a:hover {
  color: var(--accent-color);
}

.portfolio .work-entry .work-thumb:hover img {
  opacity: 0.85;
}

.portfolio .work-entry .work-thumb:hover .work-actions {
  opacity: 1;
}

.portfolio .work-entry .work-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 20px;
  padding-bottom: 8px;
}

.portfolio .work-entry .work-meta .work-category {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.portfolio .work-entry .work-meta .work-divider {
  width: 12px;
  height: 1px;
  background-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.portfolio .work-entry .work-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.portfolio .work-entry .work-title a {
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.portfolio .work-entry .work-title a:hover {
  color: var(--accent-color);
}

.portfolio .work-entry .work-excerpt {
  font-size: 0.875rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

.portfolio .view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--default-color);
  padding: 12px 0;
  border-bottom: 2px solid var(--default-color);
  transition: color 0.3s ease, border-color 0.3s ease;
  letter-spacing: 0.02em;
}

.portfolio .view-all-link:hover {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

.portfolio .view-all-link i {
  transition: transform 0.3s ease;
}

.portfolio .view-all-link:hover i {
  transform: translateX(4px);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .plan-card {
  padding: 48px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 2px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease;
}

.pricing .plan-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.pricing .plan-card.highlighted {
  border-top: 2px solid var(--accent-color);
}

.pricing .popular-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 8px;
}

.pricing .plan-header {
  margin-bottom: 40px;
}

.pricing .plan-header .plan-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.pricing .plan-header .plan-price {
  font-size: 56px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 16px;
}

.pricing .plan-header .plan-price .currency {
  font-size: 24px;
  font-weight: 400;
  vertical-align: super;
}

.pricing .plan-header .plan-price .period {
  font-size: 15px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.pricing .plan-header .plan-desc {
  font-size: 15px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

.pricing .plan-features {
  margin-bottom: 48px;
  flex-grow: 1;
}

.pricing .plan-features .feature-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.pricing .plan-features .feature-row:first-child {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
}

.pricing .plan-features .feature-row i {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing .plan-btn {
  display: inline-block;
  padding: 12px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  border-radius: 2px;
  color: var(--default-color);
  background: transparent;
  transition: all 0.3s ease;
}

.pricing .plan-btn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.pricing .plan-btn.solid {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .plan-btn.solid:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 768px) {
  .pricing .plan-card {
    padding: 36px 28px;
  }

  .pricing .plan-header {
    margin-bottom: 32px;
  }

  .pricing .plan-header .plan-price {
    font-size: 44px;
  }

  .pricing .plan-header .plan-price .currency {
    font-size: 20px;
  }

  .pricing .plan-features {
    margin-bottom: 36px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .category-nav {
  position: sticky;
  top: 120px;
}

.faq .category-nav .nav {
  gap: 0;
}

.faq .category-nav .nav .nav-item .nav-link {
  padding: 12px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  background: none;
  border: none;
  border-left: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0;
  text-align: left;
  padding-left: 20px;
  transition: color 0.3s ease, border-color 0.3s ease;
  letter-spacing: 0.02em;
}

.faq .category-nav .nav .nav-item .nav-link:hover {
  color: var(--default-color);
}

.faq .category-nav .nav .nav-item .nav-link.active {
  color: var(--default-color);
  font-weight: 600;
  border-left-color: var(--accent-color);
  background: none;
}

@media (max-width: 992px) {
  .faq .category-nav {
    position: static;
    margin-bottom: 48px;
  }

  .faq .category-nav .nav {
    flex-direction: row !important;
    gap: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .faq .category-nav .nav .nav-item .nav-link {
    border-left: none;
    border-bottom: 2px solid transparent;
    padding: 10px 20px;
    text-align: center;
  }

  .faq .category-nav .nav .nav-item .nav-link.active {
    border-bottom-color: var(--accent-color);
    border-left: none;
  }
}

.faq .faq-list .faq-item {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: border-color 0.3s ease;
}

.faq .faq-list .faq-item:first-child {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.faq .faq-list .faq-item h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1.6;
}

.faq .faq-list .faq-item h3 .question {
  flex: 1;
  padding-right: 16px;
}

.faq .faq-list .faq-item h3 .faq-toggle {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  flex-shrink: 0;
}

.faq .faq-list .faq-item .faq-content {
  display: none;
  padding-bottom: 24px;
}

.faq .faq-list .faq-item .faq-content p {
  margin: 0;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.faq .faq-list .faq-item .faq-content p+p {
  margin-top: 12px;
}

.faq .faq-list .faq-item .faq-content p:last-child {
  margin-bottom: 0;
}

.faq .faq-list .faq-item.faq-active h3 .faq-toggle {
  transform: rotate(180deg);
  color: var(--accent-color);
}

.faq .faq-list .faq-item.faq-active .faq-content {
  display: block;
}

.faq .faq-cta {
  padding: 64px 0 0;
}

.faq .faq-cta p {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 16px;
}

.faq .faq-cta .cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-color);
  border-bottom: 1px solid var(--accent-color);
  padding-bottom: 4px;
  transition: opacity 0.3s ease;
}

.faq .faq-cta .cta-link:hover {
  opacity: 0.7;
}

.faq .faq-cta .cta-link i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.faq .faq-cta .cta-link:hover i {
  transform: translateX(4px);
}

@media (max-width: 576px) {
  .faq .faq-list .faq-item h3 {
    padding: 20px 0;
    font-size: 0.95rem;
  }

  .faq .faq-list .faq-item .faq-content {
    padding-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member-card {
  padding: 40px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 2px;
  background: var(--surface-color);
  gap: 32px;
  align-items: flex-start;
  transition: border-color 0.3s ease;
}

.team .member-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.team .avatar-col {
  flex-shrink: 0;
}

.team .avatar-col img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 2px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.member-card:hover .team .avatar-col img {
  filter: grayscale(0%);
}

.team .info-col h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--heading-color);
}

.team .info-col .role {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--accent-color);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.team .info-col p {
  font-size: 14px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 20px;
}

.team .social-row {
  display: flex;
  gap: 16px;
}

.team .social-row a {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 15px;
  transition: color 0.3s ease;
}

.team .social-row a:hover {
  color: var(--accent-color);
}

@media (max-width: 576px) {
  .team .member-card {
    flex-direction: column;
    padding: 32px;
    gap: 24px;
    align-items: center;
    text-align: center;
  }

  .team .social-row {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .sidebar-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

.contact .sidebar-intro {
  padding-bottom: 24px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.contact .sidebar-heading {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.contact .sidebar-text {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
  line-height: 1.7;
  margin-bottom: 0;
}

.contact .contact-block {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 8px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact .contact-block:hover {
  border-color: color-mix(in srgb, var(--default-color) 20%, transparent);
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color) 5%, transparent);
}

.contact .contact-block-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
}

.contact .contact-block-icon i {
  font-size: 18px;
  /* color: var(--surface-color); */
}

.contact .contact-block-body {
  flex: 1;
  min-width: 0;
}

.contact .contact-block-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
  margin-bottom: 2px;
}

.contact .contact-block-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--default-color);
  margin-bottom: 0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact .contact-block-value:hover {
  color: var(--accent-color);
}

.contact p.contact-block-value {
  margin-bottom: 0;
}

.contact .social-links {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.contact .social-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
  margin-bottom: 12px;
}

.contact .social-icons {
  display: flex;
  gap: 8px;
}

.contact .social-icons a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid color-mix(in srgb, var(--default-color) 15%, transparent);
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
  font-size: 14px;
  transition: all 0.2s ease;
}

.contact .social-icons a:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.contact .form-card {
  padding: 32px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  border-radius: 8px;
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color) 5%, transparent);
  height: 100%;
}

.contact .form-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.contact .form-control,
.contact .form-select {
  height: 40px;
  padding: 8px 12px;
  border: 1px solid color-mix(in srgb, var(--default-color) 25%, transparent);
  border-radius: 6px;
  font-size: 14px;
  color: var(--default-color);
  background: var(--background-color);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact .form-control:focus,
.contact .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 10%, transparent);
}

.contact .form-control::placeholder,
.contact .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color) 40%, transparent);
}

.contact textarea.form-control {
  height: auto;
  min-height: 140px;
  resize: vertical;
}

.contact .form-note {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
}

.contact .btn-send {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 28px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  border: none;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.contact .btn-send:hover {
  background: color-mix(in srgb, var(--accent-color) 85%, black);
  color: var(--contrast-color);
}

.contact .btn-send:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 20%, transparent);
}

@media (max-width: 992px) {
  .contact .sidebar-content {
    gap: 16px;
  }

  .contact .social-links {
    margin-top: 0;
  }
}

@media (max-width: 576px) {
  .contact .form-card {
    padding: 24px;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .slider-area {
  margin-bottom: 64px;
}

.portfolio-details .slider-area .details-slider {
  overflow: hidden;
}

.portfolio-details .slider-area .details-slider .swiper-wrapper {
  height: auto !important;
}

.portfolio-details .slider-area .details-slider .swiper-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.portfolio-details .slider-area .details-slider .swiper-pagination {
  bottom: 16px;
}

.portfolio-details .slider-area .details-slider .swiper-pagination .swiper-pagination-bullet {
  background: var(--default-color);
  opacity: 0.25;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transition: opacity 0.3s ease;
}

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

@media (max-width: 768px) {
  .portfolio-details .slider-area {
    margin-bottom: 48px;
  }

  .portfolio-details .slider-area .details-slider .swiper-slide img {
    height: 240px;
  }
}

.portfolio-details .meta-bar {
  padding: 32px 0;
  margin-bottom: 64px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio-details .meta-bar .meta-item .meta-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 4px;
}

.portfolio-details .meta-bar .meta-item .meta-value {
  display: block;
  font-size: 14px;
  color: var(--default-color);
  font-weight: 500;
}

.portfolio-details .meta-bar .meta-item .meta-value a {
  color: var(--accent-color);
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.portfolio-details .meta-bar .meta-item .meta-value a:hover {
  opacity: 0.7;
}

.portfolio-details .meta-bar .meta-item .meta-value a i {
  font-size: 12px;
  margin-left: 2px;
}

@media (max-width: 768px) {
  .portfolio-details .meta-bar {
    padding: 24px 0;
    margin-bottom: 48px;
  }

  .portfolio-details .meta-bar .meta-item {
    margin-bottom: 16px;
  }
}

.portfolio-details .overview-block {
  margin-bottom: 80px;
  text-align: center;
}

.portfolio-details .overview-block h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 24px;
}

.portfolio-details .overview-block p {
  font-size: 16px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .portfolio-details .overview-block {
    margin-bottom: 56px;
  }

  .portfolio-details .overview-block h2 {
    font-size: 26px;
  }
}

.portfolio-details .impact-row {
  margin-bottom: 80px;
  padding: 48px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio-details .impact-row .impact-item {
  text-align: center;
}

.portfolio-details .impact-row .impact-item .impact-number {
  font-size: 40px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 8px;
}

.portfolio-details .impact-row .impact-item .impact-label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .portfolio-details .impact-row {
    margin-bottom: 56px;
    padding: 32px 0;
  }

  .portfolio-details .impact-row .impact-item {
    margin-bottom: 24px;
  }

  .portfolio-details .impact-row .impact-item:last-child {
    margin-bottom: 0;
  }

  .portfolio-details .impact-row .impact-item .impact-number {
    font-size: 32px;
  }
}

.portfolio-details .capabilities-block {
  margin-bottom: 80px;
}

.portfolio-details .capabilities-block h3 {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 48px;
}

.portfolio-details .capabilities-block .capability-card {
  padding: 40px 32px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  text-align: center;
  transition: border-color 0.3s ease;
  height: 100%;
}

.portfolio-details .capabilities-block .capability-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.portfolio-details .capabilities-block .capability-card i {
  font-size: 24px;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.portfolio-details .capabilities-block .capability-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.portfolio-details .capabilities-block .capability-card p {
  font-size: 14px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .portfolio-details .capabilities-block {
    margin-bottom: 56px;
  }

  .portfolio-details .capabilities-block h3 {
    font-size: 20px;
    margin-bottom: 32px;
  }

  .portfolio-details .capabilities-block .capability-card {
    padding: 32px 24px;
  }
}

.portfolio-details .tech-block {
  margin-bottom: 64px;
  text-align: center;
}

.portfolio-details .tech-block h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 32px;
}

.portfolio-details .tech-block .tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.portfolio-details .tech-block .tech-list .tag {
  font-size: 13px;
  font-weight: 500;
  color: var(--default-color);
  padding: 8px 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 2px;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.portfolio-details .tech-block .tech-list .tag:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .portfolio-details .tech-block {
    margin-bottom: 48px;
  }

  .portfolio-details .tech-block h3 {
    font-size: 20px;
  }

  .portfolio-details .tech-block .tech-list .tag {
    padding: 6px 16px;
    font-size: 12px;
  }
}

.portfolio-details .actions-block {
  margin-bottom: 80px;
}

.portfolio-details .actions-block .action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 2px;
  margin: 0 8px;
}

.portfolio-details .actions-block .action-btn.primary-action {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.portfolio-details .actions-block .action-btn.primary-action:hover {
  opacity: 0.85;
}

.portfolio-details .actions-block .action-btn.outline-action {
  background: transparent;
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.portfolio-details .actions-block .action-btn.outline-action:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

@media (max-width: 576px) {
  .portfolio-details .actions-block .action-btn {
    display: flex;
    justify-content: center;
    margin: 0 0 12px 0;
  }

  .portfolio-details .actions-block .action-btn:last-child {
    margin-bottom: 0;
  }
}

.portfolio-details .related-block {
  padding-top: 64px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio-details .related-block h3 {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 48px;
}

.portfolio-details .related-block .related-card {
  display: block;
  text-decoration: none;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: border-color 0.3s ease;
  overflow: hidden;
}

.portfolio-details .related-block .related-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 75%);
}

.portfolio-details .related-block .related-card:hover .view-link {
  color: var(--accent-color);
}

.portfolio-details .related-block .related-card:hover .view-link i {
  transform: translateX(3px);
}

.portfolio-details .related-block .related-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.portfolio-details .related-block .related-card .related-info {
  padding: 28px;
}

.portfolio-details .related-block .related-card .related-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 6px;
}

.portfolio-details .related-block .related-card .related-info p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 16px;
}

.portfolio-details .related-block .related-card .related-info .view-link {
  font-size: 13px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: color 0.3s ease;
}

.portfolio-details .related-block .related-card .related-info .view-link i {
  margin-left: 4px;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .portfolio-details .related-block {
    padding-top: 48px;
  }

  .portfolio-details .related-block h3 {
    font-size: 20px;
    margin-bottom: 32px;
  }

  .portfolio-details .related-block .related-card img {
    height: 160px;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .hero-image img {
  width: 100%;
  display: block;
}

.service-details .intro-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--heading-color);
}

.service-details .intro-content .lead {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 16px;
}

.service-details .intro-content p {
  line-height: 1.8;
  margin-bottom: 32px;
}

.service-details .overview-details {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  padding-top: 24px;
}

.service-details .overview-details .detail-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.service-details .overview-details .detail-row:last-child {
  border-bottom: none;
}

.service-details .overview-details .detail-row .detail-label {
  font-size: 0.9rem;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.service-details .overview-details .detail-row .detail-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--heading-color);
}

.service-details .section-label {
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  color: var(--heading-color);
  margin-bottom: 48px;
  letter-spacing: 0.02em;
}

.service-details .capabilities-section {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .capabilities-section .capability-card {
  padding: 40px 32px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: border-color 0.3s ease;
  text-align: center;
  height: 100%;
}

.service-details .capabilities-section .capability-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.service-details .capabilities-section .capability-card i {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.service-details .capabilities-section .capability-card h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.service-details .capabilities-section .capability-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

.service-details .workflow-section {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .workflow-section .workflow-step {
  padding: 40px 32px;
  height: 100%;
}

.service-details .workflow-section .workflow-step .step-num {
  font-size: 2rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  display: block;
  margin-bottom: 20px;
  font-family: var(--heading-font);
}

.service-details .workflow-section .workflow-step h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.service-details .workflow-section .workflow-step p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

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

.service-details .testimonial-block {
  padding: 48px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.service-details .testimonial-block i.bi-quote {
  font-size: 2rem;
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  display: block;
  margin-bottom: 20px;
}

.service-details .testimonial-block p {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 28px;
  color: var(--default-color);
}

.service-details .testimonial-block .author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.service-details .testimonial-block .author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.service-details .testimonial-block .author h6 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--heading-color);
}

.service-details .testimonial-block .author span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.service-details .cta-block {
  padding: 48px;
  text-align: center;
}

.service-details .cta-block h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.service-details .cta-block p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 32px;
}

.service-details .cta-block .cta-btn {
  display: inline-block;
  padding: 12px 36px;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-bottom: 32px;
}

.service-details .cta-block .cta-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.service-details .cta-block .cta-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.service-details .cta-block .cta-contacts span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.service-details .cta-block .cta-contacts span i {
  color: var(--accent-color);
  margin-right: 8px;
}

@media (max-width: 992px) {
  .service-details .intro-content h2 {
    font-size: 1.8rem;
  }

  .service-details .capabilities-section,
  .service-details .workflow-section {
    padding: 60px 0;
  }

  .service-details .bottom-section {
    padding-top: 60px;
  }
}

@media (max-width: 768px) {
  .service-details .intro-content {
    margin-top: 32px;
  }

  .service-details .intro-content h2 {
    font-size: 1.6rem;
  }

  .service-details .section-label {
    margin-bottom: 32px;
  }

  .service-details .capabilities-section,
  .service-details .workflow-section {
    padding: 48px 0;
  }

  .service-details .testimonial-block,
  .service-details .cta-block {
    padding: 32px;
  }
}

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