
/* Fonts */
:root {
  --default-font: "Montserrat", sans-serif;
  --heading-font: "Nunito",  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; /* White background for the entire website */
  --default-color: #333333; /* Dark gray for main text */
  --heading-color: #333333; /* Dark gray for headings (minimal use of pure black) */
  --accent-color: #d1156c; /* Pink accent color for buttons and links */
  --accent-hover: #a0104f; /* Darker pink for hover states */
  --accent-light: #e44d8a; /* Lighter pink for subtle highlights */
  --surface-color: #ffffff; /* White surface for cards and boxes */
  --contrast-color: #ffffff; /* White text for contrast on dark backgrounds */
}

/* 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: #333333;  /* The default color of the main navmenu links */
  --nav-hover-color: #d1156c; /* 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: #333333; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #d1156c; /* 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: #fff5f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #d1156c;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #e44d8a;
  --contrast-color: #ffffff;
}

/*--------------------------------------------------------------
# Hero Video Background
--------------------------------------------------------------*/
.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

#hero-background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Adjusted opacity for better visibility */
  z-index: 1;
}

/* 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: var(--bs-danger);
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: var(--contrast-color);
  background: var(--bs-success);
  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: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.scrolled .header .header-container {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
}

.header .logo {
  line-height: 1;
  padding-left: 5px;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# 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: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    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: 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: 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
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Global Footer (Minimalist 3-Column Version)
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: #fff;
  font-size: 14px;
  position: relative;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.03);
  margin-top: 40px;
  padding: 40px 0 30px 0;
}

.footer .footer-top {
  padding-bottom: 20px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 10px;
  display: inline-block;
}

.footer .footer-about .logo img {
  max-height: 45px;
}

.footer .footer-about p {
  color: #666;
  font-size: 13.5px;
  max-width: 320px;
  line-height: 1.5;
  margin-bottom: 0;
}

.footer .footer-contact p {
  margin-bottom: 8px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer .footer-contact i {
  font-size: 18px;
  color: var(--accent-color);
}

.footer .social-links-title {
  font-size: 10px;
  font-weight: 700;
  color: var(--default-color);
  opacity: 0.5;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-align: center;
}

@media (min-width: 992px) {
  .footer .social-links-title {
    text-align: right;
  }
}

.footer .social-links {
  display: flex;
  gap: 12px;
  justify-content: center;
}

@media (min-width: 992px) {
  .footer .social-links {
    justify-content: flex-end;
  }
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: #fff5f9;
  color: var(--accent-color);
  font-size: 19px;
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer .social-links a:hover {
  background-color: var(--accent-color);
  color: #fff;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 20px rgba(209, 21, 108, 0.25);
}

.footer .copyright {
  margin-top: 15px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  font-size: 13px;
  color: #888;
}

.footer .copyright span {
  font-weight: 600;
}

.footer .credits {
  margin-top: 5px;
  font-size: 12px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: 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;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 170px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.page-title[style*="background-image"] {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-title[style*="background-image"]::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9));
}

.page-title[style*="background-image"] .container {
  position: relative;
}
/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding-top: 160px;
  overflow: hidden;
  min-height: 600px;
}

.hero .hero-content {
  position: relative;
  z-index: 2;
}

.hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero .hero-content h1 .accent-text {
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .hero .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .hero .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero .hero-content .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hero .hero-content h1 {
    font-size: 2rem;
  }
}

.hero .company-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  color: var(--accent-color);
  font-weight: 500;
}

.hero .company-badge i {
  font-size: 1.25rem;
}

.hero .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
  border-color: color-mix(in srgb, var(--accent-color), black 20%);
}

.hero .video-container {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.hero .play-btn {
  text-decoration: none;
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.hero .play-btn i {
  font-size: 32px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.hero .play-btn:hover {
  background: var(--accent-color);
}

.hero .play-btn:hover i {
  color: var(--contrast-color);
}

.hero .btn-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-link:hover {
  color: var(--accent-color);
}

.hero .btn-link i {
  font-size: 1.5rem;
  vertical-align: middle;
}

.hero .hero-image {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero .hero-image img {
  max-width: 100%;
  height: auto;
}

.hero .customers-badge {
  position: absolute;
  bottom: 10px;
  right: 30px;
  background-color: var(--surface-color);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  animation: float-badge 3s ease-in-out infinite;
  will-change: transform;
}

.hero .customers-badge .customer-avatars {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.hero .customers-badge .avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--surface-color);
  margin-left: -8px;
}

.hero .customers-badge .avatar:first-child {
  margin-left: 0;
}

.hero .customers-badge .avatar.more {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.hero .customers-badge p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 992px) {
  .hero .customers-badge {
    position: static;
    margin: 1rem auto;
    max-width: 250px;
  }
}

.hero .stats-row {
  position: relative;
  z-index: 1;
  margin-top: 5rem;
  background-color: var(--surface-color);
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding-bottom: 2rem;
}

.hero .stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
}

.hero .stat-item .stat-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  transition: 0.3s;
}

.hero .stat-item .stat-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon {
  background-color: var(--accent-color);
}

.hero .hero-background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}



.hero .video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 64px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: color 0.3s;
}

.hero .video-play-btn:hover {
  color: rgba(255, 255, 255, 1);
}

.hero .stat-item:hover .stat-icon i {
  color: var(--contrast-color);
}

.hero .stat-item .stat-content {
  flex-grow: 1;
}

.hero .stat-item .stat-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.hero .stat-item .stat-content p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

@media (max-width: 575px) {
  .hero .stat-item {
    padding: 1.5rem;
  }
}

@keyframes float-badge {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-meta {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.about .about-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
  color:#d1156c;
}

@media (max-width: 992px) {
  .about .about-title {
    font-size: 2rem;
  }
}

.about .about-description {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .feature-list-wrapper {
  margin-bottom: 2rem;
}

.about .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about .feature-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.about .profile .profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.about .profile .profile-name {
  font-size: 1.125rem;
  margin: 0;
}

.about .profile .profile-position {
  color: var(--accent-color);
  margin: 0;
  font-size: 0.875rem;
}

.about .contact-info {
  padding: 1rem 1.5rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.about .contact-info i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.about .contact-info .contact-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
  margin: 0;
}

.about .contact-info .contact-number {
  font-weight: 600;
  margin: 0;
}

.about .image-wrapper {
  position: relative;
}

@media (max-width: 992px) {
  .about .image-wrapper {
    padding-left: 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .main-image {
    margin-left: 0;
  }
}

.about .image-wrapper .small-image {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 45%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 8px solid var(--surface-color);
}

@media (max-width: 992px) {
  .about .image-wrapper .small-image {
    position: static;
    width: 100%;
    margin: 0 auto;
    border: 0;
  }
}

.about .image-wrapper .experience-badge {
  position: absolute;
  bottom: 5%;
  right: 5%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  min-width: 200px;
  animation: experience-float 3s ease-in-out infinite;
}

@media (max-width: 992px) {
  .about .image-wrapper .experience-badge {
    position: static;
    width: fit-content;
    margin: 0 auto;
  }
}

.about .image-wrapper .experience-badge h3 {
  color: var(--contrast-color);
  font-size: 2.5rem;
  margin: 0;
  line-height: 0.5;
}

.about .image-wrapper .experience-badge h3 span {
  font-size: 1rem;
  display: inline-block;
  margin-left: 0.25rem;
}

.about .image-wrapper .experience-badge p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}

@keyframes experience-float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 6px;
  width: auto;
}

.features .nav-item {
  margin: 0;
  padding: 0 5px 0 0;
}

.features .nav-item:last-child {
  padding-right: 0;
}

.features .nav-link {
  background-color: none;
  color: var(--heading-color);
  padding: 10px 30px;
  transition: 0.3s;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  margin: 0;
}

@media (max-width: 468px) {
  .features .nav-link {
    padding: 8px 20px;
  }
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.features .nav-link:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .nav-link:hover h4 {
  color: var(--accent-color);
}

.features .nav-link.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
.features-cards {
  --default-color: #555;
  --heading-color: #333;
}

.features-cards .feature-box {
  height: 100%;
  padding: 40px 30px;
  border-radius: 10px;
}

.features-cards .feature-box i {
  font-size: 44px;
  display: inline-block;
  line-height: 0;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.features-cards .feature-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.features-cards .feature-box p {
  font-size: 15px;
  margin-bottom: 0;
}

.features-cards .feature-box.orange {
  background-color: #fff3e2;
}

.features-cards .feature-box.orange i {
  color: #edb86e;
}

.features-cards .feature-box.blue {
  background-color: #deedfd;
}

.features-cards .feature-box.blue i {
  color: #20a5f8;
}

.features-cards .feature-box.green {
  background-color: #d5f1e4;
}

.features-cards .feature-box.green i {
  color: #48c88a;
}

.features-cards .feature-box.red {
  background-color: #fdeded;
}

.features-cards .feature-box.red i {
  color: #f28484;
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.features-2 .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.features-2 .feature-item .feature-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.features-2 .feature-item .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  margin-bottom: 0;
}

.features-2 .phone-mockup {
  position: relative;
  padding: 30px 0;
}

.features-2 .phone-mockup img {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

@media (max-width: 991.98px) {
  .features-2 .feature-item {
    text-align: center !important;
    margin-bottom: 2rem;
  }

  .features-2 .feature-item .d-flex {
    flex-direction: column;
    text-align: center;
    justify-content: center !important;
  }

  .features-2 .phone-mockup {
    margin: 3rem 0;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .container {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 4rem 2rem;
}

.call-to-action .content h2,
.call-to-action .content p {
  color: var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta {
  background-color: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  color: var(--contrast-color);
  padding: 12px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.call-to-action .shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.call-to-action .shape svg {
  width: 100%;
  height: 100%;
}

.call-to-action .shape svg path {
  fill: color-mix(in srgb, var(--contrast-color) 50%, transparent);
}

.call-to-action .shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  opacity: 0.1;
  transform: rotate(45deg);
  animation: shapes-float 3s ease-in-out infinite;
}

.call-to-action .shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
  opacity: 0.15;
  transform: rotate(-15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .shape-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 15%;
  opacity: 0.08;
  transform: rotate(15deg);
}

.call-to-action .dots {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--contrast-color);
}

.call-to-action .dots svg {
  width: 100%;
  height: 100%;
}

.call-to-action .dots-1 {
  width: 200px;
  height: 200px;
  top: -30px;
  left: 10%;
  opacity: 0.1;
  transform: rotate(15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .dots-2 {
  width: 150px;
  height: 150px;
  bottom: 20px;
  right: 15%;
  opacity: 0.15;
  transform: rotate(-10deg);
}

@keyframes shapes-float {

  0%,
  100% {
    transform: scale(0.8) rotate(45deg) translateY(0);
  }

  50% {
    transform: scale(0.8) rotate(45deg) translateY(-20px);
  }
}

@media (max-width: 992px) {
  .call-to-action .container {
    padding: 3rem 1.5rem;
  }

  .call-to-action .shape-1 {
    width: 200px;
    height: 200px;
  }

  .call-to-action .shape-2 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .shape-3 {
    width: 100px;
    height: 100px;
  }

  .call-to-action .dots-1 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .dots-2 {
    width: 120px;
    height: 120px;
  }

  .call-to-action .dots-3 {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 575px) {
  .call-to-action .container {
    border-radius: 0;
  }
}

/*--------------------------------------------------------------
# Hero Section Impact Badge
--------------------------------------------------------------*/
.hero .impact-badge {
  position: absolute;
  bottom: 10px;
  right: 30px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  animation: float-badge 3s ease-in-out infinite;
  will-change: transform;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero .impact-badge .icon-box {
  font-size: 24px;
  color: var(--accent-color);
}

.hero .impact-badge p {
  font-size: 0.9rem;
  color: var(--default-color);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .hero .impact-badge {
    position: static;
    margin: 2rem auto 0;
    max-width: 320px;
  }
}
/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 1;
  transition: 0.3s;
  filter: none;
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  border-radius: 20px;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px 0 0 0;
  padding: 0;
}

