@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Jost:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --orange: #fa8900;
  --darkblue: #001868;
  --ligtblue: #232d8c;
  --black: #000;
  --white: #fff;
  --light-color: #666;
  --light-bg: #eee;
  --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  --border: 0.1rem solid rgba(0, 0, 0, 0.3);
  --screw-spin-duration: 12s;
}

* {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}
html::-webkit-scrollbar {
  width: 1rem;
}
html::-webkit-scrollbar-track {
  background-color: transparent;
}
html::-webkit-scrollbar-thumb {
  background-color: var(--orange);
}

section {
  padding: 5rem 10%;
}

.heading {
  margin-bottom: 3rem;
  font-size: 3rem;
  color: var(--darkblue);
  text-transform: capitalize;
  padding-left: 1rem;
  border-left: 2rem solid var(--orange);
  background: rgba(225, 225, 225, 0.7);
  padding: 5rem;
  border-radius: 10px;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 3rem;
  border-radius: 0.5rem;
  background-color: var(--ligtblue);
  color: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
  text-transform: capitalize;
  transition: 0.2s ease;
}
.btn:hover {
  background-color: var(--orange);
  color: var(--darkblue);
}

@keyframes fadeIn {
  0% {
    top: 50%;
    opacity: 0;
  }
}
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  padding: 1.7rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2000;
  background: var(--white);
  font-weight: bolder;
}
.header .logo {
  font-size: 3rem;
  color: var(--darkblue);
  text-transform: capitalize;
}
.header .logo span {
  color: var(--orange);
}
.header .navbar a {
  font-size: 1.7rem;
  color: var(--darkblue);
  text-transform: capitalize;
  margin: 0 1rem;
}
.header .navbar a:hover {
  color: var(--orange);
}
.header .icons div {
  height: 3rem;
  width: 3rem;
  line-height: 3rem;
  font-size: 2rem;
  background-color: var(--light-bg);
  color: var(--darkblue);
  cursor: pointer;
  text-align: center;
  border-radius: 10%;
  margin-left: 0.3rem;
  position: relative;
  z-index: 2100;
}
.header .icons div:hover {
  background-color: var(--darkblue);
  color: var(--white);
}
.header #menu-btn {
  display: none;
}

