

@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&family=Lato:wght@400;700&display=swap');

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Lato",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Cinzel",  sans-serif;
  --nav-font: "Inter",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #171717; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #dd3209; /* 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: #222222;  /* The default color of the main navmenu links */
  --nav-hover-color: #dd3209; /* 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: #171717; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #222222; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #dd3209; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

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

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

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

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

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 {
  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.5s;
  z-index: 997;
  /* padding: 20px 0 0 0; */
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .top-row {
  padding-bottom: 10px;
}

.header .top-row .logo {
  text-decoration: none;
}

.header .top-row .logo img {
  max-height: 80px;
  margin-right: 10px;
}

.header .top-row .logo .sitename {
  font-size: 24px;
  font-weight: 600;
  color: var(--heading-color);
  font-family: var(--heading-font);
  margin: 0;
}

.header .social-links a {
  color: var(--heading-color);
  padding: 0 8px;
  display: inline-block;
  font-size: 18px;
  transition: 0.3s;
}

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

@media (max-width: 1200px) {
  .header .social-links {
    padding-right: 40px;
    padding-top: 20px;
  }
}

.header .search-form {
  position: relative;
  width: 250px;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.header .search-form .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 7px 40px 7px 15px;
  background: transparent;
  transition: 0.3s;
  color: var(--default-color);
  font-size: 14px;
}

.header .search-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

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

.header .search-form button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: 0;
  color: var(--heading-color);
  transition: 0.3s;
}

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

@media (max-width: 1200px) {
  .header .search-form {
    display: none;
  }
}

.header .nav-wrap {
  /* background-color: color-mix(in srgb, var(--default-color), transparent 96%); */
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.header .mobile-nav-toggle {
  position: fixed;
  top: 20px;
  right: 5px;
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
}

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

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

  .navmenu li {
    position: relative;
  }

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

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

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

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

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

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

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

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

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

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

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

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

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

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

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

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

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

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

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

  .navmenu .dropdown>.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: var(--background-color);
  font-size: 15px;
  padding: 80px 0 0;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-brand h1,
.footer .footer-brand .logo {
  margin: 0;
  line-height: 1;
  font-weight: 600;
}

.footer .footer-brand h1 .sitename,
.footer .footer-brand .logo .sitename {
  font-family: var(--heading-font);
  font-size: 26px;
  letter-spacing: 0.8px;
  color: var(--heading-color);
}

.footer .footer-brand .tagline {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  margin: 12px 0 0;
}

.footer .social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: transparent;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.footer .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  border-color: var(--accent-color);
}

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

.footer .footer-links-grid h5 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  font-family: var(--heading-font);
  letter-spacing: 0.5px;
}

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

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

.footer .footer-links-grid ul li a {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  text-decoration: none;
  font-size: 15px;
  font-weight: 300;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 10px;
}

.footer .footer-links-grid ul li a::before {
  content: "→";
  position: absolute;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--accent-color);
}

.footer .footer-links-grid ul li a:hover {
  color: var(--accent-color);
  padding-left: 16px;
}

.footer .footer-links-grid ul li a:hover::before {
  opacity: 1;
}

.footer .footer-cta h5 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 18px;
  font-family: var(--heading-font);
}

.footer .footer-cta .btn-outline {
  background: transparent;
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

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

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

.footer .footer-bottom .footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .footer .footer-bottom .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

.footer .footer-bottom .footer-bottom-content p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  font-weight: 300;
}

.footer .footer-bottom .footer-bottom-content p .sitename {
  color: var(--heading-color);
  font-weight: 500;
}

.footer .footer-bottom .footer-bottom-content .credits {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.footer .footer-bottom .footer-bottom-content .credits a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 400;
}

.footer .footer-bottom .footer-bottom-content .credits a:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .footer .footer-links-grid {
    margin-bottom: 30px;
  }

  .footer .footer-cta {
    text-align: center;
  }
}

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

  .footer .row {
    text-align: center;
  }

  .footer .footer-brand,
  .footer .footer-links-grid,
  .footer .footer-cta {
    margin-bottom: 40px;
  }

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

  .footer .footer-links-grid h5 {
    text-align: center;
  }

  .footer .footer-links-grid ul {
    text-align: center;
    display: inline-block;
  }

  .footer .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
  }

  .footer img{
    align-items: center;
  }

}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 13px;
  height: 13px;
  background-color: var(--accent-color);
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;
  left: 50%;
}

#preloader div:nth-child(1) {
  left: calc(50% + 8px);
  animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
  left: calc(50% + 8px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
  left: calc(50% + 32px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
  left: calc(50% + 56px);
  animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }

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

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }

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

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

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

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  text-align: center;
  padding: 20px 0;
}

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

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

