
   body {
      background-color: #fff;
      font-family: 'Poppins', sans-serif;
    }

.top-bar {
      background-color: #000;
      color: #fff;
      font-size: 0.85rem;
      padding: 6px 0;
      text-align: center;
      letter-spacing: 0.3px;
    }
 /* Header container */
    .main-header {
      border-bottom: 1px solid #e0e0e0;
      padding: 10px 0;
      background-color: #fff;
    }

    .logo {
      font-weight: 800;
      font-size: 1.4rem;
      color: #0b2f3a;
      line-height: 1;
    }

    .logo span {
      color: #22b8cf;
    }
     /* Search box container */
    .search-container {
      display: flex;
      align-items: center;
      border: 1.5px solid #ccc;
      border-radius: 50px;
      overflow: hidden;
      background-color: #fff;
      width: 100%;
      max-width: 600px;
    }

    /* Buy/Rent toggle inside search */
    .toggle-inside {
      display: flex;
      background-color: #f5f5f5;
      border-radius: 25px;
      margin: 4px;
      overflow: hidden;
    }

    .toggle-inside button {
      border: none;
      padding: 6px 18px;
      font-size: 0.9rem;
      font-weight: 600;
      background: transparent;
      color: #555;
      transition: all 0.3s;
    }

    .toggle-inside button.active {
      background-color: #ec8f22;
      color: #fff;
      border-radius: 25px;
    }

    .search-container input {
      border: none;
      flex: 1;
      padding: 8px 12px;
      outline: none;
      font-size: 0.95rem;
      background: transparent;
    }

    .search-container i {
      font-size: 1.2rem;
      color: #333;
      margin-right: 14px;
      cursor: pointer;
    }

    .nav-icons i {
      font-size: 1.3rem;
      margin-left: 20px;
      cursor: pointer;
      color: #333;
      transition: 0.3s;
    }

    .nav-icons i:hover {
      color: #00c3c6;
    }
 .navbar-brand img {
      height: 48px;
    }
    

    /* Category nav */
    .category-nav {
      background-color: #fff;
      /*border-bottom: 1px solid #e0e0e0;*/
      padding: 10px 0;
      font-size: 0.95rem;
    }

    .category-nav a {
      color: #333;
      font-weight: 500;
      text-decoration: none;
      margin-right: 20px;
    }

    .category-nav a:hover, .active {
      color: #ec8f22 ;
    }
    
    @media (max-width: 768px) {
      .search-container {
        max-width: 100%;
      }
    }
    /* hero section*/
    .hero-section {
      position: relative;
      height: 50vh;
      overflow: hidden;
      border-radius: 50PX;
    }

    .carousel-item {
      height: 70vh;
      background-size: cover;
      background-position: center;
    }

    .carousel-caption {
      bottom: 40%;
      text-align: left;
    }

    .carousel-caption h1 {
      font-size: 3.5rem;
      font-weight: 700;
    }

    .carousel-caption p {
      font-size: 1.25rem;
    }

    .btn-hero {
      background-color: #ec8f22;
      border: none;
      padding: 12px 30px;
      border-radius: 30px;
      color: white;
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .btn-hero:hover {
      background-color: #ec8f22;
      transform: scale(1.05);
    }

    .overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.4);
      z-index: 1;
    }

    .carousel-caption {
      z-index: 2;
    }
    /* info section*/
    /* Next Section */
    .info-section {
      padding: 30px 0;
      background: #fff;
    }

    .info-card {
      background: #f0f3f4;
      border-radius: 16px;
      padding: 2rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }

    .info-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .info-card i {
      font-size: 2rem;
      color: #ec8f22;
      margin-bottom: 15px;
    }

    /* categories section*/
    #categories, #used, #testi, #faq{
         background-color: #f4f9fb;
    }
    .section-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .section-header h6 {
      text-transform: uppercase;
      color: #888;
      letter-spacing: 2px;
      font-weight: 600;
    }

    .section-header h2 {
      font-weight: 700;
      font-size: 2.3rem;
      margin-top: 10px;
    }

    .nav-tabs {
      justify-content: center;
      border: none;
      margin-bottom: 2rem;
    }

    .nav-tabs .nav-link {
      border: none;
      background: transparent;
      color: #555;
      font-weight: 600;
      font-size: 1.1rem;
      position: relative;
      transition: 0.3s;
    }

    .nav-tabs .nav-link.active {
      color: #000;
    }

    .nav-tabs .nav-link.active::after {
      content: '';
      position: absolute;
      width: 40%;
      height: 3px;
      background-color: #ff6600;
      left: 30%;
      bottom: -8px;
      border-radius: 2px;
    }

    /* Category Card */
  
    .category-card {
       background-color: #fff;

      border-radius: 18px;
      width: 100%;
      height: 300px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      position: relative;
      cursor: pointer;
      text-align:center;
    }

    .category-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .category-card img {
     
      align-items: center;
      max-height: 200px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .category-card:hover img {
      transform: scale(1.05);
    }

    .category-info {
      background-color: #000;
      padding: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .category-title {
      font-size: 1.1rem;
      font-weight: 600;
      color: #ec8f22;
      margin: 0;
    }

    .category-icon {
      width: 40px;
      height: 40px;
      background-color: #ff6600;
      border-radius: 50%;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      transition: 0.3s;
    }

    .category-card:hover .category-icon {
      transform: rotate(45deg);
      background-color: #e25b00;
    }

    .btn-view-all {
      background-color: #ff6600;
      color: white;
      padding: 12px 35px;
      border-radius: 30px;
      border: none;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: 0.3s;
    }

    .btn-view-all:hover {
      background-color: #e25b00;
      transform: scale(1.05);
    }
    /*latest stock*/
.section-heading {
      text-align: center;
      margin-bottom: 2rem;
    }

    .section-heading h5 {
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #6c757d;
      font-size: 0.9rem;
      font-weight: 600;
    }

    .section-heading h2 {
      font-weight: 700;
      font-size: 2rem;
      color: #212529;
    }

    .machine-card {
      border: none;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      transition: all 0.4s ease;
      overflow: hidden;
      background: #fff;
      height: 100%;
    }

    .machine-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .machine-card img {
      width: 100%;
      height: 230px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .machine-card:hover img {
      transform: scale(1.05);
    }

    .card-body {
      padding: 1.2rem;
    }

    .badge-new {
      background: #06c167;
      color: #fff;
      font-size: 0.7rem;
      border-radius: 8px;
      padding: 4px 10px;
      font-weight: 600;
      margin-right: 6px;
    }

    .badge-sale {
      background: #007bff;
      color: #fff;
      font-size: 0.7rem;
      border-radius: 8px;
      padding: 4px 10px;
      font-weight: 600;
    }

    .card-title {
      font-size: 1rem;
      font-weight: 600;
      margin-top: 0.5rem;
      color: #222;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .card-text {
      font-size: 0.85rem;
      color: #666;
    }

    .info-link {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.9rem;
      color: #007bff;
      margin-top: 0.8rem;
      text-decoration: none;
      transition: all 0.3s;
    }

    .info-link:hover {
      color: #ff6600;
    }

    .btn-inventory {
      display: inline-block;
      margin-top: 2rem;
      background: linear-gradient(90deg, #ff6600, #ff8800);
      color: #fff;
      border: none;
      padding: 12px 35px;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
    }

    .btn-inventory:hover {
      transform: scale(1.07);
      box-shadow: 0 0 25px rgba(255, 136, 0, 0.5);
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: rgba(255, 255, 255, 0.9);
      border-radius: 50%;
      padding: 20px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    .carousel-control-prev, .carousel-control-next {
      width: 5%;
    }
    /** brand**/
    /* === Section Style === */
    .brand-section {
      padding: 80px 0;
      background: #dbd4d4;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .brand-section::before {
      content: "";
      position: absolute;
      top: -80px;
      right: -80px;
      width: 200px;
      height: 200px;
      background: rgba(16, 185, 129, 0.15);
      border-radius: 50%;
      filter: blur(50px);
      animation: float 6s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-20px); }
    }

    .brand-subtitle {
      color: #6b7280;
      font-size: 14px;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .brand-title {
      font-weight: 700;
      font-size: 32px;
      color: #1e293b;
      margin-bottom: 15px;
      animation: fadeInUp 1s ease;
    }

    .brand-description {
      color: #475569;
      font-size: 16px;
      max-width: 800px;
      margin: 0 auto 50px;
      animation: fadeInUp 1.3s ease;
    }

    @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translateY(30px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* === Brand Logos === */
    .brand-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
    }

    .brand-logo {
      background: #fff;
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      padding: 20px 30px;
      width: 180px;
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
      cursor: pointer;
      animation: fadeIn 1s ease;
    }

    .brand-logo img {
      max-height: 50px;
      width: auto;
      transition: all 0.4s ease;
      filter: grayscale(100%);
      opacity: 0.8;
    }

    .brand-logo:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 15px rgba(243, 139, 3, 0.2);
    }

    .brand-logo:hover img {
      filter: grayscale(0%);
      opacity: 1;
      transform: scale(1.05);
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* === Button === */
    .brand-btn {
      margin-top: 50px;
      background: transparent;
      color: #ec8f22;
      border: 2px solid #ec8f22;
      border-radius: 50px;
      padding: 12px 35px;
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .brand-btn:hover {
      background: #ec8f22;
      color: #fff;
      transform: scale(1.05);
    }

    /* customer */
    /* ---------- Customers ---------- */
    .customers-section {
      padding: 80px 0;
      text-align: center;
    }

    .section-subtitle {
      font-weight: 500;
      text-transform: uppercase;
      font-size: 0.9rem;
      color: #6b7280;
      letter-spacing: 1px;
    }

    .section-title {
      font-weight: 700;
      font-size: 2rem;
      margin-bottom: 40px;
    }

    /* Logo Carousel */
    .logo-carousel .swiper-slide {
      display: grid;
      justify-content: center;
      align-items: center;
      opacity: 0.6;
      transition: 0.3s;
    }

    .logo-carousel .swiper-slide:hover {
      opacity: 1;
      transform: scale(1.05);
    }

    .logo-carousel img {
      max-height: 60px;
      width: auto;
      filter: grayscale(100%);
      transition: all 0.3s;
    }

    .logo-carousel img:hover {
      filter: none;
    }

    /* ---------- Testimonials ---------- */
    .testimonials-section {
      background-color: #111827;
      color: #f9fafb;
      padding: 100px 0;
    }

    .testimonial-title {
      font-weight: 700;
      font-size: 2rem;
      color:#ec8f22;
    }

    .testimonial-card {
      background-color: #1f2937;
      border-radius: 20px;
      padding: 2rem;
      height: 100%;
      transition: 0.3s;
    }

    .testimonial-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    }

    .testimonial-card h5 {
      font-weight: 600;
      margin-bottom: 1rem;
      color: #fff;
    }

    .testimonial-card p {
      color: #d1d5db;
    }

    .testimonial-info {
      display: flex;
      align-items: center;
      margin-top: 1.5rem;
    }

    .testimonial-info img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      margin-right: 1rem;
    }

    .testimonial-name {
      font-weight: 600;
      color: #fff;
    }

    .testimonial-role {
      font-size: 0.9rem;
      color: #9ca3af;
    }

    .stars {
      color: #ec8f22;
      margin-top: 0.5rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
      color: #00b4d8;
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
      opacity: 1;
    }

    /* footer*/
      footer {
      background-color: #ffffff;
      border-top: 1px solid #e5e7eb;
      padding: 60px 0 30px;
      font-family: 'Poppins', sans-serif;
    }

    footer h6 {
      font-weight: 600;
      text-transform: uppercase;
      font-size: 14px;
      color: #fff;
      letter-spacing: 1px;
      margin-bottom: 20px;
    }

    footer ul {
      list-style: none;
      padding: 0;
    }

    footer ul li {
      margin-bottom: 10px;
    }

    footer ul li a {
      text-decoration: none;
      color: #374151;
      transition: 0.3s;
    }

    footer ul li a:hover {
      color: #ec8f22;
      transform: translateX(3px);
    }

    .social-icons a {
      font-size: 18px;
      margin-right: 12px;
      color: #374151;
      transition: all 0.3s;
    }

    .social-icons a:hover {
      color: #ec8f22;
      transform: scale(1.2);
    }

    .newsletter input {
      border: none;
      border-bottom: 2px solid #d1d5db;
      border-radius: 0;
      padding: 10px;
      width: 70%;
      transition: 0.3s;
    }

    .newsletter input:focus {
      border-bottom: 2px solid #ec8f22;
      outline: none;
    }

    .newsletter button {
      background-color: #ec8f22;
      color: #fff;
      border: none;
      padding: 10px 18px;
      border-radius: 30px;
      transition: 0.3s;
    }

    .newsletter button:hover {
      background-color: #ec8f22;
    }
.contact_footer{
  color: #fff;
}
    .footer-bottom {
      border-top: 1px solid #e5e7eb;
      margin-top: 40px;
      padding-top: 20px;
      text-align: center;
      color: #fff;
      font-size: 14px;
    }

    /* Simple fade-up animation */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 1s ease forwards;
    }

    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

.whatsapp-floating {
    position: fixed;
    bottom: 20px;     /* distance from bottom */
    right: 20px;      /* distance from right */
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
}

.whatsapp-floating img {
    width: 35px;
    height: 35px;
}

/* === CTA Section === */
    .cta-section {
      background-color: #0d1418;
      padding: 100px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: "";
      position: absolute;
      top: -100px;
      left: -100px;
      width: 300px;
      height: 300px;
      background: rgba(236, 143, 34, 0.15);
      border-radius: 50%;
      filter: blur(60px);
      animation: float 6s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-20px); }
    }

    .cta-heading {
      font-weight: 700;
      font-size: 2rem;
      color: #fff;
      animation: fadeInUp 1s ease;
    }

    .cta-heading span {
      color: #ec8f22;
    }

    .cta-subtext {
      color: #d1d5db;
      font-size: 1.2rem;
      margin-top: 10px;
      margin-bottom: 60px;
      animation: fadeInUp 1.2s ease;
    }

    @keyframes fadeInUp {
      0% { opacity: 0; transform: translateY(40px); }
      100% { opacity: 1; transform: translateY(0); }
    }
 /* === Stats Boxes === */
    .stat-box {
      border-right: 1px solid rgba(255,255,255,0.15);
      padding: 20px;
      animation: fadeIn 1.5s ease;
    }

    .stat-box:last-child {
      border-right: none;
    }

    .stat-number {
      font-size: 2rem;
      font-weight: 700;
      color: #fff;
      display: inline-block;
      transition: color 0.3s ease;
    }

    .stat-box:hover .stat-number {
      color: #ec8f22;
    }

    .stat-label {
      font-size: 0.95rem;
      color: #9ca3af;
      margin-top: 5px;
      letter-spacing: 0.5px;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 768px) {
      .stat-box {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
      }
      .stat-box:last-child {
        border-bottom: none;
      }
    }
