:root {
  --primary-color: #2c9445;
  --secondary-color: #7dd892;
  --dark-color: #1a1a1a;
  --light-gray: #f8f9fa;
  --border-color: #e5e7eb;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.page-wrapper {
  margin-top: 140px;
}

/* Home page  */
.hero-section {
  position: relative;
  height: 100dvh;
  max-height: 100dvh;
  background: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ===========================
   BACKGROUND SLIDER
=========================== */

.bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Each slide */
.bg-slider .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1);
  will-change: opacity, transform;

  /* less colorful */
  filter: saturate(40%) contrast(90%) brightness(100%);
}

/* Slide images */
.slide1 {
  background-image: url("../images/slider/slide1.jpg");
  animation: slide1Anim 18s infinite;
}

.slide2 {
  background-image: url("../images/slider/slide2.jpg");
  animation: slide2Anim 18s infinite;
}

.slide3 {
  background-image: url("../images/slider/slide3.jpg");
  animation: slide3Anim 18s infinite;
}

.slide4 {
  background-image: url("../images/slider/slide4.jpg");
  animation: slide4Anim 18s infinite;
}

/* Animation */
/* SLIDE 1 */
@keyframes slide1Anim {
  0%   { opacity: 0; transform: scale(1); }
  5%   { opacity: 1; }
  25%  { opacity: 1; transform: scale(1.05); }
  30%  { opacity: 0; }
  100% { opacity: 0; }
}

/* SLIDE 2 */
@keyframes slide2Anim {
  0%   { opacity: 0; }
  25%  { opacity: 0; }
  30%  { opacity: 1; transform: scale(1); }
  50%  { opacity: 1; transform: scale(1.05); }
  55%  { opacity: 0; }
  100% { opacity: 0; }
}

/* SLIDE 3 */
@keyframes slide3Anim {
  0%   { opacity: 0; }
  50%  { opacity: 0; }
  55%  { opacity: 1; transform: scale(1); }
  75%  { opacity: 1; transform: scale(1.05); }
  80%  { opacity: 0; }
  100% { opacity: 0; }
}

/* SLIDE 4 */
@keyframes slide4Anim {
  0%   { opacity: 0; }
  75%  { opacity: 0; }
  80%  { opacity: 1; transform: scale(1); }
  100%  { opacity: 1; transform: scale(1.05); }
}




.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  z-index: 1;
  pointer-events: none;
}
/* ===========================
   BACKGROUND SLIDER END
=========================== */

/* .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
} */

.content-wrapper {
  position: relative;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  /* background-color: rgba(0, 0, 0, 0.5); */
  z-index: 2;
}

