* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

a:hover {
    color: #ccc;
}

/* Header Styling */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    animation: fadeIn 1s ease-out;
}

nav {
    display: flex;
    gap: 20px;
}

nav a {
    font-size: 1rem;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: white;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 4px;
    background-color: #fff;
    border-radius: 5px;
    margin: 4px 0;
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 15px;
    position: absolute;
    top: 70px;
    right: 20px;
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
    width: 200px;
    z-index: 1000;
}

.mobile-nav a {
    padding: 10px 0;
    border-bottom: 1px solid #555;
}
.mobile-nav.show {
    display: flex;
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }
    /* Mobile nav links should be visible only when the "show" class is applied */
    .mobile-nav {
        display: none;
    }
    
    .mobile-nav.show {
        display: flex;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../image/1.webp') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    animation: fadeInUp 1.5s ease-out;
}

.hero-content h1 {
    font-size: 3rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    color: #000;
    background-color: #fff;
    border: 2px solid #fff;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #000;
    color: #fff;
    border-color: #fff;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Section */
.services {
    padding: 50px 20px;
    background-color: black;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.services-container {
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    margin: 10px auto;
    justify-content: center;
    gap: 20px;
}
.services-page {
    padding: 50px 20px;
    color: #fff;
    margin-top: 50px;
}

.services-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    animation: fadeIn 1s ease-out;
}

.services-header p {
    font-size: 1.2rem;
    color: #ccc;
    animation: fadeIn 1.5s ease-out;
}
.service-item {
    width: 350px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-item h3 {
    margin: 15px 0 10px;
}

.service-item p {
    font-size: 0.9rem;
    padding: 0 10px 20px;
}

.service-item:hover {
    transform: scale(1.05);
    background-color: rgba(255, 255, 255, 0.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .services-container {
        flex-direction: column;
        align-items: center;
    }

    .service-item {
        width: 90%;
    }
}
.about-us {
    padding: 60px 20px;
    color: white; /* All text in white */
  }
  
  .about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    object-fit: cover;
  }
  .about-content{
      width: 600px;
  }
  .about-content h5 {
    color:rgb(255, 255, 255); /* Accent color for small heading */
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
  }
  
  .about-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white; /* White heading */
  }
  
  .about-content p {
    color: white;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  .skill {
    margin-bottom: 20px;
  }
  
  .skill span {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
  }
  
  .skill-bar {
    border-radius: 20px;
    overflow: hidden;
    background-color: rgba(255,255,255,0.2); /* light background for skill bar */
  }
  
  .skill-fill {
    display: inline-block;
    height: 20px;
    width: 0;
    text-align: right;
    padding-right: 10px;
    color: black;
    font-weight: bold;
    border-radius: 20px;
    background-color:rgb(251, 251, 251); /* skill bar fill color */
    transition: width 2s ease-in-out;
  }
  
  @media(max-width: 900px){
      .about-container{
      flex-direction: column;
      text-align: center;
      gap: 20px;
    }
  
    .about-image img{
      width: 100%; /* responsive image */
      max-width: 400px; /* optional max width */
      height: auto;
    }
  
    .about-content{
      width: 100%; /* take full width */
      max-width: 450px; /* optional for bigger phones */
      margin: 0 auto;
    }
  
    .about-content h2{
      font-size: 1.7rem;
    }
    }
    /* portfolio */
    .portfolio-container {
        max-width: 1100px;
        margin: 0 auto;
        text-align: center;
        padding: 60px 20px;
      }
      .portfolio h2 {
        font-size: 2rem;
        margin-bottom: 40px;
        color: white;
      }
      
      .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
      }
      
      .portfolio-item {
        position: relative;
        cursor: pointer;
        overflow: hidden;
        border-radius: 15px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }
      
      .portfolio-item img {
        width: 100%;
        height: 100%;
        display: block;
        border-radius: 15px;
        transition: transform 0.5s ease;
      }
      
      .portfolio-item:hover img {
        transform: scale(1.1);
      }
      
      .portfolio-info {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 20px;
        background: rgba(0,0,0,0.6);
        color: white;
        transform: translateY(100%);
        transition: transform 0.4s ease;
        text-align: left;
      }
      
      .portfolio-item:hover .portfolio-info {
        transform: translateY(0);
      }
      
      .portfolio-info h3 {
        margin-bottom: 5px;
        font-size: 1.2rem;
      }
      
      .portfolio-info p {
        font-size: 0.9rem;
        line-height: 1.4;
        opacity: 0.9;
      }
      
      /* Responsive */
      @media(max-width: 600px){
        .portfolio h2 {
          font-size: 1.5rem;
        }
        .portfolio-info {
          padding: 15px;
        }
      }
      /* how we work  */
      .process-section {
        padding: 60px 20px;
        font-family: Arial, sans-serif;
        color: white;
        text-align: center;
      }
      
      .process-subtitle {
        text-transform: uppercase;
        font-weight: 500;
        margin-bottom: 10px;
      }
      
      .process-title {
        font-size: 2rem;
        margin-bottom: 50px;
        color: white;
      }
      
      .process-steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
      }
      
      .process-step {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255,255,255,0.2);
        padding: 30px 20px;
        border-radius: 15px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }
      
      .process-step:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
      }
      
      .process-step-number {
        width: 50px;
        height: 50px;
        line-height: 50px;
        margin: 0 auto 15px auto;
        background-color:rgb(56, 55, 57);
        border-radius: 50%;
        font-weight: bold;
        font-size: 1.2rem;
        color: white;
      }
      
      .process-step-title {
        margin-bottom: 10px;
        font-size: 1.2rem;
      }
      
      .process-step-desc {
        font-size: 0.95rem;
        line-height: 1.5;
        opacity: 0.85;
      }
      
      /* Responsive */
      @media(max-width: 600px){
        .process-title {
          font-size: 1.7rem;
        }
        .process-step {
          padding: 25px 15px;
        }
      }
      .why-choose-us {
        text-align: start;  /* keep text left-aligned */
        padding-left: 20px; /* optional padding */
      }
      
      .why-choose-us li {
        margin-bottom: 15px; /* space between list items */
        line-height: 1.6;    /* better readability */
      }
      /* Mobile: show only first 3 items */
