:root {
      --green: #123f2a;
      --green-2: #1f5a3c;
      --green-3: #6f9f72;
      --cream: #f7f4ee;
      --gold: #cbb27a;
      --dark: #17221c;
      --muted: #66736b;
      --white: #ffffff;
      --shadow: 0 24px 70px rgba(16, 44, 31, .14);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
	/* Body text */
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.6px;
}

p {
  font-weight: 400;
  letter-spacing: 0.1px;
}


    body {
      font-family: 'Inter', sans-serif;
      color: var(--dark);
      background: var(--cream);
      overflow-x: hidden;
    }

    img { width: 100%; display: block; object-fit: cover; }
    a { color: inherit; text-decoration: none; }
    .container { width: min(1280px, calc(100% - 72px)); margin: auto; }
    .eyebrow { color: #f4e707; text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 700; margin-bottom: 12px; }
    h1, h2, h3 { font-family: "Playfair Display", serif; line-height: 1.02; }
    h1 { font-size: clamp(46px, 7vw, 56px); color: white; max-width: 760px; }
    h2 { font-size: clamp(32px, 4vw, 58px); }
    p { color: var(--muted); line-height: 1.8; }

    .btn {
      display: inline-flex; align-items: center; gap: 12px;
      padding: 16px 24px; background: var(--green-2); color: white;
      border-radius: 999px; font-weight: 700; border: 0; cursor: pointer;
      transition: transform .3s ease, background .3s ease;
    }
    .btn:hover { transform: translateY(-3px); background: var(--green); }
	

    header {
      position: fixed; inset: 0 0 auto; z-index: 50; padding: 26px 0;
      transition: .35s ease; color: white;
    }
    /* When the header is scrolled, make it semi-transparent */
header.scrolled {
  background: rgb(18 63 42 / 41%); /* Semi-transparent green */
  backdrop-filter: blur(16px); /* Adds a blurred effect behind the header */
  padding: 16px 0;
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.12); /* Subtle shadow to make the logo more visible */
}

/* Optional: Make logo and text stand out */
.logo img {
  height: 50px; /* You can adjust the size */
  width: auto;
}
.mobile-menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--green-2);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 200;
}

.menu a {
  color: white;
  opacity: 0.88; /* Slightly less opacity to ensure readability */
  transition: opacity 0.3s ease;
}

.menu a:hover {
  opacity: 1;
  color: var(--gold); /* Highlight on hover */
}

/* MENU */
.menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* HIDDEN MENU */
.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: white;
  min-width: 220px;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

/* MENU ITEMS */
.dropdown-menu a {
  display: block;
  padding: 12px 18px;
  color: #17221c;
  font-size: 14px;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
  color: var(--green);
}

/* HOVER EFFECT */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
    .nav { display: flex; align-items: center; justify-content: space-between; }
    .logo { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: .03em; }
    .logo-mark { width: 42px; height: 42px; background: white; color: var(--green); border-radius: 50% 50% 50% 8%; display: grid; place-items: center; font-size: 24px; transform: rotate(-18deg); }
    .menu { display: flex; align-items: center; gap: 34px; font-size: 14px; font-weight: 700; }
	
	.about-section {
    display: flex;
    justify-content: center;
    padding: 50px;
    background-color: #f8f8f8;
}



.project-slider,
.awards-slider,
.media-slider {
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
}

.project-slider.dragging,
.awards-slider.dragging,
.media-slider.dragging {
  cursor: grabbing;
}

.awards-slider {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.award-item {
  scroll-snap-align: start;
  flex-shrink: 0;
}
.award-item h3 {
 font-family: "Playfair Display", serif;
  color: #244968;
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.4;
  white-space: normal;        /* allow line break */
  overflow: visible;          /* prevent cutting */
  text-overflow: unset;       /* remove ellipsis */
  word-break: break-word;     /* break long words if needed */
}


.content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}

.text-content {
    flex: 1;
    padding-right: 20px;
}

.heading {
    font-size: 36px;
    font-weight: bold;
    color: #2a2a2a;
    margin-bottom: 30px;
}

.mission-vision {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.mission, .vision {
    width: 48%;
}

h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    color: #666;
}
.about-box h3, .news-grid h3 {
    color: #244968;
}