.testimonials .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.testimonials .swiper {
  max-width: 100%;
  padding: 10px 0 40px 0; /* Reduced top padding to move slides up */
  margin: 0 auto;
}

.testimonials .section-title {
  padding-bottom: 5px; /* Aggressively reduced padding to close the gap */
}

.testimonials .swiper-slide {
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

@media (min-width: 992px) {
  .testimonials .swiper-slide {
    width: 450px;
  }
}

.testimonials .swiper-slide-active {
  opacity: 1 !important;
  z-index: 10;
}

@media (min-width: 992px) {
  .testimonials .swiper-slide-active:hover {
    transform: scale(1.03);
  }
}

.testimonials .swiper-slide:not(.swiper-slide-active) {
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .swiper-slide:not(.swiper-slide-active) {
    opacity: 0.6;
  }
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .col-lg-3 {
  text-align: center;
}

.stats i {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.stats .col-lg-3:hover i {
  color: var(--accent-hover);
}

.stats .stats-item {
  padding: 15px 0 0 0;
  width: 100%;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 10px 0 0 0;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
}

@media (max-width: 768px) {
  .stats .stats-item {
    padding-top: 5px;
  }
  .stats i {
    font-size: 28px;
    margin-bottom: 5px;
  }
  .stats .stats-item span {
    font-size: 24px;
  }
  .stats .stats-item p {
    font-size: 11px;
    margin-top: 5px;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-card {
  height: 100%;
  padding: 30px;
  background: var(--surface-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.services .service-card:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.services .service-card:hover .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services .service-card:hover .read-more {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.services .service-card .icon {
  width: 60px;
  height: 60px;
  margin-right: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--accent-color);
  font-size: 28px;
  transition: all 0.3s ease;
  line-height: 1;
}

.services .service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.services .service-card p {
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  line-height: 1.6;
}

.services .service-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.services .service-card .read-more i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.services .service-card .read-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-card {
  height: 100%;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.pricing .pricing-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card.popular {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-card.popular h3,
.pricing .pricing-card.popular h4 {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .price .currency,
.pricing .pricing-card.popular .price .amount,
.pricing .pricing-card.popular .price .period {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .features-list li i {
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .btn-light {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.pricing .pricing-card.popular .btn-light:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.pricing .pricing-card .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.08);
}

.pricing .pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .price {
  margin-bottom: 1.5rem;
}

.pricing .pricing-card .price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: top;
  line-height: 1;
}

.pricing .pricing-card .price .amount {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.pricing .pricing-card .price .period {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pricing .pricing-card .description {
  margin-bottom: 2rem;
  font-size: 0.975rem;
}

.pricing .pricing-card h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.pricing .pricing-card .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list li i {
  color: var(--accent-color);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.pricing .pricing-card .btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  border-radius: 50px;
}

.pricing .pricing-card .btn.btn-primary {
  background: var(--accent-color);
  border: none;
  color: var(--contrast-color);
}

.pricing .pricing-card .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.faq .faq-description {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.faq .faq-arrow {
  color: var(--accent-color);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 {
  padding: 80px 0;
}

.call-to-action-2 .container {
  position: relative;
  z-index: 3;
}

.call-to-action-2 h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action-2 p {
  color: var(--default-color);
}

.call-to-action-2 .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 30%);
  color: var(--contrast-color);
}

.call-to-action-2 .cta-btn:hover {
  border-color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .contact .info-box h3 {
    font-size: 1.75rem;
  }
}

.contact .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact .info-box a {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .contact .info-box {
    padding: 1.5rem;
  }
}

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.contact .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact .info-item .content p:last-child {
  margin-bottom: 0;
}

.contact .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .contact .contact-form {
    padding: 1.5rem;
  }
}

.contact .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .contact .contact-form h3 {
    font-size: 1.75rem;
  }
}

.contact .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0.5rem;
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
  color: var(--default-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.contact .contact-form .btn i {
  font-size: 1.25rem;
}

.contact .contact-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/* Updated Service Box Styles */
.service-box-updated {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
}

.service-box-updated .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  border: 0;
}

.service-box-updated .services-list a.active {
  border-radius: 8px !important;
}

.service-details .service-item {
  padding: 40px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-item:last-child {
  border-bottom: 0;
  padding-bottom: 20px;
}

.service-details .service-item img {
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.service-details .service-item h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.service-details .service-item p {
  font-size: 16px;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Focus Areas Details Section
--------------------------------------------------------------*/
.focus-areas-details .area-item {
  padding: 40px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.focus-areas-details .area-item:last-child {
  border-bottom: 0;
}

.focus-areas-details .area-item [class*="col-lg-"] {
  position: relative;
  z-index: 2;
}

.focus-areas-details .area-item [class*="col-lg-"]:has(.image-stack) {
  padding: 20px;
}

.focus-areas-details .area-item h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.focus-areas-details .area-item .image-stack {
  position: relative;
  max-width: 400px;
}

.focus-areas-details .area-item .image-stack .main-image {
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  max-height: 350px;
  width: 100%;
  object-fit: cover;
}

.focus-areas-details .area-item .image-stack .small-image {
  position: absolute;
  width: 45%;
  border-radius: 10px;
  border: 5px solid var(--background-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
  bottom: -10%;
  right: 10px;
}

.focus-areas-details .area-item .order-lg-2 .small-image {
  right: auto;
  left: 10px;
}

/*--------------------------------------------------------------
# Team Page Section
--------------------------------------------------------------*/
.team-member-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
  margin-bottom: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.team-member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-member-card .member-photo-container {
  position: relative;
  height: 100%;
}

.team-member-card .member-photo-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member-card .member-basic-info {
  background: var(--contrast-color);
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  margin-bottom: 20px;
}

.team-member-card .member-basic-info h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--accent-color);
}

.team-member-card .member-basic-info .position {
  font-size: 14px;
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
  display: block;
  margin-bottom: 15px;
}

.team-member-card .social a {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 18px;
  transition: color 0.3s;
}

.team-member-card .social a:hover {
  color: var(--accent-color);
}

.team-member-card .member-details {
  padding: 30px;
}

.team-member-card .member-details p {
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.btn-view-more {
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-view-more:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.btn-view-more {
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-view-more:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.btn-view-more-alt {
  color: var(--default-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-view-more-alt:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
/* .starter-section {
} */

/*--------------------------------------------------------------
# Women Section Styles
--------------------------------------------------------------*/
.women-section {
  margin-bottom: 60px;
}

.women-section img {
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.women-section h4 {
  font-size: 24px;
  margin-bottom: 15px;
}

.women-section p {
  font-size: 16px;
  line-height: 1.7;
}

/*--------------------------------------------------------------
# Opinions Page Specific Styles
--------------------------------------------------------------*/
.opinions-page-content .opinion-summary-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.opinions-page-content .opinion-summary-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.opinions-page-content .author-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.opinions-page-content .author-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.opinions-page-content .author-info .author-name {
  font-weight: 700;
  color: var(--heading-color);
}

.opinions-page-content .opinion-summary-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.opinions-page-content .opinion-summary-card .summary-text {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.opinions-page-content .full-story-view {
  animation: fadeIn 0.5s;
}

.opinions-page-content .full-story-view .full-story-content p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.opinions-page-content .full-story-view .full-story-image {
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .opinions-page-content .full-story-view .image-right {
    float: right;
    margin: 0 0 1rem 1.5rem;
    max-width: 50%;
  }
}

.opinions-page-content .opinion-summary-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.opinions-page-content .opinion-summary-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.opinions-page-content .author-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.opinions-page-content .author-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.opinions-page-content .author-info .author-name {
  font-weight: 700;
  color: var(--heading-color);
}

.opinions-page-content .opinion-summary-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.opinions-page-content .opinion-summary-card .summary-text {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.opinions-page-content .full-story-view {
  animation: fadeIn 0.5s;
}

.opinions-page-content .full-story-view .full-story-content p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.opinions-page-content .full-story-view .share-buttons-container {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 2rem;
}

.opinions-page-content .full-story-view .share-buttons-container h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.opinions-page-content .full-story-view .full-story-image {
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .opinions-page-content .full-story-view .image-right {
    float: right;
    margin: 0 0 1rem 1.5rem;
    max-width: 50%;
  }
}

.opinions-page-content .btn-opinion-more {
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  align-self: flex-start;
}

/*--------------------------------------------------------------
# Rounded Social Links
--------------------------------------------------------------*/
.social-links-rounded a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-right: 10px;
  font-size: 18px;
  transition: background-color 0.3s;
}
.social-links-rounded a:hover {
  background-color: var(--accent-hover);
  color: var(--contrast-color);
}


/*--------------------------------------------------------------
# Interventions Section
--------------------------------------------------------------*/
.interventions-section .intervention-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 40px 30px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  text-align: center;
}

/* .interventions-section .intervention-card:hover {
} */

.interventions-section .intervention-card .icon-box {
  margin: 0 auto 25px auto;
  width: 70px;
  height: 70px;
  background-color: 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: 32px;
  transition: all 0.3s ease;
}

.interventions-section .intervention-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.interventions-section .intervention-card p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  flex-grow: 1;
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .interventions-section .intervention-card {
    padding: 25px 20px;
  }

  .interventions-section .intervention-card h3 {
    font-size: 20px;
  }

  .interventions-section .intervention-card p {
    font-size: 14px;
  }
}
/*--------------------------------------------------------------
# Contact Form Success Modal
--------------------------------------------------------------*/
#successModal .modal-dialog {
  max-width: 250px !important;
}

#successModal .modal-content {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

#successModal .modal-body {
  padding: 2rem 1.5rem !important;
}

#successModal .icon-box,
#successModal .modal-title,
#successModal p {
  color: var(--contrast-color) !important;
}

/*--------------------------------------------------------------
# Footprint Map Overlay
--------------------------------------------------------------*/
#map-touch-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000; /* Above map tiles, below controls */
  pointer-events: none; /* Allows clicks/taps to go through to the map */
  border-radius: 8px;
  transition: opacity 0.3s ease;
}

/*--------------------------------------------------------------
# Events Page - Event Card
--------------------------------------------------------------*/
.event-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

.event-image-container {
  position: relative;
  overflow: hidden;
}

.event-flyer-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.event-card:hover .event-flyer-img {
  transform: scale(1.05);
}

.event-content {
  padding: 15px 20px;
}

.event-meta {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 10px;
}

/* Mobile-first: Constrain the image container height */
.event-image-container {
  max-height: 320px;
  overflow: hidden;
}

/* On larger screens, allow a slightly taller image and adjust layout */
@media (min-width: 992px) {
  .events-page-content .row {
    --bs-gutter-x: 2rem;
  }
  .event-card {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .events-page-content .event-card {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/*--------------------------------------------------------------
# Projects Section
--------------------------------------------------------------*/
.projects .project-row {
  margin-bottom: 5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 4rem;
}

.projects .project-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.projects .project-content h3 {
  font-weight: 700;
  font-size: 2rem;
}

.projects .project-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.projects .project-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.projects .project-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  color: var(--heading-color);
}

.projects .project-features li i {
  color: var(--accent-color);
  font-size: 1.25rem;
  margin-right: 12px;
}

.projects .project-row img {
  border-radius: 1rem;
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 500px;
  object-fit: cover;
  height: auto;
  aspect-ratio: 4/3;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.projects .project-row img:hover {
  transform: translateY(-5px);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .projects .project-row {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
  }

  .projects .project-content {
    text-align: center;
  }
  
  .projects .project-features li {
    justify-content: center;
  }
  
  .projects .project-content pe-lg-5,
  .projects .project-content ps-lg-5 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* --- STYLES MOVED FROM HUB.HTML --- */
/* ===== Video Gallery — PAGE STYLES ===== */
    :root {
      --accent: #d1156c;
      --accent-dark: #a0104f;
      --accent-light: #fff5f9;
      --text: #333333;
      --card-radius: 14px;
    }

    /* ---- Page Title Banner ---- */
    .her-page-title {
      padding: 140px 0 20px;
      background: url('assets/img/service-hero.jpg') center/cover no-repeat;
      position: relative;
      text-align: center;
    }

    .her-page-title::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9));
    }

    .her-page-title .container {
      position: relative;
      z-index: 2;
    }

    .her-page-title h1 {
      font-family: 'Nunito', sans-serif;
      font-size: 42px;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 10px;
    }

    .her-page-title .inspired-by {
      margin-top: 14px;
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.55);
      letter-spacing: 0.4px;
    }

    .her-page-title .inspired-by a {
      color: rgba(255, 255, 255, 0.85);
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 3px;
      transition: color 0.2s;
    }

    .her-page-title .inspired-by a:hover {
      color: var(--accent);
    }

    .her-page-title .breadcrumbs ol {
      display: flex;
      flex-wrap: wrap;
      list-style: none;
      justify-content: center;
      padding: 0;
      margin: 0;
      font-size: 15px;
    }

    .her-page-title .breadcrumbs ol li+li {
      padding-left: 10px;
    }

    .her-page-title .breadcrumbs ol li+li::before {
      content: "/";
      padding-right: 10px;
      color: rgba(255, 255, 255, 0.5);
    }

    .her-page-title .breadcrumbs a {
      color: var(--accent);
      font-weight: 500;
    }

    .her-page-title .breadcrumbs .current {
      color: rgba(255, 255, 255, 0.8);
      font-weight: 400;
    }

    /* ---- Inline Search + Filter Row ---- */
    .hub-controls {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 36px;
    }

    .hub-search-wrap {
      position: relative;
      flex: 1;
      min-width: 220px;
    }

    .hub-search-wrap i {
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--accent);
      font-size: 16px;
      pointer-events: none;
    }

    .hub-search-input {
      width: 100%;
      padding: 13px 16px 13px 44px;
      border: 1.5px solid #e8b0cc;
      border-radius: 50px;
      background: #fff;
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      color: #333;
      outline: none;
      transition: border-color 0.25s, box-shadow 0.25s;
      min-height: 48px;
    }

    .hub-search-input:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(209, 21, 108, 0.12);
    }

    .hub-search-input::placeholder {
      color: #bbb;
    }

    .filter-pills-wrap {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .filter-pill {
      flex-shrink: 0;
      padding: 9px 18px;
      border-radius: 50px;
      border: 1.5px solid #e8b0cc;
      background: #fff;
      color: var(--accent);
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.25s;
      white-space: nowrap;
      min-height: 48px;
      min-width: 48px;
      display: flex;
      align-items: center;
    }

    .filter-pill:hover,
    .filter-pill.active {
      background: var(--accent);
      color: #fff;
      border-color: var(--accent);
      box-shadow: 0 4px 16px rgba(209, 21, 108, 0.25);
    }

    .filter-pill i {
      margin-right: 6px;
      font-size: 13px;
    }


    /* ---- Theater Hero ---- */
    .theater-section {
      background: #0e0e0e;
      padding: 16px 0 24px;
    }

    .theater-player {
      position: relative;
      border-radius: var(--card-radius);
      overflow: hidden;
      background: #000;
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
      max-height: 600px;
}

    .theater-player .ratio {
      border-radius: var(--card-radius);
      overflow: hidden;
      max-height: 420px;
    }

    /* Poster / thumbnail overlay */
    .theater-poster {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center top;
      border-radius: var(--card-radius);
      cursor: pointer;
      z-index: 5;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity 0.4s ease;
    }

    .theater-poster::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.25) 100%);
      border-radius: var(--card-radius);
    }

    .theater-poster .play-btn {
      position: relative;
      z-index: 2;
      width: 72px;
      height: 72px;
      background: var(--accent);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 0 10px rgba(209, 21, 108, 0.25), 0 8px 32px rgba(0, 0, 0, 0.4);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .theater-poster:hover .play-btn {
      transform: scale(1.12);
      box-shadow: 0 0 0 14px rgba(209, 21, 108, 0.2), 0 8px 32px rgba(0, 0, 0, 0.5);
    }

    .theater-poster .play-btn i {
      color: #fff;
      font-size: 28px;
      margin-left: 4px;
    }

    .theater-poster.hidden {
      opacity: 0;
      pointer-events: none;
    }

    /* Slim meta strip below player */
    .theater-meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 20px;
      margin-top: 18px;
      padding: 0 4px;
    }

    .theater-meta .her-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(209, 21, 108, 0.15);
      border: 1px solid rgba(209, 21, 108, 0.4);
      color: #e44d8a;
      border-radius: 50px;
      padding: 5px 14px;
      font-size: 12px;
      font-weight: 700;
      font-family: 'Inter', sans-serif;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    .theater-meta h2 {
      font-family: 'Nunito', sans-serif;
      font-size: 1.2rem;
      font-weight: 800;
      color: #fff;
      margin: 0;
    }

    .theater-meta .ms-auto {
      margin-left: auto;
    }

    .theater-meta .btn-support {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: var(--accent);
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 10px 22px;
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      transition: background 0.25s, transform 0.15s;
      text-decoration: none;
      min-height: 48px;
    }

    .theater-meta .btn-support:hover {
      background: var(--accent-dark);
      transform: translateY(-2px);
    }

    /* ---- Evidence Bar ---- */
    .evidence-bar {
      background: linear-gradient(90deg, var(--accent-dark) 0%, var(--accent) 50%, #e44d8a 100%);
      padding: 16px 0;
      overflow: hidden;
    }

    .evidence-bar-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0;
    }

    .evidence-bar-stat {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 0 32px;
      color: #fff;
      font-family: 'Nunito', sans-serif;
    }

    .evidence-bar-stat+.evidence-bar-stat {
      border-left: 1px solid rgba(255, 255, 255, 0.3);
    }

    .evidence-bar-stat .big {
      font-size: 2rem;
      font-weight: 900;
      line-height: 1;
    }

    .evidence-bar-stat .sm {
      font-size: 0.82rem;
      font-weight: 600;
      line-height: 1.3;
      opacity: 0.9;
      font-family: 'Inter', sans-serif;
      max-width: 90px;
    }

    @media (max-width: 576px) {
      .evidence-bar-stat {
        padding: 8px 16px;
      }

      .evidence-bar-stat+.evidence-bar-stat {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.25);
      }

      .evidence-bar-inner {
        flex-direction: column;
      }
    }

    /* ---- Video Grid ---- */
    .video-grid-section {
      background: var(--accent-light);
      padding: 60px 0;
    }

    .section-title-hub h2 {
      font-family: 'Nunito', sans-serif;
      font-size: 1.9rem;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 6px;
    }

    .section-title-hub h2 span {
      color: var(--accent);
    }

    .section-title-hub p {
      color: #666;
      font-size: 0.95rem;
      margin-bottom: 36px;
    }

    .video-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
    }

    @media (max-width: 991px) {
      .video-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 575px) {
      .video-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ---- Video Card ---- */
    .vid-card {
      background: #fff;
      border-radius: var(--card-radius);
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
      transition: transform 0.28s cubic-bezier(.22, .68, 0, 1.2), box-shadow 0.28s;
      cursor: pointer;
      display: flex;
      flex-direction: column;
    }

    .vid-card:hover {
      transform: translateY(-6px) scale(1.012);
      box-shadow: 0 16px 40px rgba(209, 21, 108, 0.18);
    }

    .vid-thumb-wrap {
      position: relative;
      aspect-ratio: 16/9;
      background: #111;
      overflow: hidden;
      flex-shrink: 0;
    }

    .vid-thumb-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    .vid-card:hover .vid-thumb-wrap img {
      transform: scale(1.06);
    }

    .vid-thumb-wrap iframe,
    .vid-thumb-wrap video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
      display: none;
    }

    .vid-thumb-wrap iframe.active,
    .vid-thumb-wrap video.active {
      display: block;
    }

    .vid-thumb-wrap .play-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0, 0, 0, 0.22);
      transition: background 0.25s;
    }

    .vid-card:hover .play-overlay {
      background: rgba(0, 0, 0, 0.12);
    }

    .vid-thumb-wrap.playing .play-overlay {
      display: none;
    }

    .vid-thumb-wrap.playing img {
      display: none;
    }

    .play-btn-circle {
      width: 56px;
      height: 56px;
      background: rgba(209, 21, 108, 0.92);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(209, 21, 108, 0.45);
      transition: transform 0.2s, background 0.2s;
    }

    .vid-card:hover .play-btn-circle {
      transform: scale(1.12);
      background: var(--accent);
    }

    .play-btn-circle i {
      color: #fff;
      font-size: 22px;
      margin-left: 3px;
    }

    .duration-tag {
      position: absolute;
      bottom: 8px;
      right: 8px;
      background: rgba(0, 0, 0, 0.75);
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      font-family: 'Inter', sans-serif;
      padding: 3px 8px;
      border-radius: 5px;
    }

    .cat-tag {
      position: absolute;
      top: 10px;
      left: 10px;
      padding: 4px 12px;
      border-radius: 50px;
      font-size: 11px;
      font-weight: 700;
      font-family: 'Inter', sans-serif;
      letter-spacing: 0.4px;
      text-transform: uppercase;
    }

    .cat-property {
      background: #d1156c;
      color: #fff;
    }

    .cat-economic {
      background: #a0104f;
      color: #fff;
    }

    .cat-personal {
      background: #6d0d38;
      color: #fff;
    }

    .vid-body {
      padding: 16px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .vid-body h5 {
      font-family: 'Nunito', sans-serif;
      font-size: 1rem;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 8px;
      line-height: 1.35;
    }

    .key-takeaway {
      background: var(--accent-light);
      border-left: 3px solid var(--accent);
      border-radius: 0 8px 8px 0;
      padding: 10px 12px;
      margin-bottom: 14px;
      font-size: 0.82rem;
      color: #555;
      line-height: 1.55;
      font-family: 'Roboto', sans-serif;
    }

    .key-takeaway strong {
      display: block;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.6px;
      color: var(--accent);
      margin-bottom: 4px;
      font-family: 'Inter', sans-serif;
    }

    .vid-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: auto;
      padding-top: 10px;
      border-top: 1px solid #f0e0ea;
    }

    .vid-region {
      font-size: 11px;
      color: #999;
      font-family: 'Inter', sans-serif;
    }

    .vid-region i {
      margin-right: 3px;
      color: var(--accent);
    }

    .btn-play-card {
      min-height: 48px;
      min-width: 48px;
      background: var(--accent);
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 8px 18px;
      font-size: 13px;
      font-weight: 700;
      font-family: 'Inter', sans-serif;
      cursor: pointer;
      transition: background 0.22s, transform 0.15s;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .btn-play-card:hover {
      background: var(--accent-dark);
      transform: translateY(-1px);
    }

    /* ---- End-of-Video CTA Overlay ---- */
    #vid-cta-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(10, 0, 6, 0.88);
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(4px);
    }

    #vid-cta-overlay.show {
      display: flex;
    }

    .cta-overlay-box {
      background: linear-gradient(145deg, #1a0a10, #2e0d1e);
      border: 1px solid rgba(209, 21, 108, 0.35);
      border-radius: 20px;
      padding: 44px 40px;
      max-width: 480px;
      width: 90%;
      text-align: center;
      position: relative;
    }

    .cta-overlay-box .close-overlay {
      position: absolute;
      top: 16px;
      right: 18px;
      background: none;
      border: none;
      color: rgba(255, 255, 255, 0.5);
      font-size: 22px;
      cursor: pointer;
      line-height: 1;
      min-height: 48px;
      min-width: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .cta-overlay-box .close-overlay:hover {
      color: #fff;
    }

    .cta-overlay-box .her-icon {
      width: 70px;
      height: 70px;
      background: rgba(209, 21, 108, 0.15);
      border: 2px solid rgba(209, 21, 108, 0.4);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }

    .cta-overlay-box .her-icon i {
      font-size: 32px;
      color: var(--accent);
    }

    .cta-overlay-box h3 {
      font-family: 'Nunito', sans-serif;
      font-size: 1.55rem;
      font-weight: 900;
      color: #fff;
      margin-bottom: 10px;
    }

    .cta-overlay-box p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.93rem;
      line-height: 1.6;
      margin-bottom: 24px;
    }

    .cta-overlay-btns {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .btn-overlay-primary {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: var(--accent);
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 14px 24px;
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      transition: background 0.22s, transform 0.15s;
      text-decoration: none;
      min-height: 48px;
    }

    .btn-overlay-primary:hover {
      background: var(--accent-dark);
      transform: translateY(-2px);
      color: #fff;
    }

    .btn-overlay-secondary {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: transparent;
      color: rgba(255, 255, 255, 0.8);
      border: 1.5px solid rgba(255, 255, 255, 0.3);
      border-radius: 50px;
      padding: 13px 24px;
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.22s;
      text-decoration: none;
      min-height: 48px;
    }

    .btn-overlay-secondary:hover {
      border-color: var(--accent);
      color: var(--accent);
    }

    /* ---- Sticky Mini-Player (mobile) ---- */
    #mini-player {
      display: none;
      position: fixed;
      bottom: 20px;
      right: 16px;
      z-index: 9000;
      width: 280px;
      background: #000;
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
      overflow: hidden;
    }

    #mini-player.show {
      display: block;
    }

    .mini-player-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #1a0a10;
      padding: 6px 10px;
    }

    .mini-player-bar span {
      color: rgba(255, 255, 255, 0.75);
      font-size: 12px;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
    }

    .mini-close {
      background: none;
      border: none;
      color: rgba(255, 255, 255, 0.6);
      font-size: 18px;
      cursor: pointer;
      min-height: 36px;
      min-width: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mini-close:hover {
      color: #fff;
    }

    #mini-player iframe {
      width: 100%;
      aspect-ratio: 16/9;
      border: none;
      display: block;
    }

    /* ---- Hero Video Player Responsive Classes ---- */
    .hero-vid-container {
      background-image: url('assets/img/Liberty&Rights.JPG');
      background-size: cover;
      background-position: center;
      border-radius: 12px;
      overflow: hidden;
      position: relative;
    }

    .hero-vid-blur {
      position: absolute;
      inset: 0;
      background-color: rgba(209, 21, 108, 0.4);
      backdrop-filter: blur(15px);
      z-index: 1;
    }

    .hero-vid-wrapper {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 5%;
      pointer-events: none;
    }

    .hero-vid-info-panel {
      flex: 0 0 25%;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 24px;
      color: #fff;
      pointer-events: auto;
      transition: all 0.3s ease;
    }

    .hero-vid-info-panel h4 {
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: 1.1rem;
      color: var(--accent);
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .hero-vid-info-panel p {
      font-size: 0.9rem;
      line-height: 1.5;
      margin-bottom: 0;
      opacity: 0.9;
    }

    .hero-vid-info-panel .stat-item {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }

    .hero-vid-info-panel .stat-item:last-child {
      margin-bottom: 0;
    }

    .hero-vid-info-panel .stat-item i {
      font-size: 1.2rem;
      color: var(--accent);
    }

    .hero-vid-info-panel .stat-text {
      display: flex;
      flex-direction: column;
    }

    .hero-vid-info-panel .stat-number {
      font-weight: 800;
      font-size: 1.1rem;
    }

    .hero-vid-info-panel .stat-label {
      font-size: 0.75rem;
      text-transform: uppercase;
      opacity: 0.7;
    }

    .hero-vid-element {
      height: 94%;
      width: auto;
      aspect-ratio: 9/16;
      border-radius: 14px;
      box-shadow: 0 12px 45px rgba(0, 0, 0, 0.6);
      background: #000;
      pointer-events: auto;
      z-index: 3;
    }

    /* ---- Responsive tweaks ---- */
    @media (max-width: 768px) {
      .her-page-title h1 {
        font-size: 2rem;
      }

      .theater-info-panel {
        padding: 20px 16px;
      }
      
      .theater-player {
        max-height: none;
        box-shadow: none;
        background: transparent;
      }
      
      .theater-player .ratio {
        max-height: none;
      }
      
      .hero-vid-container {
        background-image: none !important;
        border-radius: 0 !important;
      }
      
      .ratio.hero-vid-container {
        --bs-aspect-ratio: auto;
      }
      
      .ratio.hero-vid-container::before {
        display: none !important;
      }
      
      .hero-vid-blur {
        display: none !important;
      }
      
      .hero-vid-wrapper {
        position: relative !important;
        height: auto !important;
        display: block !important;
        padding: 0 !important;
      }

      .hero-vid-info-panel {
        display: none !important;
      }
      
      .hero-vid-element {
        position: relative !important;
        height: auto !important;
        width: 100% !important;
        aspect-ratio: 9/16;
        max-height: 85vh;
        border-radius: 12px !important;
        box-shadow: none !important;
        display: block;
      }
    }
    /* ===== Hub Split Hero ===== */
    .hub-split-hero {
      padding: 100px 0 40px;
      overflow: hidden;
      background: #ffffff;
    }
    
    .video-col {
      padding: 0 20px 30px 20px;
      position: relative;
    }
    
    .video-shape-wrapper {
      position: relative;
      width: 100%;
      background: #f8f9fa;
      padding: 20px;
      border-radius: 0 2000px 2000px 2000px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.05);
      z-index: 1;
    }
    
    .split-hero-video {
      width: 100%;
      aspect-ratio: 1/1;
      object-fit: cover;
      object-position: center top;
      display: block;
      border-radius: 0 2000px 2000px 2000px;
    }
    
    .text-col {
      padding: 0 20px;
    }
    
    /* Desktop overrides (Mobile First setup) */
    @media (min-width: 992px) {
      .hub-split-hero {
        padding: 140px 0 70px;
      }
      .video-col {
        padding: 0 50px 40px 40px;
        margin-bottom: 0;
      }
      .video-shape-wrapper {
        padding: 24px;
      }
      .text-col {
        padding-left: 3%;
        padding-right: 20px;
      }
    }
    
    .text-content-wrapper {
      max-width: 600px;
    }
    
    .hub-sub-heading {
      font-size: 24px;
      font-weight: 700;
      color: var(--text);
      line-height: 1.35;
      margin-bottom: 24px;
      text-transform: none;
    }
    
    .hub-sub-heading .highlight {
      color: var(--accent);
    }
    
    @media (max-width: 768px) {
      .hub-sub-heading {
        font-size: 20px;
      }
    }
    
    .text-col-box p {
      font-size: 16px;
      color: #555;
      line-height: 1.7;
      margin-bottom: 20px;
    }
    
    .btn-support {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--accent);
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 14px 28px;
      font-size: 15px;
      font-weight: 700;
      text-decoration: none;
      transition: background 0.3s;
    }
    .btn-support:hover {
      background: var(--accent-dark);
      color: #fff;
    }
    
    .hub-play-overlay {
      position: absolute;
      inset: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 5;
      cursor: pointer;
      background: rgba(0, 0, 0, 0.1);
      border-radius: 0 2000px 2000px 2000px;
      transition: background 0.3s;
    }
    
    .hub-play-overlay:hover {
      background: rgba(0, 0, 0, 0.25);
    }
    
    .hub-play-btn {
      width: 75px;
      height: 75px;
      background: var(--accent);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 5px 20px rgba(209, 21, 108, 0.5);
      transition: transform 0.2s;
    }
    
    .hub-play-btn i {
      color: #fff;
      font-size: 35px;
      margin-left: 5px;
    }
    
    .hub-play-overlay:hover .hub-play-btn {
      transform: scale(1.1);
      background: var(--accent-dark);
    }

/* ======== PROJECTS PAGE (MOBILE FIRST) ======== */
.project-block {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.project-block-img {
    width: 100%;
    height: 250px;
}
.project-block-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.project-block-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.project-block-title {
    color: var(--accent-color);
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.project-block-subtitle {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 15px;
    font-weight: 600;
}
.project-block-desc {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}
.project-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.project-feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #444;
}
.project-feature-list li i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

@media (min-width: 992px) {
    .project-block {
        flex-direction: row;
        min-height: 350px;
    }
    .project-block-alt {
        flex-direction: row-reverse;
    }
    .project-block-img {
        width: 45%;
        height: auto;
    }
    .project-block-content {
        width: 55%;
        padding: 50px;
    }
}

	
/* Modern Project Layout added */
.modern-project-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
}

.modern-project-block.alt-layout {
  flex-direction: column;
}

.modern-project-content {
  flex: 1;
  width: 100%;
  order: 2;
}

.modern-project-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.modern-project-desc {
  font-size: 1rem;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.7;
}

.modern-feature-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.modern-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.modern-feature-icon {
  width: 44px;
  height: 44px;
  background-color: var(--accent-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(209, 21, 108, 0.25);
}

.modern-feature-text h5 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: #333;
}

.modern-feature-text p {
  margin: 0;
  font-size: 0.95rem;
  color: #777;
}

.btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--accent-color);
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(209, 21, 108, 0.2);
  width: fit-content;
  justify-content: center;
}

.btn-learn-more:hover {
  background-color: var(--accent-hover);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(209, 21, 108, 0.3);
}

/* Artistic Image Organization */
.modern-project-image {
  flex: 1;
  position: relative;
  border-radius: 20px;
  z-index: 1;
  width: 100%;
  order: 1;
  margin-bottom: 20px;
}

.modern-project-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  min-height: 260px;
  display: block;
}

