/*=========================================
 * PROSPECT STREAM - Main Theme Stylesheet
 * Replicating Softconic WP (Home-04)
 * Theme: Black / Dark Theme with Green Accent
 *=========================================*/

:root {
  --font-saira: 'Saira', sans-serif;
  --white-color: #ffffff;
  --black-color: #000000;
  --black-bg-1: #121212;   /* Deep Dark Body Bg */
  --black-bg-2: #1D1D1D;   /* Dark Card / Section Bg */
  --theme-color-rgb: 6, 216, 137;
  --theme-color: #06D889;  /* Accent Green color */
  --border-color: #232323;
  --paragraph-color: #B5B5B5;
  --black-soft-color: #7e7e7e;
  --transition-speed: 0.4s;
}

/* 01. Reset & Common Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 16px;
  font-family: var(--font-saira);
  color: var(--white-color);
  background-color: var(--black-bg-1);
  overflow-x: hidden;
}

/* 01a. Preloader Style */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background-color: var(--black-bg-1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.vertical-centered-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.vertical-centered-box .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.loader-circle {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(6, 216, 137, 0.1);
  border-top: 3px solid var(--theme-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-speed) ease;
}

a:hover {
  color: var(--theme-color);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 15px;
  line-height: 1.2;
}

p {
  color: var(--paragraph-color);
  line-height: 1.8;
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* Utilities */
.sec-pad {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .sec-pad {
    padding: 80px 0;
  }
}

.sec-mar {
  margin: 120px 0;
}
@media (max-width: 991px) {
  .sec-mar {
    margin: 80px 0;
  }
}

.pb-50 { padding-bottom: 50px; }
.pt-20 { padding-top: 20px; }
.pt-30 { padding-top: 30px; }
.mb-20 { margin-bottom: 20px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-55 { margin-bottom: 55px; }
.mb-60 { margin-bottom: 60px; }
.mb-80 { margin-bottom: 80px; }
.mb-120 { margin-bottom: 120px; }
.mt-50 { margin-top: 50px; }
.mt-80 { margin-top: 80px; }

@media (max-width: 991px) {
  .mb-120 { margin-bottom: 80px; }
}

/* Buttons */
.primary-btn3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background-color: var(--theme-color);
  color: var(--black-color) !important;
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid var(--theme-color);
  transition: all var(--transition-speed) ease;
  cursor: pointer;
}
.primary-btn3:hover {
  background-color: transparent;
  color: var(--white-color) !important;
}

.primary-btn5 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white-color) !important;
  font-weight: 600;
  position: relative;
  transition: all var(--transition-speed) ease;
}
.primary-btn5 svg {
  fill: transparent;
  stroke: var(--theme-color);
  stroke-width: 1.5;
  transition: all var(--transition-speed) ease;
}
.primary-btn5:hover svg {
  fill: var(--theme-color);
  stroke: var(--theme-color);
}
.primary-btn5 .content {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.primary-btn9 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--theme-color);
}
.primary-btn9 svg {
  stroke: var(--theme-color);
  stroke-width: 2;
  transition: transform var(--transition-speed) ease;
}
.primary-btn9:hover svg {
  transform: translateX(5px);
}

/* Magic Cursor & Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background-color: var(--black-bg-1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.vertical-centered-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.loader-circle {
  width: 120px;
  height: 120px;
  border: 1px solid rgba(var(--theme-color-rgb), 0.1);
  border-radius: 50%;
  position: relative;
  animation: spin 2s linear infinite;
}
.loader-circle::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  width: 10px;
  height: 10px;
  background-color: var(--theme-color);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--theme-color);
}
@keyframes spin {
  100% { transform: rotate(360deg); }
}
.vertical-centered-box .content img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
}

/* Magic Cursor */
.magic-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 1px solid var(--theme-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background-color 0.3s;
}
.magic-cursor-dot {
  position: fixed;
  width: 4px;
  height: 4px;
  background-color: var(--theme-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
}

/* 02. Header & Navigation */
.header-area2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 50px;
  border-bottom: 1px solid var(--border-color);
}
@media (max-width: 991px) {
  .header-area2 {
    padding: 15px 20px;
  }
}
.header-area2.sticky {
  position: fixed;
  background-color: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  animation: slideDown 0.5s ease forwards;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}
