*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
margin:0;
font-family:'Poppins',sans-serif;
background:#f5f5f5;
box-sizing: border-box;
padding: 0;
}


/* HERO */
.hero{
height:130vh;
position:relative;
background:url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c")
center/cover no-repeat;
color:white;
overflow:hidden;
}

.hero::after{
content:"";
position:absolute;
inset:0;
background:rgba(0,0,0,0.45);
}

/* NAVBAR */
.nav-wrapper{
position:absolute;
top:20px;
left:0;
right:0;
z-index:999;
transition:.4s;
}

.custom-nav{
background:white;
border-radius:60px;
padding:14px 40px;
display:flex;
justify-content:space-between;
align-items:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.logo-img{
height:45px;
}

.nav-menu{
display:flex;
gap:40px;
list-style:none;
margin:0;
}


.nav-menu li{
font-weight:600;
cursor:pointer;
position:relative;
color: #000;
}


/* .nav-menu li.active::after{
content:"";
position:absolute;
bottom:-6px;
width:100%;
height:2px;
color: #ffc107;
} */
.nav-menu li a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  cursor: pointer;
}

.nav-menu li a:hover,
.nav-menu li.active a {
  color: #ffc107;
}

.call-text{
color:#000;
font-size:14px;
}

.nav-cta{
display:flex;
gap:20px;
align-items:center;
}

.btn-contact{
background:#ffc107;
border:none;
padding:10px 26px;
border-radius:30px;
font-weight:600;
}

/* STICKY NAV */
.sticky{
position:fixed !important;
top:10px;
animation:slideDown .4s ease;
}

@keyframes slideDown{
from{transform:translateY(-100%)}
to{transform:translateY(0)}
}

/* HERO CENTER */
.hero-center{
position:relative;
z-index:2;
text-align:center;
top:42%;
transform:translateY(-50%);
}

.hero-center h1{
font-size:85px;
font-weight:800;
margin-top: -30vh;
font-family:"Inter", Sans-serif;
}

.hero-center p{
margin-top:20px;
font-size:18px;
font-family:"Inter", Sans-serif;

}

/* HERO BOTTOM */
.hero-bottom{
position:absolute;
bottom:0;
width:100%;
padding:80px 0 140px;
z-index:2;
margin-bottom: 20px;
/* background:linear-gradient(
to top,
rgba(0,0,0,.9),
rgba(0,0,0,.6),
transparent); */
}

.hero-bottom h2{
font-size:34px;
font-weight:700;
}

.view-btn{
background:white;
border:none;
padding:12px 25px;
border-radius:30px;
font-weight:600;
}

.view-btn span{
background:#ffc107;
padding:6px 10px;
border-radius:50%;
margin-left:10px;
}

/* CARDS */
.feature-cards{
position:relative;
z-index:10;
}

.feature-card{
width:100%;
padding:40px;
border-radius:24px;
margin-top: -100px;
display:flex;
flex-direction:column;

background:linear-gradient(
to bottom,
rgba(13, 62, 3, 0.6),
rgba(4, 61, 2, 0.2),
rgba(255,255,255,.85));

color:rgb(0, 0, 0);
backdrop-filter:blur(8px);

transition:.4s;
box-shadow:0 20px 40px rgba(0,0,0,.25);
}

.feature-card:hover{
transform:translateY(-15px);
box-shadow:0 30px 60px rgba(0,0,0,.4);
}

.icon{
width:50px;
height:50px;
background:#ffc107;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:20px;
color:rgb(244, 244, 244);
transition:.4s;
}

.feature-card:hover .icon{
transform:scale(1.1) rotate(10deg);
}

/* SCROLL ANIMATION */
.fade-up{
opacity:0;
transform:translateY(60px);
transition:.8s;
}

.fade-up.show{
opacity:1;
transform:translateY(0);
}
/* WHO WE ARE */
.who-we-are {
  padding: 120px 0;
  background: #fff;
}

/* LEFT PILL */
.section-pill {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid #f5c400;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #000;
}

/* MAIN TITLE */
.who-title {
  font-size: 62px;
  font-weight: 800;
  line-height: 1.15;
  color: #000;
  max-width: 900px;
}

/* INFO BLOCKS */
.info-block h5 {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.info-block p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  max-width: 420px;
}

/* ICON */
.info-block .icon {
  font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .who-title {
    font-size: 34px;
  }
}

