
/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

h1,h2,h3,h4,button,a {
  font-family: "Gabarito", sans-serif;
}
h5,h6,p,ul,li,div, span {
  font-family: "Sofia Sans Condensed", sans-serif;
  font-weight: 700;
}

/* smooth fade */
section {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/*NAV*/
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: none;
}

.a-bar{
  background-color: #0250a8;
  color: white;
  padding: 4px;
  display: flex;
  flex-direction: column;
}
.a-bar p{
  color: white;
  padding: 10px;
  display: flex;
}
.a-bar-content{
  display: flex;
  justify-content: end;
  margin: 0px 50px;
}
.a-bar-content a:hover{
  color: #16a34a;
}
.b-bar{
background-color: rgba(55, 46, 46, 0.668);
}

.b-bar_content{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo_img{
    display: flex;
    align-items: center;
    column-gap: 10px;
    max-height: 120px;
}

.nav{
    transition: all 0.3s ease-in-out;
}

.nav_list{
    display: flex;
    column-gap: 40px;
}

.nav_link{
    color: #fff;
font-size: 16px;
    transition: all 0.2s;
}
.nav_link:hover,
.navlink:focus{
    color: #0a8117;
}

.btn{
    color: #fff;
    background-color: #00449c;
    padding: 8px 20px;
    border-radius: 1000px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
}
.btn:hover{
 background-color: #0D8118;
}

.hamburger{
    display: none;
}

.bar {
    height: 2px;
    width: 27px;
    background-color: #fff;
    margin: 5px 0;
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
    }

 /* FOR JS*/
/* top bar hide/show on scroll */
.a-bar {
  max-height: 60px;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease, padding 0.35s ease;
  opacity: 1;
}

/* hidden state */
.header.hide-topbar .a-bar {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}

/* optional: tighten main nav a little when top bar hides */
.header.hide-topbar .b-bar_content {
  height: 68px;
  transition: height 0.35s ease;
}

.b-bar_content {
  transition: height 0.35s ease;
}


    .nav--open {
        transform: translateX(0%) !important;
    }

    .hamburger--open .bar:nth-child(1){
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger--open .bar:nth-child(2){
        opacity: 0;
    }

    .hamburger--open .bar:nth-child(3){
        transform: translateY(-7px) rotate(-45deg);
    }
    
/* NAV Media queries */
@media (max-width:900px) {
    .nav {
    position: fixed;
    top: 90px;
    background-color: #363534b0;
    border-radius: 2%;
    width: 90%;
    padding: 10px 0 25px;
    transform: translateX(-110%);
    }
    .nav_list {
        flex-direction: column;
        align-items: center;
        row-gap: 20px;
    }
    .nav_link{
        font-size: 14px;
    }
    .btn{
        font-size: 11px;
        padding: 7px 17px;
        background-color: rgb(43, 88, 167);
    }
    .hamburger{
        display: block;
    }
    .a-bar-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    margin: 0 10px;
    gap: 2px;
    }

.a-bar-content p:nth-child(3) {
    display: none;
    }

.a-bar p {
    padding: 0;
    margin: 0;
    font-size: 12px;
    }
}



/* FOOTER*/
.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbfd 0%, #edf4f8 100%);
  color: black;
  padding-top: 40px;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background: #f5fbfe;
  transform: translateY(0);
  transition: transform 0.3s ease-out;
  z-index: 0;
}

