    :root {
      --accent: #C9A227;
    }

    body {
      font-family: 'Lato', sans-serif;
      background: #000;
      color: #fff;
    }

    .heading {
      font-family: 'Montserrat', sans-serif;
    }

    .hero {
      height: 100vh;
      position: relative;
      overflow: hidden;
    }

    .hero-slide {
      position: absolute;
      top: 0;
      right: 0;
      width: 70%;
      height: 100%;
      background-size: cover;
      background-position: center left top;
      opacity: 0;
      transition: opacity 1s;
    }

    .hero-slide.active {
      opacity: 0.3;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0.5) 70%, transparent 100%);
      z-index: 1;
    }

    @media (max-width:768px) {
      .hero-slide {
        width: 100%;
        background-position: center;
      }

      .hero::before {
        background: rgba(0, 0, 0, 0.7);
      }

      .title-container {
        height: 50px;
        text-align: center;
      }

      .title-text {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translateX(-50%);
        font-size: 1.5rem !important;
        white-space: nowrap;
        margin-bottom: 0 !important
      }

      .social-icons {
        justify-content: center;
        font-size: 0.5rem !important;
      }

      .hero .d-flex {
        justify-content: center;
      }

      .hero .col-12 {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center !important;
      }

      .lead {
        font-size: 1rem;
      }
    }

    .lead {
      font-size: 1.1rem;
    }

    .social-icons a {
      color: #fff;
      font-size: 1.5rem;
      transition: color 0.2s;
    }

    .social-icons a:hover {
      color: var(--accent);
    }

    .title-container {
      position: relative;
      height: 120px;
    }

    .title-text {
      position: absolute;
      top: 20%;
      left: 0;
      opacity: 0;
      transition: opacity 1s;
    }

    .title-text.active {
      opacity: 1;
    }

    .service-card {
      background: linear-gradient(145deg, #1f2937, #111827);
      border: 1px solid #374151;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.1), transparent);
      transition: left 0.6s;
    }

    .service-card:hover::before {
      left: 100%;
    }

    .service-card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 20px 40px rgba(201, 162, 39, 0.15);
      border-color: var(--accent);
    }

    .icon-circle {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, var(--accent), #b8911f);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      box-shadow: 0 8px 20px rgba(201, 162, 39, 0.3);
      transition: all 0.3s;
    }

    .service-card:hover .icon-circle {
      transform: rotateY(180deg) scale(1.1);
    }

    @media (max-width: 768px) {
      .service-card {
        margin-bottom: 1rem;
      }

      .icon-circle {
        width: 60px;
        height: 60px;
      }
    }

    .portfolio-img {
      transition: all 0.3s;
      opacity: 1;
    }

    .portfolio-img:hover {
      transform: scale(1.05);
    }

    .portfolio-item {
      position: relative;
      overflow: hidden;
      background: #1f2937;
    }

    .portfolio-img {
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .portfolio-img.loaded {
      opacity: 1;
    }

    .skeleton {
      background: linear-gradient(90deg, #1f2937 25%, #374151 50%, #1f2937 75%);
      background-size: 200% 100%;
      animation: loading 1.5s infinite;
    }

    @keyframes loading {
      0% { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }

    .portfolio-tabs {
      border-bottom: 1px solid #374151;
    }

    .portfolio-tab {
      background: none;
      border: none;
      color: #9ca3af;
      padding: 1rem 2rem;
      cursor: pointer;
      transition: all 0.3s;
      border-bottom: 2px solid transparent;
    }

    .portfolio-tab.active {
      color: var(--accent);
      border-bottom-color: var(--accent);
    }

    .portfolio-tab:hover {
      color: #fff;
    }

    .counter {
      color: var(--accent);
      font-size: 3rem;
      font-weight: bold;
      text-shadow: 0 0 20px rgba(201, 162, 39, 0.3);
    }

    .counter-card {
      transition: all 0.3s ease;
      padding: 1rem;
    }

    .counter-card:hover {
      transform: translateY(-5px);
    }

    .btn-accent {
      background: var(--accent);
      color: #000;
      border: none;
    }

    .btn-accent:hover {
      background: #b8911f;
      color: #000;
    }

    .about-text {
      font-size: 1.1rem;
      line-height: 1.7;
      color: #e5e7eb;
    }

    .about-img {
      height: 500px;
      object-fit: cover;
      object-position: top center;
    }

    .navbar {
      background: rgba(0, 0, 0, 0.9) !important;
      backdrop-filter: blur(15px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      padding: 1rem 0;
    }

    .navbar-brand {
      font-size: 1.5rem;
    }

    @media (max-width:768px) {
      .navbar-brand span {
        font-size: 1.2rem;
      }

      .navbar-brand img {
        height: 35px !important;
      }
    }

    .nav-link {
      font-weight: 500;
      padding: 0.5rem 1rem !important;
      position: relative;
    }

    .nav-link:hover {
      color: var(--accent) !important;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: all 0.3s;
    }

    .nav-link:hover::after {
      width: 80%;
      left: 10%;
    }

    .text-muted {
      color: rgb(201, 201, 201) !important;
    }

    @media (max-width: 768px) {
      #about .row {
        flex-direction: column-reverse;
      }
      
      #about .col-lg-6:first-child {
        margin-top: 2rem;
      }
      
      .about-img {
        height: 400px !important;
        width: 100% !important;
      }
      
      .about-text {
        font-size: 1rem !important;
        text-align: center;
      }
      
      #about h2 {
        text-align: center;
        font-size: 2rem !important;
      }
      
      #about ul {
        text-align: center;
      }
    }