.page-title .breadcrumbs .breadcrumb .breadcrumb-item {
  font-size: 0.9rem;
  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.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.page-title .title-wrapper p {
  font-size: 1.1rem;
  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;
  }
}

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

@media (max-width: 1199px) {

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

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

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

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding-top: 100px;
  min-height: 60vh;
  display: grid;
  align-items: center;
  position: relative;
  padding-bottom: 60px;
  /* Decorative background */
  /* Swiper default fix if used somewhere inside */
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 600px at 10% 20%, color-mix(in srgb, var(--accent-color), transparent 88%), transparent 70%), radial-gradient(900px 500px at 90% 80%, color-mix(in srgb, var(--heading-color), transparent 92%), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero .hero-card {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  /* background: var(--surface-color); */
  padding: 32px;
  /* border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%); */
  overflow: hidden;
}

.hero .hero-card .eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 6px 12px;
  border-radius: 999px;
}

.hero .hero-card .eyebrow i {
  /* color: var(--accent-color); */
}

.hero .hero-card .content h2 {
  margin: 0;
  line-height: 1.15;
}

.hero .hero-card .content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

.hero .hero-card .btn-primary-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 10px;
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  transition: 0.3s;
}

.hero .hero-card .btn-primary-ghost:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 12%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.hero .hero-card .btn-video {
  font-weight: 600;
  color: var(--heading-color);
  transition: 0.3s;
}

.hero .hero-card .btn-video .play-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transition: 0.3s;
}

.hero .hero-card .btn-video:hover {
  color: var(--accent-color);
}

.hero .hero-card .btn-video:hover .play-icon {
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  transform: scale(1.05);
}

.hero .hero-card .mini-stats .stat {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.hero .hero-card .mini-stats .stat i {
  color: var(--accent-color);
}

.hero .media-stack {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin-inline: auto;
}

.hero .media-stack .media {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  background: var(--surface-color);
  transform-origin: center;
  transition: 0.3s;
}

.hero .media-stack .media img {
  display: block;
  width: 100%;
  height: auto;
}

.hero .media-stack .media:hover {
  transform: translateY(-4px);
}

.hero .media-stack .primary {
  transform: rotate(-2deg);
}

.hero .media-stack .secondary {
  position: absolute;
  width: 70%;
  right: -8%;
  bottom: -10%;
  transform: rotate(6deg);
  box-shadow: 0 12px 40px color-mix(in srgb, var(--default-color), transparent 80%);
}

@media (max-width: 992px) {
  .hero .media-stack .secondary {
    right: -2%;
    bottom: -6%;
    width: 68%;
  }
}

.hero .media-stack .floating-badge {
  position: absolute;
  top: -14px;
  left: -14px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  animation: floatY 4s ease-in-out infinite;
}

.hero .media-stack .floating-badge i {
  color: var(--accent-color);
}

@keyframes floatY {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0);
  }
}

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

@media (max-width: 1200px) {
  .hero .hero-card {
    padding: 28px;
  }
}

@media (max-width: 992px) {
  .hero {
    min-height: auto;
    padding: 80px 0 40px;
  }

  .hero .hero-card .content h2 {
    font-size: clamp(28px, 4vw, 36px);
  }
}

@media (max-width: 576px) {
  .hero .hero-card {
    padding: 22px;
  }

  .hero .media-stack .floating-badge {
    transform: scale(0.95);
  }
}


/*--------------------------------------------------------------
# Hero Section Overlay Fix
--------------------------------------------------------------*/
.hero {
  position: relative; /* Essential for positioning the overlay */
  /* Keep your existing padding/layout styles here */
  padding-top: 100px;
  min-height: 60vh;
  display: grid;
  align-items: center;
  padding-bottom: 60px;
}

/* ADD THIS OVERLAY */
.hero::before {
  content: "";
  position: absolute;
  inset: 0; /* Covers the entire section */
  /* background: rgba(0, 0, 0, 0.7); Black with 70% opacity - Adjust 0.7 to make it darker/lighter */
  /* Optional: If you want a gradient overlay instead of flat black, use this line below instead: */
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  z-index: 1; /* Sits above the background image */
}

/* IMPORTANT: Bring content ABOVE the overlay */
.hero .container {
  position: relative;
  z-index: 2; /* Ensures text sits on top of the dark overlay */
}

/* Update Text Colors for Dark Background */
.hero .hero-card .content h2,
.hero .hero-card .content p,
.hero .hero-card .mini-stats .stat, 
.hero .hero-card .content .lead {
  color: #ffffff; /* Force text to white for maximum contrast */
}

