/* ========================================= */
/* ===== LAPTOP / DESKTOP  ===== */
/* ========================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #000;
  color: #fff;
  min-height: 200vh;
}

/* HEADER */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 60px;
  z-index: 1000;
}

.logo-box {
  background: #ff7a2f;
  width: 130px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo-img {
  max-width: 100%;
  max-height: 90px;
  object-fit: contain;
}

.nav-card {
  background: #fff;
  display: flex;
  height: 55px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 15px;
  padding: 0 25px;
  display: flex;
  align-items: center;
  border-bottom: 4px solid transparent;
  transition: all 0.3s ease;
  height: 100%;
}

.nav-link.active {
  color: #ff7a2f;
  border-bottom: 4px solid #ff7a2f;
}

.divider {
  width: 1px;
  height: 20px;
  background-color: #eee;
  align-self: center;
}

.header-actions {
  display: flex;
  gap: 12px;
}

.btn-contact {
  background: #ff7a2f;
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.btn-quote {
  background: #3a3a3a;
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
}


/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("assests/images/Home1.png");
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8) 0%,   /* TOP DARK */
    rgba(0, 0, 0, 0.4) 0%,  /* fade */
    rgba(0, 0, 0, 0) 60%,    /* middle clear */
    rgba(0, 0, 0, 0.6) 1000%  /* bottom dark */
  );
  z-index: 1;
}

/* keep content above overlay */
.hero > * {
  position: relative;
  z-index: 2;
}

.hero-content {
  padding: 200px 80px 0;
  max-width: 1000px;
}

.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 55px;
  line-height: 63px;
  max-width: 837px;
}

/* Hide hero paragraph on mobile & tablet */
.hero-content p {
  display: none;
}

/* Show only on laptop/desktop */
@media (min-width: 1025px) {
  .hero-content p {
    display: block;
  }
}

.hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.6;
  max-width: 700px;
  margin-top: 100px;
  margin-bottom: 40px;
}

.slider-indicators {
  display: flex;
  gap: 12px;
}

.slider-indicators span {
  width: 45px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

.slider-indicators span.active {
  background: #ff7a2f;
}

/* CLIENTS MARQUEE */
.clients {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-bottom: 30px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  z-index: 50;
  overflow: hidden;
}

.clients-title {
  padding-left: 80px;
  margin-bottom: 20px;
  font-style: italic;
  font-size: 18px;
  color: #fff;
}

.marquee {
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scroll 95s linear infinite;
}

.marquee-set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee-set img {
  height: 100px;
  margin: 0 45px;
  /* filter: brightness(0) invert(1); */
  /* opacity: 0.8; */
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ABOUT SECTION */
.about-hero-section {
  display: flex;
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: #0c0908;
  overflow: hidden;
}

.black-panel {
  width: 40%;
  background-color: #0c0908;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 80px;
  padding-left: 80px;
  padding-right: 8%;
  position: relative;
  z-index: 2;
}

.image-panel {
  width: 60%;
  height: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  background-color: #0c0908;
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 100% center;
  display: block;
}

.floating-content-card {
  position: absolute;
  top: 50%;
  left: 80px;  
  transform: translateY(-62%);
  width: 60%;
  background: radial-gradient(circle at 85% 15%, #251a15 0%, #000000 65%);
  padding: 20px 20px;
  z-index: 10;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.sub-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 63px;
  color: #ffffff;
  margin-bottom: -20px;
}

.main-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 63px;
  color: #ff7a2f;
  margin-bottom: 25px;
}

.description {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 32px;
  color: #cecece;
  margin-bottom: 40px;
  max-width: 95%;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ff7a2f;
  color: #fff;
  padding: 10px 30px;
  text-decoration: none;

  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;

  border-radius: 6px;
  transition: background 0.3s;
}

.btn-read-more:hover {
  background-color: #e0601a;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 150%;
}

.stat-box {
  display: flex;
  flex-direction: column;
}

.stat-box:first-child {
  padding-left: 0;
}

.stat-box:not(:first-child) {
  padding-left: 40px;
}

.stat-num {
  font-size: 60px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 141%;
  color: #ffffff;
  opacity: 0.8;
}

.stat-line {
  width: 1px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  margin-left: 40px;
}


/* ========================================= */
/* --- FULL SCREEN SERVICES SECTION --- */
/* ========================================= */
.services-full-section {
  background: url('assests/images/background.png'),
    radial-gradient(circle at center, rgba(52, 18, 18, 0.4) 0%, rgba(0, 0, 0, 0.9) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 80px;
  position: relative;
  z-index: 1;
}

.services-wrapper {
  width: 100%;
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.services-main-content {
  display: flex;
  align-items: flex-start;   /* top alignment */
  justify-content: space-between;
  flex: 1;
  gap: 60px; 
}

.services-text-box {
  flex: 1;
  max-width: 600px;
  margin-top: 20px;
}

.serv-sub {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 40px;
  color: #f9f1f1;
  margin-bottom: 30px;
}

.serv-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 40px;
  color: #ff7a2f;
  margin-bottom: 25px;
}

.serv-desc-container {
  min-height: 150px;
  margin-bottom: 20px;
}

  .serv-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;                /* exact size */
    line-height: 30px;              /* exact line height */
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.8);  /* 80% opacity */
    max-width: 567px;                /* exact width */
    margin: 0;
  }


.btn-read-more-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background-color: #ff7a2f;
  color: #fff;

  padding: 10px 30px;
  text-decoration: none;

  font-family: 'Poppins', sans-serif;
  font-weight: 400;   /* Figma Medium */
  font-size: 15px;

  border-radius: 6px; /* same button style */
  transition: background 0.3s ease;
}

