/* ==========================================
   CSS RESET & BASE STYLES
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color Palette - Earthy & Premium */
  --primary-green: #2d5a3d;
  --secondary-green: #4a8b5c;
  --light-green: #7ab88e;
  --accent-gold: #c9a961;
  --dark-gray: #2c2c2c;
  --medium-gray: #666;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --overlay-dark: rgba(0, 0, 0, 0.6);

  /* Typography */
  --font-primary: "Poppins", sans-serif;
  --font-heading: "Playfair Display", serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;

  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.7s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-gray);
  background: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-gray);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-green);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-tag i {
  color: var(--accent-gold);
  font-size: 16px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--dark-gray);
}

.section-description {
  font-size: 1.1rem;
  color: var(--medium-gray);
  max-width: 700px;
}

.text-center {
  text-align: center;
}

.text-center .section-description {
  margin: 0 auto;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--primary-green);
  color: var(--white);
  border-color: var(--primary-green);
}

.btn-primary:hover {
  background: var(--secondary-green);
  border-color: var(--secondary-green);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(45, 90, 61, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-green);
}

.btn-white {
  background: var(--white);
  color: var(--primary-green);
  border-color: var(--white);
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-lg {
  padding: 15px 40px;
  font-size: 16px;
}

.btn-block {
  display: block;
  width: 100%;
}

/* ==========================================
   TOP BAR
   ========================================== */
.topbar {
  background: var(--primary-green);
  color: var(--white);
  padding: 10px 0;
  font-size: 14px;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.topbar-left,
.topbar-right {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.topbar a,
.topbar span {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar a:hover {
  color: var(--accent-gold);
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition-fast);
}

.header.scrolled {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 0;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-green);
  font-family: var(--font-heading);
}

.logo i {
  font-size: 32px;
  color: var(--accent-gold);
}

.comp-logo {
  width: 90px;
  height: 90px;
  padding: 0;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: var(--dark-gray);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}

/* Base underline */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--primary-green);
  transition: width 0.3s ease;
}

/* Hover underline ONLY if not active */
.nav-link:not(.active):hover::after {
  width: 100%;
}

/* Active underline */
.nav-link.active::after {
  width: 100%;
}

/* */

.nav-link:hover,
.nav-link.active {
  color: var(--primary-green);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  position: relative;
  z-index: 1100;
}

.hamburger span {
  /* width: 25px;
  height: 3px;
  background: var(--primary-green);
  border-radius: 3px;
  transition: var(--transition-fast); */

  width: 25px;
  height: 3px;
  background: var(--primary-green);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(45, 90, 61, 0.671),
    rgba(0, 0, 0, 0.4)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 700px;
  color: var(--white);
}

.hero-subtitle {
  padding-top: 20px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  margin-bottom: 15px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #f5f5f5;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid var(--white);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.slider-arrow:hover {
  background: var(--white);
  color: var(--primary-green);
}

.slider-prev {
  left: 30px;
}

.slider-next {
  right: 30px;
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(97, 96, 96, 0.5);
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot.active {
  background: var(--dark-gray);
  width: 30px;
  border-radius: 6px;
}

/* ==========================================
   SERVICES OVERVIEW (ICONS)
   ========================================== */
.services-overview {
  padding: 80px 0;
  background: var(--light-gray);
  margin-top: -50px;
  position: relative;
  z-index: 2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-icon-box {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition-fast);
}

.service-icon-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon-box .icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: var(--white);
}