/* ========== HOME (final merged, bullets overlay) ========== */
.home {
  padding: 0;
  position: relative;
  /* Slider container */
  /* Slide */
  /* Static heading on top-left */
  /* Layout helpers for smaller screens */
  /* Smaller bullets on very small screens (optional) */
}
.home .home-slider {
  position: relative;
  padding-bottom: 0 !important;
  /* ✅ Pagination OVER the slides */
}
.home .home-slider .swiper-wrapper {
  position: relative;
  z-index: 10;
}
.home .home-slider .swiper-pagination {
  position: absolute !important;
  left: 0;
  right: 0;
  bottom: 2rem; /* your original placement */
  margin: 0 auto;
  text-align: center;
  z-index: 40; /* above slides/thumbnails */
  pointer-events: auto;
}
.home .home-slider .swiper-pagination .swiper-pagination-bullet {
  width: 2rem;
  height: 2rem;
  background: var(--white);
  opacity: 0.7;
  margin: 0 0.3rem !important;
  cursor: pointer;
  border: 1px solid var(--darkblue);
}
.home .home-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--orange);
  opacity: 1;
}
.home .slide {
  min-height: 93vh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  /* Gradient overlay must not block clicks */
  /* Content */
  /* THUMBNAILS — keep your original layout/animations */
}
.home .slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--white), transparent);
  pointer-events: none;
  z-index: 1;
}
.home .slide .content {
  width: 50rem;
  position: relative;
  z-index: 15;
}
.home .slide .content h3 {
  font-size: 5rem;
  color: var(--darkblue);
  text-transform: capitalize;
  text-transform: uppercase;
}
.home .slide .content p {
  font-size: 2rem;
  color: var(--light-color);
  line-height: 2;
  padding: 1rem 0;
}
.home .slide .thumbnails {
  position: absolute;
  bottom: 50%;
  right: 5%;
  width: 25rem;
  height: 25rem;
  z-index: 15;
  /* Keyframes (same positions as your original) */
  /* Medium screens */
  /* Small screens / mobile */
}
.home .slide .thumbnails .thumbnail-wrapper {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 0;
  right: 0;
  opacity: 0;
  transform: translate(0, 0);
  /* Appear animations */
}
.home .slide .thumbnails .thumbnail-wrapper img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 4px solid var(--darkblue);
  object-fit: cover;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.home .slide .thumbnails .thumbnail-wrapper img:hover {
  transform: scale(1.3);
  box-shadow: 0 0.7rem 2rem rgba(0, 0, 0, 0.4);
}
.home .slide .thumbnails .thumbnail-wrapper.thumb1 {
  animation: float1 1s forwards;
  animation-delay: 0.2s;
}
.home .slide .thumbnails .thumbnail-wrapper.thumb2 {
  animation: float2 1s forwards;
  animation-delay: 0.4s;
}
.home .slide .thumbnails .thumbnail-wrapper.thumb3 {
  animation: float3 1s forwards;
  animation-delay: 0.6s;
}
.home .slide .thumbnails .thumbnail-wrapper.thumb4 {
  animation: float4 1s forwards;
  animation-delay: 0.8s;
}
@keyframes float1 {
  0% {
    top: 0;
    right: 0;
    opacity: 0;
  }
  100% {
    top: 0%;
    right: 10%;
    opacity: 1;
  }
}
@keyframes float2 {
  0% {
    top: 0;
    right: 0;
    opacity: 0;
  }
  100% {
    top: 40%;
    right: 80%;
    opacity: 1;
  }
}
@keyframes float3 {
  0% {
    top: 0;
    right: 0;
    opacity: 0;
  }
  100% {
    top: 80%;
    right: 10%;
    opacity: 1;
  }
}
@keyframes float4 {
  0% {
    top: 0;
    right: 0;
    opacity: 0;
  }
  100% {
    top: 120%;
    right: 80%;
    opacity: 1;
  }
}
@media (max-width: 1350px) {
  .home .slide .thumbnails {
    width: 20rem;
    height: 20rem;
  }
  .home .slide .thumbnails .thumbnail-wrapper {
    width: 150px;
    height: 150px;
  }
  .home .slide .thumbnails .thumbnail-wrapper img {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 768px) {
  .home .slide .thumbnails {
    position: static;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
  }
  .home .slide .thumbnails .thumbnail-wrapper {
    position: static;
    width: 100px;
    height: 100px;
  }
  .home .slide .thumbnails .thumbnail-wrapper img {
    width: 100px;
    height: 100px;
  }
}
.home .static-content {
  position: absolute;
  top: 7rem;
  left: 8.5rem;
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeSlideIn 1s forwards ease-out;
  animation-delay: 0.5s;
}
.home .static-content h3 {
  font-size: 3rem;
  color: var(--darkblue);
  text-transform: capitalize;
  color: var(--darkblue);
  letter-spacing: 2px;
  line-height: 1.2;
}
.home .static-content p {
  font-size: 3rem;
  color: var(--darkblue);
  text-transform: capitalize;
  color: var(--orange);
  margin-top: 0.5rem;
  letter-spacing: 1px;
  line-height: 1.4;
}
.home .static-content h3,
.home .static-content p {
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .home .static-content h3 {
    font-size: 2rem;
    color: var(--darkblue);
    text-transform: capitalize;
  }
  .home .static-content p {
    font-size: 2rem;
    color: var(--darkblue);
    text-transform: capitalize;
  }
}
@media (max-width: 991px) {
  .home .slide {
    justify-content: center;
  }
  .home .slide .content {
    text-align: center;
  }
}
@media (max-width: 450px) {
  .home .home-slider .swiper-pagination .swiper-pagination-bullet {
    width: 1.4rem;
    height: 1.4rem;
  }
}

.about {
  position: relative;
  overflow: hidden;
}
.about::before {
  content: "";
  position: absolute;
  width: 45rem;
  height: 35rem;
  bottom: -8rem;
  left: -12rem;
  background-color: var(--darkblue);
  opacity: 0.7;
  border-radius: 50% 40% 60% 50%/50% 60% 40% 50%;
  transform: rotate(20deg);
  z-index: 0;
}
.about::after {
  content: "";
  position: absolute;
  width: 25rem;
  height: 25rem;
  top: -3rem;
  right: -6rem;
  background-color: var(--orange);
  opacity: 0.7;
  border-radius: 60% 40% 50% 50%/50% 50% 40% 60%;
  transform: rotate(-25deg);
  z-index: 0;
}
.about .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  z-index: 10;
}
.about .row .video {
  flex: 1 1 52rem;
  z-index: 10;
  position: relative;
  overflow: hidden;
}
.about .row .video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(25% 0%, 100% 0%, 85% 80%, 15% 100%, 0% 85%);
  border-radius: 1rem;
  transition: clip-path 2s ease-in-out;
  animation: morph 18s infinite alternate ease-in-out;
}
@keyframes morph {
  0% {
    clip-path: polygon(25% 0%, 100% 0%, 85% 80%, 15% 100%, 0% 85%);
  }
  10% {
    clip-path: polygon(20% 5%, 100% 0%, 90% 75%, 10% 100%, 0% 80%);
  }
  20% {
    clip-path: polygon(30% 2%, 100% 0%, 80% 85%, 20% 100%, 0% 90%);
  }
  30% {
    clip-path: polygon(25% 0%, 100% 0%, 87% 75%, 12% 100%, 0% 80%);
  }
  40% {
    clip-path: polygon(28% 0%, 100% 0%, 82% 80%, 17% 100%, 0% 88%);
  }
  50% {
    clip-path: polygon(22% 3%, 100% 0%, 88% 85%, 12% 100%, 0% 85%);
  }
  60% {
    clip-path: polygon(28% 1%, 100% 0%, 82% 75%, 17% 100%, 0% 82%);
  }
  70% {
    clip-path: polygon(25% 0%, 100% 0%, 87% 80%, 12% 100%, 0% 85%);
  }
  80% {
    clip-path: polygon(22% 2%, 100% 0%, 90% 75%, 10% 100%, 0% 82%);
  }
  90% {
    clip-path: polygon(28% 0%, 100% 0%, 82% 80%, 17% 100%, 0% 85%);
  }
  100% {
    clip-path: polygon(22% 0%, 100% 0%, 88% 85%, 12% 100%, 0% 85%);
  }
}
.about .row p {
  font-size: 2.5rem;
  color: var(--darkblue);
  text-transform: capitalize;
  padding: 3rem;
  color: var(--darkblue);
  font-weight: bold;
  z-index: 10;
}
.about .row p span {
  color: var(--orange);
}
.about .row .content {
  flex: 1 1 41rem;
  z-index: 10;
}
.about .row .content h3 {
  font-size: 2.5rem;
  color: var(--darkblue);
  text-transform: capitalize;
  color: var(--darkblue);
}
.about .row .content p {
  font-size: 2rem;
  color: var(--light-color);
  line-height: 2;
  color: var(--ligtblue);
  padding: 1rem 0;
  font-weight: normal;
  line-height: 1.5;
}
.about .row .content li {
  font-size: 2rem;
  color: var(--light-color);
  line-height: 2;
  color: var(--ligtblue);
  padding: 0.5rem 0;
  margin-left: 5rem;
  line-height: 1;
}
.about .box-container {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem;
  align-items: flex-end;
  z-index: 10;
}
.about .box-container .box {
  text-align: center;
  background: var(--light-bg);
  padding: 3rem 2rem;
  z-index: 10;
  border-radius: 5px;
}
.about .box-container .box h3 {
  font-size: 4rem;
  color: var(--darkblue);
  text-transform: capitalize;
}
.about .box-container .box p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding-top: 0.5rem;
}