.footer-container,
.footer-bottom-strip {
  position: relative;
  z-index: 2;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1400px;
  margin: auto;
  gap: 40px;
  padding: 0 5% 40px;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer-brand {
  max-width: 320px;
}

.footer-column h3,
.footer-column h4 {
  font-weight: 700;
  margin-bottom: 18px;
  color: #166534;
}

.footer-column p {
  font-size: 15px;
  line-height: 1.7;
  color: #00449c;
  margin-bottom: 18px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: #0f172a;
}

.footer-column a {
  color: #00449c;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #166534;
}

/* brand trust row */
.footer-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-trust span {
  display: inline-block;
  font-size: 13px;
  color: #00449c;
  background: rgba(0, 68, 156, 0.08);
  padding: 8px 12px;
  border-radius: 9px;
  width: fit-content;
}

/* bottom color strip */
.footer-bottom-strip {
  background: #00449c;
  padding: 16px 5%;
}

.footer-bottom {
  max-width: 1400px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: #ffffff;
}

.footer-bottom p {
  margin: 0;
  color: #ffffff;
}

.footer-bottom .footer-legal {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.footer-bottom .footer-legal li a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom .footer-legal li a:hover {
  color: #ffffff;
}

/* back to top */
#backToTop {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

#backToTop:hover {
  background: #ffffff;
  color: #00449c;
}

/* responsive */
@media (max-width: 1024px) {
  .footer-column:first-child {
    grid-column: 1 / -1;
    width: 100%;
    flex: none;
    margin-bottom: 10px;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-trust {
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-column h3 {
    font-size: 18px;
  }

  .footer-column h4 {
    font-size: 15px;
  }

  .footer-column p,
  .footer-column ul li {
    font-size: 13px;
    line-height: 1.5;
  }

  .footer-bottom .footer-legal {
    justify-content: center;
    gap: 12px;
  }

  #backToTop {
    width: 100%;
    max-width: 220px;
  }
}





/*marquee*/

.logomar_container{
padding: 0;
margin: 0;
}

.brandMarquee {
	display: flex ;
  align-items: center;
	overflow: hidden ;
	white-space: nowrap ;
	width: 100%;
    height: 80px;
    background-color: rgb(250, 250, 250);
	}

.bm__item {
	animation-duration: 3s ;
	animation-iteration-count: infinite ;
	animation-name: marquee-content ;
	animation-timing-function: linear ;
	padding: 18px;
	}

.bm_logo{
    object-fit: cover;
    height: 100px;
    margin: 0 auto;
}
.brandMarquee:hover .bm__item {
	animation-play-state: paused ;
		}

@keyframes marquee-content {
	from {
		transform: translateX( 0% );
			}
			to {
		transform: translateX( -100% );
			}
		}




/*HERO*/
.hero {
  position: relative;
  display: flex;
  height: 80vh;
  width: 100%;
  overflow: hidden;
}


.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: url("assets/images/heroback.png") center center / cover no-repeat;
  z-index: 0;
}


.hero-left,
.hero-right {
  position: relative;
  z-index: 2;
}


.hero-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}


.hero-right {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.4);
  align-items: center;
}
.hero-right h1{
  padding-bottom: 50px;
  font-size: 55px;
}
.hero-sub{
  font-size: 27px;
  margin: 0px 30px 0px 30px;
}
.scrub-container {
  position: relative;
  width: 420px;
  height: 320px;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.083);
  backdrop-filter: blur(10px);
}

/* CANVAS = "DIRT LAYER" */
#scrubCanvas {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 3;
}

/* LOGO */
.hero-logo {
  position: absolute;
  width: 75%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* LABEL */
.scrub-label {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  z-index: 4;
  font-size: 14px;
  color: #333;
}



.cta-box {
  margin-top: 25px;
  padding: 20px;
  border: 3px solid #1e5aa8;
  border-radius: 15px;
  width: 260px;
  text-align: center;
  background: white;
}

.counter {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.counter button {
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
}

.counter span {
  font-size: 24px;
  font-weight: bold;
}

.hero-btn {
  margin-top: 20px;
  background: #1e5aa8;
  color: white;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    height: auto;
  }

  .scrub-container {
    width: 90%;
    height: 260px;
  }

  .hero-right {
    padding: 20px;
  }
  .hero-right h1 {
    padding-bottom: 20px;
    font-size: 36px;
}
    .hero-sub{
        font-size:22px;
        margin: 0px;
    }
  .hero-left{
      padding: 20px;
  }
}

.drip {
  position: absolute;
  width: 6px;
  height: 14px;
  background: rgba(0, 150, 255, 0.4);
  border-radius: 50%;
  animation: dripFall 1.2s ease forwards;
  z-index: 5;
}

@keyframes dripFall {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
  100% {
    transform: translateY(60px) scale(0.6);
    opacity: 0;
  }
}


.scrub-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(47, 4, 4, 0.174),
    transparent
  );
  z-index: 2;
  pointer-events: none;
}