.service-icon-box h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.service-icon-box p {
  color: var(--medium-gray);
  font-size: 15px;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

/* VIDEO PLAYER */
.about-image-main {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  height: 500px;
}

.video-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.video-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

.slide-video {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.slide-video.active {
  display: block;
}

/* VIDEO PLAYER */

.about {
  padding: 100px 0;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-image-main {
  /* border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); */

  position: relative;
  height: 500px;
  border-radius: 14px;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);

  border: 2px solid rgba(255, 255, 255, 0.25);

  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 30px 80px rgba(0, 0, 0, 0.2);
}

.about-image-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-image-small {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  border-radius: 10px;
  overflow: hidden;
  border: 8px solid var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-image-small img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  top: 30px;
  left: -30px;
  background: var(--primary-green);
  color: var(--white);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(45, 90, 61, 0.3);
}

.experience-number {
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1;
}

.experience-text {
  font-size: 14px;
  margin-top: 5px;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 30px;
  color: var(--medium-gray);
}

.about-features {
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.feature-item i {
  color: var(--primary-green);
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 3px;
}

.feature-item h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.feature-item p {
  color: var(--medium-gray);
  margin: 0;
}

/* ==========================================
   WHY CHOOSE US
   ========================================== */
.why-choose-us {
  padding: 100px 0;
  background: var(--light-gray);
}

.section-header {
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition-fast);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--light-green),
    var(--secondary-green)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--white);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--medium-gray);
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
  padding: 100px 0;
}

.services-grid-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(45, 90, 61, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-content {
  padding: 30px;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: var(--white);
}

.service-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.service-content > p {
  color: var(--medium-gray);
  margin-bottom: 20px;
}

.service-features {
  margin-bottom: 20px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--medium-gray);
}

.service-features i {
  color: var(--primary-green);
  font-size: 14px;
}

.service-link {
  color: var(--primary-green);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-link:hover {
  color: var(--secondary-green);
}

.service-link i {
  transition: var(--transition-fast);
}

.service-link:hover i {
  transform: translateX(5px);
}

/* ==========================================
   PROCESS SECTION
   ========================================== */
.process {
  padding: 100px 0;
  background: var(--light-gray);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.process-step {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition-fast);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--accent-gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 20px;
  font-size: 32px;
  color: var(--white);
}

.process-step h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.process-step p {
  color: var(--medium-gray);
}

/* ==========================================
   PROJECTS SECTION
   ========================================== */
.projects {
  padding: 100px 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.project-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition-fast);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  transition: var(--transition-fast);
}

.project-info {
  color: var(--white);
  transform: translateY(20px);
  transition: var(--transition-fast);
}

.project-card:hover .project-info {
  transform: translateY(0);
}

.project-category {
  display: inline-block;
  background: var(--primary-green);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.project-info h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 10px;
}

.project-info p {
  opacity: 0.9;
  margin: 0;
}

/* ==========================================
   BEFORE/AFTER SECTION
   ========================================== */
.before-after {
  padding: 100px 0;
  background: var(--light-gray);
}

.ba-container {
  max-width: 900px;
  margin: 0 auto;
}

.ba-slider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.ba-before,
.ba-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-after {
  clip-path: inset(0 50% 0 0);
}

.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: var(--white);
  cursor: ew-resize;
}

.ba-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.ba-handle-button i {
  color: var(--primary-green);
  font-size: 20px;
}

.ba-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.ba-label {
  display: inline-block;
  background: var(--primary-green);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.ba-label-before {
  background: var(--medium-gray);
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-icon {
  font-size: 48px;
  margin-bottom: 15px;
  opacity: 0.9;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-number::after {
  content: "+";
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta {
  padding: 100px 0;
  background: url("https://images.unsplash.com/photo-1585320806297-9794b3e4eeae?w=1920")
    center/cover;
  position: relative;
  text-align: center;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(45, 90, 61, 0.9);
}

.cta-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.cta-content h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
  padding: 100px 0;
  background: var(--light-gray);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  margin-top: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition-fast);
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 24px;
  color: var(--white);
}

.contact-details h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.contact-details a {
  color: var(--primary-green);
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.contact-details a:hover {
  color: var(--secondary-green);
}

.contact-details p {
  color: var(--medium-gray);
  font-size: 14px;
  margin: 0;
}

.contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--font-primary);
  transition: var(--transition-fast);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-green);
}

.contact-form textarea {
  resize: vertical;
}