.services {
  background-image: url("/images/james-sullivan-ESZRBtkQ_f8-unsplash.jpg");
  min-height: 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}
.services .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 2rem;
  background: rgba(255, 255, 255, 0.7);
  padding: 3rem;
  border-radius: 10px;
}
.services .box-container .box {
  text-align: center;
  padding: 3rem;
  background: var(--white);
  box-shadow: var(--box-shadow);
  border: var(--border);
  z-index: 10;
  border-radius: 10px;
}
.services .box-container .box:hover img {
  transform: translateY(-1rem);
}
.services .box-container .box img {
  height: 15rem;
  max-width: 20rem;
  margin-bottom: 0.5rem;
  object-fit: cover;
  transition: 0.2s linear;
  border-radius: 10px;
}
.services .box-container .box h3 {
  font-size: 2rem;
  color: var(--darkblue);
  text-transform: capitalize;
  padding: 2rem 0;
}
.services .box-container .box li {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  margin-left: 3rem;
  text-align: start;
  line-height: 1.4;
  padding-bottom: 1.2rem;
}

.projects {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.projects::before {
  content: "";
  position: absolute;
  width: 80rem;
  height: 60rem;
  bottom: -10rem;
  left: -20rem;
  background-color: var(--darkblue);
  opacity: 0.75;
  clip-path: polygon(10% 0%, 85% 5%, 90% 60%, 70% 85%, 20% 100%, 0% 75%);
  transform: rotate(-15deg) skewX(10deg);
  z-index: 0;
}
.projects::after {
  content: "";
  position: absolute;
  width: 40rem;
  height: 50rem;
  top: -15rem;
  right: -25rem;
  background-color: var(--orange);
  opacity: 0.7;
  clip-path: polygon(15% 5%, 85% 0%, 100% 50%, 70% 100%, 10% 90%, 0% 60%);
  transform: rotate(20deg) skewY(-15deg);
  z-index: 0;
}
.projects .heading {
  color: var(--darkblue);
  position: relative;
  z-index: 1;
}
.projects .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
  padding: 10rem 0;
  position: relative;
  z-index: 1;
}
.projects .box-container .box {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  border: var(--border);
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.projects .box-container .box:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.projects .box-container .box:hover .image img {
  transform: scale(1.06);
}
.projects .box-container .box .image {
  height: 30rem;
  overflow: hidden;
  cursor: zoom-in;
}
.projects .box-container .box .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  display: block;
}
.projects .box-container .box .content {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: var(--light-bg);
  border-top: var(--border);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.projects .box-container .box .content .info {
  padding: 1rem 2rem;
}
.projects .box-container .box .content .info h3 {
  font-size: 1.7rem;
  color: var(--darkblue);
  text-transform: capitalize;
  color: var(--darkblue);
}
.projects .box-container .box .content .info p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  color: #445;
  opacity: 0.9;
  line-height: 1;
  padding: 1rem 0;
}
.projects .box-container .box .content .plus {
  display: grid;
  place-items: center;
  width: 7.5rem;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  border-left: var(--border);
  border-bottom-right-radius: 10px;
  position: relative;
  z-index: 3;
}
.projects .box-container .box .content .plus i {
  font-size: 3rem;
  line-height: 1;
}
.projects .box-container .box .content .plus:hover {
  filter: brightness(0.95);
}
.projects .box-container .box .content .plus:active {
  transform: scale(0.98);
}
.projects .box-container .box .content .plus:focus-visible {
  outline: 3px solid rgba(0, 0, 0, 0.2);
  outline-offset: -3px;
}
.projects .gallery-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}
.projects .gallery-modal.is-open {
  display: block;
}
.projects .gallery-modal .gm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  z-index: 0;
}
.projects .gallery-modal .gm-image {
  position: absolute;
  max-width: 90vw;
  max-height: 80vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  background: #111;
  object-fit: contain;
  z-index: 1;
}
.projects .gallery-modal .gm-close,
.projects .gallery-modal .gm-nav {
  position: absolute;
  z-index: 2;
}
.projects .gallery-modal .gm-close {
  top: 16px;
  right: 20px;
  font-size: 36px;
  background: transparent;
  color: #fff;
  border: 0;
  cursor: pointer;
}
.projects .gallery-modal .gm-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.projects .gallery-modal .gm-prev {
  left: 20px;
}
.projects .gallery-modal .gm-next {
  right: 20px;
}