.btn-read-more-solid:hover {
  background-color: #e0601a;
}

.serv-view-all {
  margin-left: 0;
  padding-bottom: 15px;
}

.services-image-box {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 450px;
}

.serv-png {
  width: 100%;
  max-width: 500px;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.5));
}

.services-nav-tabs {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  width: 100%;
  overflow-x: auto;
  padding-bottom: 20px;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.serv-tab {
  flex: 0 0 auto;
  flex: 1;
  opacity: 0.5;
  transition: 0.3s ease;
  cursor: pointer;
}

.serv-tab.active {
  opacity: 1;
}

.serv-tab p {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.serv-tab.active p {
  color: #ff7a2f;
}

.serv-line{
  width:100%;
  height:4px;
  background:rgba(255,255,255,0.2);
  border-radius:30px;
  position:relative;
  overflow:hidden;
}

.serv-fill{
  height:100%;
  width:0%;
  background:#ff7a2f;
  border-radius:30px;
  transition:width .4s ease;
}

.serv-tab.active .serv-fill{
  width:100%;
}

/* PORTFOLIO SECTION */
.portfolio-section {
  background-color: #000;
  width: 100%;
  min-height: 100vh;
  display: flex;
  padding: 80px 0 80px 80px;
  overflow: hidden;
  position: relative;
}

.portfolio-container {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 60px;
}

.portfolio-intro {
  flex: 0 0 350px;
  z-index: 5;
}
.port-subtitle {
  font-size: 24px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 4px;   /* 10px se kam */
}

.port-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 52px;   /* 63px se kam */
  color: #ff7a2f;
  margin-bottom: 25px;
}
.port-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 20px;
}

.btn-orange-block {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background-color: #ff7a2f;
  color: #fff;

  padding: 12px 36px;
  text-decoration: none;

  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;

  border-radius: 6px;
  transition: background 0.3s ease;
}
.btn-orange-block:hover {
  background-color: #e0601a;
}

/* ⭐ FIX: STACK CARDS AND SCROLLBAR VERTICALLY */
.portfolio-slider-area {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column; 
  justify-content: center;
  width: 100%;
}