@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.header-logo img {
  height: 45px;
  width: auto !important;
}

.main-menu {
  display: flex;
  align-items: center;
}
.menu-list {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}
@media (max-width: 991px) {
  .menu-list {
    display: none; /* Mobile navigation uses drawer */
  }
}
.menu-list > li {
  position: relative;
}
.menu-list > li > a {
  font-size: 16px;
  font-weight: 500;
  color: var(--white-color);
  padding: 10px 0;
  display: inline-block;
}
.menu-list > li:hover > a {
  color: var(--theme-color);
}

/* Dropdown Sub-menu */
.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  background-color: var(--black-bg-2);
  border: 1px solid var(--border-color);
  list-style: none;
  padding: 15px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 100;
}
.menu-list > li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sub-menu li {
  position: relative;
  padding: 0 20px;
}
.sub-menu li a {
  font-size: 15px;
  color: var(--paragraph-color);
  padding: 8px 0;
  display: block;
}
.sub-menu li:hover > a {
  color: var(--theme-color);
}

/* Nested Dropdowns */
.sub-menu .sub-menu {
  left: 100%;
  top: 0;
}

.menu-item-has-children .dropdown-icon {
  margin-left: 5px;
  font-size: 12px;
}

/* Nav Right elements */
.nav-right {
  display: flex;
  align-items: center;
  gap: 25px;
}
.header-contact {
  display: flex;
  flex-direction: column;
  font-size: 13px;
}
.header-contact span {
  color: var(--black-soft-color);
  display: flex;
  align-items: center;
  gap: 5px;
}
.header-contact h6 a {
  font-size: 16px;
  font-weight: 600;
  color: var(--white-color);
}

.sidebar-button, .sidebar-btn2 {
  cursor: pointer;
}
.sidebar-button span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--white-color);
  position: relative;
  transition: all 0.3s;
}
.sidebar-button span::before, .sidebar-button span::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 2px;
  background-color: var(--white-color);
  transition: all 0.3s;
}
.sidebar-button span::before { top: -8px; }
.sidebar-button span::after { top: 8px; }

/* Mobile Menu Panel */
.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background-color: var(--black-bg-2);
  border-left: 1px solid var(--border-color);
  z-index: 1000;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: right 0.4s ease;
}
.mobile-menu-drawer.active {
  right: 0;
}
.drawer-close {
  align-self: flex-end;
  cursor: pointer;
  font-size: 24px;
  margin-bottom: 30px;
}
.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}
.mobile-menu-list > li {
  border-bottom: 1px solid var(--border-color);
}
.mobile-menu-list a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu-sub {
  list-style: none;
  padding-left: 20px;
  display: none;
}
.mobile-menu-sub a {
  font-size: 14px;
  color: var(--paragraph-color);
}

/* Sidebar Info Card */
.header-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  background-color: var(--black-bg-2);
  border-left: 1px solid var(--border-color);
  z-index: 1001;
  padding: 40px;
  transition: right 0.4s ease;
  overflow-y: auto;
}
@media (max-width: 575px) {
  .header-sidebar {
    width: 100%;
    right: -100%;
  }
}
.header-sidebar.active {
  right: 0;
}
.siderbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.sidebar-log img {
  height: 40px;
}
.sidebar-content {
  margin-bottom: 40px;
}
.address-card .single-info {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}
.address-card .single-info .icon {
  color: var(--theme-color);
  font-size: 18px;
  margin-top: 3px;
}
.address-card .single-info .info a {
  display: block;
  color: var(--paragraph-color);
}
.follow-area .follow-list {
  display: flex;
  list-style: none;
  gap: 15px;
  margin-top: 15px;
  padding: 0;
}
.follow-list a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.follow-list a:hover {
  background-color: var(--theme-color);
  color: var(--black-color);
}