@media(max-width: 600px) {
    .why-choose-us li:nth-child(n+4) {
      display: none;
    }
}
/* testimoni */
.testimonial {
    padding: 50px 20px;
    color: #fff;
    text-align: center;
}

.testimonial h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    opacity: 0.9;
}

.testimonial-item:hover {
    transform: translateY(-10px) scale(1.05);
    background-color: rgba(255, 255, 255, 0.2);
    opacity: 1;
}

.customer-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    box-shadow: whitesmoke;
    /* White shadow around the image */
}

.customer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 15px;
}

.testimonial-item h4 {
    font-size: 1.2rem;
    color: #fff;
}

.testimonial-item span {
    display: block;
    color: #bbb;
    margin-top: 5px;
}

/* Animation on page load */
.testimonial-item {
    animation: fadeInUp 0.8s ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* cta */
.cta {
    padding: 50px 20px;
    text-align: center;
    background-color: #111;
    color: #fff;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta p {
    font-size: 1rem;
    margin-bottom: 30px;
}

/* counter */
.counter {
    font-size: 3rem;
    margin: 10px 0;
    color: #1db954;
    font-weight: bold;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.counter.started {
    opacity: 1;
    transform: translateY(0);
}

.dynamic-counter {
    padding: 50px 20px;
    color: #fff;
    text-align: center;
}

.dynamic-counter h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
}

.counter-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.counter-item {
    flex: 1 1 200px;
    max-width: 250px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.counter-item:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.counter-item h3 {
    font-size: 3rem;
    margin: 10px 0;
    color: #1db954;
    font-weight: bold;
}

.counter-item p {
    font-size: 1rem;
    color: #ddd;
}

/* Parallax Section */
.parallax-section {
    position: relative;
    height: 100vh;
    background: url('../image/choose.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    /* Enables the parallax effect */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay for better text visibility */
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.5s ease-out;
}

.parallax-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInDown 1.2s ease-out;
}

.parallax-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInLeft 1.5s ease-out;
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

 /* About Us Page Styles */
 .about-us {
    padding: 50px 20px;
    color: #fff;
    margin-top: 50px;
}

.container-about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}



/* Fade and Slide-up Animation */
@keyframes fadeSlideUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Fade-up Animation for Service Items */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.service-item.fade-up {
    animation: fadeUp 1.5s forwards;
}

.service-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.service-item h3 {
    color: #fff;
}

.service-item p {
    color: #ccc;
}

/* Section: Our Services */
.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.service.scale-on-hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service.scale-on-hover:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.service h3 {
    color: #fff;
}

.service p {
    color: #ccc;
}

/* Section: Why Choose Us */
.why-choose {
    margin-top: 50px;
    font-size: 1.1rem;
    color: #ccc;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 1.5s forwards;
    animation-delay: 1s;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .service-items {
        grid-template-columns: 1fr;
        margin: 18px;
        width: 100%;
    }

    .service-list {
        grid-template-columns: 1fr;
    }
}
 