/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --surface-primary: #07090c;
  --surface-secondary: #11151b;
  --surface-soft: #1b2028;
  --surface-lift: #232832;
  --text-body: #e3e0da;
  --text-muted: rgba(227, 224, 218, 0.65);
  --accent: #c6a267;
  --accent-soft: rgba(198, 162, 103, 0.28);
  --accent-strong: #e8cfa1;
  --border-soft: rgba(255, 255, 255, 0.08);
  --header-bg: rgba(7, 9, 12, 0.85);
  --color-scheme: dark;
}

[data-theme="light"] {
  --surface-primary: #ffffff;
  --surface-secondary: #ffffff;
  --surface-soft: #fafafa;
  --surface-lift: #ffffff;
  --text-body: #1f232b;
  --text-muted: rgba(31, 35, 43, 0.7);
  --accent: #b9822f;
  --accent-soft: rgba(185, 130, 47, 0.28);
  --accent-strong: #9a7436;
  --border-soft: rgba(16, 21, 29, 0.1);
  --header-bg: rgba(255, 255, 255, 0.92);
  --color-scheme: light;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-body);
  background-color: var(--surface-primary);
  transition: background-color 0.4s ease, color 0.4s ease;
  color-scheme: var(--color-scheme);
  padding-top: -50px;
}

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

a:hover {
  color: var(--accent-strong);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  color: var(--text-body);
}

p {
  color: var(--text-muted);
  line-height: 1.7;
}

.eyebrow,
.hero-eyebrow {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: #fff;
  display: inline-block;
  margin-bottom: 0.5rem;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--accent);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--accent-strong);
  color: #fff;
}

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

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: var(--surface-secondary);
  font-size: 15px;
  height: 40px;
  padding: 0;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-soft);
}

#topbar .contact-info a,
#header .contact-info a {
  line-height: 0;
  color: var(--text-body);
  font-size: 14px;
  margin-left: 5px;
}

#topbar .contact-info i,
#header .contact-info i {
  color: var(--accent);
  line-height: 0;
  margin-right: 5px;
}

#topbar .contact-info .phone-icon,
#header .contact-info .phone-icon {
  margin-left: 15px;
}

#topbar .social-links a {
  color: var(--text-muted);
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: var(--header-bg);
  transition: all 0.5s;
  z-index: 997;
  height: 80px;
  border-bottom: 1px solid var(--border-soft);
  backdrop-filter: blur(18px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

#header.header-scrolled {
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.35);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#header .logo a {
  color: var(--accent);
}

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

.scrolled-offset {
  margin-top: 80px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  color: var(--text-body);
  white-space: nowrap;
  transition: 0.3s;
  letter-spacing: 0.04em;
}

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

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

.navbar .getstarted,
.navbar .getstarted:focus {
  color: #111;
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: 0.3s;
  font-size: 14px;
  background: var(--accent);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

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

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

.theme-toggle {
  margin-left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.theme-toggle i {
  font-size: 1rem;
}

.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent-strong);
}

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

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

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

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--accent);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

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

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

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

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--accent);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  min-height: 100vh;
  background-color: var(--surface-primary);
  overflow: hidden;
  position: relative;
}

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

#hero .carousel-item {
  background-size: contain;
  background-position: center;
  position: relative;
}

#hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(7, 9, 12, 0.95) 0%, rgba(7, 9, 12, 0.75) 45%, rgba(7, 9, 12, 0.25) 100%);
  display: block;
}

#hero .container {
  position: relative;
  z-index: 2;
}

#hero .hero-copy {
  max-width: 650px;
  padding: 4rem 0;
}

#hero h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #fff;
}

#hero h1 span {
  color: var(--accent-strong);
}

#hero .hero-lead {
  color: #fff;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

#hero .hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn.btn-solid,
.btn.btn-outline {
  border-radius: 999px;
  padding: 0.9rem 2.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.btn.btn-solid {
  background: var(--accent);
  color: #111;
  border: 1px solid var(--accent);
}

.btn.btn-solid:hover {
  background: transparent;
  color: var(--accent);
}

.btn.btn-outline {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn.btn-outline:hover {
  background: var(--accent);
  color: #111;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: var(--accent-soft);
  font-size: 30px;
  line-height: 0;
  width: 54px;
  height: 54px;
  border-radius: 50px;
  transition: 0.3s;
  color: var(--accent-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-soft);
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  border-color: var(--accent);
  color: #111;
  background: var(--accent);
}

#hero .carousel-indicators {
  margin-bottom: 3rem;
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: var(--border-soft);
  overflow: hidden;
  border: 0;
  width: 48px;
  height: 4px;
  border-radius: 999px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--accent);
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center center;
  background-size: contain;
}