/* 03. Banner Area (Home 04) */
.banner-area6 {
  width: 100%;
  position: relative;
  background-color: var(--black-bg-1);
  padding: 180px 50px 100px 50px;
  border-bottom: 1px solid var(--border-color);
}
@media (max-width: 991px) {
  .banner-area6 {
    padding: 120px 20px 80px 20px;
  }
}
.banner-wrap {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.social-area {
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
}
@media (max-width: 1400px) {
  .social-area {
    display: none;
  }
}
.social-area ul {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
}
.social-area ul li a {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--paragraph-color);
}
.social-area ul li a:hover {
  color: var(--theme-color);
}

.banner-content h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
}
.banner-content h1 span {
  color: var(--theme-color);
}
@media (max-width: 1200px) {
  .banner-content h1 { font-size: 48px; }
}
@media (max-width: 575px) {
  .banner-content h1 { font-size: 36px; }
}
.banner-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.banner-btn-group {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.banner-img-wrap {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .banner-img-wrap {
    justify-content: center;
    margin-top: 50px;
  }
}
.banner5-slider {
  width: 100%;
  max-width: 550px;
}
.banner-img {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

/* 04. Counter & Reviews */
.review-and-counter-area {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--black-bg-2);
}
@media (max-width: 991px) {
  .review-and-counter-area {
    flex-direction: column;
  }
}

.customar-review {
  padding: 40px 50px;
  border-right: 1px solid var(--border-color);
  width: 35%;
}
@media (max-width: 991px) {
  .customar-review {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }
}
.customar-review h6 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black-soft-color);
  margin-bottom: 15px;
}
.customar-review ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.single-review a {
  display: flex;
  align-items: center;
  gap: 15px;
}
.single-review .icon img {
  height: 25px;
}
.single-review .star {
  display: flex;
  list-style: none;
  flex-direction: row;
  gap: 3px;
  color: #ffc107;
  font-size: 14px;
}

.counter-area {
  padding: 40px 50px;
  width: 65%;
}
@media (max-width: 991px) {
  .counter-area {
    width: 100%;
  }
}
.counter-area ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  gap: 20px;
}
.single-counter .number {
  display: flex;
  align-items: baseline;
}
.single-counter .number h3 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 0;
}
.single-counter .number span {
  color: var(--theme-color);
  font-size: 20px;
  font-weight: 600;
  margin-left: 5px;
}
.single-counter p {
  font-size: 14px;
  color: var(--black-soft-color);
}

/* 05. About Sections */
.home6-about-section {
  position: relative;
  background-color: var(--black-bg-1);
}
.section-title-6 {
  margin-bottom: 40px;
}
.section-title-6 span {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--theme-color);
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 10px;
}
.section-title-6 h2 {
  font-size: 44px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .section-title-6 h2 { font-size: 32px; }
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}
.about-feature-item {
  display: flex;
  gap: 20px;
}
.about-feature-item .icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background-color: rgba(var(--theme-color-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--theme-color);
  flex-shrink: 0;
}
.about-feature-item h5 {
  font-size: 18px;
  margin-bottom: 5px;
}

.progress-bar-wrap {
  margin-top: 40px;
}
.single-progress-bar {
  margin-bottom: 25px;
}
.single-progress-bar h6 {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  margin-bottom: 10px;
}
.progress-bar-bg {
  width: 100%;
  height: 4px;
  background-color: var(--border-color);
  border-radius: 2px;
  position: relative;
}
.progress-bar-fill {
  height: 100%;
  background-color: var(--theme-color);
  border-radius: 2px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.1, 0.8, 0.2, 1);
}

