* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }
    
    body {
      overflow-x: hidden;
      background-color: #f8f9fa;
    }
    
    /* Custom Cursor */
    .cursor-big, .cursor-small {
      position: fixed;
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transition: transform 0.1s;
    }
    
    .cursor-big {
      width: 40px;
      height: 40px;
      border: 2px solid rgba(19, 235, 11, 0.5);
      z-index: 9998;
    }
    
    .cursor-small {
      width: 8px;
      height: 8px;
      background: #AAC101;;
    }
    
    .cursor-big.hover, .cursor-small.hover {
      transform: scale(1.5);
      border-color: #008E8E;
    }
    
    /* Hero Section with Overlay */
    .hero {
      background: url('images/banner\ 1.jpg') no-repeat center center/cover;
      height: 100vh;
      background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url('images/banner 2.png') no-repeat center center/cover;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: background-image 1s ease-in-out;
      position: relative;
    }
    
    /* Navbar */
    .navbar {
      background:transparent;
    }
    
    @media (max-width: 768px) {
      .navbar {
        padding: 30px 5%;
      }
    }
    
    @media (max-width: 576px) {
      .navbar {
        padding: 20px 3%;
      }
    }
    
    .navbar-nav .nav-link {
      color: #041304;;
      margin: 0 15px;
      position: relative;
      transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-link.active {
      color: #2d9cdb !important;
      font-weight: 600;
      border-bottom: 2px solid #90c52f;
    }
    
    .navbar-nav .nav-link:hover::after {
      width: 100%;
    }
    
    .logo {
      height: 100px;
      margin-left: 50px;
    }
    
    .navbar-nav {
      margin-right: 50px;
    }
    
    /* Hero Content */
    .hero-content {
       margin: auto 50px;
      color: white;
      
    }
    
    .hero-content h2 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: #2d9cdb;
      animation: typewriter 2s ease-in-out 0.5s forwards;
    }
    
    .hero-content h2 span {
      color: #90c52f;
      
    }
    
    .btn-call {
      background: #90c52f;
      color: white;
      border: none;
      padding: 12px 30px;
      border-radius: 30px;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .btn-call:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    
    /* Hero Dots */
    .hero-dots {
      position: absolute;
      bottom: 30px;
      left: 90%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 5;
    }
    
    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      display: inline-block;
      transition: all 0.3s ease;
    }
    
    .dot.active {
      background: #2d8e00;
      transform: scale(1.2);
    }
    
    /* Fixed Background Heading */
    .fixed-bg-heading {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 20vw;
      font-weight: 900;
      color: rgba(0, 0, 0, 0.03);
      z-index: -1;
      text-transform: uppercase;
      white-space: nowrap;
      pointer-events: none;
    }
    
    /* Section Titles */
    .section-title {
      font-size: 2.5rem;
      color: #AAC101;
      margin-bottom: 30px;
      position: relative;
      display: inline-block;
    }
    

    
    /* Collections Section */
    .collections-section {
      position: relative;
      padding: 100px 0;
      background: #fff;
    }
    
    .collection-img {
      position: relative;
      overflow: hidden;
      border-radius: 0px;
      transform: translateY(50px);
      opacity: 0;
      transition: all 0.8s ease;
    }
    
    .collection-img.animate {
      transform: translateY(0);
      opacity: 1;
    }
    
    .collection-img img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .collection-img::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to top, rgba(18, 233, 29, 0.7), transparent);
      opacity: 0;
      transition: opacity 0.5s ease;
    }
    
    .collection-img:hover::after {
      opacity: 1;
    }
    
    .collection-img:hover img {
      transform: scale(1.05);
    }
    
    .collection-subtitle {
      font-weight: 600;
      color: #00AAAA;
      font-size: 2rem;
      margin-bottom: 5px;
    }
    
    .collection-text {
      color: #041B3A;
    }
    
    /* Why Section */
    .why-section {
      padding: 100px 0;
      background:linear-gradient(#008E8E, #004d40);
    }
    
    .why-section img {
      min-height: 100px;
      object-fit: contain;
      transition: transform 0.5s ease;
    }
    
    .why-section .col-md-6:hover img {
      transform: translateY(-10px);
    }
    
    .why-text {
      font-weight: 500;
      color: #fff;
    }
    
    /* About Section */
    .about-section {
      padding: 150px 0;
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/Clip\ path\ group\ \(8\).png') fixed center center/cover;
      color: white;
      text-align: center;
      position: relative;
    }
    
    .about-title {
      font-size: 2.5rem;
      color: #AAC101;
      margin-bottom: 20px;
      position: relative;
      display: inline-block;
    } 
  
    
    .about-text {
      font-size: 1.2rem;
      max-width: 600px;
      margin: 0 auto;    
    }
    
    /* Contact Section */
    .contact-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/sofa 3.png') center center/cover;
    color: #fff;
    font-family: "poppins";
    padding: 150px 0;
    position: relative;
      position: relative;
    }
    
    .sofa-img {
      width: 100%;
      height: 500px;
      object-fit: cover;
    }
    
    .contact-info {
      padding: 0 50px;
    }
    
    .contact-title {
      font-size: 2.5rem;
      margin-bottom: 20px;
      position: relative;
      display: inline-block;
    }
    .contact-info h5 {
    color: #fff;
    margin-bottom: 30px;
    font-family: "poppins";
  }

  .contact-info p {
    margin: 0 0 10px;
    font-size:20px;
    color: #FFFFFF;
    font-family: "poppins";
   
  } 
 
    
    /* Footer */
    .footer {
     background: #fff;
     border-top: 2px solid #eaeaea;
     font-size: 0.95rem;
      padding: 50px 0 30px;
    }
    
    .footer-title {
      font-size: 1.5rem;
      margin-bottom: 20px;
      color: #707070;
      
    }
    
    .footer-text {
      color: #707070;
    }
    
    .footer-links a {
      color: #707070;
      text-decoration: none;
      transition: color 0.3s ease;
      display: block;
      margin-bottom: 10px;
    }
    
    .footer-links a:hover {
      color: #12c2e9;
    }
    
    .social-icons a {
    display: inline-block;
    display: inline-block;
    margin-right: 12px;
    font-size: 1.3rem;
    color: #444;
    transition: color 0.3s ease;
  }
      
    .social-icons a:hover {
      color: #009688;
    }
    
    .footer-logo {
      height: 100px;
        }

    
  /* Back to Top Button */
  .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #6f8e00;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .back-to-top:hover {
    background-color: #00796b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  }

  /* WhatsApp Icon */
  .whatsapp-icon {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 40px;
    cursor: pointer;
    display: none;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    align-items: center;
    justify-content: center;
  }

  .whatsapp-icon:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    color: #fff;
  }
    
    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(50px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .animate {
      animation: fadeInUp 1s ease forwards;
    }
    
    /* Responsive Styles */
    @media (max-width: 992px) {
      .hero-content h2 {
        font-size: 2.5rem;
      }
      
      .contact-info {
        padding: 30px;
      }
    }
    
    @media (max-width: 900px) and (min-width: 300px) {
      .footer .col-md-4:last-child {
        text-align: left !important;
      }
    }
    
    @media (max-width: 360px) {
      body {
        overflow-x: hidden;
      }
    }
    
    @media (max-width: 340px) {
      body {
        overflow-x: hidden;
      }
    }
    
    @media (max-width: 768px) {
      .hero-content h2 {
        font-size: 2rem;
      }
      
      .section-title {
        font-size: 2rem;
      }
      
      .fixed-bg-heading {
        font-size: 25vw;
      }
      
      .navbar-nav {
        background: rgba(255, 255, 255, 0.199);
        padding: 15px;
        border-radius: 10px;
      }
    }