.other-project {
  display: none;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.footer-logo i {
  font-size: 32px;
  color: var(--accent-gold);
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-list i {
  color: var(--accent-gold);
  margin-top: 3px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition-fast);
}

.social-links a:hover {
  background: var(--accent-gold);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

/* ==========================================
   SCROLL TO TOP & WHATSAPP FLOAT
   ========================================== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-green);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  z-index: 999;
  box-shadow: 0 5px 20px rgba(45, 90, 61, 0.3);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--secondary-green);
  transform: translateY(-3px);
}

.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  z-index: 999;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition-fast);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background: #128c7e;
  transform: scale(1.1);
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 5px 30px rgba(37, 211, 102, 0.8);
  }
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease;
}

.fade-in-left {
  animation: fadeInLeft 0.8s ease;
}

.fade-in-right {
  animation: fadeInRight 0.8s ease;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablet */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2rem;
  }

  .slider-arrow {
    top: 60%; /* push arrows lower */
    transform: translateY(-50%);
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .about-wrapper {
    gap: 50px;
  }

  .contact-wrapper {
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .nav-menu {
    position: fixed;
    top: 110px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 460px);
    background: var(--white);
    flex-direction: column;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-fast);
    gap: 0;
    z-index: 1000;
  }

  .header.scrolled + .container .nav-menu,
  .header.scrolled .nav-menu {
    top: 70px;
  }

  .nav-menu.active {
    left: 0;
  }

  /* .nav-link {
    font-size: 1.2rem;
    padding: 18px 0;
    border-bottom: 1px solid #e0e0e0;
  } */

  .nav-menu li {
    border-bottom: 1px solid #e0e0e0;
  }

  .nav-link {
    display: block;
    padding: 10px 0;
    font-size: 1.2rem;
  }

  .nav-link::after {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-right .btn {
    display: none;
  }

  .about-wrapper,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image-small {
    width: 200px;
  }

  .services-grid-main {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .slider-arrow {
    top: 60%; /* push arrows lower */
    transform: translateY(-50%);
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
  }

  .topbar-content {
    justify-content: center;
  }

  .topbar-right {
    display: none;
  }

  .hero {
    height: 70vh;
    min-height: 500px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
    top: 80%; /* push arrows lower */
    transform: translateY(-50%);
  }

  .slider-prev {
    left: 15px;
  }

  .slider-next {
    right: 15px;
  }

  .services-overview {
    padding: 60px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about,
  .why-choose-us,
  .services,
  .process,
  .projects,
  .contact {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .about-image-main img {
    height: 350px;
  }

  .about-image-small {
    width: 150px;
    bottom: -20px;
    right: -20px;
  }

  .about-image-small img {
    height: 150px;
  }

  .experience-badge {
    left: -15px;
    padding: 20px;
  }

  .experience-number {
    font-size: 2.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-image {
    height: 300px;
  }

  .ba-slider {
    height: 350px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .cta {
    padding: 60px 0;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .footer {
    padding: 60px 0 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .scroll-top,
  .whatsapp-float {
    right: 20px;
  }

  .whatsapp-float {
    bottom: 90px;
    width: 50px;
    height: 50px;
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .slider-arrow {
    top: 80%; /* push arrows lower */
    transform: translateY(-50%);
  }

  .section-title {
    font-size: 1.5rem;
  }

  .service-icon-box {
    padding: 30px 20px;
  }

  .feature-card,
  .process-step {
    padding: 30px 20px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2rem;
  }
}




/* For Slider */
.service-image {
  position: relative;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.swiper {
  width: 100%;
  height: 250px;
}





/* For Image PopUp */
/* Modal Background */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

/* Modal Content */
.modal-content {
  position: relative;
  margin: auto;
  width: 80%;
  max-width: 900px;
  text-align: center;
}

.modal-content img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

/* Navigation Arrows */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  color: white;
  border: none;
  font-size: 40px;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 6px;
}

.prev { left: 0; }
.next { right: 0; }

.nav:hover {
  background: rgba(255,255,255,0.4);
}