/* Apply smooth transition globally */
* {
    transition: all 0.10s ease;
}
nav ul li a.active {
  color: #ff6600;
  font-weight: 600;
}




/* SERVICE CARD STYLE */


.service-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    /* initial blue shadow */
    box-shadow: 0 4px 15px rgba(34, 131, 196, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;   
}

/* Hover effect */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(34, 131, 196, 0.4); /* stronger blue shadow on hover */
    background: #f5f5f5;
}

/* Icon grows slightly on hover */
.service-card:hover .service-icon i {
    transform: scale(1.2);
    color: #2283c4;
}

/* Add smooth animation to icon */
.service-icon i {
    transition: 0.3s ease;
}







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

body {
    background: #111;
    color: #fff;
}

/* CONTAINER */
.container {
    width: 90%;
    margin: auto;
    max-width: 1300px;
}

/* HEADER */
/* HEADER */
header {
    position: fixed;
    width: 100%;
    top: 0;
    padding: 20px 0;
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease;
    z-index: 1000;
}
/* Services page header */
header.services-header {
    background: #000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

header.scrolled {
    background: #000;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}



header .container {
    width: 100%;
    max-width: 100%;
    padding: 0 40px;

    display: flex;
    justify-content: space-between; /* LEFT + RIGHT */
    align-items: center;            /* vertically center */
}


nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}


/* NAV LINK HOVER EFFECT */
nav a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

/* Underline effect on hover */
nav a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -5px; /* space below text */
    background-color: #2283c4; /* accent color */
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%; /* underline grows on hover */
}

/* Optional: Slight color change on hover */
nav a:hover {
    color: #2283c4;
    transform: translateY(-2px); /* subtle lift effect */
}

header .logo img {
    height: 110px;   /* adjust as needed */
    width: auto;    /* keeps aspect ratio */
    display: block;
}
@media (max-width: 768px) {
    header .logo img {
        height: 70px;   /* smaller logo for mobile */
    }
    
}



#hero {
    height: 100vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    transition: background-image 1s ease-in-out;
}

#hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.hero-vision {
    position: absolute;
    top: 130px;
    left: 80px;
    width: 220px;          /* adjust size */
    height: auto;
    z-index: 2;            /* above dark overlay */
    pointer-events: none; /* prevents blocking clicks */
}

.hero-content {
    position: absolute;
    top: 50%;          /* vertical center */
    left: 20%;         /* distance from left edge */
    transform: translateY(-50%); /* only vertical centering */
    text-align: left;  /* align text left */
    animation: fadeUp 1s ease-out forwards; /* forwards keeps the final state */
    animation-delay: 0.3s; 
    color: #fff;
    font-weight: bold;
}
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY();
    }
}
.dynamic-text {
    color: #2283c4;     /* Blue highlight */
    font-weight: 700;
    border-right: 2px solid #2283c4;
    padding-right: 5px;
    white-space: nowrap;
    overflow: hidden;
    animation: blinkCursor 0.6s infinite;
}

@keyframes blinkCursor {
    0% { border-color: transparent; }
    50% { border-color: #2283c4; }
    100% { border-color: transparent; }
}


.hero-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 500;                       /* Montserrat Medium */
    font-family: "Montserrat", sans-serif;  /* Apply font */
    color: #ffffff75;
}


.hero-content h1 {
    font-size: 80px;
    line-height: 1.3;
    margin-bottom: 20px;
     font-family: "Montserrat", sans-serif;
}
.hero-content .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: #fff;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
}

.home-social {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 10;
}

.home-social li {
    margin: 20px 0;
}

.home-social a {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    opacity: 0.8;
    transition: 0.3s;
}

.home-social a:hover {
    opacity: 1;
    color: #2283c4; 
}

.home-social i {
    font-size: 30px;
    margin-right: 10px;
}

.home-social span {
    font-size: 14px;
}

/* SECTIONS */
.section {
    padding: 100px 0;
    background: #111;
}
#storage-section {
  padding-bottom: 140px; /* increase/decrease as needed */
}

#about .container {
    text-align: center;
}
#about h3 {
    font-size: 20px;
    color: #aaa;
    margin-bottom: 15px;
    margin-top: 20px;
}