@media (max-width: 991px) {
  .box-container .box .image {
    height: 26rem;
  }
  .box-container .box .content .plus {
    width: 6.5rem;
  }
}
@media (max-width: 640px) {
  .box-container {
    padding: 6rem 0;
  }
  .box-container .box .image {
    height: 22rem;
  }
  .box-container .box .content .info {
    padding: 1rem 1.2rem;
  }
}
.project-nav {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.project-nav a {
  padding: 0.6rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
}
.project-nav a:hover {
  background: #f7f9ff;
}

.project-hero {
  position: relative;
  min-height: 48vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #0b142a;
  color: #fff;
}
.project-hero .cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: saturate(1.1) contrast(1.05);
}
.project-hero .inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4rem 1.5rem;
}
.project-hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  margin: 0 0 0.5rem;
}
.project-hero .subtitle {
  opacity: 0.9;
  font-size: clamp(14px, 2.4vw, 18px);
  margin: 0;
}

.project-body {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 1.2rem 4rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
}
@media (max-width: 900px) {
  .project-body {
    grid-template-columns: 1fr;
  }
}

.project-desc {
  background: var(--light-bg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 1.2rem 1.4rem;
}
.project-desc h2 {
  margin: 0.2rem 0 1rem;
  font-size: 22px;
  color: var(--darkblue);
}

.project-facts {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 1.2rem 1.4rem;
}
.project-facts h3 {
  margin: 0.2rem 0 1rem;
  font-size: 18px;
  color: var(--darkblue);
}
.project-facts ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.project-facts li {
  padding: 0.4rem 0;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.08);
}
.project-facts li:last-child {
  border-bottom: 0;
}