/* STATS SECTION */
.stats-section {
  padding: 120px 0;
  /* background: #f6f6f6; */
}

/* LEFT IMAGE */
.left-image {
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
}

.left-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* STAT CARDS */
.stat-card {
  background: #fff;
  border-radius: 22px;
  padding: 32px 28px;
  height: 100%;
}

.stat-card h2 {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 16px;
}

.stat-card h2 span {
  color: #f5c400;
}

.stat-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.stat-card .label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

/* IMAGE CARD */
.stat-image-card {
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
}

.stat-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .stat-card h2 {
    font-size: 36px;
  }
}
.hero hr {
  border: none;
  height: 2px;
  width: 120px;
  margin: 40px auto;
  background: linear-gradient(
    to right,
    transparent,
    #ffc107,
    transparent
  );
  position: relative;
  z-index: 2; 
}
.who-we-are{
  position:relative;
  background:#fff;
  padding:120px 0;
  margin-top:0;
  z-index:5;
}

/* CURVE */
.who-we-are::before{
  content:"";
  position:absolute;
  top:-80px;
  left:0;
  width:100%;
  height:80px;
  background:#fff;

  border-top-left-radius:90px;
  border-top-right-radius:90px;
}
/* PILL BUTTON (STATIC) */
.section-pill{
  width:160px;
  height:38px;
  border:1px solid #f5c400;
  border-radius:30px;
  display:flex;
  align-items:center;
  overflow:hidden;   /* IMPORTANT */
  position:relative;
}


/* TEXT AREA */
.pill-text{
  white-space:nowrap;
  position:absolute;
  animation:scrollText 5s linear infinite;
}

/* TEXT STYLE */
.pill-text span{
  padding-left:100%;
  font-size:13px;
  font-weight:600;
  letter-spacing:1px;
  color:#000;
}

/* ANIMATION */
@keyframes scrollText{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-100%);
  }
}
.services {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  padding-top: 200px;
  margin-bottom: 50px;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid #f5c400;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 20px;
}

h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 60px;
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.card {
  position: relative;
  background: #fff;
  border-radius: 28px;
  padding: 30px;
  text-align: left;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

/* Hover yellow */
.card:hover,
.card.active {
  background: #ffd400;
}

/* Image */
.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
  margin-top: 20px;
  transition: transform 0.5s ease;
}

/* Image animation */
.card:hover img {
  transform: translateY(-12px) scale(1.05);
}

/* Title */
.card h3 {
  font-size: 20px;
  font-weight: 600;
}

/* Arrow button */
.arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.card:hover .arrow {
  transform: rotate(45deg);
}

/* Wide bottom cards */
.wide {
  grid-column: span 2;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD BASE */
.service-card {
  position: relative;
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  padding-top: 34px;
  overflow: hidden;
  transition: background 0.35s ease;
}

/* CURVED CUT (the magic ✨) */
.service-card::after {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 74px;
  height: 74px;
  background: #f7f4ee; /* page bg */
  border-bottom-left-radius: 36px;
}

/* HOVER COLOR */
.service-card:hover {
  background: #ffd400;
}

/* TITLE */
.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 18px;
}

/* ARROW */
.arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  z-index: 2;
  transition: transform 0.3s ease;
}

.service-card:hover .arrow {
  transform: rotate(45deg);
}

/* IMAGE */
.img-wrap {
  height: 260px;
  /* border-radius: 22px; */
  overflow: hidden;

  /* IMPORTANT */
  display: flex;
  align-items: flex-end;  
}

.img-wrap img {
  width: 80%;                 
  height: 80%;
  object-fit: cover;
  object-position: bottom left;
  transition: transform 0.45s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}
/* =========================
   MOBILE VIEW
   ========================= */