.about-button {
    background-color: #005f73;
    color: white;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.about-button:hover {
    background-color: #0a7d83;
}

.image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
/* Hero section styles */
.hero { 
  height: 100vh; 
  position: relative; 
  display: flex; 
  align-items: center; 
  color: white; 
  overflow: hidden; 
}

.hero-slide { 
  position: absolute; 
  inset: 0; 
  opacity: 0; 
  transform: scale(1.06); 
  transition: opacity 1.2s ease, transform 5s ease; 
}

.hero-slide.active { 
  opacity: 1; 
  transform: scale(1); 
}

.hero-slide img { 
  height: 100%; 
}

.hero::after { 
  content: ""; 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(
  180deg,
  rgba(255,255,255,0.42) 0%,
  rgba(255,255,255,0.16) 20%,
  rgba(255,255,255,0) 36%,
  rgba(8,33,25,0.25) 50%,
  rgba(8,33,25,0.52) 75%,
  rgba(8,33,25,0.56) 100%
),
linear-gradient(
  90deg,
  rgba(8,33,25,0.50) 0%,
  rgba(8,33,25,0.38) 34%,
  rgba(8,33,25,0.18) 70%,
  rgba(8,33,25,0.08) 100%
) 
}

.hero-content { 
  position: relative; 
  z-index: 2; 
  padding-top: 90px; 
}

.hero p { 
  max-width: 540px; 
  color: rgba(255,255,255,.82); 
  margin: 24px 0 34px; 
}

.hero-bottom { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  margin-top: 72px; 
}

.call { 
  display: flex; 
  gap: 15px; 
  align-items: center; 
  color: white; 
}

.call-icon { 
  width: 52px; 
  height: 52px; 
  border: 1px solid rgba(255,255,255,.55); 
  border-radius: 50%; 
  display: grid; 
  place-items: center; 
}

.slider-controls { 
  display: flex; 
  gap: 12px; 
  align-items: center; 
  position: absolute;  /* Positioning them absolutely within the container */
  right: 20px;  /* Align to the right side */
  bottom: 90px;  /* Adjust distance from the bottom */
}

.dot { 
  width: 38px; 
  height: 3px; 
  background: rgba(255,255,255,.35); 
  border: 0; 
  cursor: pointer; 
}

.dot.active { 
  background: white; 
}

    section { padding: 110px 0; }
    .intro { background: white; }
    .intro-grid { display: grid; grid-template-columns: 1.1fr .9fr .75fr; gap: 36px; align-items: center; }
    .stats { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; background: var(--cream); padding: 54px 44px; border-radius: 22px; box-shadow: var(--shadow); }
    .stat strong { font-family: "Playfair Display"; font-size: 72px; color: var(--green-2); line-height: 1; }
    .intro-img { height: 330px; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); }

    .section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
  gap: 24px;
}
    
   /* Projects Section */
.projects {
  background: #fff;
  padding: 0px 0;
}

.projects .section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 55px;
}

.projects .section-head .eyebrow {
  color: var(--green-3);
  letter-spacing: 4px;
  font-size: 12px;
  text-transform: uppercase;
}

.projects .section-head h2 {
  font-size: clamp(38px, 4.5vw, 64px);
  line-height: 1.05;
  color: var(--dark);
}

.projects .section-head a, .media-section .section-head a, .news .section-head a {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c4a583;
  border-bottom: 1px solid #c4a583;
  padding-bottom: 8px;
}

.project-wrap {
  position: relative;
}

.project-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 44px) / 3);
  gap: 22px;
  overflow-x: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.project-slider::-webkit-scrollbar {
  display: none;
}

.project-card {
  height: 520px;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  box-shadow: none;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.project-card:hover img {
  transform: scale(1.06);
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,34,49,.08), rgba(12,34,49,.38), rgba(12,34,49,.82));
}

.project-info {
  position: absolute;
  left: 34px;
  right: 110px;
  bottom: 34px;
  z-index: 2;
  color: #fff;
}

.project-info h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 6px;
}

.project-info p {
  font-size: 15px;
  color: rgba(255,255,255,.9);
}

