/* --- RESET & BASE --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

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

/* --- HEADER (Floating Islands) --- */
.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 Styling */
.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: 100%;
  object-fit: contain;
}

/* Navigation */
.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;
}

/* Buttons */
.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:
    linear-gradient(rgba(100, 60, 30, 0.65), rgba(40, 20, 10, 0.85)),
    url("assests/images/mountain.png");
  background-size: cover;
  background-position: center;
}

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

.hero h1 {
  font-family: "Georgia", serif;
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: normal;
}

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

/* Slider Indicators */
.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;
}

.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 30s linear infinite;
}

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

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

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

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

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 40px;
  background: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* ========================================= */
/* --- 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: 4%;
  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: 4%;
  transform: translateY(-62%);
  width: 64%;
  background: radial-gradient(circle at 85% 15%, #251a15 0%, #000000 65%);
  padding: 60px 50px;
  z-index: 10;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Card Typography */
.sub-title {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.main-title {
  color: #ff7a2f;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.1;
}

.description {
  color: #cecece;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 95%;
}

.btn-read-more {
  display: inline-block;
  background-color: #ff7a2f;
  color: #fff;
  padding: 14px 35px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: 2px;
  transition: background 0.3s;
}

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

/* Stats Section */
.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: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  color: rgba(246, 244, 244, 0.974);
  font-size: 14px;
  font-weight: 400;
}

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

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

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

  .image-panel {
    width: 100%;
    height: 350px;
    order: 1;
    display: block;
  }

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

  .floating-content-card {
    position: relative;
    width: 90%;
    left: auto;
    top: -50px;
    margin-bottom: -50px;
    transform: none;
    margin-left: auto;
    margin-right: auto;
    order: 2;
    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;
  }
}

/* --- 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: center;
  justify-content: space-between;
  flex: 1;
}

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

.serv-sub {
  font-size: 24px;
  color: #f9f1f1;
  font-weight: 300;
  margin-bottom: 10px;
}

.serv-title {
  font-size: 64px;
  color: #ff7a2f;
  font-weight: 800;
  margin-bottom: 25px;
}

.serv-description {
  font-size: 18px;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 40px;
}

.services-image-box {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 60px;
}

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

/* Bottom Tabs Styling */
.services-nav-tabs {
  display: flex;
  align-items: flex-end;
  gap: 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;
}

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

.serv-tab p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
  white-space: nowrap;
}

.serv-line {
  height: 3px;
  background: #444;
  width: 100%;
  position: relative;
}

.serv-fill {
  height: 100%;
  width: 60%;
  background: #ff7a2f;
}

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

.serv-view-all a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

@media (max-width: 1024px) {
  .services-full-section {
    height: auto;
    padding: 100px 30px 50px;
  }

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

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

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

  .services-nav-tabs {
    flex-wrap: wrap;
  }
}

/* ========================================= */
/* --- PORTFOLIO SECTION --- */
/* ========================================= */

.portfolio-section {
  background-color: #000;
  width: 100%;
  min-height: 100vh;
  display: flex;
  padding: 80px 0 80px 120px;
  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: 10px;
}

.port-title {
  font-size: 46px;
  color: #ff7a2f;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.1;
}

.port-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 40px;
}

.btn-orange-block {
  display: inline-block;
  background-color: #ff7a2f;
  color: #fff;
  padding: 15px 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border-radius: 2px;
  transition: background 0.3s;
}

.btn-orange-block:hover {
  background-color: #e0601a;
}

.portfolio-slider-area {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.slider-nav-prev {
  position: absolute;
  left: -25px;
  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: 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;
}

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

/* Cards */
.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: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  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-size: 24px;
  color: #fff;
  font-weight: 600;
}

.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;
}

@media (max-width: 1024px) {
  .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 --- */
/* ========================================= */

.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%;
}

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

.testi-title {
  font-size: 42px;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.3;
}

/* Cards Wrapper */
.testi-cards-wrapper {
  display: flex;
  gap: 30px;
  width: 100%;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: none;
}

.testi-cards-wrapper::-webkit-scrollbar {
  display: none;
}

/* Individual Card (Dark Gradient) */
.testi-card {
  background: linear-gradient(145deg, #44210a 0%, #1a0f08 100%);
  border: 1px solid rgba(255, 122, 47, 0.1);
  flex: 1;
  min-width: 320px;
  height: 220px;
  padding: 40px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

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

.testi-text {
  color: #cecece;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

.client-name {
  color: #ff7a2f;
  font-size: 18px;
  font-weight: 800;
  margin-top: 20px;
}

/* --- NEW NAVIGATION (Dots & View All) --- */
.testi-navigation {
  display: flex;
  justify-content: flex-end;
  /* Right align */
  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;
}

/* Responsive Mobile */
@media (max-width: 1024px) {
  .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 {
    justify-content: center;
    flex-direction: column;
    gap: 20px;
  }
}

/* ========================================= */
/* --- FOOTER SECTION (UPDATED) --- */
/* ========================================= */

.site-footer {
  background-color: #000000;
  color: #ffffff;
  font-family: "Segoe UI", 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;
}

/* --- Columns --- */
.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;
}

@media (max-width: 1024px) {
  .site-footer {
    padding: 60px 30px;
  }

  .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;
  }
}
/* about us */