.intro{
  background-color: #ffffff2d;
  color: #013C7E;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 30px;
}
.tagline-cont{
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  margin: 25px 0px 15px 30px;
}
.tagline-cont h2{
  padding: 10px 0px 0px 15px;
}
.intromain{
  display: flex;
  flex-direction: row;
  margin: 10px 25px 45px 45px;
  font-size: 18px;
}
.introL , .introR{
  display: flex;
  margin: 25px;
}



.trust-strip {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 30px 8%;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(6px);
}

.trust-item {
  flex: 1;
  text-align: center;
  font-size: 0.95rem;
  letter-spacing: 1px;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.trust-item:hover {
  opacity: 1;
  transform: translateY(-3px);
}

/* ABOUT SECTION*/
.about {
  background: #fdfdfd;
  color: #064c0e;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;

  padding: 80px 40px;
  gap: 40px;

  min-height: 400px;
}

.abL {
  flex: 1;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 20px;
}

.abR {
  flex: 1;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 20px;
}

.abR h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 10px;
}

.abR p {
  font-size: 18px;
  line-height: 1.7;
  color: #1e293b;
  padding: 0;
}

/* TABLET */
@media (max-width: 1024px) {
  .about {
    padding: 60px 30px;
    gap: 30px;
  }

  .abR h2 {
    font-size: 32px;
  }

  .abR p {
    font-size: 17px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .about {
    flex-direction: column; 
    text-align: center;
    padding: 60px 20px;
  }

  .abL,
  .abR {
    width: 100%;
    padding: 10px 0;
  }

  .abR h2 {
    font-size: 26px;
  }

  .abR p {
    font-size: 16px;
  }
}



/*services*/
  
.services {
  padding: 100px 24px 60px 24px;
  background: linear-gradient(to top, #011503cd 0%, #064C0E 100%);
  position: relative;
  overflow: hidden;
}

.services-title {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 1.05;
  text-align: center;
  color: #ffffff;
  margin-bottom: 56px;
  font-weight: 600;
  letter-spacing: -0.03em;
}


.services-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: #f9f9f9;
  border: 3px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(14, 165, 233, 0.30);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.38);
}

.service-card-image-wrap {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: #10202d;
}

.service-card-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(6, 16, 24, 0.45) 0%, rgba(187, 213, 71, 0.1) 45%, rgba(6, 16, 24, 0.08) 100%);
  pointer-events: none;
}

.service-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-image {
  transform: scale(1.06);
}

.service-card-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 8px 14px;
  border-radius: 5px;
  background: #f0fff08c;
  border: 1px solid rgba(249, 249, 249, 0.742);
  color: #00449c;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.service-card-content {
  padding: 26px 24px 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.03) 100%);
}

.service-card-content h3 {
  color: #064C0E;
  font-size: 1.35rem;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.service-card-content p {
  color: #0D8118;
  line-height: 1.72;
  font-size: 0.98rem;
  margin: 0;
}

/* services animations */
.services-animate-up,
.services-animate-left,
.services-animate-right {
  opacity: 0;
  transition: all 0.9s ease;
}

.services-animate-up {
  transform: translateY(70px);
}

.services-animate-left {
  transform: translateX(-70px);
}

.services-animate-right {
  transform: translateX(70px);
}

.services-animate-up.active,
.services-animate-left.active,
.services-animate-right.active {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services {
    padding: 88px 18px;
  }

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

  .service-card-image-wrap {
    height: 220px;
  }

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



/* Our process SECTION*/

.process {
  padding: 110px 24px;
  background: #edf4f8;
  position: relative;
  overflow: hidden;
}

.process-title {
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  text-align: left;
  color: #0f172a;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.process-subtext {
  max-width: 720px;
  margin: 0 auto 30px 54px;
  text-align: left;
  color: #0250a8;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* layout */
.process-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
}

/* card */
.process-step {
  flex: 1;
  padding: 30px 26px 32px;
  border-radius: 6px;
  background: #00449c;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  backdrop-filter: blur(10px);
  transition: transform 0.45s ease, filter 0.45s ease, opacity 0.45s ease, box-shadow 0.45s ease;
}

/* hover focus system */
.process-grid:hover > .process-step:not(:hover) {
  transform: scale(0.94);
  filter: blur(3px);
  opacity: 0.7;
}

.process-step:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 28px 60px rgba(0,0,0,0.35);
}

/* top row */
.process-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
}