#about h1 {
    font-size: 60px;
    margin-bottom: 40px;
}
.about-line {
    width: 60%;
    height: 3px;
    background: #2283c4;   /* Glint-style neon green */
    margin: 20px auto 30px auto; /* space above/below + centered */
}

#about .section-text {
    font-size: 30px;
    line-height: 1.5;
    /* max-width: 700px; */
    margin: 0 auto;      /* center the paragraph */
    margin-top: 20px; 
    margin-bottom: 20px;   /* spacing from the heading */
}
#about {
    padding-bottom: 60px;
}

@media (max-width: 768px) {
    #about {
        padding-bottom: 40px;
    }
}


#services .container {
    text-align: center;
}
#services h3 {
    font-size: 30px;
    color: #000000;
    margin-bottom: 15px;
    margin-top: 8px;
}

#services h1 {
    font-size: 60px;
    color: #000000;
    margin-bottom: 40px;
    
}

.bg-white {
    background: #ffffff;
}
.bg-gray {
    background: #817f7f;
}


.section-title {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.light {
    color: #08fdd8;
}
.services-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 55px;
    margin-top: 50px;
     transform: translateX(-60px); /* shift left by 50px */
    transition: transform 0.5s ease; /* smooth transition if you animate */
}


 .service-item {
    display: flex;
    align-items: flex-start; /* vertically align icon with text */
    gap: 25px; /* space between icon and text */
    margin-bottom: 30px; /* space between services */
}

.service-icon {
    margin-top: 10px;
    font-size: 50px; /* icon size */
    color: #000000; /* icon color */
    min-width: 40px; /* keep space for icon */
}

.service-text h3 {
    display: flex;
    align-items: center;
    font-size: 30px;
    margin: 0 0 10px 0;
    color: #fff;
    white-space: nowrap;  /* Prevent text from wrapping */
}


.service-text h3 i {
    margin-right: 10px; /* spacing between icon and text */
}


.service-text p {
    line-height: 1.6;
    color: #555;
    text-align: left;
}

#contact {
    background: #111;
    color: #fff;
    padding: 100px 0;
    font-family: "Montserrat", sans-serif;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

/* Left: Contact Form */
.contact-primary {
    flex: 1 1 500px;
    background: #1a1a1a;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(8, 253, 216, 0.1);
}

.contact-primary h3 {
    color: #2283c4;
    font-size: 22px;
    margin-bottom: 20px;
}

.contact-primary input,
.contact-primary textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: none;
    background: #222;
    color: #fff;
    font-size: 16px;
}

.contact-primary input::placeholder,
.contact-primary textarea::placeholder {
    color: #aaa;
}

.contact-primary .btn {
    background: linear-gradient(90deg, #08fdd8, #2283c4);
    border: none;
    padding: 14px 30px;
    color: #000;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-primary .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(8, 253, 216, 0.4);
}

/* Right: Contact Info */
.contact-secondary {
    flex: 1 1 400px;
    padding: 20px;
}

.contact-secondary h3 {
    font-size: 22px;
    color: #2283c4;
    margin-bottom: 20px;
}

.contact-secondary .cinfo {
    margin-bottom: 25px;
}

.contact-secondary .cinfo h5 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 8px;
}

.contact-secondary .cinfo p {
    color: #ccc;
    line-height: 1.6;
}

.contact-secondary .contact-social {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
}

.contact-secondary .contact-social li a {
    font-size: 20px;
    color: #2283c4;
    transition: 0.3s;
}

.contact-secondary .contact-social li a:hover {
    color: #2283c4;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-row {
        flex-direction: column;
    }
}
.contact-header {
    margin-bottom: 50px;
   
    text-align: center;
    
}

.contact-header h3 {
    color: #2283c4;
    font-size: 30px;
    margin-bottom: 10px;

}

.contact-header h1 {
    font-size: 60px;
    color: #fff;
    line-height: 1.4;
    font-weight: 600;
     width: 100%;
}

/* GRIDS */
.grid-3, .grid-4 {
    display: grid;
    gap: 20px;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.service-box {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 6px;
}

.portfolio-item {
    height: 200px;
    background: gray;
    border-radius: 6px;
}

/* STATS */
.stat {
    text-align: center;
}

.stat .counter {
    font-size: 40px;
    color: #2283c4;
}

/* CONTACT */
.contact-form {
    display: grid;
    gap: 15px;
    max-width: 500px;
    margin: auto;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: none;
    outline: none;
    border-radius: 4px;
}

button.btn {
    cursor: pointer;
}

#footer {
    background: #000;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
    font-size: 16px;
    margin-top: 0;
}