.gallery {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
.gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  cursor: zoom-in;
  transition: transform 0.2s ease;
}
.gallery img:hover {
  transform: translateY(-2px);
}

.lb {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
  isolation: isolate;
}
.lb.open {
  display: block;
}
.lb .backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  z-index: 0;
}
.lb img {
  position: absolute;
  max-width: 92vw;
  max-height: 84vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
  background: #111;
  z-index: 1;
}
.lb .close,
.lb .prev,
.lb .next {
  position: absolute;
  z-index: 2;
  border: 0;
  cursor: pointer;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 26px;
  background: #fff;
  color: #111;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}
.lb .close {
  top: 16px;
  right: 18px;
}
.lb .prev {
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
}
.lb .next {
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
}

.reviews {
  background: var(--light-bg);
}
.reviews .reviews-frame {
  position: relative;
  border-radius: 0.8rem;
  padding: 5rem 1rem;
  margin-top: 2rem;
}
.reviews .reviews-frame .frame-screw {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 70px;
  height: 70px;
  object-fit: contain;
  pointer-events: none;
  animation: spin-slow var(--screw-spin-duration) linear infinite;
  will-change: transform;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
  z-index: 20;
}
.reviews .slide p {
  padding: 1.5rem;
  background: var(--light-bg);
  position: relative;
  margin-bottom: 3rem;
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
}
.reviews .slide p::before {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 2rem;
  height: 2rem;
  width: 2rem;
  background: var(--light-bg);
  transform: rotate(45deg);
}
.reviews .slide .user {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.reviews .slide .user img {
  height: 8rem;
  width: 8rem;
  object-fit: cover;
}
.reviews .slide .user h3 {
  font-size: 1.7rem;
  color: var(--darkblue);
  text-transform: capitalize;
}
.reviews .slide .user .stars {
  padding-top: 0.5rem;
}
.reviews .slide .user .stars i {
  font-size: 1.4rem;
  color: var(--orange);
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
.pricing {
  background-image: url("/images/7ff9b7e9-9ac6-4ba1-8557-f64a6298e098.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.pricing .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 2rem;
  background: rgba(255, 255, 255, 0.7);
  padding: 3rem;
  border-radius: 10px;
  /* make all boxes stretch equally */
  align-items: stretch;
}
.pricing .box-container .box {
  background: var(--white);
  text-align: center;
  padding: 2rem;
  border: var(--border);
  box-shadow: var(--box-shadow);
  border-radius: 10px;
  /* flex layout to push button down */
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pricing .box-container .box i {
  font-size: 4rem;
  height: 7rem;
  width: 7rem;
  line-height: 7rem;
  border-radius: 50%;
  margin-bottom: 2rem;
  background: var(--orange);
  color: var(--darkblue);
  align-self: center;
}
.pricing .box-container .box h3 {
  font-size: 2rem;
  color: var(--darkblue);
  text-transform: capitalize;
  font-weight: normal;
}
.pricing .box-container .box .price {
  padding: 1rem 0;
  font-size: 5rem;
  color: var(--darkblue);
  text-transform: capitalize;
}
.pricing .box-container .box .price span {
  font-size: 2rem;
}
.pricing .box-container .box .list {
  padding: 0.6rem 0;
  flex: 1 1 auto;
}
.pricing .box-container .box .list p {
  padding: 0.6rem 0;
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
}
.pricing .box-container .box .btn {
  margin-top: auto;
  display: inline-block;
}

.blog {
  background: var(--light-bg);
}
.blog .slide {
  text-align: center;
}
.blog .slide:hover .image img {
  transform: scale(1.1);
}
.blog .slide .image {
  height: 30rem;
  width: 80%;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: -3rem;
  border-radius: 10px;
}
.blog .slide .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.2s linear;
}
.blog .slide .content {
  padding: 2rem;
  padding-top: 6rem;
  min-height: 30rem;
  background: var(--white);
  box-shadow: 0 0rem 1.5rem rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  max-height: none;
  opacity: 1;
  overflow: visible;
}
.blog .slide .content h3 {
  font-size: 2rem;
  color: var(--darkblue);
  text-transform: capitalize;
  padding-bottom: 2rem;
}
.blog .slide .content p {
  max-height: none !important;
  opacity: 1 !important;
  overflow: visible !important;
  transition: none !important; /* optional: remove animation */
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
}
.blog .slide .content a.btn {
  cursor: pointer;
}
.blog .blogs-slider {
  position: relative;
  padding-bottom: 5rem;
}
.blog .blogs-slider .swiper-wrapper {
  position: relative;
  z-index: 1;
}
.blog .blogs-slider .swiper-pagination {
  position: static !important;
  margin-top: 1rem;
  text-align: center;
  z-index: 10;
  pointer-events: auto;
}
.blog .blogs-slider .swiper-pagination .swiper-pagination-bullet {
  width: 2rem;
  height: 2rem;
  background: var(--white);
  opacity: 0.7;
  margin: 0 0.3rem !important;
  cursor: pointer;
  border: 1px solid var(--darkblue);
}
.blog .blogs-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--orange);
  opacity: 1;
}

.contact {
  background: var(--ligtblue);
}
.contact .row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: stretch;
}
.contact .row .map {
  flex: 1 1 21rem;
  width: 100%;
  height: 50rem;
  max-height: 50vh;
}
.contact .row form {
  flex: 1 1 21rem;
  background: var(--white);
  padding: 2rem;
}
.contact .row form h3 {
  font-size: 2.5rem;
  color: var(--darkblue);
  text-transform: capitalize;
}
.contact .row form .box {
  margin: 0.7rem 0;
  width: 100%;
  padding: 1.5rem 0;
  border-bottom: var(--border);
  font-size: 1.6rem;
  color: var(--darkblue);
}
.contact .row form .boxfocus {
  border-color: var(--orange);
}
.contact .row form textarea {
  height: 15rem;
  resize: none;
}

.footer {
  text-align: center;
}
.footer .links .btn {
  margin: 0.5rem;
}
.footer .credit {
  font-size: 2rem;
  color: var(--darkblue);
  text-transform: capitalize;
  margin-top: 2rem;
  padding-top: 1rem;
}
.footer .credit span {
  color: var(--orange);
}

#whatsapp-fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  display: grid;
  place-items: center;
  z-index: 99999;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
#whatsapp-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}
#whatsapp-fab:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}
#whatsapp-fab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  animation: wa-pulse 2.2s infinite;
  pointer-events: none;
}