/* number */
.process-number {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.6);
  padding: 8px 12px;
  border-radius: 9px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

/* glass icon */
.process-icon {
  width: 46px;
  height: 46px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1rem;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);

  box-shadow:
    0 6px 18px rgba(14,165,233,0.18),
    0 4px 10px rgba(22,163,74,0.12);
}

/* title */
.process-step h3 {
  color: #ffffff;
  font-size: 1.35rem;
  margin-bottom: 8px;
  font-weight: 600;
}

/* mini label */
.process-mini {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}

/* text */
.process-step p {
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  font-size: 0.96rem;
}

/* animations */
.process-animate-up,
.process-animate-left,
.process-animate-right {
  opacity: 0;
  transition: all 0.9s ease;
}

.process-animate-up {
  transform: translateY(60px);
}

.process-animate-left {
  transform: translateX(-60px);
}

.process-animate-right {
  transform: translateX(60px);
}

.process-animate-up.active,
.process-animate-left.active,
.process-animate-right.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* responsive */
@media (max-width: 1024px) {
  .process-grid {
    flex-direction: column;
  }

  .process-grid:hover > .process-step:not(:hover) {
    transform: none;
    filter: none;
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .process {
    padding: 80px 18px;
  }

  .process-step {
    padding: 24px 20px;
  }
}

/* SHOWCASE SECTION */
.showcase {
  padding: 110px 24px;
  background:  linear-gradient(to top, #013C7E 0%, #00449c 100%);
  overflow: hidden;
}

.showcase-title {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  text-align: center;
  color: #ffffff;
  margin-bottom: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
}


.showcase-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.showcase-item,
.showcase-info-card {
  min-height: 380px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

/* image cards */
.showcase-item {
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.showcase-item:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.36);
}

.showcase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.showcase-item:hover .showcase-image {
  transform: scale(1.06);
}

.showcase-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 12, 20, 0.78) 0%,
    rgba(7, 12, 20, 0.18) 45%,
    rgba(7, 12, 20, 0.08) 100%
  );
  pointer-events: none;
}

.showcase-overlay {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
}