.project-number {
  position: absolute;
  right: 26px;
  bottom: 26px;
  z-index: 2;
  font-family: "Playfair Display", serif;
  font-size: 72px;
  line-height: 1;
  color: rgba(255,255,255,.45);
  font-weight: 700;
}

.project-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--green);
  box-shadow: 0 16px 45px rgba(0,0,0,.12);
  cursor: pointer;
}

.project-prev { left: -28px; }
.project-next { right: -28px; }



   /* Awards Section */
.awards {
  background: #fff;
  padding: 100px 0;
}

.text-center {
  text-align: center;
}

.awards-slider {
  display: flex;
  gap: 40px;
  overflow: hidden;
  margin-top: 70px;
  scroll-behavior: smooth;
}

.award-item {
  flex: 0 0 calc((100% - 120px) / 4); /* IMPORTANT */
  text-align: center;
  padding: 40px 30px;
  transition: all 0.35s ease;
  background: transparent;
}

.award-icon {
  font-size: 48px;
  color: #c4a583;
  margin-bottom: 25px;
}



.award-item p {
  font-size: 14px;
  color: #9aa3ad;
}

/* 🔥 HOVER EFFECT (not default active) */
.award-item:hover {
  background: #fff;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  transform: translateY(-12px);
}

/* DOTS */
.awards-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}

.awards-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #d5d5d5;
  cursor: pointer;
  transition: 0.3s;
}

.awards-dots button.active {
  background: #c4a583;
  transform: scale(1.3);
}

}



    
/* Testimonial Section */
.testimonial-section {
  background: #fff;
  padding: 0;
  overflow: hidden;
}
section#testimonials {
    padding: 0;
}

.testimonial-wrap {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: stretch; /* IMPORTANT */
}
.testimonial-image,
.testimonial-content {
  height: 100%;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  background: #f8f7f6;
  padding: 110px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-content .section-eyebrow {
  color: #c4a583;
  margin-bottom: 28px;
}

.testimonial-content .section-title {
  font-size: clamp(36px, 3.5vw, 54px);
  color: #244968;
  margin-bottom: 48px;
}

.testimonial-box {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  max-width: 560px;
}

.quote-icon {
  color: #c4a583;
  font-size: 58px;
  line-height: 1;
}

.testimonial-box p {
  font-size: 17px;
  line-height: 1.9;
  color: #8b96a1;
  margin-bottom: 28px;
}

.testimonial-box h4 {
  font-size: 17px;
  color: var(--dark);
  margin-bottom: 4px;
  font-weight: 700;
}

.testimonial-box span {
  font-size: 14px;
  color: #8b96a1;
}
/* Testimonial Slider */
.testimonial-slider {
  position: relative;
  max-width: 560px;
  min-height: 260px;
}

.testimonial-slide {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  inset: 0;
  transform: translateY(24px);
  transition: all 0.65s ease;
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  transform: translateY(0);
}

.testimonial-slide p {
  font-size: 17px;
  line-height: 1.9;
  color: #8b96a1;
  margin: 24px 0 28px;
}

.testimonial-slide h4 {
  font-size: 17px;
  color: var(--dark);
  margin-bottom: 4px;
  font-weight: 700;
}

.testimonial-slide span {
  font-size: 14px;
  color: #8b96a1;
}

.testimonial-dots {
  display: flex;
  gap: 10px;
  margin-top: 35px;
}

.testimonial-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: #d5d5d5;
  cursor: pointer;
}

.testimonial-dots button.active {
  background: #c4a583;
  transform: scale(1.25);
}





/* Media Section */
.media-section {
  background: #fff;
  padding: 100px 0;
  overflow: hidden;
}

.media-wrap {
  position: relative;
}

.media-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 44px) / 3);
  gap: 22px;
  overflow: hidden;
  scroll-behavior: smooth;
}

.media-card {
  background: #f8f7f6;
  transition: all .35s ease;
}

.media-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,.08);
}

.media-thumb {
  height: 310px;
  position: relative;
  overflow: hidden;
}

.media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.media-card:hover img {
  transform: scale(1.06);
}

.media-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #c4a583;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
}

.media-card h3 {
  font-size: 24px;
  line-height: 1.25;
  color: #244968;
  padding: 28px 28px 8px;
}

.media-card p {
  font-size: 14px;
  color: #8b96a1;
  padding: 0 28px 30px;
}

