html {
  scroll-behavior: smooth;
}

:root {
    --primary: #E3A66D;
    --secondary: #45392D;
    --accent: #D9B496;
    --light: #F9F4EF;
    --dark: #2E2926;
    --white: #FFFFFF;
    --transition: all 0.4s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html.has-scroll-smooth {
    overflow: hidden;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Navigation */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
  }
  
  .navbar.scrolled {
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 15px 0;
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--secondary);
  }
  
  .logo i {
    margin-right: 10px;
    color: var(--primary);
  }
  
  .nav-links {
    display: flex;
    list-style: none;
  }
  
  .nav-links li {
    margin-left: 30px;
  }

  
  .nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    opacity: 1;
  }
  
  .nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
  }
  
  .nav-links a:hover:after {
    width: 100%;
  }
  
  .nav-links a:hover {
    color: var(--primary);
  }
  
  .mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  /* Hero Section */
  .hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  
  .hero-content {
    width: 50%;
    padding-right: 50px;
    opacity: 1;
    transform: translateY(30px);
  }
  
  .hero-subtitle {
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
  }
  
  .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--secondary);
  }
  
  .hero-description {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
  }
  
  .btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    border: none;
    outline: none;
  }
  
  .btn:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .hero-image {
    width: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /*
  .drum-image {
    width: 100%;
    max-width: 500px;
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -20%) rotate(-10deg);
    z-index: 999;
  }
*/
  .drum-image-floating{
        position: absolute;
        top: 50vh;
        left: 70%;
        transform: translate(-50%, -50%) rotate(-10deg);
        width: 500px;
        z-index: 999;
        pointer-events: none;
  }
  
  /* About Section */
  .about {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
  }
  
  .section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary);
    position: relative;
  }
  
  .section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--primary);
  }
  
  .about-content {
    display: flex;
    align-items: center;
    gap: 50px;
  }
  
  .about-image {
    width: 50%;
    min-height: 500px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);

  }
  
  .about-image img {
    width: 100%;
    height: auto;
    transform: scale(1.05);
    transition: var(--transition);
  }
  
  .about-image:hover img {
    transform: scale(1);
  }
  
  .about-text {
    width: 50%;
    opacity: 1;
  }
  
  .about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary);
  }
  
  .features {
    margin-top: 30px;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(227, 166, 109, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    margin-right: 15px;
  }
  
  /* Services Section */
  .services {
    padding: 100px 0;
    background-color: var(--light);
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
  }
  
  .service-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    opacity: 1;
    transform: translateY(30px);
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  
  .service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    color: #000;
  }
  

  .service-card:hover i {
    color: var(--secondary);
  }
  .service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary);
    transition: var(--transition);
    z-index: -1;
  }
  
  .service-card:hover:before {
    width: 100%;
    opacity: 1;
  }
  
  .service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
  }
  
  .service-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary);
  }
  
  /* Process Section */
  .process {
    padding: 100px 0;
    background-color: var(--white);
  }
  
  .process-steps {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
  }
  
  .process-steps:before {
    content: '';
    position: absolute;
    top: 70px;
    left: 10%;
    width: 80%;
    height: 3px;
    background-color: var(--accent);
    z-index: 0;
  }
  
  .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 22%;
    position: relative;
    z-index: 1;
    opacity: 1;
    transform: translateY(30px);
  }
  
  .step-number {
    width: 70px;
    height: 70px;
    background-color: var(--light);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    transition: var(--transition);
  }
  
  .step:hover .step-number {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.1);
  }
  
  .step-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
    color: var(--secondary);
  }
  
  .step-description {
    font-size: 0.9rem;
    text-align: center;
    opacity: 0.9;
  }
  
  /* Gallery Section */
  .gallery {
    padding: 100px 0;
    background-color: var(--light);
  }
  
  .gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
    opacity: 1;
    transform: scale(0.9);
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }
  
  .gallery-item:hover img {
    transform: scale(1.1);
  }
  
  .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(46, 41, 38, 0.8), rgba(46, 41, 38, 0));
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 20px;
    opacity: 1;
    transition: var(--transition);
  }
  
  .gallery-item:hover .gallery-overlay {
    opacity: 1;
  }
  
  .gallery-text {
    color: var(--white);
    font-weight: 500;
    text-align: center;
  }
  
  /* CTA Section */
  .cta {
    padding: 80px 0;
    background-color: var(--secondary);
    color: var(--white);
    text-align: center;
  }
  
  .cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .cta-text {
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.8;
  }
  
  .btn-light {
    background-color: var(--white);
    color: var(--secondary);
  }
  
  .btn-light:hover {
    background-color: var(--primary);
    color: var(--white);
  }
  
  /* Contact Section */
  .contact {
    padding: 100px 0;
    background-color: var(--white);
  }
  
  .contact-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
  }
  
  .contact-info {
    width: 40%;
    opacity: 1;
    transform: translateX(-30px);
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 1.3rem;
    margin-right: 15px;
  }
  
  .contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--secondary);
  }
  
  .contact-details p {
    opacity: 0.8;
  }
  
  .contact-form {
    width: 60%;
    opacity: 1;
    transform: translateX(30px);
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
  }
  
  .form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 10px rgba(227, 166, 109, 0.3);
  }
  
  textarea.form-control {
    min-height: 150px;
    resize: vertical;
  }
  
  /* Footer */
  .footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 50px 0 20px;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
  }
  
  .footer-col {
    width: 30%;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 20px;
  }
  
  .footer-logo i {
    margin-right: 10px;
    color: var(--primary);
  }
  
  .footer-about {
    opacity: 0.7;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  
  .social-links {
    display: flex;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    margin-right: 10px;
    transition: var(--transition);
  }
  
  .social-link:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
  }
  
  .footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
  }
  
  .footer-links {
    list-style: none;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    color: var(--white);
    opacity: 0.7;
    text-decoration: none;
    transition: var(--transition);
  }
  
  .footer-links a:hover {
    opacity: 1;
    color: var(--primary);
    padding-left: 5px;
  }
  
  .footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .footer-contact-icon {
    color: var(--primary);
    margin-right: 10px;
  }
  
  .copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
  }
  
  /* 3D Wire Drum Animation */
  .drum-rotate-container {
    perspective: 1000px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .drum-3d {
    width: 100%;
    max-width: 500px;
    transform-style: preserve-3d;
    transform: rotateY(0deg) rotateX(10deg);
    transition: transform 0.5s ease;
  }
  
  /* Scroll Down Indicator */
  .scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--secondary);
    font-size: 0.9rem;
    opacity: 0.7;
    transition: var(--transition);
    cursor: pointer;
  }
  
  .scroll-down:hover {
    opacity: 1;
    transform: translate(-50%, -5px);
  }
  
  .scroll-down i {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-10px);
    }
    60% {
      transform: translateY(-5px);
    }
  }
  
  /* Preloader */
  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .loader {
    width: 50px;
    height: 50px;
    border: 5px solid var(--accent);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    100% {
      transform: rotate(360deg);
    }
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .hero-content {
      width: 60%;
    }
    
    .hero-image {
      width: 40%;
    }
    
    .hero-title {
      font-size: 3rem;
    }
    
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps:before {
      display: none;
    }
    
    .process-steps {
      flex-direction: column;
      gap: 30px;
    }
    
    .step {
      width: 100%;
      flex-direction: row;
      text-align: left;
      gap: 20px;
    }
    
    .step-number {
      margin-bottom: 0;
    }
    
    .step-content {
      flex: 1;
    }
    
    .step-title, .step-description {
      text-align: left;
    }
  }
  
  @media (max-width: 768px) {
    .mobile-toggle {
      display: block;
    }
    
    .nav-links {
      position: fixed;
      top: 70px;
      left: 0;
      width: 100%;
      background-color: var(--white);
      flex-direction: column;
      align-items: center;
      padding: 20px 0;
      box-shadow: 0 5px 10px rgba(0,0,0,0.1);
      transform: translateY(-150%);
      transition: var(--transition);
    }
    
    .nav-links.active {
      transform: translateY(0);
    }
    
    .nav-links li {
      margin: 10px 0;
    }
    .nav-links li a{
        opacity: 1;
      }
    
    .hero {
      flex-direction: column;
      height: auto;
      padding-top: 100px;
      padding-bottom: 50px;
    }
    
    .hero-content, .hero-image {
      width: 100%;
      padding-right: 0;
      text-align: center;
    }
    
    .hero-content {
      margin-bottom: 50px;
    }
    
    .hero-title {
      font-size: 2.5rem;
    }
    
    .about-content {
      flex-direction: column;
    }
    
    .about-image, .about-text {
      width: 100%;
    }
    
    .about-image {
      margin-bottom: 30px;
    }
    
    .services-grid {
      grid-template-columns: 1fr;
    }
    
    .gallery-container {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-container {
      flex-direction: column;
    }
    
    .contact-info, .contact-form {
      width: 100%;
    }
    
    .contact-info {
      margin-bottom: 30px;
    }
    
    .footer-container {
      flex-direction: column;
    }
    
    .footer-col {
      width: 100%;
      margin-bottom: 30px;
    }
  }
  
  @media (max-width: 576px) {
    .section-title {
      font-size: 2rem;
    }
    
    .hero-title {
      font-size: 2rem;
    }
    
    .gallery-container {
      grid-template-columns: 1fr;
    }
    
    .step {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    
    .step-number {
      margin-bottom: 15px;
    }
    
    .step-title, .step-description {
      text-align: center;
    }
  }