.showcase-overlay span {
  display: inline-block;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* info card */
.showcase-info-card {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.showcase-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
}

.showcase-info-label {
  display: inline-block;
  margin-bottom: 22px;
  color: #00449c;
  font-size: .87rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.showcase-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.showcase-info-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 18px;
  color: #0f172a;
  font-size: 1rem;
  line-height: 1.5;
}

.showcase-info-list li:last-child {
  margin-bottom: 0;
}

.showcase-info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 6px;
  background: linear-gradient(135deg, #16a34a 0%, #0ea5e9 100%);
  box-shadow: 0 0 12px rgba(14, 165, 233, 0.22);
}

/* animations */
.showcase-animate-up,
.showcase-animate-scale {
  opacity: 0;
  transition: all 0.9s ease;
}

.showcase-animate-up {
  transform: translateY(60px);
}

.showcase-animate-scale {
  transform: scale(0.92);
}

.showcase-animate-up.active,
.showcase-animate-scale.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 1100px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .showcase {
    padding: 85px 18px;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .showcase-item,
  .showcase-info-card {
    min-height: 300px;
  }

  .showcase-info-card {
    min-height: auto;
  }
}

/* REVIEWS SECTION*/
.reviews {
  padding: 115px 24px;
  background: #f6fafc;
  overflow: hidden;
}

.reviews-shell {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 34px;
  align-items: center;
}

/* left side */
.reviews-intro {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 8px;
  padding: 36px 32px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.reviews-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: #064C0E;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reviews-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.08;
  color: #013C7E;
  margin-bottom: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.reviews-text {
  color: #475569;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.reviews-points {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.reviews-point {
  padding: 16px 18px;
  border-radius: 18px;
  background: #f8fbfd;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.reviews-point strong {
  display: block;
  color: #00449c;
  font-size: 1rem;
  margin-bottom: 4px;
}

.reviews-point span {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

.reviews-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.reviews-btn-primary,
.reviews-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.reviews-btn-primary {
  background: #00449c;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);
}

.reviews-btn-primary:hover {
  transform: translateY(-3px);
}

.reviews-btn-secondary {
  background: #ffffff;
  color: #00449c;
  border: 1px solid rgba(15, 23, 42, 0.12);
}

.reviews-btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

/* slider side */
.reviews-slider-wrap {
  background: linear-gradient(180deg, #00449c 0%, #012556 100%);
  border-radius: 10px;
  padding: 28px 28px 24px;
  color: #ffffff;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255,255,255,0.07);
}

.reviews-slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.reviews-slider-label {
  color: rgba(252, 251, 251, 0.969);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reviews-nav {
  display: flex;
  gap: 10px;
}

.reviews-arrow {
  width: 42px;
  height: 42px;
  border-radius: 20%;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgb(255, 255, 255);
  color: #00449c;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.reviews-arrow:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.24);
}

.reviews-slider {
  position: relative;
  overflow: hidden;
}

.reviews-track {
  position: relative;
  min-height: 295px;
}

.review-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(40px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
  background: rgb(255, 255, 255);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 9px;
  padding: 30px 26px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.review-card.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.review-stars {
  color: #F5E378;
  letter-spacing: 0.14em;
  font-size: 1rem;
  margin-bottom: 18px;
}

.review-quote {
  color: #00449c;
  line-height: 1.9;
  font-size: 1.02rem;
  margin-bottom: 22px;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-meta strong {
  color: #0f172a;
  font-size: 0.98rem;
}

.review-meta span {
  color: #064C0E;
  font-size: 0.9rem;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: 20%;
  border: none;
  background: rgb(255, 255, 255);
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.reviews-dot.active {
  background: #064C0E;
  transform: scale(1.15);
}

/* animations */
.reviews-animate-left,
.reviews-animate-up {
  opacity: 0;
  transition: all 0.9s ease;
}

.reviews-animate-left {
  transform: translateX(-60px);
}

.reviews-animate-up {
  transform: translateY(60px);
}

.reviews-animate-left.active,
.reviews-animate-up.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* responsive */
@media (max-width: 1024px) {
  .reviews-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .reviews {
    padding: 85px 18px;
  }

  .reviews-intro,
  .reviews-slider-wrap {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .reviews-actions {
    flex-direction: column;
  }

  .reviews-btn-primary,
  .reviews-btn-secondary {
    width: 100%;
  }

  .reviews-slider-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-card {
    padding: 24px 20px;
  }

  .reviews-track {
    min-height: 340px;
  }
}


/*SERVICE AREA SECTION*/
.area {
  padding: 105px 24px;
  background: #064C0E;
}

.area-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.area-title {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  color: #ffffff;
  margin-bottom: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.area-text {
  max-width: 760px;
  margin: 0 auto 42px;
  color: rgba(255,255,255,0.76);
  font-size: 1rem;
  line-height: 1.8;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 34px;
}

.area-card {
  background: rgb(255, 255, 255);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 28px 24px;
  text-align: left;
  box-shadow: 0 18px 40px rgba(0,0,0,0.20);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}


.area-card h3 {
  color: #064C0E;
  font-size: 1.24rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.area-card p {
  color: #0D8118;
  line-height: 1.75;
  font-size: 0.96rem;
}

.area-cta-wrap {
  margin-top: 6px;
}

.area-cta-text {
  color: rgba(255,255,255,0.62);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.area-link {
  color: #F5E378;
  text-decoration: none;
  font-weight: 500;
}

.area-link:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .area-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .area {
    padding: 82px 18px;
  }

  .area-card {
    padding: 24px 20px;
  }

  .area-btn {
    width: 100%;
    max-width: 320px;
  }
}


/* FAQ SECTION */
.faq {
  padding: 80px 24px; /* smaller section */
  background: #edf4f8;
}

.faq-title {
  text-align: center;
  color: #00449c;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 34px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

/* container */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* item */
.faq-item {
  border-radius: 16px;
  background: rgb(255, 255, 255);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(14,165,233,0.25);
  transform: translateY(-2px);
}

/* question */
.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: transparent;
  border: none;
  outline: none;
  color: #00449c;
  font-size: 1rem;
  font-weight: 500;

  display: flex;
  justify-content: space-between;
  align-items: center;

  cursor: pointer;
}

/* icon */
.faq-icon {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

/* answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 20px 18px;
  color: #064C0E;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* active state */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg); /* turns + into × */
}

/* FINAL CTA\ */
.final-cta {
  position: relative;
  padding: 110px 24px;
  overflow: hidden;
  isolation: isolate;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  z-index: 0;
  transform: scale(1.05);
}


.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.final-cta-card {
  width: 100%;
  max-width: 760px;
  text-align: center;
  padding: 44px 38px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.392);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.final-cta-title {
  margin: 0 0 16px;
  color: #00449c;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.final-cta-text {
  max-width: 620px;
  margin: 0 auto 28px;
  color: #0f172a;
  font-size: 1.02rem;
  line-height: 1.8;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
}

.final-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: #0a8117;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.24);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.final-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
  opacity: 0.98;
}


.final-cta-note {
  margin: 16px 0 0;
  color: #0f172a;
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .final-cta {
    padding: 85px 18px;
  }

  .final-cta-card {
    padding: 30px 22px;
    border-radius: 26px;
  }

  .final-cta-title {
    font-size: 2rem;
  }

  .final-cta-text {
    font-size: 0.96rem;
    margin-bottom: 24px;
  }

  .final-cta-btn {
    width: 100%;
    max-width: 320px;
  }
}


/*SERVICES HERO CENTERED */
.services-hero {
  position: relative;
  height: 50vh;
  min-height: 420px;
  overflow: hidden;
}


.services-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}


.services-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  z-index: 1;
}


.services-hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 0 24px;
}


.services-hero-card {
  max-width: 820px;
}


.services-hero-card h1 {
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}


.services-hero-card p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.7;
}


.services-hero-card h1,
.services-hero-card p {
  margin-left: auto;
  margin-right: auto;
}

/* responsive */
@media (max-width: 768px) {
  .services-hero {
    height: 45vh;
  }

  .services-hero-card h1 {
    font-size: 2rem;
  }



}
.services-feature {
  padding: 90px 24px;
  background: #ffffff;
}

.services-feature-row {
  max-width: 1200px;
  margin: 0 auto 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.services-feature-row:last-child {
  margin-bottom: 0;
}

.services-feature-row-reverse .services-feature-image {
  order: 2;
}

.services-feature-row-reverse .services-feature-content {
  order: 1;
}

.services-feature-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
}

.services-feature-content {
  max-width: 520px;
}

.services-feature-label {
  background-color: #00449c00;
  display: inline-block;
  margin-bottom: 14px;
  color: #00449c;
  padding: 7px 12px;
  border-radius: 9px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services-feature-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #00449c;
  line-height: 1.05;
  margin-bottom: 16px;
}

.services-feature-content p {
  color: #1e5aa8;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 18px;
}

.services-feature-content ul {
  margin: 0;
  padding-left: 18px;
  list-style-type: square;
}

.services-feature-content li {
  color: #064C0E;
  margin-bottom: 10px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .services-feature-row,
  .services-feature-row-reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .services-feature-row-reverse .services-feature-image,
  .services-feature-row-reverse .services-feature-content {
    order: unset;
  }

  .services-feature-image img {
    height: 280px;
  }

  .services-feature-content {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .services-feature {
    padding: 75px 18px;
  }
}



/* SERVICE MENU SECTION*/
.service-menu-section {
  padding: 100px 24px;
  background: #00449c;
}

.service-menu-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.service-menu-left {
  position: sticky;
  top: 100px;
}

.service-menu-left h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 16px;
}

.service-menu-left p {
  color: #fff;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 20px;
}

.service-menu-note {
  display: inline-block;
  background: rgba(0, 68, 156, 0.08);
  color: #fff;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.6;
}

.service-menu-right {
  display: grid;
  gap: 24px;
}

.service-menu-group {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.07);
}

.service-menu-group-title {
  display: inline-block;
  margin-bottom: 18px;
  color: #00449c;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.service-menu-item {
  padding: 16px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.service-menu-item:first-of-type {
  border-top: none;
  padding-top: 0;
}

.service-menu-item h3 {
  color: #064C0E;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.service-menu-item p {
  color: #475569;
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0;
}

@media (max-width: 1024px) {
  .service-menu-inner {
    grid-template-columns: 1fr;
  }

  .service-menu-left {
    position: static;
  }
}

@media (max-width: 768px) {
  .service-menu-section {
    padding: 80px 18px;
  }

  .service-menu-group {
    padding: 20px;
  }
}


/* SERVICE TIMELINE*/
.service-timeline {
  padding: 100px 24px;
  background: #edf4f8;
}

.service-timeline-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.service-timeline-header {
  max-width: 760px;
  margin-bottom: 44px;
}

.service-timeline-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #00449c;
  line-height: 1.05;
  margin-bottom: 14px;
}

.service-timeline-header p {
  color: #475569;
  line-height: 1.8;
  font-size: 1rem;
}

.service-timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}

.timeline-step {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 22px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.timeline-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.10);
}

.timeline-step-number {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #00449c;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.timeline-step-content h3 {
  color: #0f172a;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.timeline-step-content p {
  color: #475569;
  line-height: 1.75;
  font-size: 0.95rem;
}

/* desktop connecting line */
@media (min-width: 901px) {
  .service-timeline-track::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 26px;
    height: 2px;
    background: rgba(0, 68, 156, 0.16);
    z-index: 0;
  }

  .timeline-step {
    z-index: 1;
  }
}

/* tablet */
@media (max-width: 1100px) {
  .service-timeline-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* mobile */
@media (max-width: 900px) {
  .service-timeline-track {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .service-timeline {
    padding: 80px 18px;
  }

  .timeline-step {
    padding: 24px 20px;
  }
}



/*Gallery PAGE hero same*/
.photo-strip-section {
  padding: 80px 24px;
  background: #ffffff;
  overflow: hidden;
}

.photo-strip-header {
  max-width: 700px;
  margin: 0 auto 28px;
  text-align: left;
}

.photo-strip-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #064C0E;
  margin-bottom: 10px;
  line-height: 1.05;
}

.photo-strip-header p {
  color: #0a8117;
  line-height: 1.7;
  font-size: 1rem;
}

.photo-strip-wrap {
  overflow: hidden;
  position: relative;
}

.photo-strip-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: scrollPhotos 28s linear infinite;
}

.photo-strip-wrap:hover .photo-strip-track {
  animation-play-state: paused;
}

.photo-strip-item {
  flex: 0 0 auto;
  width: 420px;
  height: 320px;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10);
  background: #e5e7eb;
}

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