/* Adjust the card background to be semi-transparent or removed */
.hero .hero-card {
  position: relative;
  z-index: 2;
  border-radius: 16px;
  /* Option A: Glassmorphism effect (Modern) */
  /* background: rgba(255, 255, 255, 0.1);  */
  /* backdrop-filter: blur(10px); */
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  
  /* Option B: No background, just text */
  /* background: transparent; border: none; */
  
  padding: 32px;
  overflow: hidden;
}

/* Fix specific text colors that were using 'mix' functions */
.hero .hero-card .eyebrow {
  color: #fff;
  background: var(--accent-color); /* Make label solid accent color */
}

.hero .hero-card .mini-stats .stat {
  color: rgba(255, 255, 255, 0.8);
}





/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  /* tokens */
  --card-radius: 16px;
  --soft-border: color-mix(in srgb, var(--default-color), transparent 88%);
  --muted-text: color-mix(in srgb, var(--default-color), transparent 28%);
  --muted-strong: color-mix(in srgb, var(--default-color), transparent 18%);
  --accent-soft: color-mix(in srgb, var(--accent-color), transparent 88%);
  --accent-softer: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.about .intro-card {
  background: var(--surface-color);
  border: 1px solid var(--soft-border);
  border-radius: calc(var(--card-radius) + 4px);
  padding: 32px;
  box-shadow: 0 30px 60px color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
  .about .intro-card {
    padding: 22px;
  }
}

.about .intro-card .intro-head {
  margin-bottom: 1rem;
}

.about .intro-card .intro-head .kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--accent-color);
  background: var(--accent-softer);
}

.about .intro-card .intro-head h2 {
  margin-top: 12px;
  margin-bottom: 0.75rem;
  font-size: 2.125rem;
  line-height: 1.25;
  font-weight: 700;
}

@media (max-width: 768px) {
  .about .intro-card .intro-head h2 {
    font-size: 1.875rem;
  }
}

.about .intro-card .intro-body .lead {
  font-size: 1.125rem;
  color: var(--muted-strong);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.about .intro-card .intro-body p {
  color: var(--muted-text);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about .intro-card .feature-list {
  margin-top: 0.25rem;
  margin-bottom: 1.25rem;
}

.about .intro-card .feature-list .feature-item {
  display: flex;
  gap: 14px;
  padding: 14px 14px;
  border: 1px dashed var(--soft-border);
  border-radius: var(--card-radius);
  background: color-mix(in srgb, var(--background-color), var(--surface-color) 50%);
  transition: all 0.3s ease;
}

.about .intro-card .feature-list .feature-item:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--default-color), transparent 92%);
}

.about .intro-card .feature-list .feature-item i {
  flex: 0 0 44px;
  height: 44px;
  width: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--accent-color);
  background: var(--accent-soft);
  font-size: 18px;
}

.about .intro-card .feature-list .feature-item .text h6 {
  margin: 0 0 4px 0;
  font-size: 1rem;
  font-weight: 700;
}

.about .intro-card .feature-list .feature-item .text p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted-text);
}

.about .intro-card .metric-band {
  margin: 18px 0 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  border: 1px solid var(--soft-border);
  border-radius: calc(var(--card-radius) + 2px);
}

@media (max-width: 576px) {
  .about .intro-card .metric-band {
    gap: 12px;
    padding: 12px;
  }
}

.about .intro-card .metric-band .metric {
  display: grid;
  gap: 2px;
}

.about .intro-card .metric-band .metric .value {
  font-family: var(--heading-font);
  font-weight: 800;
  color: var(--accent-color);
  font-size: 1.75rem;
  line-height: 1;
}

.about .intro-card .metric-band .metric .label {
  font-size: 0.8rem;
  color: var(--muted-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about .intro-card .metric-band .divider {
  width: 1px;
  height: 34px;
  background: var(--soft-border);
}

@media (max-width: 576px) {
  .about .intro-card .metric-band .divider {
    height: 28px;
  }
}

.about .intro-card .actions .btn.btn-accent {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 10px;
  padding: 12px 22px;
  font-weight: 600;
  border: 1px solid var(--accent-color);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
  transition: all 0.3s ease;
}

.about .intro-card .actions .btn.btn-accent:hover {
  background: color-mix(in srgb, var(--accent-color), black 14%);
  border-color: color-mix(in srgb, var(--accent-color), black 14%);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px color-mix(in srgb, var(--accent-color), transparent 62%);
}

.about .intro-card .actions .link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--heading-color);
  position: relative;
}

.about .intro-card .actions .link-more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.about .intro-card .actions .link-more:hover {
  color: var(--accent-color);
}

.about .intro-card .actions .link-more:hover::after {
  transform: scaleX(1);
}