.about-img-6 {
  position: relative;
  display: flex;
  justify-content: center;
}
.about-img-6 img {
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

/* 06. Case Studies Layout */
.case-study-section {
  background-color: var(--black-bg-2);
}
.case-left, .case-right {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.home6-case-study {
  width: 100%;
  transition: transform 0.3s;
}
.home6-case-study:hover {
  transform: translateY(-5px);
}
.case-img {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  margin-bottom: 25px;
}
.case-content a {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--theme-color);
  letter-spacing: 0.05em;
}
.case-content h3 {
  font-size: 28px;
  margin-top: 10px;
  margin-bottom: 15px;
}
.case-content p {
  margin-bottom: 20px;
}

.border-bottom1, .border-bottom2 {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 50px;
}

.btn-align {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

/* 07. Partner Marquee */
.home6-partner-area {
  background-color: var(--black-bg-1);
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}
.marquee-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.marquee_text3 {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: marquee 25s linear infinite;
}
.partner-logo img {
  height: 45px;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.partner-logo img:hover {
  opacity: 1;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 08. Client Testimonials */
.home6-testimonial-area {
  background-color: var(--black-bg-2);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}
.sm-img-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  list-style: none;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .sm-img-wrap { display: none; }
}
.sm-img-wrap li {
  position: absolute;
}
.sm-img-wrap li:nth-child(1) { top: 15%; left: 10%; }
.sm-img-wrap li:nth-child(2) { top: 25%; right: 12%; }
.sm-img-wrap li:nth-child(3) { bottom: 20%; left: 8%; }
.sm-img-wrap li:nth-child(4) { bottom: 15%; right: 15%; }
.sm-img-wrap li:nth-child(5) { top: 50%; left: 15%; }
.sm-img-wrap li:nth-child(6) { bottom: 50%; right: 8%; }
.sm-img-wrap li img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--border-color);
}

.testimonial-wrapper {
  text-align: center;
}
.client-review {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
.client-review img {
  height: 30px;
}
.client-review .star {
  display: flex;
  list-style: none;
  gap: 5px;
  color: #ffc107;
}

.testimonial-content p {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--white-color);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .testimonial-content p { font-size: 18px; }
}

.author-area h4 {
  font-size: 18px;
  margin-bottom: 5px;
}
.author-area span {
  font-size: 14px;
  color: var(--theme-color);
}

/* 09. "What We Do" Process Section */
.home6-what-we-do-section {
  background-color: var(--black-bg-1);
}
.single-process {
  background-color: var(--black-bg-2);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 8px;
  height: 100%;
  transition: all 0.3s;
}
.single-process:hover {
  border-color: var(--theme-color);
}
.single-process .icon {
  margin-bottom: 25px;
}
.single-process .icon svg {
  fill: var(--theme-color);
}
.single-process h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.single-process p {
  font-size: 15px;
}

.what-we-do-img {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}
.what-we-do-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.what-we-do-content p {
  margin-bottom: 30px;
}
.about-featue {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
@media (max-width: 575px) {
  .about-featue {
    grid-template-columns: 1fr;
  }
}
.about-featue li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
}
.about-featue li svg {
  fill: var(--theme-color);
}

/* 10. Quick Contact Section */
.home6-contact-section {
  background-color: var(--black-bg-2);
}
.contact-content p {
  margin-bottom: 25px;
}
.contact-number {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
}
.contact-number a {
  color: var(--theme-color);
  margin-left: 5px;
}

/* Accordion custom styling */
.accordion {
  border: none;
}
.accordion-item {
  background-color: var(--black-bg-1) !important;
  border: 1px solid var(--border-color) !important;
  margin-bottom: 15px;
  border-radius: 8px !important;
  overflow: hidden;
}
.accordion-button {
  background-color: var(--black-bg-1) !important;
  color: var(--white-color) !important;
  font-weight: 600 !important;
  box-shadow: none !important;
  padding: 20px 25px !important;
}
.accordion-button:not(.collapsed) {
  color: var(--theme-color) !important;
  border-bottom: 1px solid var(--border-color) !important;
}
.accordion-button::after {
  filter: invert(1);
}
.accordion-body {
  color: var(--paragraph-color);
  line-height: 1.8;
  padding: 20px 25px !important;
}

/* Form inputs styling */
.contact-form-wrap {
  background-color: var(--black-bg-1);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 8px;
}
@media (max-width: 575px) {
  .contact-form-wrap {
    padding: 20px;
  }
}
.form-tltle h5 {
  font-size: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 15px;
}
.form-inner {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.form-inner label {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  color: var(--black-soft-color);
}
.form-inner input, .form-inner textarea {
  background-color: var(--black-bg-2);
  border: 1px solid var(--border-color);
  color: var(--white-color);
  padding: 12px 20px;
  border-radius: 4px;
  font-family: var(--font-saira);
  font-size: 15px;
  transition: border-color 0.3s;
}
.form-inner input:focus, .form-inner textarea:focus {
  border-color: var(--theme-color);
}
.form-inner textarea {
  resize: vertical;
}

/* Breadcrumbs Section */
.breadcrumbs {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 150px 0 100px 0;
  border-bottom: 1px solid var(--border-color);
}
.breadcrumb-sm-images {
  position: absolute;
  right: 10%;
  bottom: 0;
}
@media (max-width: 991px) {
  .breadcrumb-sm-images { display: none; }
}
.breadcrumb-wrapper h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}
.breadcrumb-list a {
  color: var(--theme-color);
}
.breadcrumb-list svg {
  fill: var(--white-color);
}

/* 11. Footer */
footer {
  background-color: #1a1a1a;
  border-top: 1px solid var(--border-color);
}
.footer-top {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}
.footer-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.footer-logo img {
  height: 40px;
}
.footer-contect {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-contect .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(var(--theme-color-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-color);
  font-size: 20px;
}
.footer-contect .content span {
  font-size: 13px;
  color: var(--black-soft-color);
}
.footer-contect .content h6 a {
  font-size: 18px;
  font-weight: 700;
  color: var(--white-color);
}

.footer-widgets-area {
  padding: 80px 0;
}
.footer-widget {
  margin-bottom: 30px;
}
.footer-widget h4, .widget-title h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}
.footer-widget h4 svg {
  fill: var(--theme-color);
  margin-right: 8px;
}
.footer-widget address {
  color: var(--paragraph-color);
  font-style: normal;
  line-height: 1.8;
}
.footer-widget a {
  color: var(--paragraph-color);
}
.footer-widget ul.menu {
  list-style: none;
  padding: 0;
}
.footer-widget ul.menu li {
  margin-bottom: 12px;
}
.footer-widget ul.menu li a {
  font-size: 15px;
  color: var(--paragraph-color);
}
.footer-widget ul.menu li a:hover {
  color: var(--theme-color);
  padding-left: 5px;
}

.footer-btm {
  padding: 30px 0;
  background-color: #121212;
  border-top: 1px solid var(--border-color);
}
.footer-btn-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.copyright-area p a {
  color: var(--theme-color);
}
.footer-social ul {
  display: flex;
  list-style: none;
  gap: 15px;
  padding: 0;
  margin: 0;
}
.footer-social ul li a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paragraph-color);
}
.footer-social ul li a:hover {
  background-color: var(--theme-color);
  color: var(--black-color);
}