/* smooth infinite movement */
@keyframes scrollPhotos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .photo-strip-section {
    padding: 65px 18px;
  }

  .photo-strip-item {
    width: 240px;
    height: 170px;
  }
}

/*b4 n after gallery*/
.before-after-section {
  padding: 90px 24px;
  background: #064C0E;
}

.before-after-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.before-after-header {
  max-width: 760px;
  margin-bottom: 36px;
}

.before-after-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.05;
}

.before-after-header p {
  color: #fff;
  line-height: 1.8;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.before-after-card {
  background: #ffffff;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.before-after-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.before-after-img {
  position: relative;
  height: 260px;
}

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

.before-after-img span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(15, 23, 42, 0.78);
  color: #ffffff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.before-after-content {
  padding: 22px 20px;
}

.before-after-content h3 {
  color: #064c0e;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.before-after-content p {
  color: #0a8117;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .before-after-grid {
    grid-template-columns: 1fr;
  }
}




/* ABOUT page hero same*/
.about-story {
  padding: 110px 24px;
  background: #ffffff;
}

.about-story-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: start;
}

.about-story-left h2,
.about-visual-content h2,
.about-coverage-inner h2,
.about-cta-card h2 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  color: #064c0e;
  line-height: 1.05;
  margin-bottom: 16px;
}