.modern-project-image::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: -10px;
  bottom: -10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 24px;
  z-index: -1;
  transition: all 0.3s ease;
}

.image-overlay {
  position: absolute;
  width: 90px;
  height: 60px;
  background-color: #fff;
  border: 3px solid #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  overflow: hidden;
  z-index: 5;
  transition: transform 0.3s ease;
}

.image-overlay i {
  font-size: 1.8rem;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.image-overlay.overlay-1 {
  bottom: -20px;
  right: 50px;
  background-image: url(../img/gallery/IMG-20230330-WA0011.jpg);
  background-size: cover;
  background-position: center;
}

.image-overlay.overlay-2 {
  bottom: -10px;
  right: -10px;
  background-image: url(../img/gallery/Economic\ Rights\ \(2\).jpg);
  background-size: cover;
  background-position: center;
  z-index: 6;
}

.image-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
}
.image-overlay i { position: relative; z-index: 2; }

@media (min-width: 992px) {
  .modern-project-block {
    flex-direction: row;
    gap: 60px;
    margin-bottom: 120px;
  }
  
  .modern-project-block.alt-layout {
    flex-direction: row-reverse;
  }
  
  .modern-project-content {
    order: 1;
  }
  
  .modern-project-image {
    order: 2;
    margin-bottom: 0;
    transform: perspective(1000px) rotateY(-3deg);
  }
  
  .modern-project-block.alt-layout .modern-project-image {
    transform: perspective(1000px) rotateY(3deg);
  }
  
  .modern-project-image:hover {
    transform: perspective(1000px) rotateY(0deg);
  }
  
  .modern-project-image img {
    min-height: 380px;
  }
  
  .modern-project-image::before {
    top: -15px; left: -15px; right: 15px; bottom: 15px;
  }
  .modern-project-block.alt-layout .modern-project-image::before {
    left: 15px; right: -15px;
  }
  
  .image-overlay {
    width: 140px;
    height: 90px;
    border: 4px solid #fff;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  }
  
 .image-overlay:hover {
    transform: translateY(-5px) scale(1.05);
  }
  
  .image-overlay i {
    font-size: 2.2rem;
  }
  
  .image-overlay.overlay-1 {
    bottom: -30px;
    right: 80px;
  }
  
  .image-overlay.overlay-2 {
    bottom: -15px;
    right: -20px;
  }
  
  .modern-project-title {
    font-size: 2.2rem;
  }
  
  .modern-feature-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
}

/* Project Details Split Layout */
.modern-split-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 60px 0;
}