@media (max-width: 768px) {

  .service-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-card {
    padding: 22px;
    border-radius: 24px;
  }

  /* smaller curved cut */
  .service-card::after {
    width: 60px;
    height: 60px;
    border-bottom-left-radius: 30px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  /* arrow stays neat */
  .arrow {
    width: 32px;
    height: 32px;
    font-size: 13px;
    top: 14px;
    right: 14px;
  }

  .img-wrap {
    height: 210px;
    border-radius: 18px;
  }
}
.section-pill1 {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

/* pill */
.pill-text1 {
  border: 1px solid #f5c400;
  border-radius: 999px;
  padding: 8px 0;
  width: 180px;              /* fixed pill width */
  overflow: hidden;          /* KEY */
  position: relative;
}

/* moving text */
.pill-text1 span {
  display: inline-block;
  padding: 0 18px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  animation: scrollText 6s linear infinite;
}

/* animation */
@keyframes scrollText {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
.testimonial-section{
  background:#e8e4dc;
  text-align:center;
  padding:80px 20px;
  margin-top: 130px;
}

/* badge */
.badge1{
  display:flex;
  justify-content:center;
  margin-bottom:40px;
  margin-top: -150px;
}

.badge-inner{
  position:relative;
  width:160px;
  height:160px;
}

.badge-inner img{
  width:110px;
  height:110px;
  border-radius:50%;
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  object-fit:cover;
}

/* rotating text */
.rotating-text{
  width:160px;
  height:160px;
  animation:rotate 15s linear infinite;
}

.rotating-text text{
  font-size:12px;
  letter-spacing:3px;
  fill:#333;
}

@keyframes rotate{
  from{transform:rotate(0deg);}
  to{transform:rotate(360deg);}
}

/* slider */
.testimonial-slider{
  max-width:850px;
  margin:auto;
  position:relative;
}

.slides{
  overflow:hidden;
}

.testimonial{
  display:none;
  animation:fade 0.5s ease;
}

.testimonial.active{
  display:block;
}

.testimonial p{
  font-size:22px;
  line-height:1.6;
  margin-bottom:25px;
}

.testimonial h3{
  margin:0;
}

.testimonial span{
  color:#777;
  font-size:14px;
}

.stars{
  color:#f5a623;
  margin-top:8px;
}

/* arrows */
.nav{
  position:absolute;
  top:80px;              /* aligns with circle center */
  transform:translateY(-50%);
  border:none;
  background:white;
  width:30px;
  height:38px;
  border-radius:50%;
  cursor:pointer;
  box-shadow:0 3px 10px rgba(0,0,0,0.12);
  z-index:5;
  padding: 5px;
}

.prev{left:-60px;}
.next{right:-60px;}

@keyframes fade{
  from{opacity:0;}
  to{opacity:1;}
}

@media(max-width:768px){
  .testimonial p{font-size:18px;}
  .prev{left:-10px;}
  .next{right:-10px;}
}
.testimonial-wrap{
  position:relative;
  max-width:900px;
  margin:auto;
}
@media(max-width:768px){
  .nav{
    top:70px;
    width:40px;
    height:40px;
  }
  .prev{ left:-10px; }
  .next{ right:-10px; }
}
.process-wrap{
  padding:120px 20px;
  background:#f7f4ee;
}

.process-svg{
  width:100%;
}

/* dotted circles with different colors */
.dots{
  fill:none;
  stroke-width:2.5;
  stroke-dasharray:2 8;
}

.red-dots{ stroke:#ff6b6b; }
.purple-dots{ stroke:#7b61ff; }
.blue-dots{ stroke:#4a8cff; }

/* inner rings */
.arc{
  fill:none;
  stroke-width:5;
}

.red{ stroke:#ff6b6b; }
.purple{ stroke:#7b61ff; }
.blue{ stroke:#4a8cff; }

/* arrows */
.flow{
  fill:none;
  stroke-width:4;
  stroke-linecap:round;
}

.red{ stroke:#ff6b6b; }
.blue{ stroke:#4a8cff; }

.red-fill{ fill:#ff6b6b; }
.purple-fill{ fill:#7b61ff; }
.blue-fill{ fill:#4a8cff; }

/* text */
.title{
  font-size:28px;
  font-weight:700;
  font-family:'Inter',sans-serif;
}

.desc{
  font-size:14px;
  fill:#555;
  font-family:'Inter',sans-serif;
}
.hero-title {
  position: absolute;
  inset: 0;              /* top:0 right:0 bottom:0 left:0 */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
    z-index: 2;              /* 🔥 IMPORTANT */

}

.hero-title h1 {
  color: #fff;           /* remove inline style later */
  font-size: 42px;
  font-weight: 700;
}
.contact-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 80px 20px;
  background: #fff;
  flex-wrap: wrap; /* 🔑 allows stacking */
}

.contact-card {
  width: 360px;
  height: 230px;
  border: 1px solid #bdbdbd;
  border-radius: 6px;
  text-align: center;
  padding: 40px 20px 20px;
  position: relative;
  background: #fff;
}

.icon-circle {
  width: 54px;
  height: 54px;
  background: #6c757d;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 22px;
}
.icon-circle img {
  width: 22px;
  height: 22px;
  filter: invert(1); /* white icon */
}
.contact-card h3 {
  margin-top: 60px;
  font-size: 26px;
  font-weight: 600;
  color: #000;
}

.contact-card p {
  margin-top: 10px;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

/* 📱 MOBILE VIEW */
@media (max-width: 768px) {
  .contact-info {
    padding: 50px 15px;
    gap: 20px;
  }

  .contact-card {
    width: 100%;
    max-width: 360px;
    height: auto;
    padding-bottom: 30px;
  }

  .contact-card h3 {
    font-size: 22px;
  }

  .contact-card p {
    font-size: 15px;
  }
}
/* RESET */


/* ===== QUOTE SECTION ===== */
.quote-section {
  padding: 60px 40px;
  background: #dfeadf;
  background-image: url("images/pattern.png"); /* optional pattern */
}

.quote-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 30px;
  background: transparent;
}

/* FORM */
.quote-form {
  flex: 1;
}

.quote-form h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.quote-form label {
  display: block;
  font-size: 16px;
  margin: 14px 0 6px;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
}

.quote-form textarea {
  height: 120px;
  resize: none;
}

.quote-form button {
  margin-top: 20px;
  width: 100%;
  padding: 14px;
  background: #111;
  color: #fff;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

/* IMAGE */
.quote-image {
  flex: 1;
}

.quote-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/* ===== MAP SECTION ===== */
.map-section {
  width: 100%;
  height: 420px;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 768px) {
  .quote-container {
    flex-direction: column;
  }

  .quote-section {
    padding: 40px 20px;
  }

  .quote-image {
    height: 260px;
  }
}
.services-section {
  width: 90%;
  margin: auto;
  padding: 60px 0;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 60px;
}

.service-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
  gap: 40px;
}

.service-box.reverse {
  flex-direction: row-reverse;
}

.service-img {
  flex: 1;
  text-align: center;
}

.service-img img {
  width: 450px;
  height: 450px;
  object-fit: cover;
  border-radius: 50%;
  background: #e9e9ff;
  padding: 30px;
}

.service-content {
  flex: 1;
}

.service-content h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.service-content p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #5b5df0;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
}

.btn:hover {
  background: #4446d4;
}

/* Responsive */
@media(max-width: 768px) {
  .service-box,
  .service-box.reverse {
    flex-direction: column;
    text-align: center;
  }

  .service-img img {
    width: 250px;
    height: 250px;
  }
}
.service-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card {
  position: relative;
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.arrow {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 20px;
}
.footer {
  background: #000000;
  padding: 60px 0 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #ccc;
  padding-bottom: 40px;
}

.footer-col {
  flex: 1;
  padding: 0 40px;
}

.footer-col:not(:last-child) {
  border-right: 1px solid #d3d3d3;
}

/* Logo */
.footer-logo {
  width: 180px;
  margin-bottom: 25px;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.social-icons .icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.social-icons .icon img {
  width: 22px;
  height: 22px;
}

/* Individual Colors */
.facebook { background: #4c6ef5; }
.youtube { background: #ff0000; }
.instagram { background: #f1ecec; }

/* Left Text */
.footer-text {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.6;
  max-width: 420px;
}

/* Middle Links */
.middle ul {
  list-style: none;
  padding: 0;
}

.middle ul li {
  margin-bottom: 20px;
}

.middle ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
}

/* Right Contact */
.contact {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  color: white;
}

.contact::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #f1c40f;
  margin-top: 6px;
}

/* Bottom Social Links */
.social-links {
  margin-top: 20px;
}

.social-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
}

/* Copyright */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  color: #7a7a7a;
  font-size: 16px;
}

@media (max-width: 768px) {

  .footer {
    padding: 40px 0 20px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 95%;
  }

  .footer-col {
    padding: 20px 0;
    border-right: none !important; /* remove vertical lines */
    width: 100%;
  }

  /* Logo */
  .footer-logo {
    width: 150px;
    margin-bottom: 20px;
  }

  /* Social Icons Center */
  .social-icons {
    justify-content: center;
    gap: 15px;
  }

  .social-icons .icon {
    width: 50px;
    height: 50px;
  }

  .social-icons .icon img {
    width: 20px;
    height: 20px;
  }

  /* Footer Text */
  .footer-text {
    font-size: 16px;
    max-width: 100%;
  }

  /* Middle Links */
  .middle ul li {
    margin-bottom: 15px;
  }

  .middle ul li a {
    font-size: 16px;
  }

  /* Contact Section */
  .contact {
    font-size: 18px;
  }

  /* Social text links */
  .social-links {
    margin-top: 15px;
  }

  .social-links a {
    font-size: 14px;
  }

  /* Copyright */
  .footer-bottom {
    font-size: 14px;
  }
}
.project-section {
  width: 100%;
  overflow: hidden;
}

.project-card {
  position: relative;
  width: 100%;
  height: 500px; /* Adjust height as needed */
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(40, 40, 70, 0.65); /* dark bluish overlay */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  text-align: center;
  color: #fff;
}

/* Text Styling */
.overlay h2 {
  font-size: 40px;
  margin-bottom: 10px;
  font-weight: 600;
}

.overlay p {
  font-size: 20px;
  opacity: 0.9;
}

/* Hover Effects */
.project-card:hover img {
  transform: scale(1.05);
}

.project-card:hover .overlay {
  opacity: 1;
}
/* Light Top Section */
.scroll-indicator {
  height: 120px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Arrow Style */
.arrow-down {
  font-size: 40px;
  color: #e74c3c; /* red like screenshot */
  text-decoration: none;
  animation: bounce 2s infinite;
  transition: 0.3s;
}

.arrow-down:hover {
  color: #000;
}

/* Bounce Animation */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* Project Image Section */
.project-card {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(40, 40, 70, 0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  text-align: center;
  color: #fff;
}

.overlay h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.overlay p {
  font-size: 20px;
}

/* Hover */
.project-card:hover img {
  transform: scale(1.05);
}

.project-card:hover .overlay {
  opacity: 1;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* ========================= */
/* 📱 Mobile Responsive */
/* ========================= */

@media (max-width: 768px) {

  .scroll-indicator {
    height: 90px;
  }

  .arrow-down {
    font-size: 30px;
  }

  .project-card {
    height: 350px;
  }

  .overlay h2 {
    font-size: 24px;
  }

  .overlay p {
    font-size: 16px;
  }
}

.menu-toggle {
  display: none;
}
/* =============================== */
/* 📱 MOBILE RESPONSIVE */
/* =============================== */

@media (max-width: 991px) {

  /* NAVBAR */
  .custom-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-menu {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    display: none;
    padding: 20px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    gap: 0px;
  }

  .nav-menu li {
    margin: 15px 0;
    text-align: center;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    display: block;
  }

  .nav-menu.active {
    display: flex;
  }

  /* HERO CENTER */
  .hero-center {
    text-align: center;
    padding: 60px 20px;
  }

  .hero-center h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .hero-center p {
    font-size: 16px;
  }

  /* HERO BOTTOM */
  .hero-bottom {
    text-align: center;
    padding: 30px 15px;
  }

  .hero-bottom h2 {
    font-size: 22px;
  }

  .view-btn {
    margin-top: 15px;
    width: 100%;
  }

  /* FEATURE CARDS */
  .feature-cards {
    padding: 50px 15px;
  }

  .feature-card {
    text-align: center;
    padding: 30px 20px;
    margin-top: 0px;
  }

  .feature-card h4 {
    font-size: 18px;
  }

  .feature-card p {
    font-size: 14px;
  }
  .menu-toggle {
    display: block;
  }

}
.process-wrapper {
  width: 100%;
  overflow-x: auto;
}

.process-svg {
  width: 100%;
  height: auto;
  font-family: "Inter", Arial, sans-serif;
}

.title {
  font-size: 22px;
  font-weight: 600;
  text-anchor: middle;
}

.desc {
  font-size: 14px;
  fill: #555;
  text-anchor: middle;
}

.red { fill: #ef5a5a; }
.purple { fill: #6f4bb8; }
.blue { fill: #3f5cff; }

.process-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.process-wrapper {
  width: 80%;
  margin-bottom: 60px;
  margin: 0 auto;
}
.process-content {
  margin-top: -30px;
  width: 80%;
  margin: 0 auto; 
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 90px;
}

.process-box h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
}

.process-box p {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
  .process-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}
.process-wrapper img {
  width: 100%;
  height: 590px; /* control height */
  object-fit: cover; /* prevents stretching */
  border-radius: 10px;
}