/* FIX: Align arrow button vertically to the cards */
.slider-nav-prev {
  position: absolute;
  left: -25px;
  top: 45%; 
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.slider-nav-prev:hover {
  transform: translateY(-50%) scale(1.1);
}

.portfolio-cards-track {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding-left: 25px;
  padding-bottom: 20px;
  width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.portfolio-cards-track::-webkit-scrollbar {
  display: none;
}

.port-card {
  min-width: 320px;
  height: 520px;
  position: relative;
  background: #222;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 2px;
}

.port-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.port-card:hover .port-img {
  transform: scale(1.05);
}

.port-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 80%,   /* strong black at bottom */
    rgba(0, 0, 0, 0.7) 100%,   /* medium fade */
    rgba(0, 0, 0, 0.3) 100%,   /* light fade */
    rgba(0, 0, 0, 0) 100%     /* transparent top */
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
}

.port-category {
  font-size: 12px;
  color: #bbb;
  margin-bottom: 15px;
  display: block;
  position: relative;
  padding-bottom: 8px;
  width: fit-content;
}

.port-category::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 210px;
  height: 2px;
  background-color: #ff7a2f;
}

.port-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: none;
  padding-bottom: 0;
  padding-top: 5px;
}

.port-card-footer h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 33px;
  margin: 0;
}

.port-arrow-circle {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transform: translateY(-30px);
}

.port-arrow-circle:hover {
  background: #ff7a2f;
}

.port-arrow-circle svg {
  stroke: #ff7a2f;
  transition: 0.3s;
}

/* ⭐ Scroll Progress Bar FIX */
.portfolio-scrollbar {
  width: calc(100% - 25px); 
  height: 4px; 
  background: #D9D9D9; 
  border-radius: 5px;
  margin-top: 0px; 
  margin-left: 25px; 
  position: relative; 
}

.portfolio-scroll-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #ff7a2f;
  border-radius: 5px;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
  background-color: #2a2a2a;
  background-image: url('assests/images/background5.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  padding: 122px 80px;
  display: flex;
}

.testi-container {
  width: 100%;
}

.testi-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}

.testi-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 63px;
  letter-spacing: -0.72px;
  color: #ffffff;
}

.testi-cards-wrapper {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  padding-top: 10px;

}

/* Hide scrollbar cleanly */
.testi-cards-wrapper::-webkit-scrollbar {
  display: none;
}

.testi-card {
  background: linear-gradient(145deg, #44210a 0%, #1a0f08 100%);
  border: 1px solid rgba(255, 122, 47, 0.1);
  min-width: 340px;
  max-width: 420px;
  height: 230px;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
  transition: 0.3s ease;
}

.testi-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 122, 47, 0.4);
}

.testi-text {
  color: #e0e0e0;
  font-size: 14px;
  line-height: 1.6;
  overflow-y: auto;
  max-height: 140px;
  padding-right: 6px;
}

/* Optional scrollbar styling */
.testi-text::-webkit-scrollbar {
  width: 4px;
}
.testi-text::-webkit-scrollbar-thumb {
  background: #ff7a2f;
  border-radius: 10px;
}

.client-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  color: #ff7a2f;
  margin-top: 20px;
}

.testi-navigation {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
  width: 100%;
}

.bar-indicators {
  display: flex;
  gap: 12px;
}

.nav-bar {
  width: 55px;
  height: 6px;
  background-color: #4a4a4a;
  border-radius: 4px;
}

.nav-bar.active {
  background-color: #ff7a2f;
}

.view-all-btn {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s;
}

.view-all-btn:hover {
  color: #ffffff;
}

/* FOOTER SECTION */
.site-footer {
  background-color: #000000;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  padding: 80px 80px 20px;
  width: 100%;
  border-top: 1px solid #111;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 70px;
  align-items: flex-start;
}

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

.contact-col {
  flex: 1.4;
}

.links-col {
  flex: 0.7;
}

.services-col {
  flex: 0.7;
}

.map-col {
  flex: 1.5;
}

.footer-logo {
  margin-bottom: 35px;
}

.footer-logo img {
  height: 75px;
  object-fit: contain;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 15px;
  color: #cccccc;
  line-height: 1.6;
}

.icon-box {
  width: 20px;
  display: flex;
  justify-content: center;
  margin-top: 4px;
  color: #fff;
}