@media (max-width: 768px) {
  #hero .hero-copy {
    text-align: center;
    margin: 0 auto;
  }

  #hero .hero-ctas {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 90px 0;
}

.section-bg {
  position: relative;
  background: radial-gradient(circle at top, rgba(198, 162, 103, 0.12), transparent 55%), var(--surface-secondary);
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
  max-width: 760px;
  margin: 0 auto 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 600;
  text-transform: none;
  margin-bottom: 1.25rem;
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 72px;
  height: 2px;
  background: var(--accent);
  display: block;
  margin: 1rem auto 0;
}

.section-title p {
  margin-bottom: 0;
  color: var(--text-muted);
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services {
  padding: 30px 0;
}

.lux-card {
  background: var(--surface-soft);
  border-radius: 24px;
  padding: 2rem;
  height: 100%;
  border: 1px solid var(--border-soft);
  box-shadow: 0px 30px 80px rgba(5, 6, 7, 0.45);
  position: relative;
  overflow: hidden;
}

.lux-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

.lux-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.lux-card .card-copy {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  min-height: 72px;
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(198, 162, 103, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.card-icon i {
  color: var(--accent);
  font-size: 32px;
}

.sms-bubble {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
  border: 1px solid var(--border-soft);
  color: var(--text-body);
}

.sms-bubble em {
  font-style: normal;
  color: var(--accent-strong);
}

.sms-bubble--sender {
  background: rgba(198, 162, 103, 0.18);
  color: #111;
  font-weight: 600;
  letter-spacing: 0.28em;
}

.mpesa-date {
  color: var(--accent-strong);
  font-weight: 600;
}

/*--------------------------------------------------------------
# Register
--------------------------------------------------------------*/
.register-form {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 248, 248, 0.9));
  border-radius: 32px;
  padding: 2.5rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0px 30px 60px rgba(5, 6, 7, 0.35);
}

.register-form label {
  font-weight: 600;
  color: var(--text-body);
}

.register-form small {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
}

.register-form .form-control,
.register-form .form-select {
  background: var(--surface-secondary);
  border: 1px solid var(--border-soft);
  color: var(--text-body);
}

.register-form .form-control:focus,
.register-form .form-select:focus {
  border-color: var(--accent);
  box-shadow: none;
}

.terms-check {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.terms-check label {
  font-weight: 500;
  color: var(--text-body);
}

.register-form .form-check-input {
  border-color: var(--border-soft);
  background-color: transparent;
}

.register-form .form-check-input:checked {
  background-color: var(--accent);
  border-color: var(--accent);
}

.form-message {
  min-height: 24px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.form-message.success {
  color: #5ed896;
}

.form-message.error {
  color: #ff8a8a;
}

.submit-btn {
  min-width: 220px;
}

/*--------------------------------------------------------------
 # About Us
 --------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 28px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent);
}

.about .content p:last-child {
  margin-bottom: 0;
}

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

.why-us .row {
  overflow: hidden;
}

.why-us .content-item {
  padding: 40px;
  border-left: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin: -1px;
}

.why-us .content-item span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: var(--accent);
}

.why-us .content-item h4 {
  font-size: 26px;
  font-weight: 300;
  padding: 0;
  margin: 20px 0;
}

.why-us .content-item p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0;
  padding: 0;
}

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

/*--------------------------------------------------------------
# Our Clients
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  opacity: 1;
}

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

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid var(--accent);
}

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

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .icon-box h4 a {
  color: #222222;
  transition: ease-in-out 0.3s;
}

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

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
  color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
  color: #fff;
}

.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}

.services .iconbox-orange i {
  color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.services .iconbox-pink i {
  color: #e80368;
}

.services .iconbox-pink:hover .icon i {
  color: #fff;
}

.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.services .iconbox-yellow i {
  color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
  color: #fff;
}

.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}

.services .iconbox-red i {
  color: #ff5828;
}

.services .iconbox-red:hover .icon i {
  color: #fff;
}

.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(135deg, rgba(17, 19, 22, 0.92), rgba(10, 12, 15, 0.92)),
    url("../img/slide/slide-6.jpg") center/cover;
  padding: 80px 0;
  border-radius: 24px;
  border: 1px solid var(--border-soft);
}

.cta h3 {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
}

.cta p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.cta .cta-btn {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 999px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--accent);
  color: var(--accent);
  text-transform: uppercase;
}

.cta .cta-btn:hover {
  background: var(--accent);
  color: #111;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: var(--accent);
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(34, 34, 34, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(34, 34, 34, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: var(--accent);
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

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

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #5cb874;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #5cb874;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(34, 34, 34, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0px 0px 12px 0px rgba(34, 34, 34, 0.07);
  padding: 30px 20px;
  background: #fff;
}

.team .member img {
  max-width: 60%;
  border-radius: 50%;
  margin: 0 0 30px 0;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: var(--text-muted);
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: #919191;
  transition: 0.3s;
}

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

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  padding: 30px;
  background: var(--surface-lift);
  width: 100%;
  box-shadow: 0 0 30px rgba(5, 6, 7, 0.25);
}

.contact .info i {
  font-size: 20px;
  color: var(--accent);
  float: left;
  width: 44px;
  height: 44px;
  background: #eaf6ed;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-body);
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--text-muted);
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--surface-secondary);
  color: var(--text-body);
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
  border: 1px solid var(--border-soft);
}

.contact .info .social-links a:hover {
  background: var(--accent);
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: var(--accent);
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  padding: 30px;
  background: var(--surface-lift);
  box-shadow: 0 0 24px 0 rgba(5, 6, 7, 0.2);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

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

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

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

.contact .php-email-form button[type=submit]:hover {
  background: var(--accent-strong);
  color: #111;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #fbfbfb;
  min-height: 40px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 66px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #3c3c3c;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #1f232b;
  color: #e3e0da;
  font-size: 14px;
  text-align: center;
  padding: 60px 0 30px;
  border-top: 1px solid #333;
}

#footer h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  font-family: "Playfair Display", serif;
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 0.95rem;
  font-style: italic;
  margin: 0 0 40px 0;
  color: #e3e0da;
}

#footer .social-links {
  margin: 0 0 30px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(198, 162, 103, 0.15);
  color: var(--accent);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid var(--border-soft);
}

#footer .social-links a:hover {
  background: var(--accent);
  color: #111;
  text-decoration: none;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

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

#footer .footer-links h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

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

#footer .footer-links ul li {
  margin-bottom: 0.5rem;
}

#footer .footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

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

#footer .credits {
  font-size: 13px;
}

/*--------------------------------------------------------------
 # Fixed Contact Widget
 --------------------------------------------------------------*/
.fixed-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.contact-link:hover {
  background: var(--accent-strong);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.contact-link i {
  font-size: 18px;
}

.contact-link span {
  display: none;
}

@media (min-width: 768px) {
  .contact-link span {
    display: inline;
  }
}

/*--------------------------------------------------------------
 # Falling Elements Animation
 --------------------------------------------------------------*/
.falling-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.falling-item {
  position: absolute;
  font-size: 24px;
  color: var(--accent);
  opacity: 0.6;
  animation: fall linear infinite;
}

.falling-item.money {
  font-weight: bold;
  color: var(--accent);
}

.falling-item.leaves {
  color: #28a745;
}

.falling-item:nth-child(1) { left: 10%; animation-duration: 10s; animation-delay: 0s; }
.falling-item:nth-child(2) { left: 20%; animation-duration: 12s; animation-delay: 2s; }
.falling-item:nth-child(3) { left: 30%; animation-duration: 8s; animation-delay: 4s; }
.falling-item:nth-child(4) { left: 40%; animation-duration: 14s; animation-delay: 1s; }
.falling-item:nth-child(5) { left: 50%; animation-duration: 9s; animation-delay: 3s; }
.falling-item:nth-child(6) { left: 60%; animation-duration: 11s; animation-delay: 5s; }
.falling-item:nth-child(7) { left: 70%; animation-duration: 13s; animation-delay: 0.5s; }
.falling-item:nth-child(8) { left: 80%; animation-duration: 7s; animation-delay: 2.5s; }
.falling-item:nth-child(9) { left: 90%; animation-duration: 15s; animation-delay: 1.5s; }
.falling-item:nth-child(10) { left: 15%; animation-duration: 10.5s; animation-delay: 3.5s; }

@keyframes fall {
  0% {
    top: -100px;
    transform: rotate(0deg);
  }
  100% {
    top: 100vh;
    transform: rotate(360deg);
  }
}