/* 12. About Page Approach & Choose Us styles */
.home3-about-section {
  background-color: var(--black-bg-1);
}
.about-left {
  margin-top: 40px;
}
.about-left .about-img {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}
.about-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
}
.devider {
  height: 1px;
  background-color: var(--border-color);
  margin: 30px 0;
}
.about-feature {
  display: flex;
  list-style: none;
  gap: 30px;
  padding: 0;
}
@media (max-width: 575px) {
  .about-feature {
    flex-direction: column;
  }
}
.about-feature li h5 {
  font-size: 18px;
  color: var(--theme-color);
}

.about-right .about-img {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  margin-bottom: 30px;
}
.about-exprience {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto;
}
.exp-text img {
  animation: rotate 15s linear infinite;
  width: 100%;
}
@keyframes rotate {
  100% { transform: rotate(360deg); }
}
.about-exprience .years {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.about-exprience .years h2 {
  font-size: 36px;
  margin-bottom: 0;
}
.about-exprience .years span {
  font-size: 14px;
  color: var(--theme-color);
  text-transform: uppercase;
}

.home6-choose-section {
  background-color: var(--black-bg-2);
}
.choose-top {
  margin-bottom: 60px;
}
.choose-title span {
  font-size: 14px;
  color: var(--theme-color);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.choose-title h2 {
  font-size: 36px;
  margin-top: 10px;
}

.choose-item {
  background-color: var(--black-bg-1);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: 8px;
  height: 100%;
  transition: all 0.3s;
}
.choose-item:hover {
  border-color: var(--theme-color);
}
.choose-item .icon {
  font-size: 36px;
  color: var(--theme-color);
  margin-bottom: 20px;
}
.choose-item h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

/* 13. Service Details Left navigation & Cards */
.services-nav-widget {
  background-color: var(--black-bg-2);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
}
.services-nav-widget h4 {
  font-size: 20px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}
.services-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.services-nav-list li {
  margin-bottom: 15px;
}
.services-nav-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background-color: var(--black-bg-1);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-weight: 500;
}
.services-nav-list li.active a, .services-nav-list li a:hover {
  background-color: var(--theme-color);
  color: var(--black-color) !important;
  border-color: var(--theme-color);
}

.hotline-widget {
  background-color: var(--black-bg-2);
  border: 1px solid var(--border-color);
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 30px;
}
.hotline-widget h4 {
  font-size: 22px;
  margin-bottom: 20px;
}
.hotline-widget .icon {
  font-size: 48px;
  color: var(--theme-color);
  margin-bottom: 20px;
}
.hotline-widget p {
  font-size: 15px;
  margin-bottom: 15px;
}
.hotline-widget h3 a {
  font-size: 24px;
  font-weight: 700;
  color: var(--theme-color);
}

/* 14. Projects/Portfolio Filter & detail cards */
.project-filter-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 24px;
  border: 1px solid var(--border-color);
  background-color: var(--black-bg-2);
  color: var(--white-color);
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all var(--transition-speed);
}
.filter-btn.active, .filter-btn:hover {
  background-color: var(--theme-color);
  color: var(--black-color);
  border-color: var(--theme-color);
}