.about .showcase {
  height: 100%;
  display: grid;
  gap: 16px;
  grid-template-rows: 1fr auto;
}

.about .showcase .showcase-main {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--card-radius) + 4px);
  border: 1px solid var(--soft-border);
  box-shadow: 0 24px 50px color-mix(in srgb, var(--default-color), transparent 88%);
}

.about .showcase .showcase-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about .showcase .showcase-main .badge-note {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  background: var(--surface-color);
  border-radius: 12px;
  border: 1px solid var(--soft-border);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--default-color), transparent 90%);
}

.about .showcase .showcase-main .badge-note i {
  color: var(--accent-color);
  background: var(--accent-soft);
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 16px;
}

.about .showcase .showcase-main .badge-note strong {
  display: block;
  line-height: 1.1;
  color: var(--heading-color);
}

.about .showcase .showcase-main .badge-note small {
  display: block;
  color: var(--muted-text);
}

.about .showcase .showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about .showcase .showcase-grid .mini {
  margin: 0;
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid var(--soft-border);
  background: var(--surface-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about .showcase .showcase-grid .mini img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

@media (min-width: 992px) {
  .about .showcase .showcase-grid .mini img {
    height: 140px;
  }
}

.about .showcase .showcase-grid .mini:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px color-mix(in srgb, var(--default-color), transparent 90%);
}


/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 100px 0;
}

.call-to-action .cta-wrapper {
  position: relative;
}

.call-to-action .cta-wrapper .content-block {
  background-color: var(--surface-color);
  border-radius: 16px;
  padding: 5rem 3.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 40px color-mix(in srgb, var(--default-color), transparent 96%), 0 1px 0 color-mix(in srgb, var(--accent-color), transparent 94%);
}

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

.call-to-action .text-content .section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  position: relative;
}

.call-to-action .text-content .section-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
}

.call-to-action .text-content h2 {
  font-size: 3.25rem;
  font-weight: 300;
  color: var(--heading-color);
  line-height: 1.15;
  margin-bottom: 2rem;
}

.call-to-action .text-content h2 .accent-text {
  color: var(--accent-color);
  font-weight: 400;
  display: block;
}

.call-to-action .text-content p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.call-to-action .benefits-list {
  margin-bottom: 2.5rem;
}

.call-to-action .benefits-list .benefit-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
}

.call-to-action .benefits-list .benefit-row .benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.call-to-action .benefits-list .benefit-row .benefit-item .check-icon {
  width: 24px;
  height: 24px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.call-to-action .benefits-list .benefit-row .benefit-item span {
  font-size: 0.95rem;
  color: var(--heading-color);
  font-weight: 400;
}

.call-to-action .action-group {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.call-to-action .action-group .btn {
  transition: all 0.3s ease;
  border-radius: 8px;
  font-weight: 500;
}

.call-to-action .action-group .btn.btn-primary-action {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border: none;
  font-size: 1rem;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.call-to-action .action-group .btn.btn-primary-action:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.call-to-action .action-group .btn.btn-text-link {
  background: transparent;
  color: var(--default-color);
  border: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.call-to-action .action-group .btn.btn-text-link:hover {
  color: var(--accent-color);
}

.call-to-action .action-group .btn.btn-text-link i {
  font-size: 1.25rem;
}

.call-to-action .trust-indicators {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.call-to-action .trust-indicators .indicator {
  text-align: center;
}

.call-to-action .trust-indicators .indicator .metric {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.call-to-action .trust-indicators .indicator .label {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 400;
}

.call-to-action .trust-indicators .separator {
  width: 1px;
  height: 40px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
}

.call-to-action .visual-section {
  position: relative;
}

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

.call-to-action .visual-section .image-container .main-visual {
  width: 100%;
  border-radius: 12px;
  max-width: 480px;
}

.call-to-action .visual-section .image-container .floating-badge {
  position: absolute;
  background: var(--surface-color);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 92%), 0 0 0 1px color-mix(in srgb, var(--accent-color), transparent 92%);
  z-index: 3;
}

.call-to-action .visual-section .image-container .floating-badge .badge-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  color: var(--contrast-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.call-to-action .visual-section .image-container .floating-badge .badge-text .badge-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.call-to-action .visual-section .image-container .floating-badge .badge-text .badge-subtitle {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-weight: 400;
}

.call-to-action .visual-section .image-container .floating-badge.badge-1 {
  top: 10%;
  left: -20px;
  animation: floatSlow 6s ease-in-out infinite;
}

.call-to-action .visual-section .image-container .floating-badge.badge-2 {
  bottom: 15%;
  right: -30px;
  animation: floatFast 4s ease-in-out infinite;
}

.call-to-action .visual-section .decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.call-to-action .visual-section .decorative-elements .element {
  position: absolute;
  border-radius: 50%;
}

.call-to-action .visual-section .decorative-elements .element.element-1 {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 92%), color-mix(in srgb, var(--accent-color), transparent 98%));
  top: -10%;
  right: 20%;
  animation: drift 8s ease-in-out infinite;
}

.call-to-action .visual-section .decorative-elements .element.element-2 {
  width: 80px;
  height: 80px;
  background: linear-gradient(225deg, color-mix(in srgb, var(--heading-color), transparent 90%), color-mix(in srgb, var(--heading-color), transparent 98%));
  bottom: -5%;
  left: 10%;
  animation: drift 6s ease-in-out infinite reverse;
}

.call-to-action .visual-section .decorative-elements .element.element-3 {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 88%), color-mix(in srgb, var(--accent-color), transparent 96%));
  top: 50%;
  left: -5%;
  animation: drift 10s ease-in-out infinite;
}

@keyframes floatSlow {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-8px) translateX(4px);
  }
}