@keyframes wa-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
@media (max-width: 1200px) {
  .header {
    padding: 1.5rem 2rem;
  }
  section {
    padding: 3rem 5%;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
  section {
    padding: 3rem 2rem;
  }
  .header #menu-btn {
    display: inline-block;
  }
  .header .navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-top: var(--border);
    border-bottom: var(--border);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: 0.2s linear;
  }
  .header .navbar.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .header .navbar a {
    display: block;
    margin: 2rem;
  }
}
@media (max-width: 768px) {
  .home .slide {
    justify-content: center;
  }
  .home .slide .content {
    text-align: center;
  }
  .home .slide .content h3 {
    font-size: 3rem;
  }
}
@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
}
/* HOME: overlay pagination on top of slides (not below) */
/* --- Premium hero --- */
.pro-hero {
  min-height: 54vh;
  display: grid;
  place-items: center;
  background: #0b142a;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.pro-hero .cover {
  opacity: 0.38;
  filter: saturate(1.05) contrast(1.05);
}

.pro-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 400px at 50% 110%, rgba(0, 0, 0, 0.35), transparent 60%), linear-gradient(0deg, rgba(0, 0, 0, 0.28), transparent 40%);
}

.pro-hero .inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4rem 1.5rem;
}

.pro-hero .crumbs {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  opacity: 0.9;
  margin-bottom: 0.6rem;
}