#footer p {
    margin: 0;
}

/* ================================
   MOBILE RESPONSIVE
================================ */

/* ================================
   MOBILE RESPONSIVE (UP TO 900PX)
================================ */
@media (max-width: 900px) {


    /* HERO */
    #hero {
        padding-bottom: 50px;
        position: relative;
    }

    .hero-content {
        left: 5%;
        top: 55%;
        transform: translateY(-50%);
    }

    .hero-content h1 {
        font-size: 34px;
        line-height: 1.3;
    }

    .hero-content h3 {
        font-size: 18px;
    }

    /* SOCIAL ICONS - show at bottom center */
    .home-social {
        display: none !important;
    }


    .home-social i {
        font-size: 26px;
    }


    /* ABOUT SECTION */
    #about h1 {
        font-size: 34px;
    }

    #about h3 {
        font-size: 18px;
    }

    #about .section-text {
        font-size: 18px;
        line-height: 1.6;
        margin: 15px auto 25px auto;
        max-width: 90%;
    }


    /* SERVICES */
    .services-wrapper {
        grid-template-columns: 1fr !important;
        transform: translateX(0) !important;
        gap: 35px;
        margin-top: 30px;
    }

  .service-card {
        border-radius: 15px;
        padding: 20px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .service-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1px;  
    }

    .service-icon {
        margin-bottom: 1px;
    }

   

    .service-text p {
        font-size: 16px;
        color: #555;
    }

   
  #services h1 {
    font-size: 20px;
}


.service-text h3 {
        display: block;          /* remove flex */
        text-align: center;      /* center heading */
        white-space: normal;     /* allow wrapping */
        margin-bottom: 5px;      /* optional spacing */
    }

   
    .service-text p {
        text-align: center;      /* center paragraph text */
    }
    .service-text p {
        font-size: 16px;
        line-height: 1.5;
        text-align: center;
    }


    /* CONTACT */
    #contact h1 {
        font-size: 20px;
    }

    #contact h3 {
        font-size: 15px;
    }

    .contact-mail-btn {
        font-size: 18px;
        padding: 12px 28px;
    }
}