@keyframes floatFast {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(6px) translateX(-3px);
  }
}

@keyframes drift {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(10px, -8px) rotate(120deg);
  }

  66% {
    transform: translate(-5px, 12px) rotate(240deg);
  }
}

@media (max-width: 992px) {
  .call-to-action {
    padding: 80px 0;
  }

  .call-to-action .content-block {
    padding: 3.5rem 2.5rem;
  }

  .call-to-action .text-content {
    margin-bottom: 3rem;
  }

  .call-to-action .text-content h2 {
    font-size: 2.5rem;
  }

  .call-to-action .text-content h2 .accent-text {
    display: inline;
  }

  .call-to-action .text-content p {
    max-width: 100%;
  }

  .call-to-action .action-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .call-to-action .action-group .btn.btn-primary-action {
    width: 100%;
    text-align: center;
  }

  .call-to-action .trust-indicators {
    justify-content: space-between;
    gap: 1rem;
  }

  .call-to-action .trust-indicators .separator {
    display: none;
  }

  .call-to-action .floating-badge.badge-1 {
    left: 0;
    top: 5%;
  }

  .call-to-action .floating-badge.badge-2 {
    right: 0;
    bottom: 10%;
  }
}

@media (max-width: 768px) {
  .call-to-action {
    padding: 60px 0;
  }

  .call-to-action .content-block {
    padding: 2.5rem 1.5rem;
  }

  .call-to-action .text-content h2 {
    font-size: 2rem;
  }

  .call-to-action .text-content p {
    font-size: 1rem;
  }

  .call-to-action .benefits-list .benefit-row {
    flex-direction: column;
    gap: 0.75rem;
  }

  .call-to-action .trust-indicators .indicator .metric {
    font-size: 1.25rem;
  }

  .call-to-action .trust-indicators .indicator .label {
    font-size: 0.8rem;
  }

  .call-to-action .floating-badge {
    padding: 0.75rem 1rem;
  }

  .call-to-action .floating-badge .badge-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .call-to-action .floating-badge .badge-text .badge-title {
    font-size: 0.9rem;
  }

  .call-to-action .floating-badge .badge-text .badge-subtitle {
    font-size: 0.75rem;
  }

  .call-to-action .decorative-elements .element {
    transform: scale(0.7);
  }

  .call-to-action .decorative-elements .element.element-1 {
    top: -5%;
    right: 10%;
  }

  .call-to-action .decorative-elements .element.element-2 {
    bottom: 0;
    left: 5%;
  }

  .call-to-action .decorative-elements .element.element-3 {
    display: none;
  }
}





/* Contact Us Section */
.contact-us-section {
    /* background: linear-gradient(180deg, #f8f9fa 0%, #E8EAEB 100%); */
    padding: 80px 0;
}

/* Header */
.contact-badge {
    display: inline-block;
    background: #dd3209;
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.contact-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #171717;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.contact-subtitle {
    max-width: 700px;
    font-size: 1.1rem;
    color: #7B8388;
    line-height: 1.7;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Contact Info Card */
.contact-info-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(17, 17, 17, 0.15);
}

/* Clickable cards specific styling */
a.contact-info-card {
    cursor: pointer;
}

a.contact-info-card:hover .info-icon {
    transform: scale(1.1);
    background: #dd3209
}

/* Info Icon */
.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dd3209);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

/* Info Content */
.info-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #171717;
    margin-bottom: 8px;
}

.info-content p {
    font-size: 0.9rem;
    color: #7B8388;
    margin-bottom: 3px;
    line-height: 1.5;
}

