* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background: #0f0f0f;
    color: white;
    overflow-x: hidden;
  }
  
  a {
    text-decoration: none;
  }
  
  .container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
  }
  
  /* NAVBAR */
  nav {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .logo img {
    width: 60px;
    border-radius: 8px;
  }
  
  .logo h2 {
    font-size: 22px;
    color: #f4c400;
    font-weight: 700;
  }
  
  .nav-links {
    display: flex;
    gap: 30px;
  }
  
  .nav-links a {
    color: white;
    font-size: 15px;
    transition: 0.3s;
  }
  
  .nav-links a:hover {
    color: #f4c400;
  }
  
  /* HAMBURGER BUTTON */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1010;
  }
  
  .hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: 0.3s ease;
  }
  
  /* HERO */
  .hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)), 
                url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
  }
  
  .hero-content {
    max-width: 750px;
  }
  
  .hero span {
    color: #f4c400;
    font-weight: 600;
    letter-spacing: 2px;
  }
  
  .hero h1 {
    font-size: 72px;
    line-height: 1.1;
    margin: 20px 0;
    font-weight: 800;
  }
  
  .hero p {
    color: #d1d1d1;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
  }
  
  .hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .btn {
    padding: 15px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
  }
  
  .btn-primary {
    background: #f4c400;
    color: black;
  }
  
  .btn-primary:hover {
    background: white;
  }
  
  .btn-outline {
    border: 2px solid #f4c400;
    color: #f4c400;
  }
  
  .btn-outline:hover {
    background: #f4c400;
    color: black;
  }
  
  /* SECTION */
  section {
    padding: 100px 0;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .section-title h2 {
    font-size: 50px;
    color: #f4c400;
    margin-bottom: 15px;
  }
  
  .section-title p {
    color: #bdbdbd;
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
  }
  
  /* ABOUT */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
  
  .about-img img {
    width: 100%;
    border-radius: 20px;
  }
  
  .about-content h3 {
    font-size: 40px;
    margin-bottom: 20px;
  }
  
  .about-content p {
    color: #c9c9c9;
    line-height: 1.9;
    margin-bottom: 20px;
  }
  
  .stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
  }
  
  .stat-box {
    background: #181818;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .stat-box h4 {
    color: #f4c400;
    font-size: 34px;
    margin-bottom: 8px;
  }
  
  /* SERVICES */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
  
  .service-card {
    background: #181818;
    padding: 35px;
    border-radius: 18px;
    transition: 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    border-color: #f4c400;
  }
  
  .service-card h3 {
    margin-bottom: 15px;
    color: #f4c400;
    font-size: 24px;
  }
  
  .service-card p {
    color: #cfcfcf;
    line-height: 1.7;
  }
  
  /* GALLERY */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .gallery-item {
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    border: 2px solid rgba(255,255,255,0.05);
    transition: transform 0.3s, border-color 0.3s;
  }
  
  .gallery-item:hover {
    transform: scale(1.03);
    border-color: #f4c400;
  }
  
  .gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
  }
  
  /* LIGHTBOX MODAL */
  .lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
  }
  
  .lightbox-content-wrapper {
    max-width: 80%;
    max-height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .lightbox-content {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(244, 196, 0, 0.3);
    animation: zoom 0.3s ease-out;
  }
  
  @keyframes zoom {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }
  
  .lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .lightbox-close:hover {
    color: #f4c400;
  }
  
  .lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(244, 196, 0, 0.1);
    border: 1px solid rgba(244, 196, 0, 0.4);
    color: #f4c400;
    font-size: 30px;
    padding: 15px 22px;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.3s;
  }
  
  .lightbox-prev:hover, .lightbox-next:hover {
    background: #f4c400;
    color: black;
  }
  
  .lightbox-prev { left: 5%; }
  .lightbox-next { right: 5%; }
  
  /* PORTFOLIO */
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
  }
  
  .portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
  }
  
  .portfolio-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: 0.5s;
  }
  
  .portfolio-card:hover img {
    transform: scale(1.1);
  }
  
  .portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.95));
  }
  
  .portfolio-overlay h3 {
    color: #f4c400;
    margin-bottom: 10px;
    font-size: 28px;
  }
  
  /* CLIENTS */
  .clients {
    overflow: hidden;
    position: relative;
    white-space: nowrap;
  }
  
  .client-track {
    display: inline-block;
    animation: scroll 20s linear infinite;
  }
  
  .client-track span {
    display: inline-block;
    margin: 0 40px;
    font-size: 30px;
    font-weight: 700;
    color: #f4c400;
  }
  
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  /* CONTACT */
  .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  
  .contact-box {
    background: #181818;
    padding: 40px;
    border-radius: 20px;
  }
  
  .contact-box h3 {
    margin-bottom: 25px;
    color: #f4c400;
    font-size: 32px;
  }
  
  .contact-box p {
    margin-bottom: 15px;
    color: #d3d3d3;
    line-height: 1.8;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 16px;
    margin-bottom: 20px;
    border: none;
    background: #111;
    color: white;
    border-radius: 10px;
    outline: none;
  }
  
  .contact-form button {
    width: 100%;
    padding: 16px;
    background: #f4c400;
    color: black;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
  }
  
  footer {
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #bfbfbf;
  }
  
  /* CLICK TO TOP ARROW (LEFT SIDE) */
  .back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: #f4c400;
    border: none;
    border-radius: 50%;
    color: black;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transform: rotate(-90deg) translateY(100px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  }
  
  .back-to-top.show {
    transform: rotate(-90deg) translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .back-to-top:hover {
    background-color: white;
    transform: rotate(-90deg) scale(1.1);
  }
  
  /* FLOATING CONTACT ACTIONS (RIGHT SIDE) */
  .floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
  }
  
  .contact-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: transform 0.3s, background-color 0.3s;
  }
  
  .contact-btn svg {
    width: 26px;
    height: 26px;
  }
  
  .call-btn {
    background-color: #0076ff;
  }
  
  .call-btn:hover {
    background-color: #3391ff;
    transform: scale(1.1);
  }
  
  .whatsapp-btn {
    background-color: #25d366;
  }
  
  .whatsapp-btn:hover {
    background-color: #34e073;
    transform: scale(1.1);
  }
  
  /* RESPONSIVE & MOBILE HAMBURGER SYSTUM */
  @media(max-width:991px){
    .hero h1 { font-size: 50px; }
    .about-grid, .contact-wrapper { grid-template-columns: 1fr; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    
    .hamburger {
      display: flex;
    }
  
    .nav-links {
      position: fixed;
      left: -100%;
      top: 91px;
      gap: 0;
      flex-direction: column;
      background-color: rgba(15, 15, 15, 0.95);
      width: 100%;
      height: calc(100vh - 91px);
      text-align: center;
      transition: 0.4s ease;
      z-index: 1005;
      border-top: 1px solid rgba(255,255,255,0.05);
    }
  
    .nav-links.active {
      left: 0;
    }
  
    .nav-links a {
      padding: 25px 0;
      width: 100%;
      display: block;
      font-size: 20px;
      border-bottom: 1px solid rgba(255,255,255,0.03);
    }
  
    .hamburger.active .bar:nth-child(2) {
      opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
      background-color: #f4c400;
    }
    .hamburger.active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
      background-color: #f4c400;
    }
  
    .lightbox-prev { left: 2%; }
    .lightbox-next { right: 2%; }
  }
  
  @media(max-width:600px){
    .hero h1 { font-size: 40px; }
    .section-title h2 { font-size: 36px; }
    .about-content h3 { font-size: 32px; }
    .stats { grid-template-columns: 1fr; }
    
    .back-to-top {
      bottom: 20px;
      left: 20px;
      width: 45px;
      height: 45px;
    }
  
    /* Compact placement for mobile views */
    .floating-contact {
      bottom: 20px;
      right: 20px;
      gap: 10px;
    }
    .contact-btn {
      width: 48px;
      height: 48px;
    }
    .contact-btn svg {
      width: 22px;
      height: 22px;
    }
  }