.split-content-left {
  flex: 0 0 45%;
}

.split-content-left h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.split-content-left p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.7;
}

.btn-learn-more.shadow-btn {
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.split-image-right {
  flex: 0 0 55%;
  display: flex;
  position: relative;
  align-items: center;
}

.image-wrapper {
  width: 75%; /* Ensure image doesn't overgrow */
  position: relative;
  z-index: 1;
}

.image-wrapper img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  min-height: 400px;
}

.feature-cards-wrapper {
  width: 55%;
  position: absolute;
  right: -20px; /* Overlap slightly outside */
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-card {
  display: flex;
  gap: 15px;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  align-items: flex-start;
  transition: transform 0.3s ease;
  border: 1px solid #eee;
}

.feature-card:hover {
  transform: translateX(-5px);
}

.feature-card i {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.white-card {
  background-color: #fff;
  color: #333;
}
.white-card i {
  color: var(--accent-color);
}
.white-card p {
  color: #666;
}

.accent-card {
  background-color: #5aa14d; /* Assuming green from image, wait user said 'those icons should be in pink not black' earlier. But for this green card, let's use the site's accent color (pink) instead of green to match the brand */
  background-color: var(--accent-color);
  color: #fff;
  border-color: var(--accent-color);
}
.accent-card h4, .accent-card p {
  color: #fff;
}
.accent-card i {
  color: #fff;
}

@media (max-width: 991px) {
  .modern-split-layout {
    flex-direction: column;
  }
  .split-content-left, .split-image-right {
    flex: 0 0 100%;
    width: 100%;
  }
  .split-image-right {
    flex-direction: column;
  }
  .image-wrapper {
    width: 100%;
    margin-bottom: 20px;
  }
  .feature-cards-wrapper {
    width: 100%;
    position: relative;
    right: 0;
  }
}


/* EmpowerHer Lab Photo Strip */
.empowerher-photo-strip {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.photo-strip-item {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.photo-strip-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.photo-strip-item:hover img {
  transform: scale(1.03);
}

@media (min-width: 768px) {
  .empowerher-photo-strip {
    flex-direction: row;
    align-items: stretch;
    gap: 16px;
  }

  .photo-strip-item {
    flex: 1;
  }

  .photo-strip-item img {
    height: 300px;
  }

  .photo-strip-tall img {
    height: 360px;
    margin-top: -30px;
  }
}

@media (min-width: 992px) {
  .photo-strip-item img {
    height: 340px;
  }
  .photo-strip-tall img {
    height: 400px;
    margin-top: -30px;
  }
}

/* Accordion Gallery - Mobile Swiper + Desktop Accordion */

/* === MOBILE: horizontal scroll swiper === */
.accordion-gallery {
  display: flex;
  flex-direction: row;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
  cursor: grab;
}

.accordion-gallery::-webkit-scrollbar {
  display: none;
}

.accordion-item {
  position: relative;
  flex-shrink: 0;
  width: 78vw;
  height: 240px;
  border-radius: 14px;
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.accordion-item:first-child {
  margin-left: 2px;
}

.accordion-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* === DESKTOP: expanding accordion === */
@media (min-width: 768px) {
  .accordion-gallery {
    overflow-x: visible;
    scroll-snap-type: none;
    height: 280px;
    align-items: stretch;
    gap: 10px;
    cursor: default;
  }

  .accordion-item {
    width: auto;
    flex: 1;
    height: 100% !important;
    min-width: 55px;
    border-radius: 14px;
    scroll-snap-align: none;
    transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  }

  .accordion-item.active {
    flex: 4;
    box-shadow: 0 8px 28px rgba(0,0,0,0.14);
  }

  .accordion-item img {
    transition: transform 0.5s ease;
  }

  .accordion-item:hover img {
    transform: scale(1.03);
  }
}

@media (min-width: 992px) {
  .accordion-gallery {
    height: 320px;
  }
}

/* Project Gallery Swiper - Mobile */
.gallery-swiper-wrap {
  padding-bottom: 35px;
}

.project-gallery-swiper .swiper-slide,
.pq-gallery-swiper .swiper-slide {
  border-radius: 14px;
  overflow: hidden;
}

.project-gallery-swiper .swiper-slide img,
.pq-gallery-swiper .swiper-slide img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.project-gallery-swiper .swiper-pagination-bullet-active,
.pq-gallery-swiper .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