.media-arrow {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  z-index: 5;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--green);
  box-shadow: 0 16px 45px rgba(0,0,0,.12);
  cursor: pointer;
}

.media-prev { left: -28px; }
.media-next { right: -28px; }

.media-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 42px;
}

.media-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: #ddd;
  cursor: pointer;
}


.media-dots button.active {
  background: #c4a583;
  transform: scale(1.3);
}
.media-thumb iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.media-thumb iframe {
  animation: fadeIn .4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 991px) {
  .media-slider {
    grid-auto-columns: calc((100% - 22px) / 2);
  }
  
   .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .section-head a {
    align-self: flex-start;
  }
  .mobile-menu-btn {
    display: grid;
    place-items: center;
  }

  .menu {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    background: var(--green);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 22px 28px;
   
    z-index: 150;
	
	transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition:
      max-height 0.55s ease,
      opacity 0.4s ease,
      transform 0.45s ease,
      visibility 0.45s ease;
  }

  .menu.active {
	max-height: 520px;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
	  
  }

  .menu a {
    width: 100%;
    padding: 14px 0;
    color: #fff;
  }
 

  .dropdown {
    width: 100%;
  }

  .dropdown > a {
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: rgba(255,255,255,0.08);
    box-shadow: none;
    border-radius: 8px;
    margin-top: 6px;
    width: 100%;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    color: #fff;
    padding: 10px 14px;
  }

  .menu .btn {
    width: auto;
    margin-top: 12px;
  }
}

/*About us section */

.about-split-section {
  width: 100%;
  background: #fff;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}
.about-title {
    padding: 0 36px;
}

.about-top {
  position: relative;
  padding: 0px 0 60px;
  display: block;
}


/* RIGHT SIDE IMAGE */
.about-small-img {
  position: absolute;
  right: 0px;
  top: 80px;
  width: 260px;
  height: 650px;
  overflow: hidden;
}

.about-small-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-box {
    margin-bottom: 60px;
}
.about-content {
    padding: 110px 60px 46px;
}

.about-bottom {
  display: grid;
  grid-template-columns: 33% 40%;
  min-height: 460px;
  background: #f8f7f6;
}


.about-main-img img {
  width: 30vw;
    max-width: 40vw;
    height: 654px;
    object-fit: cover;
    object-position: center center;
}



.about-title,
.about-main-img,
.about-content,
.about-small-img {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.8s ease;
}

.about-visible .about-title,
.about-visible .about-main-img,
.about-visible .about-content,
.about-visible .about-small-img {
  opacity: 1;
  transform: translateY(0);
}



/*whychoose section*/
.choose-section {
  background: #fff;
  padding: 70px 0 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(45px);
  transition: all 0.85s ease;
}

.choose-section.choose-visible {
  opacity: 1;
  transform: translateY(0);
}

.choose-head {
  padding-left: 36px;
  margin-bottom: 70px;
}

.choose-slider {
  position: relative;
  background: transparent;
}

.choose-slide {
  display: grid;
  grid-template-columns: 52% 48%;
  align-items: stretch;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  inset: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.choose-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.choose-image {
  position: relative;
  z-index: 2;
}

.choose-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding-top: 80px;
}

.choose-content {
  background: #f8f7f6;
  height: 590px;
  min-height: 590px;
  padding: 130px 110px 90px 238px;
  margin-left: -160px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.choose-icon {
  color: #c4a583;
  font-size: 54px;
  margin-bottom: 45px;
}

.choose-content h3 {
  font-size: 30px;
  line-height: 1.2;
  color: #244968;
  margin: 0 0 28px;
}

.choose-content p {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.9;
  color: #8793a0;
  margin: 0;
}

.choose-arrows {
  position: absolute;
  left: calc(52% + 80px);
  bottom: 20px;
  display: flex;
  gap: 14px;
  z-index: 5;
}

.choose-arrows button {
  width: 58px;
  height: 58px;
  border: 1px solid #ebe7e2;
  background: #1e583b;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.choose-arrows button:hover {
  background: var(--green);
  color: #fff;
}

.choose-arrows button i {
  transition: transform 0.3s ease;
}

.choose-arrows button:hover i {
  transform: translateX(3px);
}

#choosePrev:hover i {
  transform: translateX(-3px);
}

/* Choose slider animation */
.choose-slide .choose-image img,
.choose-slide .choose-icon,
.choose-slide h3,
.choose-slide p {
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.75s ease;
}

.choose-slide .choose-image img {
  transform: scale(1.08);
  transition: opacity 0.8s ease, transform 1.2s ease;
}

.choose-slide.active .choose-image img {
  opacity: 1;
  transform: scale(1);
}

.choose-slide.active .choose-icon {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.18s;
}

.choose-slide.active h3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.28s;
}

