* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: "Manrope", sans-serif;
}

/* ============================================
HEADER STYLES
============================================ */
.hs-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hs-logo {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.hs-nav {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.hs-nav a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: opacity 0.3s ease;
}

.hs-nav a:hover {
  opacity: 0.7;
}

.hs-hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  background: none;
  border: none;
}

.hs-hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hs-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 10px);
}

.hs-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hs-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -7px);
}

@media (max-width: 768px) {
  .hs-header {
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.8);
  }

  .hs-hamburger {
    display: flex;
  }

  .hs-nav {
    position: absolute;
    top: 54px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(0, 0, 0, 0.95);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .hs-nav.active {
    max-height: 300px;
  }

  .hs-nav a {
    display: block;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hs-logo {
    font-size: 1rem;
  }
}

/* ============================================
HERO SECTION STYLES
============================================ */

#vc-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* black overlay on top */
.black-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* adjust opacity */
  pointer-events: none; /* allows video controls to work */
}

.hst-hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("assets/images/hero-sec.png") center/cover;
  display: flex;
  align-items: center;
  padding: 2rem;
  position: relative;
}

.hst-hero-content {
  max-width: 600px;
  color: white;
  z-index: 2;
}

.hst-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff80;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2rem;
  width: fit-content;
  backdrop-filter: blur(10px);
  color: #165a4a;
}

.hst-badge::before {
  content: "";
  width: 15px;
  height: 15px;
  background: #165a4a;
  border-radius: 50%;
  display: inline-block;
}

.hst-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hst-hero p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.8;
}

.hst-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hst-btn {
  padding: 0.7rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 500;
}

.hst-btn-primary {
  background: #2d7a6f;
  color: white;
}

.hst-btn-primary:hover {
  background: #1f5a52;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(45, 122, 111, 0.3);
}

.hst-btn-secondary {
  background: #e8e8e8;
  color: #333;
}

.hst-btn-secondary:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hst-btn-icon {
  width: 40px;
  height: 40px;
}

.hst-testimonial {
  position: absolute;
  bottom: 3rem;
  right: 2rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  max-width: 300px;
  color: white;
	display:none;
}

.hst-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.hst-testimonial p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