.about-story-right p,
.about-visual-content p,
.about-coverage-inner p,
.about-coverage-card p,
.about-cta-card p {
  color: #0a8117;
  line-height: 1.8;
  font-size: 1rem;
}

.about-story-right p + p {
  margin-top: 18px;
}


.about-values {
  padding: 110px 24px;
  background-color: #0a8117;
}

.about-values-header h2{
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 16px;
}

.about-value-card p{
  color: #0a8117;
  line-height: 1.8;
  font-size: 1rem;
}

.about-values-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.about-values-header {
  max-width: 760px;
  margin-bottom: 38px;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.about-value-card {
  padding: 30px 24px;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background-color: #fff;
}

.about-value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 38px rgba(15, 23, 42, 0.10);
}

.about-value-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0a8117;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1rem;
}

.about-value-card h3,
.about-coverage-card h3 {
  color: #0f172a;
  font-size: 1.4rem;
  margin-bottom: 12px;
}


.about-visual {
  padding: 110px 24px;
  background: #fff;
}

.about-visual-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 28px;
  align-items: center;
}

.about-visual-image img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  box-shadow: 0 20px 46px rgba(0,0,0,0.12);
}

.about-check-list {
  margin: 20px 0 0;
  padding-left: 18px;
  list-style-type: square;
}