.logo-section {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-container {
  text-align: center;
}

.logo-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

/* .logo-image{
  position: relative;
  background-color: white;
  z-index: 999;
} */
.logo-icon img {
  width: 60px;
  height: 60px;
  stroke: #333;
}

.logo-text {
  color: white;
  font-size: 5rem;
  font-weight: bold;
  letter-spacing: 3px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.logo-subtext {
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 3px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.menu-section {
  position: relative;
  bottom: 5rem;
}

.menu-card {
  background: #2c9445;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.menu-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.menu-card-body {
  /* background-color: rgba(0, 0, 0, 0.5); */
  /* padding: 2rem 1.5rem; */
  text-align: center;
}

.menu-section .menu-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-section .menu-icon img {
  width: 40px;
  height: 40px;
  stroke: #333;
}

.menu-title {
  font-size: 1.1rem;
  letter-spacing: 0.2rem;
  font-weight: bold;
  color: #ffffff;

  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  margin: 0;
}

@media (max-width: 768px) {
  .logo-text {
    font-size: 2.5rem;
  }

  .logo-icon {
    width: 100px;
    height: 100px;
  }

  .logo-icon img {
    width: 50px;
    height: 50px;
  }

  .menu-section .menu-icon {
    width: 60px;
    height: 60px;
  }

  .menu-section .menu-icon img {
    width: 30px;
    height: 30px;
  }

  .menu-title {
    font-size: .8rem;
  }

  .menu-card-body {
    padding: 1.5rem 1rem;
  }
}

.banner-container {
  display: flex;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.banner-item {
  position: relative;
  flex: 1;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.6s ease;
  background-size: cover;
  background-position: center;
}

.banner-item:hover {
  flex: 1.3;
}

.banner-item:not(:hover) {
  flex: 0.5;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.6s ease;
}

.banner-item:hover .banner-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.banner-content {
  text-align: center;
  color: white;
  padding: 20px;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.banner-content h2 {
  font-size: 2.5rem;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  transition: font-size 0.6s ease;
}

/* Individual banner backgrounds */
.banner-1 {
  background-image: url("https://images.unsplash.com/photo-1559136555-9303baea8ebd?w=800");
}

.banner-2 {
  background-image: url("https://images.unsplash.com/photo-1552664730-d307ca884978?w=800");
}

.banner-3 {
  background-image: url("https://images.unsplash.com/photo-1581291518633-83b4ebd1d83e?w=800");
}

.banner-4 {
  background-image: url("https://images.unsplash.com/photo-1516387938699-a93567ec168e?w=800");
}

@media (max-width: 1040px) {
  .banner-item:hover {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .banner-container {
    flex-direction: column;
  }

  .banner-content h2 {
    font-size: 1.8rem;
  }

  .banner-item:hover .banner-content h2 {
    font-size: 2.2rem;
  }
}

/* ── HEADER ── */
      .docs-header {
        display: flex;
        align-items: flex-start;
        gap: 40px;
        margin-bottom: 20px;
      }

      .docs-header-badge {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-shrink: 0;
      }

      .section-number {
        
        font-size: 72px;
        font-weight: 700;
        color: var(--primary-color);
        line-height: 1;
        opacity: 0.4;
      }

      .badge-label {
        writing-mode: vertical-rl;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        font-size: 11px;
        font-weight: 500;
        color: var(--primary-color);
      }

      .docs-header-text h2 {
        
        font-size: clamp(32px, 5vw, 52px);
        font-weight: 600;
        line-height: 1.1;
        margin-bottom: 12px;
        
      }

      .docs-header-text p {
        font-size: 15px;
        line-height: 1.7;
        color: #5a5a54;
        max-width: 560px;
      }

.section-badge {
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  color: rgb(0, 0, 0) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 1.2rem;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--primary-color);
  transition: height 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.service-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1.5rem;
}

.methodology-step {
  position: relative;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
  background: white;
  border-radius: 15px;
  padding: 2rem 3rem 2rem 2rem;
  border-left: 4px solid var(--primary-color);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.image-badge {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 250px;
  height: 220px;
  z-index: -1;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  filter: saturate(1.2);
  opacity: 0.5;
  /* transform: rotate(-8deg); */
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.methodology-step:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateX(10px);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 1rem;
}

.bg-light-section {
  background: var(--light-gray);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section {
  background: var(--dark-color);
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(127, 255, 0, 0.1);
}

.footer {
  background: var(--dark-color);
  color: white;
  padding: 3rem 0 2rem;
}

.border-line {
  border: 0;
  height: 2px;
  background: var(--border-color);
  flex: 1;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }
}

/* Service Details  */
.service-image {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.process-step {
  position: relative;
  padding-left: 80px;
  margin-bottom: 40px;
}

.process-number {
  position: absolute;
  left: 0;
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
}

.pricing-card {
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--secondary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.price {
  font-size: 48px;
  font-weight: bold;
  color: var(--primary-color);
  margin: 20px 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.testimonial {
  background: var(--light-gray);
  padding: 30px;
  border-radius: 10px;
  border-left: 4px solid var(--secondary-color);
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--secondary-color);
}

/* About Us */
.values-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.value-card {
  background: white;
  padding: 35px;
  border-radius: 16px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.value-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.value-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.value-text {
  color: #495057;
  line-height: 1.7;
}

/* Founder section  */
.founder-section {
  border-radius: 20px;
  margin: 20px 0;
}

.section-header {
  background: linear-gradient(135deg,
      var(--primary-color) 0%,
      var(--secondary-color) 100%);
  color: white;
  padding: 40px 20px;
  text-align: center;
  position: relative;
}

.section-header::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 20px solid var(--secondary-color);
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.founder-content {
  padding: 60px 40px 40px;
}

.founder-image-wrapper {
  position: relative;
  margin-bottom: 30px;
}

.founder-image {
  width: 100%;
  /* max-width: 350px; */
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border: 5px solid rgb(129, 129, 129);
  transition: transform 0.3s ease;
}

.founder-image:hover {
  transform: scale(1.05);
}

.image-placeholder {
  width: 100%;
  max-width: 350px;
  height: 400px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border: 5px solid white;
}

.image-placeholder i {
  font-size: 100px;
  color: rgba(255, 255, 255, 0.8);
}

.founder-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: var(--primary-color);
  color: rgb(255, 255, 255);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {

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

  50% {
    transform: scale(1.05);
  }
}

.founder-name {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.founder-title {
  color: var(--secondary-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--primary-color);
}

.founder-bio {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 20px;
}

.experience-highlight {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
  padding: 20px;
  border-radius: 10px;
  border-left: 5px solid var(--primary-color);
}

.experience-highlight h4 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 15px;
}

.expertise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.expertise-badge {
  background: var(--primary-color);
  color: rgb(255, 255, 255);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.expertise-badge:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.stats-row {
  background: linear-gradient(135deg,
      var(--primary-color) 0%,
      var(--secondary-color) 100%);
  color: rgb(255, 255, 255);
  padding: 30px;
  border-radius: 15px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
  padding: 15px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .founder-content {
    padding: 40px 20px 20px;
  }

  .founder-name {
    font-size: 1.5rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }
}

.timeline-section {
  padding: 80px 0;
  background: white;
}

.timeline-item {
  padding: 30px;
  background: #f8f9fa;
  border-radius: 16px;
  position: relative;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.timeline-item:hover {
  background: #e9ecef;
  transform: scale(1.02);
}

.timeline-year {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.timeline-text {
  font-size: 1.1rem;
  color: #495057;
  line-height: 1.7;
}

.marquee-content .hstack {
  width: 160px;
  height: 160px;
}

.marquee-content .hstack img {
  height: 140px;
  width: 200px;
  object-fit: fill;
}

.project-container .nav-tabs {
  border: none;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.project-container .nav-tabs .nav-link {
  border: none;
  background: transparent;
  color: var(--secondary-color);
  font-size: 1.3rem;
  font-weight: 600;
  padding: 15px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid;
}

.project-container .nav-tabs .nav-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.project-container .nav-tabs .nav-link.active {
  color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.dropdown-item {
  cursor: pointer;
  background: none !important;
  font-weight: 700;
}

.project-container .nav-tabs .nav-link[data-bs-target="#commercial"] {
  background: linear-gradient(135deg,
      var(--primary-color) 0%,
      var(--secondary-color) 100%);
}

.project-container .nav-tabs .nav-link[data-bs-target="#commercial"]:not(.active) {
  background: #ecf0f1;
  color: var(--commercial-color);
}

.project-container .nav-tabs .nav-link[data-bs-target="#residential"] {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.project-container .nav-tabs .nav-link[data-bs-target="#residential"]:not(.active) {
  background: #ecf0f1;
  color: var(--residential-color);
}

.project-container .nav-link i {
  margin-right: 10px;
  font-size: 1.4rem;
}

/* Project Details Two */

/* Hero Section */


.project-details-container .hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.project-details-container .hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Breadcrumb */
.project-details-container .breadcrumb-section {
  background: var(--bg-light);
  padding: 1rem 0;
}

.project-details-container.breadcrumb {
  background: transparent;
  margin: 0;
}

/* Project Info Bar */
.project-info-bar {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 2rem 0;
  margin-bottom: 3rem;
}

.info-item {
  text-align: center;
  padding: 1rem;
}

.info-item i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.info-item h6 {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-item p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

/* Main Content */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
}

.project-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

/* Image Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(52, 152, 219, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 3rem;
  color: white;
}

/* Features List */
.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  padding: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list i {
  color: var(--primary-color);
  margin-right: 1rem;
  font-size: 1.2rem;
}

/* Challenge Solution Box */
.challenge-box,
.solution-box {
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.challenge-box {
  background: #fff5f5;
  border-left: 4px solid var(--accent-color);
}

.solution-box {
  background: #f0f8ff;
  border-left: 4px solid var(--primary-color);
}

.challenge-box h4,
.solution-box h4 {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.challenge-box h4 i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.solution-box h4 i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

/* Testimonial */
.testimonial {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: 10px;
  margin: 3rem 0;
  position: relative;
}

.testimonial::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.2;
}

.testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  padding-left: 2rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

.author-info h5 {
  margin: 0;
  font-size: 1.1rem;
}

.author-info p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--primary-color));
  color: white;
  padding: 4rem 0;
  text-align: center;
  margin-top: 4rem;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-cta {
  background: white;
  color: var(--primary-color);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .testimonial {
    padding: 2rem 1.5rem;
  }
}

.thermo-brand-btn{
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1055;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 2px solid var(--primary-color);
  padding: 8px 14px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);

  animation: floatY 3s ease-in-out infinite;
  transition: 0.3s;
}

/* Logo */
.thermo-brand-btn img{
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

/* Text */
.brand-text{
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text .title{
  font-weight: 700;
  color: var(--primary-color);
  font-size: 16px;
}

.brand-text small{
  font-size: 12px;
  color: #555;
}

/* Hover */
.thermo-brand-btn:hover{
  transform: scale(1.05);
  animation: none;
}

/* Floating animation */
@keyframes floatY{
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* Mobile */
@media(max-width:576px){
  .brand-text{
    display: none; /* only logo on mobile */
  }

  .thermo-brand-btn{
    padding: 8px;
    border-radius: 50%;
  }
}