.pro-hero .crumbs a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.35);
}

.pro-hero h1 {
  margin: 0.4rem 0 0.2rem;
  font-size: clamp(28px, 4vw, 46px);
}

.pro-hero .subtitle {
  opacity: 0.9;
  font-size: clamp(14px, 2.4vw, 18px);
  margin: 0;
}

.meta-chips {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.meta-chips .chip {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 1.2rem;
  backdrop-filter: blur(4px);
}

/* --- Body spacing refresh --- */
.pro-body {
  max-width: 1100px;
  margin: 2.2rem auto;
}

/* --- Card aesthetic already imported as .card-pro; just enhance facts --- */
.facts-pro {
  position: sticky;
  top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.facts-pro .full-btn {
  width: 100%;
  margin-top: 0.5rem;
}

/* Icons (CSS-only, simple shapes) */
.i {
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.6rem;
  border-radius: 2px;
  background: var(--orange);
  opacity: 0.9;
}

.i-pin {
  clip-path: polygon(50% 0, 90% 40%, 50% 100%, 10% 40%);
}

.i-area {
  clip-path: inset(0 round 2px);
}

.i-time {
  clip-path: circle(50% at 50% 50%);
}

.i-style {
  clip-path: polygon(0 70%, 100% 70%, 100% 100%, 0% 100%);
}

.i-service {
  clip-path: polygon(10% 10%, 90% 10%, 100% 50%, 90% 90%, 10% 90%, 0% 50%);
}

/* Facts list rows */
.facts-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.facts-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.8rem;
  padding: 0.65rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.facts-list li:last-child {
  border-bottom: 0;
}

.facts-list span {
  color: #556;
  font-size: 1.4rem;
  opacity: 0.95;
}

.facts-list strong {
  color: var(--darkblue);
  font-size: 1.5rem;
}

/* --- Masonry gallery (no JS) --- */
.gallery-masonry {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.gallery-masonry .gitem {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  grid-column: span 3; /* default half-width */
}

.gallery-masonry .gitem.g-lg {
  grid-column: span 4;
}

.gallery-masonry .gitem.g-tall {
  grid-column: span 2;
}

@media (max-width: 900px) {
  .gallery-masonry {
    grid-template-columns: repeat(4, 1fr);
  }
  .gallery-masonry .gitem {
    grid-column: span 4;
  }
  .gallery-masonry .gitem.g-lg {
    grid-column: span 4;
  }
  .gallery-masonry .gitem.g-tall {
    grid-column: span 2;
  }
}
@media (max-width: 520px) {
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-masonry .gitem,
  .gallery-masonry .gitem.g-lg,
  .gallery-masonry .gitem.g-tall {
    grid-column: span 2;
  }
}
.gallery-masonry img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.3s ease;
}

.gallery-masonry .gitem:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.gallery-masonry .gitem:hover img {
  transform: scale(1.04);
}

/* Caption slide */
.gallery-masonry figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.7rem 1rem;
  color: #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  font-size: 1.3rem;
  transform: translateY(100%);
  transition: transform 0.25s ease;
}

.gallery-masonry .gitem:hover figcaption {
  transform: translateY(0);
}

/* --- Subtle entrance animations --- */
@keyframes riseFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.pro-hero .inner,
.facts-pro,
.gallery-masonry .gitem {
  animation: riseFade 0.5s ease both;
}

.gallery-masonry .gitem:nth-child(1) {
  animation-delay: 0.05s;
}

.gallery-masonry .gitem:nth-child(2) {
  animation-delay: 0.1s;
}

.gallery-masonry .gitem:nth-child(3) {
  animation-delay: 0.15s;
}

.gallery-masonry .gitem:nth-child(4) {
  animation-delay: 0.2s;
}

/* Project page paragraph polish (safe, scoped) */
.project-desc p {
  font-size: 1.6rem; /* gentle bump for readability */
  line-height: 1.85; /* airy line height */
  color: #445; /* softer than pure #666 */
  margin: 0.8rem 0 1.2rem; /* consistent spacing */
  max-width: 70ch; /* readable line length */
  text-wrap: pretty; /* nicer wrapping on modern browsers */
  hyphens: auto;
}

/* Optional: first paragraph as a 'lead' */
.project-desc p:first-of-type {
  font-size: 1.7rem;
  color: var(--darkblue);
  opacity: 0.95;
}

.contact {
  background: var(--ligtblue);
}
.contact .row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 2rem;
  align-items: stretch;
}
@media (max-width: 1100px) {
  .contact .row {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(100px, auto);
  }
}
@media (max-width: 768px) {
  .contact .row {
    grid-template-columns: 1fr;
  }
}
.contact .row .map {
  width: 100%;
  height: 50rem;
  max-height: 50vh;
  border: 0;
  border-radius: 12px;
  box-shadow: var(--box-shadow);
  background: #f3f6fb;
}
@media (max-width: 1100px) {
  .contact .row .map {
    order: 2;
  }
}
@media (max-width: 768px) {
  .contact .row .map {
    order: 3;
    height: 35rem;
    max-height: none;
  }
}
.contact .row form {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--box-shadow);
  border: var(--border);
}
@media (max-width: 1100px) {
  .contact .row form {
    order: 3;
  }
}
@media (max-width: 768px) {
  .contact .row form {
    order: 2;
  }
}
.contact .row form h3 {
  font-size: 2.2rem;
  color: var(--darkblue);
  text-transform: capitalize;
}
.contact .row form .box {
  margin: 0.9rem 0;
  width: 100%;
  padding: 1.2rem 0;
  border-bottom: var(--border);
  font-size: 1.6rem;
  color: var(--darkblue);
}
.contact .row form .box:focus {
  outline: none;
  border-color: var(--orange);
}
.contact .row form textarea {
  height: 15rem;
  resize: vertical;
}
.contact .row form .btn {
  margin-top: 1rem;
  width: 100%;
}
.contact .row .contact-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--box-shadow);
  border: var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
