
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

:root { 
  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #1b1b1b; 
  --accent-color: #09637E; 
  --surface-color: #ffffff; 
  --contrast-color: #ffffff; 
}


:root {
  --nav-color: #444444;  
  --nav-hover-color: #000000; 
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff; 
  --nav-dropdown-color: #444444; 
  --nav-dropdown-hover-color: #09637E; 
}


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

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

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

/*--------------------------------------------------------------
# Section Divider
--------------------------------------------------------------*/
.section-divider {
  padding: 60px 0;
  overflow: hidden;
}

.divider-line {
  height: 2px;
  background: linear-gradient(
    to right,
    transparent 0%,
    #09637E 15%,
    #09637E 50%,
    #09637E 85%,
    transparent 100%
  );
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0.6;
}

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

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Updated Global Header - Teal Background with White Links
--------------------------------------------------------------*/
.header {
  color: #ffffff;
  background-color: #09637E;
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 0 18px rgba(9, 99, 126, 0.3);
}

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

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

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: #ffffff;
}

.header .logo h1 span {
  color: #ffffff;
  opacity: 0.9;
}

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

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

  .navmenu li {
    position: relative;
  }

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

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

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

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

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #ffffff;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

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

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #ffffff;
    opacity: 1;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: #09637E;
    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.15);
  }

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: #ffffff;
  }

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

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
  }

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

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

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

/*--------------------------------------------------------------
# Mobile Navigation - White Dropdown Background
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #ffffff;
    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: #ffffff;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .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%);
    color: var(--accent-color);
  }

  .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);
    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 - Modern Design
--------------------------------------------------------------*/
.footer {
  background-color: #09637E;
  color: #ffffff;
  font-size: 15px;
  padding: 60px 0 0 0;
  position: relative;
}

/* Footer About Section */
.footer .footer-about {
  padding-right: 20px;
}