@media (max-width: 1024px) {
  .hst-testimonial {
    position: static;
    margin-top: 2rem;
    max-width: 100%;
  }

  .hst-hero {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .hst-hero {
    min-height: auto;
    padding: 2rem 1.5rem;
    padding-top: 100px;
  }

  .hst-hero h1 {
    font-size: 2.5rem;
  }

  .hst-hero p {
    font-size: 1rem;
  }

  .hst-cta-buttons {
    flex-direction: column;
  }

  .hst-btn {
    width: 100%;
    justify-content: center;
  }

  .hst-badge {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
  }

  .hst-testimonial {
    padding: 1.5rem;
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .hst-hero h1 {
    font-size: 2rem;
  }

  .hst-hero p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hst-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
}

/**About section***/

.as-section {
  padding: 4rem 0;
}
.as-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1170px;
  margin: 0 auto;
}

.as-left {
  flex: 1;
  min-width: 300px;
  margin-bottom: 2rem;
}

.as-badge {
  display: inline-block;
  background: #165a4a33;
  color: #165a4a;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 9999px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
}

.as-heading {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #111;
  line-height: 1.1;
}

.as-right {
  flex: 1;
  min-width: 320px;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  max-width: 600px;
}

@media (max-width: 900px) {
  .as-section {
    padding: 3rem 0;
  }
  .as-container {
    padding: 0 15px;
    flex-direction: column;
    text-align: left;
  }

  .as-heading {
    font-size: 2.3rem;
  }

  .as-right {
    font-size: 1rem;
  }
}

/******What We do section*****/

.wd-section {
  padding: 100px 20px 200px;
  background-color: #fafafa;
}

.wd-container {
  max-width: 1200px;
  margin: 0 auto;
}

.wd-header {
  text-align: center;
  margin-bottom: 50px;
}

.wd-badge {
  display: inline-block;
  background-color: #165a4a33;
  color: #165a4a;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 16px;
}

.wd-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.wd-subtitle {
  font-size: 16px;
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.wd-grid-main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.wd-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.wd-grid:nth-child(2) {
  transform: translate(0, 100px);
}

/* Add zigzag/staggered layout - offset right column cards from top */

.wd-card {
  background-color: #ffffff;
  box-shadow: 0px 4px 20px 0px #00000014;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wd-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.wd-card-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.wd-card-content {
  padding: 30px;
}

.wd-card-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.wd-card-time {
  font-size: 12px;
  color: #999999;
  font-weight: 500;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wd-card-description {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 24px;
}

.wd-button-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.wd-button {
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.wd-button-secondary {
  background-color: #e8e8e8;
  color: #333333;
}

.wd-button-secondary:hover {
  background-color: #d8d8d8;
}

.wd-button-primary {
  background-color: #165a4a;
  color: #ffffff;
}

.wd-button-primary:hover {
  background-color: #133631;
}

/* Responsive Design */
@media (max-width: 768px) {
  .wd-section {
    padding: 40px 16px;
  }

  .wd-title {
    font-size: 32px;
  }

  .wd-subtitle {
    font-size: 14px;
  }
  .wd-grid-main {
    grid-template-columns: 1fr;
  }
  .wd-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Remove zigzag offset on mobile - stack vertically */
  .wd-grid:nth-child(2) {
    transform: translate(0, 0px);
  }

  .wd-card-image {
    height: 240px;
  }

  .wd-card-content {
    padding: 24px;
  }

  .wd-card-title {
    font-size: 20px;
  }

  .wd-button-group {
    gap: 10px;
  }

  .wd-button {
    padding: 9px 18px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .wd-section {
    padding: 30px 12px;
  }

  .wd-title {
    font-size: 26px;
  }

  .wd-subtitle {
    font-size: 13px;
  }

  .wd-header {
    margin-bottom: 30px;
  }

  .wd-grid {
    gap: 16px;
    margin-top: 0;
  }

  .wd-card-image {
    height: 200px;
  }

  .wd-card-content {
    padding: 16px;
  }

  .wd-card-title {
    font-size: 18px;
  }

  .wd-card-description {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .wd-button-group {
    flex-direction: column;
    gap: 8px;
  }

  .wd-button {
    width: 100%;
    text-align: center;
  }
}

/***Feature Projects****/

.fp-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.fp-container {
  max-width: 1200px;
  margin: 0 auto;
}

.fp-header {
  text-align: center;
  margin-bottom: 60px;
}

.fp-badge {
  display: inline-block;
  background-color: rgba(22, 90, 74, 0.2);
  color: #165a4a;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}

.fp-title {
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 16px;
  line-height: 1.2;
}

.fp-subtitle {
  font-size: 18px;
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.fp-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.fp-card {
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.fp-card:hover {
  transform: translateY(-4px);
}

.fp-card-green {
  background-color: #2d5a4a;
}

.fp-card-dark {
  background-color: #1a1a1a;
}

.fp-card-image {
  flex: 0 0 40%;
  overflow: hidden;
}

.fp-card-image img {
  width: 100%;
  margin: 16px;
}

.fp-card-content {
  flex: 1;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  color: #ffffff;
}

.fp-card-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.fp-card-description {
  font-size: 16px;
  color: #e0e0e0;
  margin-bottom: 24px;
  line-height: 1.6;
}

.fp-card-tags {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.fp-tag {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 500;
}

.fp-button {
  background-color: #ffffff;
  color: #2d5a4a;
  border: none;
  padding: 14px 32px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.fp-button:hover {
  background-color: #f0f0f0;
  transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 768px) {
  .fp-section {
    padding: 60px 16px;
  }

  .fp-title {
    font-size: 36px;
  }

  .fp-subtitle {
    font-size: 16px;
  }

  .fp-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fp-card {
    flex-direction: column;
    min-height: auto;
  }

  .fp-card-image img {
    margin: 0px;
  }

  .fp-card-content {
    padding: 24px 20px;
  }

  .fp-card-title {
    font-size: 24px;
  }

  .fp-card-description {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .fp-section {
    padding: 40px 12px;
  }

  .fp-title {
    font-size: 28px;
  }

  .fp-subtitle {
    font-size: 14px;
  }

  .fp-card-image {
    flex: 0 0 200px;
  }

  .fp-card-content {
    padding: 20px 16px;
  }

  .fp-card-title {
    font-size: 20px;
  }

  .fp-card-tags {
    flex-wrap: wrap;
  }

  .fp-button {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/**Testimonial section***/

.ts-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 40px 0;
}

.ts-header {
  text-align: center;
  margin-bottom: 60px;
}

.ts-badge {
  display: inline-block;
  background-color: rgba(22, 90, 74, 0.2);
  color: #165a4a;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.ts-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #000000;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.ts-subtitle {
  font-size: clamp(16px, 2vw, 18px);
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.ts-marquee-wrapper {
  overflow: hidden;
  margin-bottom: 40px;
}

.ts-marquee-container {
  display: flex;
  gap: 24px;
  animation: ts-scroll-left 10s linear infinite;
}

.ts-marquee-container.ts-reverse {
  animation: ts-scroll-right 10s linear infinite;
}

@keyframes ts-scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes ts-scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.ts-card {
  flex: 0 0 calc(25% - 18px);
  min-width: 280px;
  background-color: #f5f5f5;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ts-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.ts-card.ts-light-blue {
  background-color: #e8f0f8;
}

.ts-card.ts-light-gray {
  background-color: #f0f0f0;
}

.ts-stars {
  display: flex;
  gap: 4px;
  font-size: 16px;
}

.ts-star {
  color: #000000;
}

.ts-text {
  font-size: 15px;
  color: #555555;
  line-height: 1.6;
  flex-grow: 1;
}

.ts-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.ts-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
}

.ts-author-name {
  font-size: 15px;
  font-weight: 500;
  color: #000000;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .ts-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 250px;
    padding: 24px;
  }

  .ts-marquee-container {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .ts-header {
    margin-bottom: 40px;
  }

  .ts-title {
    font-size: 28px;
  }

  .ts-subtitle {
    font-size: 14px;
  }

  .ts-card {
    flex: 0 0 calc(50% - 12px);
    min-width: 200px;
    padding: 20px;
    gap: 16px;
  }

  .ts-marquee-container {
    gap: 16px;
  }

  .ts-marquee-wrapper {
    margin-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .ts-title {
    font-size: 24px;
  }

  .ts-subtitle {
    font-size: 13px;
  }

  .ts-card {
    flex: 0 0 calc(100% - 8px);
    min-width: 100%;
    padding: 16px;
  }

  .ts-marquee-container {
    gap: 12px;
  }

  .ts-text {
    font-size: 14px;
  }
}

/* Pause animation on hover */
.ts-marquee-wrapper:hover .ts-marquee-container {
  animation-play-state: paused;
}

/**contact us ****/

.hcs-section {
  background: #165a4a;
  padding: 90px 20px;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hcs-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  z-index: 2;
  position: relative;
}

/* Left Column */
.hcs-left-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hcs-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 500;
  width: fit-content;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hcs-heading {
  font-size: 45px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -1px;
}

.hcs-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #3d6b63;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  width: fit-content;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.hcs-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Right Column */
.hcs-right-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hcs-contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hcs-info-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.hcs-info-label {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  min-width: 120px;
}

.hcs-info-value {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  text-align: right;
  flex: 1;
}

/* Watermark Background */
.hcs-watermark {
  position: absolute;
  bottom: -40px;
  right: 0px;
  font-size: 70px;
  font-weight: 300;
  color: #ffffff40;
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
  letter-spacing: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hcs-section {
    padding: 60px 20px;
    min-height: auto;
  }

  .hcs-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hcs-heading {
    font-size: 36px;
  }

  .hcs-left-column {
    gap: 25px;
  }

  .hcs-right-column {
    gap: 30px;
  }

  .hcs-info-item {
    flex-direction: column;
    gap: 8px;
  }

  .hcs-info-label {
    min-width: auto;
  }

  .hcs-info-value {
    text-align: left;
  }

  .hcs-watermark {
    font-size: 20px;
    bottom: -30px;
  }
}

@media (max-width: 480px) {
  .hcs-section {
    padding: 40px 16px;
  }

  .hcs-heading {
    font-size: 28px;
  }

  .hcs-badge {
    font-size: 14px;
    padding: 8px 16px;
  }

  .hcs-button {
    padding: 14px 32px;
    font-size: 14px;
  }

  .hcs-info-label,
  .hcs-info-value {
    font-size: 14px;
  }

  .hcs-watermark {
    font-size: 20px;
  }
}

/***Footer section ****/

.hfs-footer {
  background-color: #fafafa;
  padding: 60px 20px;
}

.hfs-container {
  max-width: 1200px;
  margin: 0 auto;
}

.hfs-footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.hfs-footer-left h2 {
  font-size: 32px;
  font-weight: 600;
  color: #165a4a;
  line-height: 1.3;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hfs-footer-middle {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hfs-divider-top {
  width: 100%;
  height: 2px;
  background-color: #165a4a;
  margin-bottom: 20px;
}

.hfs-middle-text {
  font-size: 14px;
  color: #165a4a;
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hfs-divider-bottom {
  width: 100%;
  height: 2px;
  background-color: #165a4a;
}

.hfs-footer-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.hfs-follow-section h3,
.hfs-links-section h3 {
  font-size: 14px;
  font-weight: 600;
  color: #165a4a;
  margin-bottom: 15px;
  text-transform: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hfs-follow-icons {
  display: flex;
  gap: 15px;
}

.hfs-social-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #165a4a;
  text-decoration: none;
  font-size: 20px;
  transition: opacity 0.3s ease;
}

.hfs-social-icon:hover {
  opacity: 0.7;
}

.hfs-links-list {
  list-style: none;
}

.hfs-links-list li {
  margin-bottom: 10px;
}

.hfs-links-list a {
  color: #165a4a;
  text-decoration: none;
  font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  transition: opacity 0.3s ease;
}

.hfs-links-list a:hover {
  opacity: 0.7;
}

.hfs-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid #e0e0e0;
  padding-top: 30px;
}

.hfs-copyright {
  font-size: 13px;
  color: #165a4a;
  padding-top: 20px;
}

.hfs-brand {
  font-size: 25px;
  font-weight: 600;
  color: #165a4a;
  letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hfs-footer {
    padding: 40px 20px;
  }

  .hfs-footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }

  .hfs-footer-left h2 {
    font-size: 24px;
  }

  .hfs-footer-right {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hfs-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .hfs-middle-text {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .hfs-footer {
    padding: 30px 15px;
  }

  .hfs-footer-content {
    gap: 20px;
    margin-bottom: 30px;
  }

  .hfs-footer-left h2 {
    font-size: 20px;
  }

  .hfs-footer-right {
    gap: 20px;
  }

  .hfs-middle-text {
    font-size: 12px;
  }

  .hfs-follow-section h3,
  .hfs-links-section h3 {
    font-size: 13px;
  }
}

/* ===== Banner Section ===== */
.hbr-banner {
  position: relative;
  min-height: 50vh;
  background: url("assets/images/gallery-top-bg.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hbr-banner-footer {
  background: url("assets/images/footer-gallery-bg.png") center/cover no-repeat;
  height: 70vh;
  color: #101014;
  .hbr-title {
    font-weight: 400;
  }
  .hbr-subtitle {
    color: #3d3d47;
  }
}

/* Overlay to darken image slightly */
.hbr-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* ===== Text Content ===== */
.hbr-content {
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}

.hbr-title {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.hbr-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
  color: #f0f0f0;
}

.hbr-anchor-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  a {
    background: #165a4a;
    border-radius: 30px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    width: 282px;
  }
  a:hover {
    background: #11614e;
  }
}

/* ===== Responsive Styles ===== */
@media (max-width: 768px) {
  .hbr-title {
    font-size: 2.2rem;
  }

  .hbr-subtitle {
    font-size: 1rem;
  }

  .hbr-banner {
    height: 50vh;
  }
}

/**gallery section***/

.hpg-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.hpg-container {
  max-width: 1200px;
  margin: 0 auto;
}

.hpg-header {
  text-align: center;
  margin-bottom: 50px;
}

.hpg-title {
  font-size: 42px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.hpg-subtitle {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.hpg-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  grid-auto-rows: 280px;
}

.hpg-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  background-color: #e0e0e0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hpg-item:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hpg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Masonry layout variations */
.hpg-item:nth-child(1) {
  grid-column: span 1;
  grid-row: span 2;
}

.hpg-item:nth-child(2) {
  grid-column: span 1;
  grid-row: span 1;
}

.hpg-item:nth-child(3) {
  grid-column: span 1;
  grid-row: span 1;
}

.hpg-item:nth-child(4) {
  grid-column: span 2;
  grid-row: span 1;
}

.hpg-item:nth-child(5) {
  grid-column: span 1;
  grid-row: span 1;
}

.hpg-item:nth-child(6) {
  grid-column: span 1;
  grid-row: span 2;
}

.hpg-item:nth-child(7) {
  grid-column: span 1;
  grid-row: span 1;
}

.hpg-item:nth-child(8) {
  grid-column: span 1;
  grid-row: span 1;
}

.hpg-item:nth-child(9) {
  grid-column: span 1;
  grid-row: span 1;
}

.hpg-item:nth-child(10) {
  grid-column: span 1;
  grid-row: span 1;
}

/* Modal Styles */
.hpg-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  animation: hpg-fadeIn 0.3s ease;
}

.hpg-modal.hpg-active {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes hpg-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hpg-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  animation: hpg-slideIn 0.3s ease;
}

@keyframes hpg-slideIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.hpg-modal-image {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.hpg-close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.hpg-close-btn:hover {
  color: #ccc;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hpg-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    grid-auto-rows: 240px;
  }

  .hpg-item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 2;
  }

  .hpg-item:nth-child(4) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .hpg-item:nth-child(6) {
    grid-column: span 1;
    grid-row: span 2;
  }
}

@media (max-width: 768px) {
  .hpg-section {
    padding: 40px 16px;
  }

  .hpg-title {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .hpg-subtitle {
    font-size: 14px;
  }

  .hpg-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    grid-auto-rows: 200px;
  }

  .hpg-item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .hpg-item:nth-child(4) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .hpg-item:nth-child(6) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .hpg-close-btn {
    top: -35px;
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .hpg-section {
    padding: 30px 12px;
  }

  .hpg-title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .hpg-subtitle {
    font-size: 13px;
  }

  .hpg-gallery {
    grid-template-columns: 1fr;
    gap: 10px;
    grid-auto-rows: 200px;
  }

  .hpg-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }

  .hpg-modal-content {
    max-width: 95%;
  }

  .hpg-close-btn {
    top: -30px;
    font-size: 24px;
  }
}

/***featured project css ***/

.hfp-container {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 100px;
}

.hfp-header {
  text-align: center;
  margin-bottom: 60px;
}

.hfp-title {
  font-size: 48px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hfp-subtitle {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.hfp-card {
  background-color: #1a1a1a;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 20px;
}

.hfp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.hfp-card-image {
  flex: 0 0 45%;
  overflow: hidden;
}

.hfp-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.hfp-card-content {
  flex: 1;
  padding: 50px 45px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}

.hfp-card-header {
  margin-bottom: 30px;
}

.hfp-card-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.hfp-card-description {
  font-size: 16px;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 24px;
}

.hfp-tags {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.hfp-tag {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
}

.hfp-button {
  background-color: #fff;
  color: #000;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 100%;
}

.hfp-button:hover {
  background-color: #f0f0f0;
  transform: scale(1.02);
}

.hfp-button:active {
  transform: scale(0.98);
}

/* Tablet Responsive */
@media (max-width: 768px) {
  .hfp-container {
    padding: 0 15px;
  }
  .hfp-title {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .hfp-subtitle {
    font-size: 16px;
  }

  .hfp-header {
    margin-bottom: 40px;
  }

  .hfp-card {
    flex-direction: column;
  }

  .hfp-card-image {
    flex: 0 0 auto;
    height: 300px;
    width: 100%;
  }

  .hfp-card-content {
    padding: 35px 30px;
  }

  .hfp-card-title {
    font-size: 28px;
  }

  .hfp-card-description {
    font-size: 15px;
  }
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .hfp-title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .hfp-subtitle {
    font-size: 14px;
  }

  .hfp-header {
    margin-bottom: 32px;
  }

  .hfp-card-image {
    height: 240px;
  }

  .hfp-card-content {
    padding: 24px 20px;
  }

  .hfp-card-title {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .hfp-card-description {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .hfp-tags {
    margin-bottom: 20px;
    gap: 8px;
  }

  .hfp-tag {
    font-size: 13px;
    padding: 6px 12px;
  }

  .hfp-button {
    padding: 12px 24px;
    font-size: 15px;
  }
}