.choose-slide.active p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.38s;
}




/*whychoose section*/


.quote p { color: rgba(255,255,255,.78); margin: 22px 0; }
    
    .play { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 82px; height: 82px; border-radius: 50%; border: 1px solid rgba(255,255,255,.7); background: rgba(255,255,255,.12); color: white; font-size: 28px; display: grid; place-items: center; }

    .services { background: white; }
    .service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
    .service { padding: 42px; border-radius: 22px; background: #fbfaf7; transition: .35s ease; }
    .service:hover { transform: translateY(-10px); box-shadow: var(--shadow); }
    .icon { font-size: 48px; color: var(--green-2); margin-bottom: 18px; }

    .news { background: #fbfaf7; }
    .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
    .news-card { background: white; border-radius: 18px; overflow: hidden; box-shadow: 0 12px 38px rgba(0,0,0,.06); transition: .35s ease; }
    .news-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
    .news-card img { height: 230px; }
    .news-body { padding: 28px; }
    .tag { font-size: 11px; font-weight: 800; color: var(--green-2); background: #e9f1ea; padding: 7px 10px; border-radius: 999px; display: inline-block; margin-bottom: 14px; }

    footer { background: linear-gradient(rgba(18,63,42,.94), rgba(18,63,42,.94)), url('../images/footer.png') center/cover; color: white; padding: 76px 0 28px; }
    .footer-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr 1.2fr; gap: 44px; }
    

/* HEADINGS WHITE FIX */
footer h2,
footer h3 {
  color: #fff;
}

/* TEXT */
footer p,
footer li,
footer a,
footer span {
  color: rgba(255,255,255,0.85);
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  position: relative;
  padding-left: 22px;
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  transition: 0.3s;
}

/* ICON USING CSS */
.footer-links a::before {
  content: "\f061"; /* fa-arrow-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;

  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  font-size: 11px;
  color: #c4a583;
  transition: 0.3s;
}

/* Hover animation */
.footer-links a:hover {
  color: #fff;
  transform: translateX(6px);
}

.footer-links a:hover::before {
  transform: translate(4px, -50%);
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #c4a583;
}

/* ICONS */
.footer-contact i {
  margin-right: 8px;
  color: #c4a583;
}

/* NEWSLETTER */
.newsletter {
  display: flex;
  margin-top: 15px;
}

.newsletter input {
  flex: 1;
  padding: 14px;
  border: none;
  outline: none;
}

.newsletter button {
  width: 60px;
  background: #c4a583;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* COPYRIGHT */
.copyright {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
	
	
	
    .newsletter { display: flex; background: white; border-radius: 999px; overflow: hidden; margin-top: 18px; }
    .newsletter input { flex: 1; border: 0; padding: 16px 18px; outline: 0; }
    .newsletter button { border: 0; background: var(--gold); padding: 0 22px; font-weight: 800; cursor: pointer; }
    .copyright { border-top: 1px solid rgba(255,255,255,.14); margin-top: 58px; padding-top: 24px; font-size: 13px; display: flex; justify-content: space-between; }

    .reveal { opacity: 0; transform: translateY(55px); transition: opacity .85s ease, transform .85s ease; }
    .reveal.show { opacity: 1; transform: translateY(0); }
    .delay-1 { transition-delay: .12s; } .delay-2 { transition-delay: .24s; } .delay-3 { transition-delay: .36s; }


    
	
	/* =====================================================
   RESPONSIVE CSS - TABLET
   ===================================================== */
@media (max-width: 991px) {

  .container {
    width: min(100% - 34px, 1280px);
  }

  

  section {
    padding: 80px 0;
  }

  .intro-grid,
  .split,
  .quote,
  .service-grid,
  .news-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  /* Projects */
  .project-slider {
    grid-auto-columns: calc((100% - 22px) / 2);
  }

  .project-card {
    height: 460px;
  }

  /* Awards */
  .award-item {
    min-width: calc((100% - 40px) / 2);
  }

  /* Testimonial */
  .testimonial-wrap {
    grid-template-columns: 1fr;
  }

  .testimonial-image {
    height: 420px;
  }

  .testimonial-content {
    padding: 70px 45px;
  }

  /* Media */
  .media-slider {
    grid-auto-columns: calc((100% - 22px) / 2);
  }

  /* About */
  .about-top {
    padding: 40px 0;
  }

  .about-title {
    padding: 0 30px;
  }

  .about-small-img {
    display: none;
  }

  .about-bottom {
    grid-template-columns: 1fr;
  }

  .about-main-img img {
    width: 100%;
    max-width: 100%;
    height: 400px;
  }

  .about-content {
    padding: 60px 40px;
  }

  .about-box {
    margin-bottom: 40px;
  }

  /* Why Choose */
  .choose-head {
    padding: 0 30px;
    margin-bottom: 45px;
  }

  .choose-head h2 {
    font-size: 40px;
  }

  .choose-slide {
    grid-template-columns: 1fr;
  }

  .choose-image {
    height: 420px;
  }

  .choose-image img {
    padding-top: 0;
  }

  .choose-content {
    margin-left: 0;
    height: auto;
    min-height: auto;
    padding: 70px 45px 130px;
  }

  .choose-arrows {
    left: 45px;
    right: auto;
    bottom: 50px;
  }
}


/* =====================================================
   RESPONSIVE CSS - MOBILE
   ===================================================== */
@media (max-width: 575px) {

  section {
    padding: 72px 0;
  }
   .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 30px;
  }

  .section-head h2 {
    font-size: 28px; /* adjust heading */
    line-height: 1.3;
  }

  .section-head a {
    font-size: 14px;
  }

  .container {
    width: calc(100% - 30px);
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .copyright {
    flex-direction: column;
    gap: 10px;
  }

  /* Projects */
  .projects {
    padding: 70px 0;
  }

  .projects .section-head {
    display: block;
  }

  .projects .section-head a {
    display: inline-block;
    margin-top: 20px;
  }

  .project-slider {
    grid-auto-columns: 85%;
  }

  .project-card {
    height: 390px;
  }

  .project-number {
    font-size: 52px;
  }

  /* Awards */
  .award-item {
    min-width: 100%;
  }

  /* Testimonial */
  .testimonial-image {
    height: 320px;
  }

  .testimonial-content {
    padding: 50px 24px;
  }

  .testimonial-box {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .quote-icon {
    font-size: 44px;
  }

  .testimonial-box p,
  .testimonial-slide p {
    font-size: 14px;
  }

  /* Media */
  .media-slider {
    grid-auto-columns: 85%;
  }

  .media-thumb {
    height: 240px;
  }

  /* About */
  .about-top {
    padding: 30px 0 20px;
  }

  .about-title {
    padding: 0 20px;
  }

  .about-title h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .about-main-img img {
    height: 280px;
  }

  .about-content {
    padding: 40px 20px;
  }

  .about-box h3 {
    font-size: 18px;
  }

  .about-box p {
    font-size: 14px;
  }

  .about-btn {
    font-size: 10px;
    padding: 14px 22px;
  }

  /* Why Choose */
  .choose-section {
    padding-top: 50px;
  }

  .choose-head {
    padding: 0 20px;
    margin-bottom: 35px;
  }

  .choose-head h2 {
    font-size: 32px;
  }

  .choose-image {
    height: 320px;
  }

  .choose-content {
    padding: 50px 24px 120px;
  }

  .choose-icon {
    font-size: 42px;
    margin-bottom: 28px;
  }

  .choose-content h3 {
    font-size: 24px;
  }

  .choose-content p {
    font-size: 14px;
  }

  .choose-arrows {
    left: 24px;
    bottom: 42px;
  }

  .choose-arrows button {
    width: 50px;
    height: 50px;
  }

  /* Footer */
  .newsletter {
    max-width: 100%;
  }
}