@media (max-width: 1100px) {
  .contact .row .contact-card {
    order: 1;
  }
}
@media (max-width: 768px) {
  .contact .row .contact-card {
    order: 1;
  }
}
.contact .row .contact-card h3 {
  font-size: 2.2rem;
  color: var(--darkblue);
  text-transform: capitalize;
}
.contact .row .contact-card .contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact .row .contact-card .contact-list li {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  align-items: start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: var(--border);
}
.contact .row .contact-card .contact-list li i {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 166, 0, 0.12);
  color: var(--orange);
  font-size: 1.4rem;
}
.contact .row .contact-card .contact-list li span {
  display: block;
  font-size: 1.3rem;
  color: var(--light-color);
  line-height: 2;
  color: var(--gray);
}
.contact .row .contact-card .contact-list li a {
  display: inline-block;
  font-size: 1.6rem;
  color: var(--darkblue);
  text-transform: capitalize;
  color: var(--darkblue);
  text-decoration: none;
}
.contact .row .contact-card .contact-list li a:hover {
  color: var(--orange);
}
.contact .row .contact-card .contact-list li:last-child {
  border-bottom: none;
}
.contact .row .contact-card .contact-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
.contact .row .contact-card .contact-social a {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--light-bg);
  color: var(--darkblue);
  border: var(--border);
  transition: transform 0.15s ease;
  font-size: 2rem;
}
.contact .row .contact-card .contact-social a:hover {
  transform: translateY(-2px);
  color: var(--orange);
  border-color: var(--orange);
}
.contact .row .contact-card .contact-note {
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
  color: var(--gray);
  margin-top: 0.5rem;
}

/* --- HOME: re-trigger thumb animations on active slide --- */
/* turn off animations by default */
.home .slide .thumbnails .thumbnail-wrapper {
  animation: none !important;
}

/* apply animations only on the active slide */
.home .home-slider .swiper-slide-active .thumbnails .thumbnail-wrapper.thumb1 {
  animation: float1 1s forwards !important;
  animation-delay: 0.2s !important;
}

.home .home-slider .swiper-slide-active .thumbnails .thumbnail-wrapper.thumb2 {
  animation: float2 1s forwards !important;
  animation-delay: 0.4s !important;
}

.home .home-slider .swiper-slide-active .thumbnails .thumbnail-wrapper.thumb3 {
  animation: float3 1s forwards !important;
  animation-delay: 0.6s !important;
}

.home .home-slider .swiper-slide-active .thumbnails .thumbnail-wrapper.thumb4 {
  animation: float4 1s forwards !important;
  animation-delay: 0.8s !important;
}

/*# sourceMappingURL=style.css.map */