.about-check-list li {
  margin-bottom: 12px;
  color: #1e5aa8;
}


/* RESPONSIVE*/
@media (max-width: 1024px) {
  .about-hero {
    flex-direction: column;
    min-height: auto;
  }

  .about-story-inner,
  .about-visual-inner {
    grid-template-columns: 1fr;
  }

  .about-values-grid,
  .about-coverage-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-story,
  .about-values,
  .about-visual,{
    padding-left: 18px;
    padding-right: 18px;
  }

  .about-btn-primary,
  .about-btn-secondary {
    width: 100%;
  }
}

/* LEGAL PAGE*/

.legal-hero {
  padding: 110px 24px 60px;
  background: #00449c;
}

.legal-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}


.legal-hero-inner h1 {
  color: #ffffff;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1;
  margin-bottom: 16px;
}

.legal-hero-inner p {
  color: rgba(255,255,255,0.84);
  line-height: 1.8;
  font-size: 1rem;
  max-width: 760px;
}

.legal-date {
  margin-top: 12px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.62);
}

.legal-content {
  padding: 70px 24px 110px;
  background: #ffffff;
}

.legal-content-inner {
  max-width: 950px;
  margin: 0 auto;
}

.legal-block {
  margin-bottom: 34px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.legal-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-block h2 {
  color: #0250a8;
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.legal-block p,
.legal-block li {
  color: #334155;
  line-height: 1.9;
  font-size: 1rem;
}

.legal-block ul {
  margin: 12px 0 16px;
  padding-left: 20px;
}

.legal-block li {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .legal-hero {
    padding: 90px 18px 44px;
  }

  .legal-content {
    padding: 50px 18px 85px;
  }

  .legal-block h2 {
    font-size: 1.35rem;
  }
}