.portfolio-item {
  margin-bottom: 30px;
}
.portfolio-card {
  background-color: var(--black-bg-2);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
}
.portfolio-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition-speed);
}
.portfolio-card:hover img {
  transform: scale(1.05);
}
.portfolio-info {
  padding: 25px;
}
.portfolio-info span {
  font-size: 13px;
  color: var(--theme-color);
  text-transform: uppercase;
}
.portfolio-info h3 {
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 0;
}

/* Project details sidebar */
.project-info-card {
  background-color: var(--black-bg-2);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: 8px;
}
.project-info-card h4 {
  font-size: 20px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}
.project-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.project-info-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  border-bottom: 1px dashed var(--border-color);
  padding-bottom: 10px;
}
.project-info-list li span:first-child {
  font-weight: 600;
  color: var(--theme-color);
}
.project-info-list li span:last-child {
  color: var(--paragraph-color);
}

/* 15. Pricing Cards & Billing toggle */
.pricing-toggle-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
}
.toggle-label {
  font-size: 16px;
  font-weight: 600;
}
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider-round {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--border-color);
  transition: .4s;
  border-radius: 34px;
}
.slider-round:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: var(--white-color);
  transition: .4s;
  border-radius: 50%;
}
input:checked + .slider-round {
  background-color: var(--theme-color);
}
input:checked + .slider-round:before {
  transform: translateX(26px);
  background-color: var(--black-color);
}