/* ================================
   HAMBURGER MENU
================================ */
/* HAMBURGER BUTTON */
.hamburger {
    display: none;
    cursor: pointer;
    width: 35px;
    height: 25px;
    position: relative;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger span {
    display: block;
    height: 4px;
    width: 100%;
    background: #fff;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Animate to X when active */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* MOBILE MENU */
@media (max-width: 768px) {

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 50%;
        height: 100vh;
        background: rgba(20, 20, 20, 0.95);
        flex-direction: column;
        gap: 25px;
        padding: 80px 30px;
        transition: right 0.4s ease, opacity 0.4s ease;
        z-index: 999;
        border-radius: 10px 0 0 10px;
        box-shadow: -2px 0 15px rgba(0,0,0,0.3);
        opacity: 0;
    }

    nav ul.active {
        right: 0;
        opacity: 1;
    }

    nav a {
        font-size: 22px;
        color: #fff;
        font-weight: 500;
        transition: 0.3s;
    }

    nav a:hover {
        color: #08fdd8;
        transform: translateX(5px);
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}



/* Services Hero */
.services-hero {
  padding: 100px 0 60px;
  background: #111;
  color: #fff;
}

.services-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.services-hero p {
  font-size: 18px;
  color: #ccc;
}

/* Services Grid */
.services-modern {
  padding: 80px 0;
  background: #f9f9f9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Service Card */
.service-box {
  height: 360px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

/* Overlay */
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.2)
  );
  color: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.service-overlay h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.service-overlay p {
  font-size: 15px;
  line-height: 1.6;
  color: #e0e0e0;
}
.manpower {
  background-image: url("image/manpower/Manpower.png");
}

.rental {
  background-image: url("image/rental/escavator.png");
}

.material {
  background-image: url("image/material/Material.png");
}
.contract {
  background-image: url("image/Contracting/Contracting1.jpg");
}
.transportation {
  background-image: url("image/Transportation/Transportation2.jpg");
}
.accounting {
  background-image: url("image/Accounting/Accounting1.jpg");
}
.portable{
  background-image: url("image/Portable/portable1.jpg");
}
.storage {
  background-image: url("image/Storage/storage2.png");
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Detailed Service Sections */
.service-details {
  padding: 170px 20px 0px;
  background: #f9f9f9;
  color: #111;
}

.service-details h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.service-details p {
  font-size: 16px;
  line-height: 1.6;
}
/* Manpower & Rental Lists (common style) */
.manpower-list,
.rental-list {
  list-style: none; /* remove default bullets */
  padding-left: 0;
  margin-top: 20px;
  line-height: 1.8;
  font-size: 16px;
}

.manpower-list li,
.rental-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

.manpower-list li::before,
.rental-list li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #111; /* arrow color */
  font-weight: bold;
}

/* Container for manpower section */
.manpower-container {
  display: flex;
  align-items: flex-start;
  gap: 0px;
  flex-wrap: wrap; /* responsive */
}

/* Full-width paragraph above list + image */
.manpower-text-full {
  width: 100%;
  margin-bottom: 30px;
}

/* Left column: list */
.manpower-list-image {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.manpower-text {
  flex: 2; /* takes more space */
  min-width: 250px;
}

/* Right column: image */
/* Right column: image */
.manpower-images {
  flex: 1;           /* take remaining space */
  min-width: 250px;  /* prevent shrinking too much */
  max-width: 700px;  /* optional max width */
  height: 400px;     /* fixed height */
  overflow: hidden;  /* hide overflow if image is larger */
  border-radius: 12px;
}

/* Image inside container */
.manpower-images img,
#dynamicManpowerImage {
  width: 100%;
  height: 100%;       /* fill container height */
  object-fit: cover;  /* crop if aspect ratio differs */
  transition: opacity 0.5s ease-in-out;
}

/* Responsive: stack list + image on small screens */
@media (max-width: 768px) {
  .manpower-list-image {
    flex-direction: column;
  }

  .manpower-images {
    margin-top: 20px;
  }
}
/* Full-width heading and paragraph */
.manpower-text-full h2 {
  font-size: 50px; /* increase from default */
  margin-bottom: 15px;
}

.manpower-text-full p {
  font-size: 20px; /* increase paragraph size */
  line-height: 1.8; 
}

/* Left column: list */
.manpower-list li {
  font-size: 17px; /* bigger list items */
  line-height: 1.8;
  margin-bottom: 10px;
}

/* Optional: responsive adjustment */
@media (max-width: 1200px) {
  .manpower-text-full h2 {
    font-size: 28px;
  }

  .manpower-text-full p {
    font-size: 16px;
  }

  .manpower-list li {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .manpower-text-full h2 {
    font-size: 24px;
  }

  .manpower-text-full p {
    font-size: 15px;
  }

  .manpower-list li {
    font-size: 14px;
  }
}
.material-list li strong {
  display: block;
  margin-top: 15px;
  font-weight: 600;
  color: #222;
}


.clients-section {
  margin-top: 20px;
  text-align: center;
}

.clients-title {
  font-size: 30px;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

/* Slider wrapper */
.clients-slider {
  overflow: hidden;
  position: relative;
  background: #ffffff;   /* ✅ white background */
  padding: 20px 0;       /* optional: breathing space */
}

/* Track */
.clients-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}

/* Logos */
.clients-track img {
  height: 100px;          /* 🔼 increased size */
  margin: 0 50px;         /* more spacing */
  object-fit: contain;
  opacity: 1;             /* original image */
  transition: none;       /* remove animation effects */
}

/* Animation */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .clients-track img {
    height: 70px;         /* still big but fits mobile */
    margin: 0 30px;
  }
}
.about-brand {
    margin-top: 50px;
    text-align: center;
}

.about-logo {
    height: 90px;
    width: auto;
    margin-bottom: 20px;
}

.about-values {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;                 /* spacing between text & dot */
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    transform: translateX(15px);
}

.about-values .separator {
    color: #2283c4;
    font-size: 18px;
    line-height: 1;
}
@media (max-width: 480px) {
    .about-values .separator {
        display: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .about-logo {
        height: 70px;
    }

    .about-values {
        gap: 20px;
        font-size: 14px;
    }
}