a.contact-info-card .info-content p {
    color: #dd3209;
    font-weight: 500;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.form-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #171717;
    margin-bottom: 25px;
}

/* Form Styling */
.form-control {
    padding: 14px 18px;
    border: 2px solid #E8EAEB;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #171717;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #dd3209;
    box-shadow: 0 0 0 3px rgba(8, 8, 8, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: #7B8388;
}

select.form-control {
    cursor: pointer;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.btn-submit {
    background: linear-gradient(135deg, #dd3209);
    color: #ffffff;
    padding: 14px 35px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 102, 179, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 179, 0.4);
    gap: 15px;
}

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

.btn-submit:hover i {
    transform: translateX(3px);
}

/* Map Wrapper */
.map-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    border-radius: 20px;
}


/* Responsive Design */
@media (max-width: 991px) {
    .contact-title {
        font-size: 2.5rem;
    }

    .map-wrapper {
        min-height: 450px;
        margin-top: 30px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

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

    .contact-title {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 1rem;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .form-title {
        font-size: 1.25rem;
    }

    .map-wrapper {
        min-height: 350px;
    }

    .social-links-box {
        padding: 30px 20px;
    }

    .social-links-box h4 {
        font-size: 1.15rem;
    }
}

@media (max-width: 576px) {
    .contact-info-card {
        flex-direction: column;
        text-align: center;
    }

    .info-icon {
        margin: 0 auto;
    }

    .btn-submit {
        width: 100%;
        justify-content: center;
    }

}


/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-main-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-details .service-main-image img {
  width: 100%;
  transition: transform 0.6s;
}

.service-details .service-main-image:hover img {
  transform: scale(1.05);
}

.service-details .service-main-image .experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px;
  border-radius: 12px;
  min-width: 120px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.service-details .service-main-image .experience-badge span {
  font-size: 36px;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.service-details .service-main-image .experience-badge p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

.service-details .service-main-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-details .service-main-content .section-header {
  margin-bottom: 25px;
}

.service-details .service-main-content .section-header .section-subtitle {
  display: inline-block;
  padding: 8px 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-details .service-main-content .section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .service-details .service-main-content .section-header h2 {
    font-size: 28px;
  }
}

.service-details .service-main-content .lead {
  font-size: 18px;
  margin-bottom: 20px;
}

.service-details .service-main-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 20px;
}

.service-details .service-benefits {
  padding: 0;
  list-style: none;
  margin: 20px 0 0 0;
}

.service-details .service-benefits li {
  padding: 12px 0;
  position: relative;
  display: flex;
  align-items: center;
}

.service-details .service-benefits li i {
  color: var(--accent-color);
  font-size: 20px;
  margin-right: 15px;
}

.service-details .service-tabs {
  margin-top: 80px;
}

.service-details .service-tabs .nav-tabs {
  border: none;
  display: flex;
  flex-wrap: nowrap;
  gap: 15px;
  margin-bottom: 30px;
  overflow-x: auto;
  padding-bottom: 5px;
}

@media (max-width: 768px) {
  .service-details .service-tabs .nav-tabs {
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .service-details .service-tabs .nav-tabs::-webkit-scrollbar {
    height: 5px;
  }

  .service-details .service-tabs .nav-tabs::-webkit-scrollbar-thumb {
    background: color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 10px;
  }
}

.service-details .service-tabs .nav-tabs .nav-link {
  border: none;
  padding: 15px 25px;
  border-radius: 50px;
  color: var(--default-color);
  font-weight: 600;
  background: var(--surface-color);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.service-details .service-tabs .nav-tabs .nav-link i {
  margin-right: 10px;
  font-size: 18px;
}

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

.service-details .service-tabs .tab-content {
  padding: 40px;
  border-radius: 16px;
  background: var(--surface-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-tabs .tab-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.service-details .service-tabs .tab-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.service-details .service-tabs .tab-content .feature-item {
  padding: 20px;
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  border-radius: 12px;
  height: 100%;
  transition: transform 0.3s;
}

.service-details .service-tabs .tab-content .feature-item:hover {
  transform: translateY(-5px);
}

.service-details .service-tabs .tab-content .feature-item i {
  color: var(--accent-color);
  font-size: 28px;
  margin-bottom: 15px;
}

.service-details .service-tabs .tab-content .feature-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-details .service-tabs .tab-content .feature-item p {
  font-size: 14px;
  margin-bottom: 0;
}

.service-details .service-testimonial {
  margin-top: 80px;
}

.service-details .service-testimonial .testimonial-card {
  padding: 40px;
  border-radius: 16px;
  background: var(--surface-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-testimonial .testimonial-card .client-info {
  text-align: center;
}

.service-details .service-testimonial .testimonial-card .client-info img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border: 5px solid var(--background-color);
  margin-right: 20px;
}

@media (max-width: 767px) {
  .service-details .service-testimonial .testimonial-card .client-info img {
    margin: 0 auto 20px;
  }
}

.service-details .service-testimonial .testimonial-card .client-info h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.service-details .service-testimonial .testimonial-card .client-info p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 10px;
  font-size: 14px;
}

.service-details .service-testimonial .testimonial-card .client-info .stars {
  color: #FFD700;
  font-size: 14px;
}

.service-details .service-testimonial .testimonial-card .quote {
  position: relative;
  padding-left: 30px;
}

.service-details .service-testimonial .testimonial-card .quote i {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 24px;
  color: var(--accent-color);
}

.service-details .service-testimonial .testimonial-card .quote p {
  font-style: italic;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details .service-cta {
  margin-top: 80px;
  padding: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 10%), color-mix(in srgb, var(--accent-color), transparent 40%));
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.service-details .service-cta h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 15px;
}

.service-details .service-cta p {
  font-size: 18px;
  color: var(--contrast-color);
  opacity: 0.9;
  margin-bottom: 30px;
}

.service-details .service-cta .btn-service {
  display: inline-flex;
  align-items: center;
  background: var(--contrast-color);
  color: var(--accent-color);
  font-weight: 600;
  padding: 15px 35px;
  border-radius: 50px;
  transition: all 0.3s;
}

.service-details .service-cta .btn-service i {
  margin-left: 8px;
  transition: transform 0.3s;
}

.service-details .service-cta .btn-service:hover {
  background: var(--background-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-cta .btn-service:hover i {
  transform: translateX(5px);
}

@media (max-width: 767px) {
  .service-details .service-cta {
    padding: 40px 20px;
  }

  .service-details .service-cta h3 {
    font-size: 26px;
  }
}

@media (max-width: 991px) {
  .service-details .service-main-content {
    margin-top: 30px;
  }

  .service-details .service-tabs {
    margin-top: 50px;
  }

  .service-details .service-testimonial,
  .service-details .service-cta {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .service-details .client-info {
    flex-direction: column;
    margin-bottom: 30px;
  }

  .service-details .service-tabs .tab-content {
    padding: 30px 20px;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-showcase {
  margin-bottom: 3rem;
}

.portfolio-details .portfolio-showcase .main-image {
  margin-bottom: 1.5rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-showcase .main-image img {
  width: 100%;
  transition: transform 0.5s ease;
}

.portfolio-details .portfolio-showcase .main-image img:hover {
  transform: scale(1.02);
}

.portfolio-details .portfolio-showcase .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

@media (max-width: 767px) {
  .portfolio-details .portfolio-showcase .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.portfolio-details .portfolio-showcase .gallery-grid .gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-showcase .gallery-grid .gallery-item img {
  transition: transform 0.4s ease;
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.portfolio-details .portfolio-showcase .gallery-grid .gallery-item img:hover {
  transform: scale(1.1);
}

.portfolio-details .portfolio-description {
  margin-bottom: 2rem;
}

.portfolio-details .portfolio-description h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-description h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--accent-color);
}

.portfolio-details .portfolio-description p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.portfolio-details .sidebar {
  position: sticky;
  top: 30px;
}

.portfolio-details .portfolio-info {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
}

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

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

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
}

.portfolio-details .portfolio-info ul li {
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio-details .portfolio-info ul li:last-child {
  border-bottom: 0;
}

.portfolio-details .portfolio-info ul li span {
  font-weight: 600;
  color: var(--heading-color);
  margin-right: 7px;
}

.portfolio-details .portfolio-info ul li a {
  color: var(--accent-color);
  transition: 0.3s;
}

.portfolio-details .portfolio-info ul li a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: underline;
}

.portfolio-details .portfolio-info ul li.buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 10px 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 5px;
  display: inline-block;
  text-align: center;
  transition: 0.3s;
}

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

.portfolio-details .portfolio-info .btn-github {
  padding: 10px 20px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  color: var(--default-color);
  border-radius: 5px;
  display: inline-block;
  text-align: center;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-github i {
  margin-right: 5px;
}

.portfolio-details .portfolio-info .btn-github:hover {
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  transform: translateY(-2px);
}

.portfolio-details .client-testimonial {
  background-color: var(--surface-color);
  border-left: 4px solid var(--accent-color);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.portfolio-details .client-testimonial .testimonial-content {
  position: relative;
  margin-bottom: 20px;
}

.portfolio-details .client-testimonial .testimonial-content p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  line-height: 1.6;
  margin: 0;
}

.portfolio-details .client-testimonial .testimonial-content .quote-icon-left,
.portfolio-details .client-testimonial .testimonial-content .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 40%);
  font-size: 22px;
  line-height: 0;
  vertical-align: middle;
}

.portfolio-details .client-testimonial .testimonial-content .quote-icon-left {
  margin-right: 5px;
}

.portfolio-details .client-testimonial .testimonial-content .quote-icon-right {
  margin-left: 5px;
}

.portfolio-details .client-testimonial .client-info {
  display: flex;
  align-items: center;
}

.portfolio-details .client-testimonial .client-info .testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.portfolio-details .client-testimonial .client-info h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
}

.portfolio-details .client-testimonial .client-info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.portfolio-details .project-challenges {
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

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

.portfolio-details .project-challenges ul {
  list-style: none;
  padding: 0;
}

.portfolio-details .project-challenges ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.portfolio-details .project-challenges ul li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 10px;
}

.portfolio-details .additional-context {
  background-color: color-mix(in srgb, var(--background-color), black 3%);
  border-radius: 10px;
  padding: 30px;
  margin-top: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.portfolio-details .additional-context h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.portfolio-details .additional-context h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
}

.portfolio-details .additional-context p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.portfolio-details .additional-context p:last-child {
  margin-bottom: 0;
}

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


/* ************************** */

/*--------------------------------------------------------------
# Our Expertis Section
--------------------------------------------------------------*/
/* Furniture Solutions Section Styles */
.furniture-section {
    /* background:  no-repeat center center !important; */
    background-size: cover !important;
    padding: 60px 0 !important;
}

.furniture-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.furniture-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 102, 179, 0.25);
}

/* Fixed Image Container with Aspect Ratio */
.furniture-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 66.67%; /* 3:2 aspect ratio */
    overflow: hidden;
    background: #E8EAEB;
}

.furniture-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.furniture-card:hover .furniture-img-wrapper img {
    transform: scale(1.1);
}

/* Card Content */
.furniture-card-body {
    padding: 1.5rem;
}

.furniture-card h4 {
    color: var(--heading-color);
    /* font-family: 'Montserrat', sans-serif; */
    /* font-size: 1.25rem; */
    font-weight: 600;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.furniture-card:hover h4 {
    color: var(--accent-color);
}


/*--------------------------------------------------------------
# Why choose Us section
--------------------------------------------------------------*/

.cards-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 40px;
}

.card {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 40px 30px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Positioning for scattered layout */
.card-1 {
  transform: rotate(-2deg);
  margin-top: 20px;
}

.card-2 {
  transform: rotate(1deg);
  margin-top: 50px;
}

.card-3 {
  transform: rotate(2deg);
  margin-top: -10px;
}

.card-4 {
  transform: rotate(-1deg);
  margin-top: 30px;
}

.card-5 {
  transform: rotate(1.5deg);
  margin-top: 10px;
  grid-column: 1;
}

/* Pin styling */
.pin {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.pin::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 15px;
  background: inherit;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.pin-red { background: #f87171; }
.pin-blue { background: #60a5fa; }
.pin-purple { background: #a78bfa; }
.pin-orange { background: #fb923c; }
.pin-black { background: #1f2937; }

/* Card content */
.card-content .number {
  display: inline-block;
  font-size: 14px;
  color: #f97316;
  font-weight: 600;
  margin-bottom: 10px;
}

.card-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.card-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #6b7280;
}

/* Responsive design */
@media (max-width: 768px) {
  .cards-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .card-1 {
    transform: rotate(4deg);
    margin-top: 0;
  }

  .card-2{
    transform: rotate(-2deg);
  }

  .card-4{
    transform: rotate(-3deg);
  }
}


/* custom cursor */

/* Hide default cursor */
body {
  /* cursor: none; */
}

/* Main cursor */
.cursor {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(7, 7, 7, 0.8);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: 
    transform 0.15s ease,
    width 0.2s ease,
    height 0.2s ease,
    border 0.2s ease;
  z-index: 9999;
  box-shadow: 0 0 18px rgba(255,255,255,0.4);
}

/* Inner dot */
.cursor-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: black;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Hover state */
.cursor.active {
  transform: translate(-50%, -50%) scale(1.2);
  /* border-color: white; */
  border-color: var(--default-color);
}

/* Magnetic */
.cursor.magnetic {
  transform: translate(-50%, -50%) scale(1.7);
}

/* Image cursor */
.cursor-image {
  position: fixed;
  width: 120px;
  height: 80px;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 9998;
}

.cursor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Show image */
.cursor-image.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Disable on mobile */
@media (max-width: 768px) {
  body {
    cursor: default;
  }
  .cursor,
  .cursor-image {
    display: none;
  }
}


/* ********************************* */