.pricing-card {
  background-color: var(--black-bg-2);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition-speed);
}
.pricing-card:hover, .pricing-card.popular {
  border-color: var(--theme-color);
}
.popular-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background-color: var(--theme-color);
  color: var(--black-color);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 30px;
  transform: rotate(45deg);
}
.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.price {
  font-size: 48px;
  font-weight: 800;
  color: var(--theme-color);
  margin-bottom: 30px;
}
.price span {
  font-size: 16px;
  color: var(--paragraph-color);
  font-weight: 400;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}
.pricing-features li {
  margin-bottom: 15px;
  color: var(--paragraph-color);
}
.pricing-features li.disabled {
  text-decoration: line-through;
  opacity: 0.5;
}

/* 16. FAQs Sidebar links & cards */
.faq-widget {
  background-color: var(--black-bg-2);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: 8px;
}
.faq-widget h4 {
  font-size: 18px;
  margin-bottom: 20px;
}
.faq-categories {
  list-style: none;
  padding: 0;
}
.faq-categories li {
  margin-bottom: 12px;
}
.faq-categories li a {
  display: block;
  padding: 10px 15px;
  border-radius: 4px;
  background-color: var(--black-bg-1);
  border: 1px solid var(--border-color);
}
.faq-categories li.active a, .faq-categories li a:hover {
  background-color: var(--theme-color);
  color: var(--black-color);
  border-color: var(--theme-color);
}

/* 17. Contact Cards & Map */
.contact-info-card {
  background-color: var(--black-bg-2);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: 8px;
  height: 100%;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact-info-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(var(--theme-color-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-color);
  font-size: 24px;
  flex-shrink: 0;
}
.contact-info-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
}
.contact-info-card p, .contact-info-card a {
  color: var(--paragraph-color);
  display: block;
}

.map-placeholder {
  width: 100%;
  height: 450px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background-color: var(--black-bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 18. Team Cards Layout */
.team-card {
  background-color: var(--black-bg-2);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  height: 100%;
}
.team-img-wrap {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}
.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-speed);
}
.team-card:hover .team-img-wrap img {
  transform: scale(1.05);
}
.team-social-overlay {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(6, 216, 137, 0.95);
  display: flex;
  gap: 15px;
  padding: 10px 25px;
  border-radius: 20px;
  opacity: 0;
  transition: all 0.3s;
}
.team-card:hover .team-social-overlay {
  bottom: 20px;
  opacity: 1;
}
.team-social-overlay a {
  color: var(--black-color);
  font-size: 18px;
}
.team-social-overlay a:hover {
  color: var(--white-color);
}
.team-info {
  padding: 25px;
}
.team-info h4 {
  font-size: 20px;
  margin-bottom: 5px;
}
.team-info span {
  font-size: 14px;
  color: var(--theme-color);
  text-transform: uppercase;
}

/* Contact Validation Popup */
.validation-popup {
  position: fixed;
  bottom: 20px;
  right: -350px;
  width: 320px;
  padding: 20px;
  border-radius: 4px;
  background-color: var(--black-bg-2);
  border-left: 4px solid var(--theme-color);
  color: var(--white-color);
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  z-index: 10002;
  transition: right 0.4s ease;
}
.validation-popup.active {
  right: 20px;
}
.validation-popup h5 {
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--theme-color);
}
.validation-popup p {
  font-size: 14px;
  color: var(--paragraph-color);
}

/* 19. Extra Responsive Adjustments for Mobile */
@media (max-width: 575px) {
  /* Counter & Reviews Section */
  .customar-review {
    padding: 30px 20px;
  }
  .customar-review ul {
    align-items: center;
    text-align: center;
  }
  .counter-area {
    padding: 30px 20px;
  }
  .counter-area ul {
    justify-content: center;
    gap: 30px;
  }
  .single-counter {
    text-align: center;
    width: 100%;
  }
  .single-counter .number {
    justify-content: center;
  }

  /* Footer Section */
  .footer-top-content {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
  .footer-contect {
    flex-direction: column;
    gap: 10px;
  }
  .footer-btn-content {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 15px;
  }

  /* Map Section */
  .map-placeholder {
    height: 300px;
  }
}