.footer-col h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 35px;
  letter-spacing: 0.5px;
}

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

.footer-links li {
  margin-bottom: 18px;
}

.footer-links a {
  color: #999;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ff7a2f;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.social-link svg {
  width: 22px;
  height: 22px;
  color: #fff;
  transition: 0.3s;
}

.social-link:hover svg {
  stroke: #ff7a2f;
}

.map-container {
  width: 100%;
  height: 350px;
  background-color: #222;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-bottom {
  border-top: 1px solid #1f1f1f;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: #777;
}

.legal-links {
  display: flex;
  gap: 40px;
}

.legal-links a {
  color: #777;
  text-decoration: none;
  transition: 0.3s;
}

.legal-links a:hover {
  color: #fff;
}


/* ========================================= */
/* ===== SERVICES SLIDER ANIMATION   ===== */
/* ========================================= */
@keyframes slideFade {
  0% { opacity: 0; transform: translateX(15px); }
  100% { opacity: 1; transform: translateX(0); }
}
.animate-slide {
  animation: slideFade 0.4s ease-out forwards;
}

/* ========================================= */
/* ===== TABLET RESPONSIVE (MAX 1024px) ===== */
/* ========================================= */
@media (max-width: 1024px) {
  .about-hero-section {
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 0;
    overflow: visible;
  }

  .black-panel {
    width: 100%;
    order: 3;
    padding: 60px 20px 40px;
    align-items: center;
    justify-content: center;
  }

  .image-panel {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    order: 2;
    display: block;
    overflow: hidden;
  }

  .image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .floating-content-card {
    position: relative;
    width: 90%;
    left: auto;
    top: 0;
    margin-bottom: 0;
    transform: none;
    margin-left: auto;
    margin-right: auto;
    order: 1;
    padding: 30px;
  }

  .stats-container {
    justify-content: space-between;
    width: 100%;
    max-width: 400px;
  }

  .stat-line {
    display: none;
  }

  .stat-box {
    text-align: center;
    padding-left: 0 !important;
  }

  .stat-num {
    font-size: 32px;
  }

  .services-full-section {
    height: auto;
    padding: 100px 30px 50px;
  }

  .services-main-content {
    flex-direction: column;
    text-align: flex-start;
  }

  .services-image-box {
    margin-top: 40px;
    justify-content: center;
    height: auto;
  }

  .serv-title {
    font-size: 40px;
  }

  .serv-desc-container {
    min-height: auto;
  }

  .services-nav-tabs {
    flex-wrap: wrap;
    display: flex;
  gap: 15px;
  overflow-x: auto;
  }

  .portfolio-section {
    padding: 80px 30px;
    height: auto;
    flex-direction: column;
  }

  .portfolio-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .portfolio-intro {
    width: 100%;
    flex: auto;
  }

  .slider-nav-prev {
    display: none;
  }

  .portfolio-cards-track {
    padding-left: 0;
  }

  .port-card {
    min-width: 280px;
    height: 420px;
  }

  .testimonials-section {
    padding: 60px 30px;
  }

  .testi-header {
    flex-direction: column;
    gap: 20px;
  }

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

  .testi-card {
    min-width: 280px;
    height: auto;
    padding: 30px;
  }

  .testi-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
  }

  .bar-indicators {
    display: flex;
    gap: 14px;
  }

  .nav-bar {
    width: 60px;
    height: 6px;
    border-radius: 20px;
    background: #5a5a5a;
  }

  .nav-bar.active {
    background: #ff7a2f;
  }

  .view-all-btn {
    font-size: 14px;
    color: #bdbdbd;
    text-decoration: none;
  }

  .site-footer {
    margin-top: -40px;
    padding-top: 40px;
  }

  .footer-container {
    flex-direction: column;
    gap: 40px;
  }

  .map-container {
    height: 300px;
  }

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

  .legal-links {
    gap: 20px;
    justify-content: center;
  }
}