.footer .footer-brand {
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer .footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

/* Social Links */
.footer .social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer .social-link:hover {
  background-color: #ffffff;
  color: #09637E;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Footer Sections */
.footer .footer-section {
  padding-left: 20px;
}

.footer .footer-title {
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

/* Footer Links */
.footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer .footer-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer .footer-links a i {
  font-size: 12px;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.footer .footer-links a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footer .footer-links a:hover i {
  margin-right: 12px;
}

/* Footer Contact */
.footer .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 14px;
}

.footer .footer-contact i {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-right: 12px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 20px;
}

.footer .footer-contact span {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.footer .footer-contact a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  line-height: 1.6;
}

.footer .footer-contact a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 24px 0;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .copyright-text,
.footer-bottom .footer-credits {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-bottom strong {
  color: #ffffff;
  font-weight: 600;
}

.footer-bottom .bi-heart-fill {
  color: #ff6b6b;
  font-size: 12px;
  margin: 0 4px;
}

/*--------------------------------------------------------------
# Responsive Design - Footer
--------------------------------------------------------------*/
@media (max-width: 992px) {
  .footer {
    padding: 50px 0 0 0;
  }

  .footer .footer-about,
  .footer .footer-section {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 30px;
  }

  .footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
  }
}

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

  .footer .footer-brand {
    font-size: 24px;
  }

  .footer .footer-title {
    font-size: 16px;
  }

  .footer-bottom .copyright-text,
  .footer-bottom .footer-credits {
    font-size: 13px;
  }

  .footer-bottom .col-md-6 {
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .footer .social-links {
    justify-content: center;
  }

  .footer .footer-contact li {
    font-size: 13px;
  }

  .footer .footer-links a {
    font-size: 13px;
  }
}


/*--------------------------------------------------------------
# Preloader - DISABLED
--------------------------------------------------------------*/
#preloader {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

#preloader:before {
  display: none !important;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 160px 0 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

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

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

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

@media (max-width: 1199px) {

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



/*--------------------------------------------------------------
# Partners Section
--------------------------------------------------------------*/
.partners {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.partners .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.partners .section-title p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.partners .partner-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.partners .partner-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(180deg, var(--accent-color) 0%, transparent 100%);
  opacity: 0.05;
  transition: height 0.4s ease;
}

.partners .partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.partners .partner-card:hover::before {
  height: 100%;
}

.partners .partner-logo {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 8px 24px rgba(9, 99, 126, 0.25);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.partners .partner-card:hover .partner-logo {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(9, 99, 126, 0.35);
}

.partners .partner-logo i {
  font-size: 48px;
  color: #ffffff;
}

.partners .partner-content {
  flex: 1;
}

.partners .partner-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.partners .partner-card:hover .partner-content h3 {
  color: var(--accent-color);
}

.partners .partner-type {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.partners .partner-description {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

/*--------------------------------------------------------------
# Responsive Design - Partners Section
--------------------------------------------------------------*/
@media (max-width: 992px) {
  .partners {
    padding: 60px 0;
  }
  
  .partners .partner-card {
    padding: 32px;
  }
  
  .partners .partner-logo {
    width: 90px;
    height: 90px;
  }
  
  .partners .partner-logo i {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .partners .partner-card {
    padding: 28px;
  }
  
  .partners .partner-logo {
    width: 80px;
    height: 80px;
  }
  
  .partners .partner-logo i {
    font-size: 36px;
  }
  
  .partners .partner-content h3 {
    font-size: 1.25rem;
  }
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

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

/*--------------------------------------------------------------
# Hero Section - Redesigned
--------------------------------------------------------------*/
.hero {
  padding: 0;
  position: relative;
}

.hero .carousel {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
  overflow: hidden;
}

.hero .carousel-inner {
  height: 100vh;
}

.hero .carousel-item {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Modern gradient overlay */
.hero .carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(9, 99, 126, 0.65) 50%,
    rgba(0, 0, 0, 0.75) 100%
  );
  z-index: 2;
}

/* Content container */
.hero .carousel-container {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  padding: 100px 15px 80px;
}

.hero .hero-content {
  max-width: 900px;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero label/badge */
.hero .hero-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  background: rgba(9, 99, 126, 0.9);
  padding: 8px 24px;
  border-radius: 30px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero title */
.hero .hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero .hero-title span {
  color: var(--accent-color);
  position: relative;
  display: inline-block;
}

.hero .hero-title span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
  border-radius: 2px;
}

/* Hero description */
.hero .hero-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero action buttons */
.hero .hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .btn-primary,
.hero .btn-secondary {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.hero .btn-primary {
  background: var(--accent-color);
  color: #ffffff;
  border: 2px solid var(--accent-color);
  box-shadow: 0 4px 16px rgba(9, 99, 126, 0.3);
}

.hero .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  border-color: color-mix(in srgb, var(--accent-color), #000 15%);
  box-shadow: 0 6px 24px rgba(9, 99, 126, 0.4);
  transform: translateY(-2px);
}

.hero .btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Carousel controls - Modern design */
.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 4;
}

.hero:hover .carousel-control-prev,
.hero:hover .carousel-control-next {
  opacity: 1;
}

.hero .carousel-control-prev {
  left: 40px;
}

.hero .carousel-control-next {
  right: 40px;
}

.hero .carousel-control-icon {
  width: 60px;
  height: 60px;
  background: rgba(9, 99, 126, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.hero .carousel-control-icon i {
  font-size: 24px;
  color: #ffffff;
}

.hero .carousel-control-prev:hover .carousel-control-icon,
.hero .carousel-control-next:hover .carousel-control-icon {
  background: var(--accent-color);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Carousel indicators - Modern design */
.hero .carousel-indicators {
  bottom: 40px;
  margin: 0;
  z-index: 4;
  gap: 8px;
  display: flex;
  justify-content: center;
}

.hero .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0;
  padding: 0;
}

.hero .carousel-indicators button.active {
  width: 40px;
  border-radius: 6px;
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.hero .carousel-indicators button:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.8);
}

/*--------------------------------------------------------------
# Responsive Design - Hero Section
--------------------------------------------------------------*/
@media (max-width: 992px) {
  .hero .hero-title {
    font-size: 2.5rem;
  }
  
  .hero .hero-description {
    font-size: 1rem;
  }
  
  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 50px;
    height: 50px;
  }
  
  .hero .carousel-control-icon {
    width: 50px;
    height: 50px;
  }
  
  .hero .carousel-control-icon i {
    font-size: 20px;
  }
  
  .hero .carousel-control-prev {
    left: 20px;
  }
  
  .hero .carousel-control-next {
    right: 20px;
  }
}

@media (max-width: 768px) {
  .hero .carousel-container {
    padding: 100px 20px 80px;
  }
  
  .hero .hero-title {
    font-size: 2rem;
  }
  
  .hero .hero-label {
    font-size: 0.75rem;
    padding: 6px 20px;
    letter-spacing: 1.5px;
  }
  
  .hero .hero-description {
    font-size: 0.9375rem;
    margin-bottom: 28px;
  }
  
  .hero .btn-primary,
  .hero .btn-secondary {
    font-size: 0.875rem;
    padding: 12px 28px;
  }
  
  .hero .hero-actions {
    gap: 12px;
  }
}

@media (max-width: 576px) {
  .hero .hero-title {
    font-size: 1.75rem;
  }
  
  .hero .hero-description {
    font-size: 0.875rem;
  }
  
  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    opacity: 1;
    width: 44px;
    height: 44px;
  }
  
  .hero .carousel-control-icon {
    width: 44px;
    height: 44px;
  }
  
  .hero .carousel-control-icon i {
    font-size: 18px;
  }
  
  .hero .carousel-control-prev {
    left: 10px;
  }
  
  .hero .carousel-control-next {
    right: 10px;
  }
  
  .hero .carousel-indicators {
    bottom: 20px;
  }
  
  .hero .carousel-indicators button {
    width: 10px;
    height: 10px;
  }
  
  .hero .carousel-indicators button.active {
    width: 30px;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 30px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  border-bottom: 5px solid var(--surface-color);
  height: 100%;
}

.services .service-item .icon {
  color: var(--contrast-color);
  background: var(--accent-color);
  margin: 0;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

@media (min-width: 1365px) {
  .services .service-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
  }

  .services .service-item:hover h3 {
    color: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# /Team Section - Professional Icon-Based Design
--------------------------------------------------------------*/
.teams {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.teams .section-title {
  text-align: center;
  padding-bottom: 60px;
}

.teams .section-title h2 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--heading-color);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 24px;
  display: inline-block;
}

.teams .section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
  border-radius: 2px;
}

.teams .section-title p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Team Member Card */
.teams .member {
  position: relative;
  height: 100%;
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 48px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.teams .member::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(180deg, var(--accent-color) 0%, transparent 100%);
  opacity: 0.05;
  transition: height 0.4s ease;
}

.teams .member:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.teams .member:hover::before {
  height: 100%;
}

/* Hide the pic div since we're not using images */
.teams .member .pic {
  display: none;
}

/* Avatar Icon Container */
.teams .member .member-avatar {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 12px 32px rgba(9, 99, 126, 0.25);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.teams .member:hover .member-avatar {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 16px 40px rgba(9, 99, 126, 0.35);
}

.teams .member .member-avatar i {
  font-size: 56px;
  color: #ffffff;
}

/* Alternative: Use initials instead of icon */
.teams .member .member-initials {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 12px 32px rgba(9, 99, 126, 0.25);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  font-family: var(--heading-font);
}

.teams .member:hover .member-initials {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 16px 40px rgba(9, 99, 126, 0.35);
}

/* Member Info Container */
.teams .member .member-info {
  background: transparent;
  color: var(--default-color);
  box-shadow: none;
  position: relative;
  bottom: auto;
  left: auto;
  right: auto;
  padding: 0;
  overflow: visible;
  transition: all 0.4s ease;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Name Styling */
.teams .member h4 {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 16px;
  color: var(--heading-color);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.teams .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.4s ease;
  border-radius: 2px;
}

.teams .member:hover h4 {
  color: var(--accent-color);
}

.teams .member:hover h4::after {
  width: 80px;
}

/* Position/Role Styling */
.teams .member span {
  font-style: normal;
  font-size: 1rem;
  font-weight: 500;
  display: block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  letter-spacing: 0.3px;
  margin-bottom: 24px;
  text-transform: capitalize;
}

/* Social Links */
.teams .member .social {
  position: relative;
  right: auto;
  bottom: auto;
  display: flex;
  gap: 12px;
  margin-top: 8px;
  justify-content: center;
}

.teams .member .social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 18px;
  transition: all 0.3s ease;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.teams .member .social a:hover {
  background: var(--accent-color);
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(9, 99, 126, 0.3);
  border-color: var(--accent-color);
}

.teams .member .social i {
  font-size: 18px;
  margin: 0;
  line-height: 0;
}

/* Decorative Elements */
.teams .member::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 60px 60px 0;
  border-color: transparent rgba(9, 99, 126, 0.08) transparent transparent;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.teams .member:hover::after {
  opacity: 1;
}

/* Role Badge */
.teams .member .role-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  border: 1.5px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  transition: all 0.3s ease;
}

.teams .member:hover .role-badge {
  background: var(--accent-color);
  color: #ffffff;
  border-color: var(--accent-color);
}

/* Skill Tags (Optional Enhancement) */
.teams .member .skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.teams .member .skill-tag {
  font-size: 0.75rem;
  padding: 4px 12px;
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.teams .member:hover .skill-tag {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Responsive Design -
--------------------------------------------------------------*/
@media (max-width: 992px) {
  .teams {
    padding: 60px 0;
  }
  
  .teams .section-title h2 {
    font-size: 2rem;
  }
  
  .teams .member {
    padding: 40px 32px;
  }
  
  .teams .member .member-avatar,
  .teams .member .member-initials {
    width: 110px;
    height: 110px;
  }
  
  .teams .member .member-avatar i {
    font-size: 52px;
  }
  
  .teams .member .member-initials {
    font-size: 2.25rem;
  }
  
  .teams .member h4 {
    font-size: 1.375rem;
  }
}

@media (max-width: 768px) {
  .teams .section-title {
    padding-bottom: 40px;
  }
  
  .teams .section-title h2 {
    font-size: 1.75rem;
  }
  
  .teams .section-title p {
    font-size: 1rem;
  }
  
  .teams .member {
    padding: 36px 28px;
  }
  
  .teams .member .member-avatar,
  .teams .member .member-initials {
    width: 100px;
    height: 100px;
    margin-bottom: 24px;
  }
  
  .teams .member .member-avatar i {
    font-size: 48px;
  }
  
  .teams .member .member-initials {
    font-size: 2rem;
  }
  
  .teams .member h4 {
    font-size: 1.25rem;
  }
  
  .teams .member span {
    font-size: 0.9375rem;
  }
  
  .teams .member .social a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .teams .section-title h2 {
    font-size: 1.5rem;
  }
  
  .teams .member {
    padding: 32px 24px;
  }
  
  .teams .member .member-avatar,
  .teams .member .member-initials {
    width: 90px;
    height: 90px;
  }
  
  .teams .member .member-avatar i {
    font-size: 44px;
  }
  
  .teams .member .member-initials {
    font-size: 1.75rem;
  }
  
  .teams .member h4 {
    font-size: 1.125rem;
  }
  
  .teams .member .social {
    gap: 10px;
  }
  
  .teams .member .social a {
    width: 38px;
    height: 38px;
  }
  
  .teams .member .social i {
    font-size: 16px;
  }
}
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.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 40%);
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

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

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.testimonials .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*--------------------------------------------------------------
# About Section - 
--------------------------------------------------------------*/
.about {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Centered Section Header */
.about .section-header {
  margin-bottom: 48px;
  text-align: center;
}

.about .section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-color);
  margin-bottom: 16px;
  padding: 6px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 24px;
}

.about .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading-color);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 24px;
  display: inline-block;
}

.about .section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
  border-radius: 2px;
}

.about .section-subtitle {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Features List */
.about .features-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 20px;
}

.about .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: var(--surface-color);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about .feature-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.about .feature-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.about .feature-item:hover::before {
  width: 4px;
}

.about .feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(9, 99, 126, 0.2);
  transition: all 0.3s ease;
}

.about .feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 16px rgba(9, 99, 126, 0.3);
}

.about .feature-icon i {
  font-size: 24px;
  color: #ffffff;
}

.about .feature-content {
  flex: 1;
}

.about .feature-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.about .feature-item:hover .feature-content h4 {
  color: var(--accent-color);
}

.about .feature-content p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

/* About Images Grid */
.about .images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  height: 100%;
}

.about .image-main {
  grid-row: 1 / 3;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about .image-secondary {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about .image-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.about .image-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.about .images-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

/*--------------------------------------------------------------
# Responsive Design - About Section
--------------------------------------------------------------*/
@media (max-width: 992px) {
  .about .section-title {
    font-size: 2rem;
  }
  
  .about .images-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto 40px;
  }
  
  .about .image-main {
    grid-row: auto;
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 60px 0;
  }
  
  .about .section-header {
    margin-bottom: 32px;
  }
  
  .about .section-title {
    font-size: 1.75rem;
  }
  
  .about .section-subtitle {
    font-size: 1rem;
  }
  
  .about .feature-item {
    padding: 20px;
    gap: 16px;
  }
  
  .about .feature-icon {
    width: 44px;
    height: 44px;
  }
  
  .about .feature-icon i {
    font-size: 20px;
  }
  
  .about .feature-content h4 {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .about .section-title {
    font-size: 1.5rem;
  }
  
  .about .feature-item {
    gap: 12px;
    padding: 16px;
  }
}

/*--------------------------------------------------------------
# Features Section - Card Grid Layout
--------------------------------------------------------------*/
.features {
  padding: 80px 0;
  background: #ffffff;
}

/* Centered Section Header */
.features .section-header {
  margin-bottom: 60px;
  text-align: center;
}

.features .section-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--heading-color);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 24px;
  display: inline-block;
}

.features .section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
  border-radius: 2px;
}

.features .section-subtitle {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Feature Cards Grid - 3 per row */
.features .features-grid {
  margin-top: 40px;
}

.features .feature-box {
  height: 100%;
  padding: 40px 30px;
  background: var(--surface-color);
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.features .feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(180deg, var(--accent-color) 0%, transparent 100%);
  opacity: 0.05;
  transition: height 0.4s ease;
}

.features .feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features .feature-box:hover::before {
  height: 100%;
}

/* Feature Icon */
.features .feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(9, 99, 126, 0.2);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.features .feature-box:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(9, 99, 126, 0.35);
}

.features .feature-icon i {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.4s ease;
}

.features .feature-box:hover .feature-icon i {
  transform: scale(1.1);
}

/* Feature Details */
.features .feature-details {
  flex: 1;
}

.features .feature-details h4 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.features .feature-box:hover .feature-details h4 {
  color: var(--accent-color);
}

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

/*--------------------------------------------------------------
# Responsive Design - Features Cards
--------------------------------------------------------------*/
@media (max-width: 992px) {
  .features .section-title {
    font-size: 2rem;
  }
  
  .features .feature-box {
    padding: 32px 24px;
  }
  
  .features .feature-icon {
    width: 70px;
    height: 70px;
  }
  
  .features .feature-icon i {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .features {
    padding: 60px 0;
  }
  
  .features .section-header {
    margin-bottom: 40px;
  }
  
  .features .section-title {
    font-size: 1.75rem;
  }
  
  .features .section-subtitle {
    font-size: 1rem;
  }
  
  .features .feature-box {
    padding: 28px 20px;
  }
  
  .features .feature-icon {
    width: 64px;
    height: 64px;
  }
  
  .features .feature-icon i {
    font-size: 28px;
  }
  
  .features .feature-details h4 {
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  .features .section-title {
    font-size: 1.5rem;
  }
  
  .features .feature-box {
    padding: 24px 20px;
  }
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

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

.contact .php-email-form {
  height: 100%;
}

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

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

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

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

/*--------------------------------------------------------------
# Property Section - Modern Professional Cards
--------------------------------------------------------------*/
.property {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.property .card {
  background-color: var(--surface-color);
  border: none;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 450px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  cursor: default;
  pointer-events: auto;
}

.property .card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

/* Image Container with Zoom Out Effect */
.property .card .image-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.property .card img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transform: scale(1.15);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Modern Gradient Overlay */
.property .card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(9, 99, 126, 0.85) 100%
  );
  z-index: 2;
  transition: opacity 0.4s ease;
}

.property .card:hover:before {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.2) 30%,
    rgba(9, 99, 126, 0.95) 100%
  );
}

/* Card Body */
.property .card .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 32px 28px;
  transition: padding 0.4s ease;
}

.property .card:hover .card-body {
  padding-bottom: 28px;
}

/* Category Badge */
.property .card .card-body .sale-rent {
  display: inline-flex;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 6px 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.property .card:hover .card-body .sale-rent {
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

/* Project Title */
.property .card .card-body h3 {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: 0;
  padding-left: 14px;
  border-left: 4px solid var(--accent-color);
  transition: all 0.3s ease;
  color: #ffffff;
  cursor: default;
}

/* Prevent any clickable behavior */
.property .card a,
.property .card .stretched-link {
  pointer-events: none;
  cursor: default;
}

.property .card:hover .card-body h3 {
  border-left-width: 6px;
  padding-left: 16px;
}

/* Info Panel - Modern Slide Up */
.property .card .card-body .card-content {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
  color: #ffffff;
  min-height: 90px;
  visibility: hidden;
  opacity: 0;
  margin-top: 16px;
  margin-bottom: -90px;
  margin-left: -28px;
  margin-right: -28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px 28px;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.property .card:hover .card-content {
  margin-bottom: -28px;
  visibility: visible;
  opacity: 1;
}

.property .card .card-body .card-content .propery-info {
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
  margin-bottom: 6px;
}

.property .card .card-body .card-content .row {
  font-size: 0.9375rem;
}

.property .card .card-body .card-content .row:last-child {
  font-weight: 500;
}

/* Decorative Elements */
.property .card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 60px 60px 0;
  border-color: transparent rgba(255, 255, 255, 0.1) transparent transparent;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.property .card:hover::after {
  opacity: 1;
}

/*--------------------------------------------------------------
# Responsive Design - Property Cards
--------------------------------------------------------------*/
@media (max-width: 992px) {
  .property .card {
    min-height: 420px;
  }
  
  .property .card .card-body {
    padding: 28px 24px;
  }
  
  .property .card .card-body h3 {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  .property {
    padding: 60px 0;
  }
  
  .property .card {
    min-height: 400px;
  }
  
  .property .card .card-body .sale-rent {
    font-size: 0.75rem;
    padding: 5px 16px;
  }
  
  .property .card .card-body h3 {
    font-size: 1.0625rem;
  }
  
  .property .card .card-body .card-content {
    min-height: 85px;
    padding: 18px 24px;
  }
}

@media (max-width: 576px) {
  .property .card {
    min-height: 380px;
  }
  
  .property .card .card-body {
    padding: 24px 20px;
  }
  
  .property .card .card-body .card-content {
    padding: 16px 20px;
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: -85px;
  }
  
  .property .card:hover .card-content {
    margin-bottom: -20px;
  }
  
  .property .card .card-body .card-content .row {
    font-size: 0.875rem;
  }
}