/* ========================================= */
/* ===== MOBILE RESPONSIVE (MAX 768px) ===== */
/* ========================================= */
@media (max-width: 768px) {

  html,
  body {
    min-height: auto;
    overflow-x: hidden;
  }

  .hero {
    width: 100%;
    height: 50vh; /* full screen */
    margin-top: 40px;
    background-image: url("assests/images/mobilehome.png");
    background-repeat: no-repeat;
    
    background-size: contain; /* ⭐ IMPORTANT FIX */
    background-position: top center;

    background-color: #000; /* fills empty space */
  }

  .hero-content {
    padding: 92px 12px 18px;
    max-width: 100%;
    width: min(100%, 360px);
  }

  .hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px !important;
    font-weight: 700;
    line-height: 32px !important;
    color: #ffffff;
    margin-bottom: 10px;
  }

  .hero p {
    font-size: 14px;
    line-height: 1.5;
    max-width: 100%;
    margin-bottom: 14px;
    overflow-wrap: break-word;
  }

  .slider-indicators span {
    width: 30px;
    height: 5px;
    border-radius: 999px;
  }

  .clients {
    
    padding: 6px 0 10px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.78) 45%, #000 100%);
  }

  .clients-title {
    padding-left: 12px;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 700;
  }

  .marquee-set img {
    height: 100px;
    margin: 0 25px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .about-hero-section {
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 0;
    overflow: visible;
  }

  .black-panel {
    width: 100%;
    order: 3;
    padding: 22px 16px 28px;
    margin-top: 0;
  }

  .image-panel {
    width: 100%;
    order: 2;
    height: auto;
    aspect-ratio: 16 / 9;
    display: block;
    overflow: hidden;
  }

  .image-panel img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
  }

  .floating-content-card {
    position: relative;
    order: 1;
    width: 100%;
    top: 0;
    left: auto;
    transform: none;
    margin: 0;
    padding: 30px 22px 28px;
    background: linear-gradient(140deg, #07090d 0%, #030303 58%, #2a1308 100%);
    box-shadow: none;
    border: 0;
  }

  .sub-title {
    font-size: 15px !important;
    line-height: 22px;
    margin-bottom: -25px !important;
  }

  .main-title {
    margin-top: 10px !important;
    font-size: 34px;
    margin-bottom: 28px;
  }

  .description {
    font-size: 14px;
    line-height: 32px;
    margin-bottom: 28px;
    max-width: 100%;
    margin-top: -17px;
  }

  .floating-content-card .btn-read-more {
    min-width: unset !important;
    height: auto !important;
    padding: 10px 24px !important;
    font-size: 14px !important;
    border-radius: 6px !important;
    line-height: normal !important;
    width: auto !important;
    display: inline-block !important;
  }

  .btn-read-more {
    display: inline-flex;
    width: auto;
    min-width: 190px;
    height: 58px;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 20px;
  }

  .stats-container {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 10px;
    padding: 20px 15px;
    width: 100%;
    max-width: none;
  }

  .stat-num {
    font-size: 22px;
  }

  .stat-label {
    font-size: 13px;
    line-height: 1.35;
  }

  .services-full-section {
    background:
      radial-gradient(70% 55% at 52% 38%, rgba(170, 64, 8, 0.52) 0%, rgba(125, 47, 8, 0.34) 28%, rgba(28, 12, 8, 0.88) 58%, rgba(3, 3, 4, 0.98) 100%),
      radial-gradient(120% 80% at 50% 100%, rgba(15, 26, 42, 0.22) 0%, rgba(0, 0, 0, 0) 55%),
      url('assests/images/background.png');
    background-size: cover, cover, cover;
    background-position: center, center, center;
    background-repeat: no-repeat, no-repeat, no-repeat;
    padding: 30px 20px 40px;
    align-items: flex-start;
  }

  .services-wrapper {
    height: auto;
    gap: 26px;
  }

  .services-main-content {
    gap: 24px;
    flex-direction: column;
  align-items: flex-start;
  }

  .services-text-box {
    margin-top: 0;
    max-width: 100%;
  }

  .serv-sub {
    font-size: 18px;
  }

  .serv-title {
    font-size: 38px;
    margin-bottom: 16px;
  }

  .serv-description {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .serv-view-all {
    margin-left: 0;
    padding-bottom: 0;
  }

  .services-text-box,
  .serv-sub,
  .serv-title,
  .serv-desc-container,
  .serv-view-all {
    text-align: left !important;
    align-self: flex-start !important;
  }

  .btn-read-more-solid {
    margin-left: 0 !important;
  }

  .services-image-box {
    margin-top: 0;
    padding-top: 0;
    height: auto;
  }

  .serv-png {
    max-width: 88%;
  }

  .services-nav-tabs {
    display: flex;
  
  overflow-x: auto;
  }

  .serv-tab {
    
    flex: 0 0 auto;
  }

  .serv-tab p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .portfolio-section {
    padding-top: 0px !important;
    background: #000;
    min-height: auto !important;
    height: auto !important;
  }

  .portfolio-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .portfolio-intro {
    
    align-items: center;
    column-gap: 10px;
    row-gap: -10px;
  }

  .port-subtitle {
    grid-area: subtitle;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
  }

  .port-title {
    grid-area: title;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ff7a2f;
    margin: 0;
    line-height: 1.2;
  }

  .port-desc {
    grid-area: desc;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #cfcfcf;
    margin-top: 12px;
  }

  .portfolio-intro .btn-orange-block {
    grid-area: button;
    align-self: start;
    padding: 8px 18px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    border-radius: 20px !important;
    background-color: #ff7a2f !important;
    color: #ffffff !important;
    height: auto !important;
    min-width: unset;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .portfolio-slider-area {
    width: 100%;
    margin-top: -20px;
  }

  .port-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 28%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 80%,   /* strong black at bottom */
    rgba(0, 0, 0, 0.7) 100%,   /* medium fade */
    rgba(0, 0, 0, 0.3) 100%,   /* light fade */
    rgba(0, 0, 0, 0) 100%     /* transparent top */
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

  .slider-nav-prev {
    display: none;
  }

  .portfolio-cards-track {
    gap: 0;
    padding: 0;
  }
  
  /* MOBILE SCROLLBAR FIX */
  .portfolio-scrollbar {
    width: 100% !important;
    margin-left: 0 !important;
    margin-top: 0px !important; 
  }

  .port-card {
    min-width: 100%;
    max-width: none;
    height: 560px;
    border-radius: 15px; 
    position: relative;
    overflow: hidden; 
    margin-right: 10%;
  }
 

  .port-category,
  .port-card-footer {
    transform: translateY(-15px);
  }

  .port-category {
    margin: 0 0 4px 0 !important;
  }

  .port-card-footer {
    padding: 0 !important;
    margin: 0 !important;
  }

  .port-card-footer h3 {
    margin: 0 !important;
    line-height: 1.1 !important;
  }

  .port-category {
    color: #fff;
    margin-bottom: 10px;
    font-size: 15px;
  }

  .port-category::after {
    width: 125px;
  }

  .port-card-footer h3 {
    transform: translateY(-10px);
  }

  .port-arrow-circle {
    width: 36px !important;
    height: 36px !important;
    transform: translate(-8px, -14px) !important; 
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
  }

  .port-arrow-circle svg {
    width: 16px !important;
    height: 16px !important;
  }

  .testimonials-section {
    padding: 10px 20px;
  }

  .testi-title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px !important;
    font-weight: 600;
    line-height: 30px !important;
    margin-bottom: 10px !important;
    margin-top: 20px;
    color: #fff;
  }

  .testi-cards-wrapper {
    display: flex;
    gap: 18px;
    margin-top: -30px !important;
  }

  .testi-card {
    background: linear-gradient(135deg, #3b1f0f 0%, #2a1409 40%, #ff7a2f40 100%);
    border: 1px solid rgba(255, 122, 47, 0.1);
    border-radius: 22px;
    width: 300px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  .testi-text {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #e8e8e8;
    margin-bottom: 14px;
  }

  .client-name {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ff7a2f;
    margin-bottom: -10px;
  }

  .testi-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .bar-indicators {
    display: flex;
    gap: 14px;
  }

  .nav-bar {
    width: 75px;
    height: 5px;
    border-radius: 10px;
    background: #555;
  }

  .nav-bar.active {
    background: #ff7a2f;
  }

  .view-all-btn {
    font-size: 13px;
    color: #aaa;
    text-decoration: none;
  }
}


/* ========================================= */
/* ===== MOBILE RESPONSIVE (MAX 480px) ===== */
/* ========================================= */
@media (max-width:480px){

/* HERO */
.hero-content{
  padding:84px 12px 16px;
}

.hero h1{
  font-size:22px;
  line-height:32px;
}

.hero p{
  font-size:14px;
}


/* CLIENTS */
.clients-title{
  padding-left:12px;
  font-size:10px;
}

.marquee-set img{
  height:70px;
  margin:0 15px;
}


/* PORTFOLIO */

.portfolio-section{
  padding:0 20px;
  height:auto;
  flex-direction:column;
}

.portfolio-container{
  flex-direction:column;
  gap:30px;
}

.portfolio-intro{
  width:100%;
}

.port-card{
  min-width:85vw;
  max-width:85vw;
  height:480px;
  border-radius:16px;
  margin-right:20px;
}

.port-img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:top center;
}

.port-card-footer h3{
  font-size:20px;
}

.port-arrow-circle{
  width:38px;
  height:38px;
}


/* SERVICES */

.services-full-section{
  height:auto;
  padding:38px 20px;
}

.services-wrapper{
  flex-direction:column;
  gap:10px;
}

.services-main-content{
  flex-direction:column;
  gap:16px;
}

.services-text-box{
  width:100%;
  order:1;
}

.services-image-box{
  order:2;
  width:100%;
  aspect-ratio:16/9;
}

.serv-view-all{
  order:3;
}

.serv-title{
  font-size:22px;
}

.serv-description{
  font-size:14px;
}


/* SERVICES NAV */

.services-nav-tabs{
  display:flex;
  overflow-x:auto;
  flex-wrap:nowrap;
  padding-inline: 10px;
}

.serv-tab p{
  display:none;
}

.serv-line{
  height:6px;
  width:38px;
}


/* FLOAT BUTTON */

.whatsapp-float{
  right:12px;
  bottom:12px;
  width:48px;
  height:48px;
}

}
/* desktop..code */
@media (min-width:1025px){

.serv-png{
  width:100%;
  max-width:750px; 
  height:auto;
}

.services-image-box{
  height:500px; 
}



}
/* ========================================= */
/* ===== TABLET / SMALL DESKTOP (MAX 1280px) ===== */
/* ========================================= */
@media (max-width: 1280px) {

  /* ⭐ PORTFOLIO FIX FOR 1241px ⭐ */
  .portfolio-section { 
    padding: 80px 0 80px 40px; 
    height: auto; 
    display: flex; 
    flex-direction: row; 
    overflow: hidden; 
    margin-top: 40px;
  }
  
  .portfolio-container { 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; 
    gap: 30px; 
    width: 100%; 
  }
  
  .portfolio-intro { 
    flex: 0 0 210px; 
    width: 260px; 
  }
  
  .portfolio-slider-area { 
    flex: 1; 
    min-width: 0; 
    display: flex; 
    flex-direction: column; 
    width: 100%; 
  }
  
  .portfolio-cards-track { 
    display: flex; 
    flex-wrap: nowrap; 
    gap: 20px; 
    width: 100%; 
    overflow-x: auto; 
    padding-left: 0;  
    padding-bottom: 20px; 
    -webkit-overflow-scrolling: touch; 
  }
  
  .port-card { 
    min-width: 320px; 
    height: 420px; 
    flex-shrink: 0; 
  }
  
 .portfolio-scrollbar { 
    width: calc(100% - 60px); 
    height: 4px; 
    background: #D9D9D9; 
    margin-left: 0; 
    margin-top: 10px; 
  }
  
  .slider-nav-prev { 
    display: none; 
  }
}
