/* General Styling */
 
 
 body {
         font-family: Inter !important;

 }



/* Dark Mode Styles */
body.dark-mode {
  background-color: #171717;
  color: #ffffff;
}

body.dark-mode .navbar {
  background-color: rgb(40, 44, 52) !important;
}

body.dark-mode .nav-link,
body.dark-mode .dropdown-menu {
  color: white !important;

}

body.dark-mode .dropdown-item:hover {
  background-color: #dc3545 !important;
}

/* ===== HORIZONTAL SCROLL FIXES - IMPORTED ===== */

/* 1. Body level fixes - sab se important */
html, body {
    overflow-x: hidden !important;  
    width: 100% !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
}

/* 2. All containers strict control */
.container {
    width: 100% !important;
    max-width: 1400px !important;  /* Desktop maximum width */
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
}

/* 3. Fluid container control */
.container-fluid {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
}

/* 4. Bootstrap grid fixes */
.row {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box !important;
}

[class*="col-"] {
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
    max-width: 100% !important;
}

/* 5. Infinite slider specific fixes */
.slider_1 {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;  /* Slider container mein confine */
    position: relative !important;
    margin: 0 auto !important;
    padding: 1rem 0 !important;
    box-sizing: border-box !important;
}

.slide-track {
    display: flex !important;
    width: max-content !important;
    min-width: 100% !important;
    gap: 1rem !important;
    padding: 0 1rem !important;
    animation: scrollAchievements 28s linear infinite !important;
    box-sizing: border-box !important;
}

/* 6. Slider gradient overlays - dono taraf */
.slider_1::before,
.slider_1::after {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    width: 100px !important;
    height: 100% !important;
    z-index: 3 !important;
    pointer-events: none !important;
}

.slider_1::before {
    left: 0 !important;
    background: linear-gradient(90deg, #0b1f2b 0%, transparent 100%) !important;
}

.slider_1::after {
    right: 0 !important;
    background: linear-gradient(270deg, #0b1f2b 0%, transparent 100%) !important;
}

/* 7. Slide items ki width control */
.slide_i {
    min-width: 180px !important;  /* Mobile ke liye choti */
    max-width: 220px !important;  /* Desktop ke liye limit */
    width: auto !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
}

@media (min-width: 768px) {
    .slide_i {
        min-width: 200px !important;
    }
}

/* 8. Carousel fixes - review section */
.carousel-inner {
    width: 100% !important;
    overflow: hidden !important;
}

.carousel-item {
    width: 100% !important;
    float: left;
    margin-right: -100%;
    display: none;
    position: relative;
}

.carousel-item.active {
    display: block !important;
}

/* 9. Row gap control */
.row.g-4 {
    margin-left: 0 !important;
    margin-right: 0 !important;
    --bs-gutter-x: 0 !important;  /* Bootstrap gutter override */
}

/* 10. Card images ko overflow na hone dein */
.card-img-top {
    max-width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
}

/* 11. Any element with width 100vw */
* {
    max-width: 100vw !important;  /* Koi bhi element viewport se zyada na ho */
}

/* 12. Responsive fixes for small devices */
@media (max-width: 576px) {
    .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    [class*="col-"] {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    .slide_i {
        min-width: 160px !important;
        padding: 1rem 1.5rem !important;
    }
    
    .slider_1::before,
    .slider_1::after {
        width: 40px !important;  /* Mobile pe chote gradients */
    }
}

/* 13. Debugging - overflow causing element find karne ke liye */
/* .debug * { outline: 1px solid red; } */  /* Uncomment to debug */

/* Desktop view */
.logo-adjust {
    margin-left: 3rem; /* ya jo bhi spacing chahiye desktop pe */
}

/* Desktop view */
@media (min-width: 992px) {
    .logo-adjust {
        margin-left: 3rem; /* thoda right shift desktop pe */
    }
}




/* Desktop - default */
.card-body p {
    font-size: 1.1rem;
    text-align: justify;
}

/* Mobile view <= 576px */
@media (max-width: 576px) {
    .card-body p {
        font-size: 0.95rem; /* slightly smaller font */
        padding: 0 10px;    /* left-right padding for mobile */
       
    }

    .card-body {
        padding: 0.5rem !important; /* thoda space inside card */
    }
}


/* Mobile view */
@media (max-width: 991px) {
    .logo-adjust {
        margin-left: 0 !important;  /* left corner pe fix */
    }
}




/* Navbar Styling */
.navbar {
  background-color: rgb(255, 255, 255);
  height: 100px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  width: 180px;
}

.nav-item {
  margin: 0 50px;
}

.nav-link {
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  padding: 10px 15px;
}

.navbar a {
    text-decoration: none !important;
}
.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  color: #0c0c0c;
}

.navbar-nav {
  justify-content: center;
  width: 100%;
  text-align: center;
  position: absolute;
}

.navbar-collapse {
  justify-content: center;
}

/* Dropdown Menu */
.dropdown-menu {
  border: none;
  background-color: #333;
}

.dropdown-item {
  color: white !important;
  transition: background-color 0.3s; /* optional smooth hover */
}

.dropdown-item:hover {
  background-color: #ff0000 !important; /* red hover enforced */
  color: white !important; /* ensures text stays readable */
}
/* Snowfall Effect */
.snowflake {
  position: absolute;
  top: -10px;
  pointer-events: none;
  color: white;
  font-size: 1.5em;
  opacity: 0.8;
  user-select: none;
}

@keyframes snowfall {
  to {
    transform: translateY(100vh);
  }
}

/* Footer Link Animation */
.footer-link {
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
  animation: slideIn 0.5s ease-out both;
}

.footer-link:hover {
  color: #ffffff !important;
  transform: translateX(10px);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.footer-link:nth-child(1) { animation-delay: 0.2s; }
.footer-link:nth-child(2) { animation-delay: 0.4s; }
.footer-link:nth-child(3) { animation-delay: 0.6s; }
.footer-link:nth-child(4) { animation-delay: 0.8s; }
.footer-link:nth-child(5) { animation-delay: 1s; }
.footer-link:nth-child(6) { animation-delay: 1.2s; }

 /*Carousel Styling*/
   
        /* section spacing – refined */
        .carousel-section {
            padding: 3rem 0;
            /*background: linear-gradient(145deg, #ffffff 0%, #f9fafc 100%);*/
        }

        .container {
            max-width: 1400px;
            
        }

        /* ---- main carousel styling (refined) ---- */
        #carouselExampleCaptions {
            border-radius: 32px;   /* soft, modern rounding */
            overflow: hidden;
            box-shadow: 0 30px 45px -20px rgba(0, 20, 30, 0.4),
                        0 8px 20px -8px rgba(0, 0, 0, 0.15);
            transition: box-shadow 0.4s ease;
        }

        #carouselExampleCaptions:hover {
            box-shadow: 0 35px 55px -18px rgba(0, 40, 50, 0.5);
        }

        .carousel-inner {
            border-radius: 32px;    /* keep consistent with parent */
        }

        /* image wrapper – subtle zoom container */
        .carousel-item {
            overflow: hidden;
            border-radius: 32px;
            background: #0b1a1e;    /* fallback for overlay richness */
        }

        .carousel-img {
            height: 600px;           /* more cinematic height */
            width: 100%;
            object-fit: cover;
            transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* slow & cinematic */
            transform: scale(1.02);   /* very subtle initial scale to avoid border flash */
            will-change: transform;
            border-radius: 32px;      /* fits parent */
            display: block;
        }

        /* zoom enhancement on active – gentle drift */
        .carousel-item.active .carousel-img {
            transform: scale(1.08);    /* refined slow zoom */
        }

        /* elegant gradient overlay (softer than before) */
        .carousel-item::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, 
                rgba(0, 8, 15, 0.7) 0%, 
                rgba(0, 20, 30, 0.3) 30%,
                rgba(0, 0, 0, 0.1) 70%,
                transparent 100%);
            border-radius: 32px;
            pointer-events: none;
            z-index: 2;
            transition: opacity 0.5s ease;
        }

        /* captions – elegant & minimal, animated */
        .carousel-caption {
            position: absolute;
            left: 4rem;
            right: 4rem;
            bottom: 3rem;
            text-align: left;
            z-index: 5;
            padding: 1.2rem 2rem;
            background: rgba(10, 20, 25, 0.2);         /* very thin glass */
            backdrop-filter: blur(2px);                 /* subtle blur */
            border-left: 5px solid rgba(220, 180, 100, 0.8); /* warm gold accent */
            border-radius: 0 20px 20px 0;               /* modern edge */
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s cubic-bezier(0.2, 0.9, 0.3, 1), transform 0.7s cubic-bezier(0.2, 0.9, 0.3, 1);
            max-width: 700px;
            box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.2);
        }

        .carousel-item.active .carousel-caption {
            opacity: 1;
            transform: translateY(0);
        }

        /* sample caption beauty (you can replace text via blade) */
        .carousel-caption h5 {
            font-size: 2.2rem;
            font-weight: 600;
            letter-spacing: -0.02em;
            color: #ffffff;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
            margin-bottom: 0.25rem;
        }

        .carousel-caption p {
            font-size: 1.2rem;
            font-weight: 400;
            color: rgba(255, 255, 245, 0.95);
            text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
            margin-bottom: 0;
            opacity: 0.9;
        }

        /* remove default indicators (as requested) and refine arrows */
        .carousel-indicators {
            display: none !important;
        }

        /* navigation arrows – elegant minimal */
        .carousel-control-prev,
        .carousel-control-next {
            width: 5.5rem;           /* wider click area */
            opacity: 0;
            transition: opacity 0.3s ease, background 0.3s ease;
            z-index: 20;
            background: transparent;
            border-radius: 40px;
            margin: 0 1rem;
            height: calc(100% - 4rem);
            top: 2rem;
            bottom: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #carouselExampleCaptions:hover .carousel-control-prev,
        #carouselExampleCaptions:hover .carousel-control-next {
            opacity: 1;
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            background-image: none;   /* we craft custom white arrows with shadow */
            width: 3.2rem;
            height: 3.2rem;
            background-color: rgba(20, 30, 35, 0.45);   /* deep transparent */
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            box-shadow: 0 8px 18px -6px rgba(0, 0, 0, 0.3);
        }

        .carousel-control-prev-icon:hover,
        .carousel-control-next-icon:hover {
            background-color: rgba(35, 45, 55, 0.7);
            border-color: rgba(255, 215, 140, 0.6);
            transform: scale(1.1);
        }

        /* custom arrow symbols (SVG via background) */
        .carousel-control-prev-icon::after {
            content: "‹";
            font-size: 3.5rem;
            font-weight: 300;
            line-height: 1;
            color: white;
            margin-top: -0.4rem;
            margin-right: 0.1rem;
            text-shadow: 0 2px 8px black;
        }

        .carousel-control-next-icon::after {
            content: "›";
            font-size: 3.5rem;
            font-weight: 300;
            line-height: 1;
            color: white;
            margin-top: -0.4rem;
            margin-left: 0.1rem;
            text-shadow: 0 2px 8px black;
        }

        /* override bootstrap default background */
        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            background-image: none !important;
        }

        /* make arrows always visible on mobile? keep subtle */
        @media (max-width: 768px) {
            .carousel-img {
                height: 450px;
            }
            .carousel-caption {
                left: 1.5rem;
                bottom: 2rem;
                padding: 0.8rem 1.5rem;
            }
            .carousel-caption h5 {
                font-size: 1.5rem;
            }
            .carousel-caption p {
                font-size: 1rem;
            }
            .carousel-control-prev,
            .carousel-control-next {
                width: 3rem;
                margin: 0 0.25rem;
            }
        }

        /* dummy caption texts – they will appear in your actual blade anyway */
        .placeholder-caption {
            display: none;  /* we use actual data from blade, but keep your original structure */
        }

        /* subtle transform class you had – we attach to images optionally */
        .transform-effect {
            transition: transform 0.5s ease;
        }
        /* not needed on carousel directly, but kept for completeness */

        /* extra polish: add a thin inner border that glows */
        .carousel-inner {
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        /* ensure caption left border visible even on small */
        .carousel-caption {
            border-left: 6px solid #f7c35c; /* warm amber */
        }

        /* optional: hide default bootstrap caption background */
        .carousel-caption {
            background: transparent;
            backdrop-filter: none;   /* we have own background */
            background: linear-gradient(90deg, rgba(0, 20, 25, 0.5) 0%, rgba(0, 20, 25, 0.2) 90%);
            backdrop-filter: blur(3px);
        }
    

/* Responsive Media Queries for All Screens */
@media (max-width: 1200px) {
  .navbar {
    height: auto;
    padding: 15px;
  }
  
  .navbar-brand img {
    width: 160px;
  }

  .nav-item {
    margin: 0 40px;
  }

  .nav-link {
    font-size: 15px;
  }

  .carousel-img {
    height: 350px;
  }
}

@media (max-width: 991px) {
  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-item {
    width: 100%;
    margin-bottom: 10px;
  }

  .navbar-nav .nav-item .btn {
    width: 100%;
  }

  .carousel-img {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 10px;
  }

  .navbar-brand img {
    width: 140px;
  }

  .nav-item {
    margin: 0 20px;
  }

  .nav-link {
    font-size: 14px;
  }

  .carousel-img {
    height: 280px;
  }
}

@media (max-width: 576px) {
  .navbar {
    padding: 8px;
  }

  .navbar-brand img {
    width: 120px;
  }

  .nav-item {
    margin: 0 10px;
  }

  .nav-link {
    font-size: 12px;
  }

  .dropdown-menu {
    font-size: 14px;
  }

  .carousel-img {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .carousel-caption h5 {
    font-size: 16px;
  }

  .carousel-caption p {
    font-size: 12px;
  }

  .carousel-img {
    height: 220px;
  }
}

@media (max-width: 360px) {
  .navbar {
    padding: 5px;
  }

  .navbar-brand img {
    width: 100px;
  }

  .nav-item {
    margin: 0 5px;
  }

  .nav-link {
    font-size: 10px;
  }

  .carousel-img {
    height: 200px;
  }
}
.navbar-toggler-icon-custom {
  color: rgb(0, 0, 0); /* Change color */
  font-size: 24px; /* Adjust size if needed */
}
/* Default Light Mode Icon Color */
.navbar-toggler i {
  color: black; /* Default color for light mode */
  transition: color 0.3s ease;
}

/* Dark Mode Icon Color */
body.dark-mode .navbar-toggler i {
  color: white !important; /* Change to white in dark mode */
}



/* Industry & Plant Safety */

.header-underline {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, rgba(255,174,0,1) 0%, rgba(255,214,109,1) 100%);
}
.transform-hover {
  transition: all 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
}
.transform-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.card-header {
  font-weight: 600;
}
 
/* <!-- reviews  CSS --> */
  

    /* Glassmorphism Card */
    .glass-card {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .glass-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    }

    /* Star Rating Animation */
    .star-rating i {
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .star-rating:hover i {
        transform: scale(1.2);
        color: #ffeb3b !important;
    }

    /* Carousel Transition */
    .carousel-item {
        transition: transform 0.8s ease-in-out;
    }

    /* Typography */
    .card-title {
        font-size: 1.3rem;
       
    }

    .card-text {
        font-size: 1rem;
        line-height: 1.7;
       
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .carousel-inner {
            padding: 0 20px;
        }

        .card-title {
            font-size: 1.2rem;
        }

        .card-text {
            font-size: 0.95rem;
        }

        h2 {
            font-size: 2.5rem;
        }
    }

    @media (max-width: 576px) {
        .carousel-inner {
            padding: 0 10px;
        }

        .card-title {
            font-size: 1.1rem;
        }

        .card-text {
            font-size: 0.9rem;
        }

        h2 {
            font-size: 2rem;
        }

        .divider {
            width: 80px !important;
            height: 4px !important;
        }
    }

    /* Accessibility */
    .carousel-indicators button {
        transition: transform 0.3s ease;
    }

    .carousel-indicators button:focus {
        transform: scale(1.2);
        border-color: #ffd700;
        outline: none;
    }

    .carousel-control-prev:focus,
    .carousel-control-next:focus {
        outline: 2px solid #ffd700;
        outline-offset: 2px;
    }

      /* term and condtion css  */
    
      .terms-container {
          max-width: 900px;
          margin: 0 auto;
      }
     
      .terms-header {
          background: linear-gradient(135deg, #a19c9c, #3498db);
          color: white;
          border-radius: 10px 10px 0 0;
          padding: 2rem;
          text-align: center;
      }
      .terms-header h2 {
          font-weight: 700;
          letter-spacing: 1px;
      }
      .terms-header .divider {
          width: 80px;
          height: 4px;
          background: #f39c12;
          margin: 1rem auto;
      }
      .terms-content {
          background: white;
          padding: 2.5rem;
          border-radius: 0 0 10px 10px;
          box-shadow: 0 5px 30px rgba(0,0,0,0.1);
      }
      .section-title {
          font-weight: 600;
          color: #2c3e50;
          margin-bottom: 1.5rem;
          padding-bottom: 0.75rem;
          border-bottom: 2px solid #f1f1f1;
          position: relative;
      }
      .section-title:after {
          content: '';
          position: absolute;
          left: 0;
          bottom: -2px;
          width: 50px;
          height: 2px;
          background: #f39c12;
      }
      .term-item {
          margin-bottom: 1.25rem;
          padding-left: 2rem;
          position: relative;
      }
      .term-item:before {
          content: '\f00c';
          font-family: 'Font Awesome 5 Free';
          font-weight: 900;
          color: #27ae60;
          position: absolute;
          left: 0;
      }
      .highlight-box {
          background: #f8f9fa;
          border-left: 4px solid #f39c12;
          padding: 1.5rem;
          margin: 2rem 0;
          border-radius: 0 5px 5px 0;
      }
      .acceptance-notice {
          background: #fff8e1;
          border: 1px solid #ffe082;
          padding: 1.5rem;
          border-radius: 5px;
          margin-top: 2rem;
      }
      @media (max-width: 768px) {
          .terms-content {
              padding: 1.5rem;
          }
      }
  

/* support css  */

   
    main {
        padding: 20px;
    }
    main {
        margin: 0 auto;
        padding: 20px;
        max-width: 900px;
        border: 1px solid #000000;
        box-shadow: 0 2px 5px rgba(255, 254, 254, 0.1);
        /* background-color: #000000; */
    }
    label {
        display: block;
        margin: 10px 0 5px;
        /* color: #000000; */
    }
    input, textarea {
        width: 100%;
        padding: 10px;
        margin: 5px 0 20px;
        border: 1px solid #060606;
        border-radius: 4px;
    }
    button {
        background-color: #41b945;
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }
   

   /* policy  */
   

main {
    margin: 0 auto;
    padding: 20px;
    max-width: 900px;
    border: 1px solid #111111;
    box-shadow: 0 2px 5px rgba(14, 1, 1, 0.1);
  
}
h1, h2 {
    /* color: #0c0c0c; */
    text-align: center;
}
p {
    font-size: 1.1em;
    line-height: 1.6;
    margin: 15px 0;
    padding: 0 20px;
    /* color: black; */
}
ul {
 
    padding: 0 20px;
    margin: 10px 0;
    /* color: black; */
}
ul li {
    margin: 5px 0;
    padding-left: 20px;
}
a {
    color: #2980B9;
    text-decoration: none;
}

a:hover {
    color: #1ABC9C;
    text-decoration: none;
}
@media (max-width: 600px) {
    main {
        padding: 10px;
    }
    h1, h2 {
        font-size: 1.5em;
    }
}
/* end  */

/* about css  */

.hero {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* color: white; */
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
.section-title {
  font-size: 2rem;
  font-weight: 600;
  border-bottom: 3px solid #000000;
  display: inline-block;
  margin-bottom: 20px;
}
  /* mcqs css  */
  
  .mcq-container {
 
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
  }
  .mcq-question {
    font-size: 1.2rem;
    font-weight: bold;

    margin-bottom: 15px;
  }
  .mcq-option {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .mcq-option:hover {
    background-color: #f1f1f1;
  }
  .mcq-option.correct {
    background-color: #d4edda;
    border-color: #c3e6cb;
  }
  .mcq-option.incorrect {
    background-color: #f8d7da;
    border-color: #f5c6cb;
  }
  .mcq-feedback {
    margin-top: 10px;
    font-weight: bold;
  }
  .mcq-feedback.correct {
    color: #28a745;
  }
  .mcq-feedback.incorrect {
    color: #dc3545;
  }
  .correct-answer {
    margin-top: 10px;
    font-weight: bold;
    color: #155724;
  }
/* end mcq  */

 /* sliding css  */

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .slider-section {
     
     background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
     text-align: center;
     opacity: 0;
     animation: fadeInUp 1s ease-out forwards;
     animation-delay: 0.3s;
     position: relative;
 }

 .slider-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 5px;
     /* background: linear-gradient(90deg, #3498db, #2ecc71, #e74c3c, #3498db); */
     background-size: 300% 100%;
     animation: gradientBG 8s ease infinite;
 }

 @keyframes gradientBG {
     0% { background-position: 0% 50%; }
     50% { background-position: 100% 50%; }
     100% { background-position: 0% 50%; }
 }

 .slider-section-h2 {
     font-size: 2.8rem;
     font-weight: 700;
     margin-bottom: 50px;
     color: #2c3e50;
     position: relative;
     display: inline-block;
 }

 .slider-section-h2::after {
     content: '';
     position: absolute;
     bottom: -15px;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 4px;
 
     border-radius: 2px;
 }

 .slider-section-h2 span {
     color: #3498db;
     display: block;
     font-weight: 400;
     font-size: 1.8rem;
     margin-top: 15px;
 }

 .slider_1 {
     width: 100%;
     overflow: hidden;
     position: relative;
     /* margin: 0 auto; */
     /* padding: 20px 0; */
 }

 .slide-track {
     display: flex;
     animation: scroll 20s linear infinite;
      width: max-content;
 }

 .slide_i {
     width: 220px;
     height: 180px;
     margin: 0 15px;
     background: rgba(122, 162, 226, 0.84);
     border-radius: 10px;
     box-shadow: 0 4px 15px rgba(0,0,0,0.1);
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     padding: 20px;
     flex-shrink: 0;
     transition: all 0.4s ease;
     position: relative;
     overflow: hidden;
 }

 .slide_i::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 5px;
     background: #3498db;
 }

 .slide_i:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px rgba(0,0,0,0.15);
 }

 .slide_i_h3 {
     font-size: 2.8rem;
     font-weight: 700;
     background: linear-gradient(135deg, #000000, #000000);
     /* -webkit-background-clip: text;rgb(0, 0, 0); */
     background-clip: text;
     color: transparent;
     margin-bottom: 10px;
 }

 .slide_i_p {
     font-size: 1.1rem;
     color: #000000;
     font-weight: 500;
 }

 @keyframes scroll {
     0% {
         transform: translateX(0);
     }
     100% {
         transform: translateX(calc(-250px * 6));
     }
 }

 @keyframes pulse {
     0% { transform: scale(1); }
     50% { transform: scale(1.05); }
     100% { transform: scale(1); }
 }

 .highlight {
     animation: pulse 2s infinite;
 }

 @media (max-width: 992px) {
     .slider-section-h2 {
         font-size: 2.4rem;
     }

     .slider-section-h2 span {
         font-size: 1.6rem;
     }
 }

 @media (max-width: 768px) {
     .slider-section {
         padding: 60px 0;
     }

     .slider-section-h2 {
         font-size: 2rem;
     }

     .slider-section-h2 span {
         font-size: 1.4rem;
     }

     .slide_i {
         width: 180px;
         height: 150px;
     }

     .slide_i_h3 {
         font-size: 2.2rem;
     }
 }

 @media (max-width: 576px) {
     .slider-section {
         padding: 50px 0;
     }

     .slider-section-h2 {
         font-size: 1.8rem;
         margin-bottom: 30px;
     }

     .slide-track {
         animation: scroll 25s linear infinite;
     }
 }
  /* contact page css  */

  main {
      margin: 30px auto;
      padding: 30px;
      max-width: 900px;
      /* background: white; */
      border-radius: 8px;
      box-shadow: 0 0 20px rgba(0,0,0,0.1);
  }
  h1 {
      /* color: #2c3e50; */
      text-align: center;
      margin-bottom: 25px;
      font-size: 2.2em;
      /* border-bottom: 2px solid #2980B9; */
      padding-bottom: 10px;
  }
  h2 {
      color: #2980B9;
      margin-top: 30px;
      margin-bottom: 15px;
      font-size: 1.6em;
  }
  p {
      font-size: 1.1em;
      margin: 15px 0;
     
  }
  ul {
      margin: 15px 0;
      padding-left: 30px;
  }
  ul li {
      margin: 8px 0;
      padding-left: 5px;
  }
  .contact-info {
      /* background: #f0f8ff; */
      padding: 20px;
      border-radius: 5px;
      margin: 20px 0;
  }
  .contact-info li {
      list-style-type: none;
      padding-left: 0;
      margin: 10px 0;
  }
  .contact-info strong {
      display: inline-block;
      width: 80px;
      /* color: #2c3e50; */
  }
  a {
      color: #2980B9;
      text-decoration: none;
      transition: color 0.3s;
  }
  a:hover {
      color: #1ABC9C;
      text-decoration: underline;
  }
  .benefits {
      margin: 25px 0;
  }
  .benefits li {
      position: relative;
  }
  .benefits li:before {
      content: "✓";
      color: #27ae60;
      font-weight: bold;
      position: absolute;
      left: -25px;
  }

  @media (max-width: 768px) {
      main {
          margin: 15px;
          padding: 20px;
      }
      h1 {
          font-size: 1.8em;
      }
      h2 {
          font-size: 1.4em;
      }
      .contact-info li {
          margin: 15px 0;
      }
      .contact-info strong {
          display: block;
          width: auto;
      }
  }
/*EQUPMENT css*/

        /* section container – extra breathing */
        .equipment-section {
            padding: 2rem 0 4rem 0;
            /*background: linear-gradient(145deg, #ffffff 0%, #f5f9ff 100%);*/
        }

        /* ----- header styling (gleaming gold) ----- */
        .section-header {
            margin-bottom: 2.2rem;
        }

        .section-header h1 {
            color: #c99c00;  /* deep golden */
            background: linear-gradient(135deg, #e6b422 0%, #d4a017 60%, #f5c542 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
            font-size: 2.8rem;
            letter-spacing: -0.02em;
            display: inline-block;
            text-shadow: 0 2px 8px rgba(212, 160, 23, 0.15);
        }

        .section-header h1 i {
            background: none;
            -webkit-text-fill-color: #c1940b; /* fallback icon color */
            color: #c1940b;
            margin-left: 8px;
            font-size: 2.6rem;
            vertical-align: middle;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
        }

        /* classic underline */
        .header-underline {
            width: 120px;
            height: 5px;
            background: linear-gradient(90deg, #f5b81b, #f1c40f, #f39c12);
            border-radius: 8px;
            margin: 0.5rem auto 1.8rem auto;
            opacity: 0.9;
        }

        /* intro paragraph – refined */
        .intro-text {
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            /*color: #2d3e50;*/
            font-size: 1.18rem;
            line-height: 1.6;
            font-weight: 400;
            background: rgba(255, 215, 120, 0.08);
            padding: 1.2rem 2rem;
            border-radius: 60px;
            backdrop-filter: blur(2px);
            box-shadow: inset 0 1px 6px rgba(255, 215, 0, 0.15), 0 4px 12px -8px rgba(0,0,0,0.2);
            border: 1px solid rgba(250, 210, 100, 0.3);
        }

        /* ----- equipment cards – modern & elegant ----- */
        .equipment-card {
            background: #ffffff;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 20px 30px -10px rgba(0, 30, 40, 0.12), 0 6px 14px -8px rgba(0, 0, 0, 0.08);
            transition: all 0.35s cubic-bezier(0.15, 0.75, 0.45, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(230, 195, 70, 0.15);
            backdrop-filter: blur(2px);
        }

        .equipment-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 32px 45px -14px rgba(170, 130, 20, 0.25), 0 12px 24px -10px rgba(0, 45, 60, 0.2);
            border-color: rgba(245, 195, 65, 0.5);
        }

        /* image area – crisp & contained */
        .equipment-card .card-img-top {
            width: 100%;
            height: 260px;          /* fixed but balanced */
            object-fit: cover;
            border-bottom: 3px solid #f3cd6b;
            transition: transform 0.5s ease;
            background: #eaeef2;    /* placeholder tint */
        }

        .equipment-card:hover .card-img-top {
            transform: scale(1.02);  /* subtle sibling zoom */
        }

        /* card body (inner) */
        .equipment-card .card-body {
            padding: 1.8rem 1.5rem 2rem 1.5rem;
            display: flex;
            flex-direction: column;
            flex: 1;
            background: linear-gradient(180deg, #ffffff 0%, #fefcf8 100%);
        }

        /* title – bold but refined */
        .equipment-card .card-title {
            font-size: 1.9rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 1.2rem;
            color: #1e2b39;
            border-left: 6px solid #f3b82e;
            padding-left: 1rem;
            line-height: 1.2;
            transition: border-color 0.2s;
        }

        .equipment-card:hover .card-title {
            border-left-color: #d48d0b;
        }

        /* description text – clean and readable */
        .equipment-card .card-text {
            color: #2f4052;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1.8rem;
            flex: 1;
            opacity: 0.9;
        }

        /* button – elegant gold outline with solid on hover */
        .btn-detail {
            background: transparent;
            border: 2px solid #e6b422;
            color: #b37b2e;
            font-weight: 600;
            padding: 0.7rem 1.8rem;
            border-radius: 60px;
            font-size: 1rem;
            letter-spacing: 0.02em;
            transition: all 0.25s ease;
            align-self: flex-start;
            margin-top: 0.5rem;
            box-shadow: 0 4px 12px -6px rgba(200, 140, 20, 0.3);
            backdrop-filter: blur(4px);
            background: rgba(255, 215, 120, 0.1);
        }

        .btn-detail:hover {
            background: linear-gradient(145deg, #e6b422, #d69e1a);
            color: white;
            border-color: #d7a020;
            transform: scale(1.02);
            box-shadow: 0 12px 22px -12px #cc9f2c;
        }

        .btn-detail i {
            margin-right: 6px;
            font-size: 0.9rem;
        }

        /* mobile responsiveness */
        @media (max-width: 768px) {
            .section-header h1 {
                font-size: 2rem;
            }
            .intro-text {
                font-size: 1rem;
                padding: 1rem 1.2rem;
            }
            .equipment-card .card-title {
                font-size: 1.6rem;
            }
        }

        /* optional container spacing */
        .container .row {
            row-gap: 2rem;
        }

        /* simulate "storage" images via gradient placeholders (replace with actual laravel assets) */
        .demo-img {
            background: linear-gradient(145deg, #3a5f6e, #2c4e5c, #3b5f4b);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.6);
            font-weight: 300;
        }
     /*machine css*/
  
        /* section background with subtle industrial vibe */
        .machinery-section {
            padding: 2rem 0 5rem 0;
            /*background: linear-gradient(145deg, #f6f9fc 0%, #edf1f7 100%);*/
            position: relative;
            isolation: isolate;
        }

        /* subtle gear pattern overlay */
        .machinery-section::before {
            content: "⚙️🔧⚙️";
            position: absolute;
            top: 20px;
            left: 0;
            width: 100%;
            font-size: 70px;
            opacity: 0.02;
            letter-spacing: 30px;
            text-align: center;
            pointer-events: none;
            z-index: 0;
            transform: rotate(-5deg) scale(1.2);
            white-space: nowrap;
            color: #2b4f5c;
        }

        .container {
            position: relative;
            z-index: 2;
        }

        /* ----- header: bold, mechanical, gold-accented ----- */
        .machinery-header h1 {
            color: #c99c00;
            background: linear-gradient(145deg, #f0b820, #d49b15);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            font-size: 3.2rem;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            display: inline-block;
            position: relative;
            filter: drop-shadow(0 4px 6px rgba(180, 130, 20, 0.15));
        }

        .machinery-header h1 i {
            background: none;
            -webkit-text-fill-color: #bf8b1a;
            color: #bf8b1a;
            font-size: 2.9rem;
            margin-left: 12px;
            transform: rotate(5deg);
            display: inline-block;
            filter: drop-shadow(0 2px 4px #33221144);
        }

        /* underline – wider, double stripe */
        .header-underline {
            width: 150px;
            height: 6px;
            background: linear-gradient(90deg, #f7b731, #f1c40f, #e6a21e);
            border-radius: 12px;
            margin: 0.6rem auto 2rem auto;
            box-shadow: 0 2px 12px rgba(240, 170, 30, 0.5);
            position: relative;
            overflow: hidden;
        }

        .header-underline::after {
            content: "";
            position: absolute;
            top: 1px;
            left: -100%;
            width: 100%;
            height: 2px;
            background: rgba(255, 255, 255, 0.5);
            animation: shine 3s infinite linear;
        }

        @keyframes shine {
            0% { left: -100%; }
            20% { left: 100%; }
            100% { left: 100%; }
        }

        /* intro description – industrial but polished */
        .machinery-intro {
            max-width: 950px;
            margin-left: auto;
            margin-right: auto;
            background: rgba(0, 30, 40, 0.02);
            border: 1px solid rgba(255, 200, 90, 0.25);
            backdrop-filter: blur(4px);
            padding: 1.5rem 2.5rem;
            border-radius: 80px 20px 80px 20px;  /* unusual but memorable industrial geometry */
            /*color: #1e3b4a;*/
            font-size: 1.18rem;
            font-weight: 400;
            box-shadow: inset 0 0 0 1px rgba(245, 190, 70, 0.2), 0 12px 26px -18px #2d4a5a;
            margin-bottom: 2.5rem;
        }

        .machinery-intro i {
            color: #f3aa1e;
            margin: 0 8px;
            font-size: 1.2rem;
        }

        /* ----- machinery cards – robust, modern, mechanical details ----- */
        .machinery-card {
            background: #ffffff;
            border-radius: 24px 24px 30px 30px;
            overflow: hidden;
            box-shadow: 0 18px 28px -12px rgba(25, 55, 70, 0.2), 0 6px 12px -8px rgba(0,0,0,0.12);
            transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(210, 170, 70, 0.25);
            position: relative;
        }

        .machinery-card:hover {
            transform: translateY(-10px) scale(1.01);
            box-shadow: 0 30px 42px -18px #c99c2b80, 0 12px 22px -12px #1d3f4e;
            border-color: #f0b84d;
        }

        /* industrial corner accent */
        .machinery-card::before {
            content: "⚙️";
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 22px;
            opacity: 0.2;
            transition: opacity 0.2s, transform 0.6s;
            transform: rotate(0deg);
            z-index: 5;
            pointer-events: none;
        }

        .machinery-card:hover::before {
            opacity: 0.6;
            transform: rotate(90deg);
        }

        /* image container – sturdy frame */
        .machinery-card .card-img-top {
            width: 100%;
            height: 260px;
            object-fit: cover;
            border-bottom: 4px solid #f7c45a;
            transition: transform 0.5s ease;
            background: #2a4b55;  /* fallback */
        }

        .machinery-card:hover .card-img-top {
            transform: scale(1.02);
        }

        /* inner card body */
        .machinery-card .card-body {
            padding: 1.8rem 1.6rem 2rem 1.6rem;
            background: linear-gradient(145deg, #ffffff, #fbf9f4);
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        /* title – bold, with mechanical groove */
        .machinery-card .card-title {
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            color: #1f2f3a;
            margin-bottom: 1.2rem;
            border-left: 6px solid #f3b433;
            padding-left: 1rem;
            line-height: 1.2;
            transition: border-left-width 0.2s;
            font-family: 'Inter', sans-serif;
            text-transform: none;
        }

        .machinery-card:hover .card-title {
            border-left-width: 10px;
            border-left-color: #e0940e;
        }

        /* description text */
        .machinery-card .card-text {
            color: #2f4555;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1.8rem;
            flex: 1;
        }

        /* pdf button – industrial gold with rivet style */
        .btn-machinery {
            background: #1e2f38;
            border: 2px solid #e8b12c;
            color: #f7cd6b;
            font-weight: 600;
            padding: 0.7rem 1.6rem;
            border-radius: 40px 12px 40px 12px;  /* distinct mechanical shape */
            font-size: 1.05rem;
            letter-spacing: 0.5px;
            transition: all 0.2s ease;
            align-self: flex-start;
            margin-top: 0.4rem;
            box-shadow: 0 4px 12px -4px #a3842e;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-machinery i {
            font-size: 1.2rem;
            color: #f8c146;
        }

        .btn-machinery:hover {
            background: #f3b82e;
            border-color: #bf8b1a;
            color: #121f29;
            transform: scale(1.02);
            box-shadow: 0 12px 22px -12px #b57f1a;
        }

        .btn-machinery:hover i {
            color: #1f2a31;
        }

        /* disabled style if no pdf */
        .btn-machinery.disabled-link,
        .btn-machinery[aria-disabled="true"] {
            opacity: 0.5;
            background: #2c404b;
            border-color: #6a6a5a;
            pointer-events: none;
            filter: grayscale(0.5);
        }

        /* mobile adaptation */
        @media (max-width: 768px) {
            .machinery-header h1 {
                font-size: 2.4rem;
            }
            .machinery-intro {
                font-size: 1rem;
                padding: 1rem 1.5rem;
                border-radius: 40px 10px 40px 10px;
            }
        }

        /* container spacing */
        .row {
            row-gap: 2rem;
        }

        /* fallback image styling if image fails (optional) */
        .demo-img-fallback {
            background: linear-gradient(145deg, #375f69, #1d3e48);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,240,180,0.6);
            font-size: 1.2rem;
        }
    
/*plant safty*/

        /* main safety section – clean & airy */
        .safety-cards-section {
            padding: 2rem 0 3rem;
            /*background: linear-gradient(145deg, #ffffff 0%, #f9fcff 100%);*/
        }

        /* header styling – safety orange/gold */
        .safety-header {
            margin-bottom: 1.5rem;
        }

        .safety-header h1 {
            color: #e68c1f;
            background: linear-gradient(145deg, #f9a826, #d97c06);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
            font-size: 3.2rem;
            letter-spacing: -0.02em;
            display: inline-block;
            filter: drop-shadow(0 2px 10px rgba(230, 140, 20, 0.2));
        }

        .header-underline {
            width: 140px;
            height: 6px;
            background: linear-gradient(90deg, #fbb03b, #f47c20, #fbb03b);
            border-radius: 50px;
            margin: 0.8rem auto 1.5rem auto;
            box-shadow: 0 2px 8px #f47c2060;
        }

        /* intro description – safety notice style */
        .safety-intro {
            max-width: 950px;
            margin: 0 auto 2rem auto;
            background: rgba(255, 180, 60, 0.05);
            border: 1px solid #fbc16a60;
            border-left: 8px solid #f68b28;
            border-radius: 20px 60px 20px 60px;
            padding: 1.5rem 2.2rem;
            font-size: 1.18rem;
            /*color: #1e3d4a;*/
            box-shadow: 0 12px 28px -16px #c07d2a40;
            backdrop-filter: blur(2px);
        }

        .safety-intro i {
            color: #e07c1f;
            margin-right: 8px;
        }

        /* ----- safety cards (col-md-6, bigger) ----- */
        .safety-card {
            background: #ffffff;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 16px 28px -16px #af8d4d40, 0 6px 14px -8px rgba(0, 40, 50, 0.12);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(245, 165, 50, 0.2);
            position: relative;
        }

        .safety-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 28px 42px -20px #d9902b, 0 12px 22px -12px #1e434f;
            border-color: #fbaa3a;
        }

        /* small safety ribbon */
        .safety-card::after {
            content: "⛑️";
            position: absolute;
            top: 16px;
            right: 16px;
            font-size: 2rem;
            opacity: 0.2;
            transition: opacity 0.2s, transform 0.2s;
            pointer-events: none;
        }

        .safety-card:hover::after {
            opacity: 0.8;
            transform: rotate(8deg);
        }

        /* image inside card */
        .safety-card .card-img-top {
            width:90%;
            height: 250px;
            object-fit: cover;
            border-bottom: 4px solid #faa51a;
            transition: transform 0.4s ease;
            background: #3b5d6b;
        }

        .safety-card:hover .card-img-top {
            transform: scale(1.02);
        }

        /* card body */
        .safety-card .card-body {
            padding: 1.2rem 1.2rem 1rem 1.2rem;
            flex: 1;
            background: linear-gradient(180deg, #ffffff, #fffbf5);
        }

        /* title */
        .safety-card .card-title {
            font-size: 2rem;
            font-weight: 700;
            color: #1b3e4f;
            margin-bottom: 1.2rem;
            border-left: 7px solid #f7931e;
            padding-left: 1.2rem;
            line-height: 1.2;
        }

        /* description */
        .safety-card .card-text {
            color: #2e4d5a;
            font-size: 1.05rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        /* card footer – clean */
        .safety-card .card-footer {
            background: #ffffff00;
            border-top: 1px solid #ffe3b8;
            padding: 1rem 1.8rem 1.8rem 1.8rem;
            background: transparent;
        }

        /* pdf button – safety orange */
        .btn-safety {
            background: #f47c20;
            border: none;
            color: white;
            font-weight: 600;
            padding: 0.7rem 1.8rem;
            border-radius: 60px 12px 60px 12px;
            font-size: 1rem;
            letter-spacing: 0.5px;
            transition: all 0.2s;
            box-shadow: 0 6px 16px -8px #b65306;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1px solid #f9b64d;
        }

        .btn-safety i {
            font-size: 1.2rem;
        }

        .btn-safety:hover {
            background: #e56600;
            transform: scale(1.02);
            box-shadow: 0 12px 24px -12px #b65100;
            color: white;
        }

        /* ----- safety video section (below) ----- */
        .industry-safety {
            /*background: linear-gradient(145deg, #f2f6f9, #eef2f6);*/
            padding: 4rem 0;
            margin-top: 1rem;
            border-top: 1px solid #fecb8b;
        }

        .video-header h1 {
            font-weight: 700;
            font-size: 2.8rem;
        }

        .video-header span {
            background: linear-gradient(145deg, #f4a024, #db7106);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .video-header p.lead {
            /*color: #2e5b6e;*/
            font-weight: 500;
        }

        /* intro card */
        .safety-intro-card {
            background: white;
            border-radius: 40px 12px 40px 12px;
            border-left: 12px solid #f47c20;
            box-shadow: 0 20px 30px -14px #ad671e40;
        }

        .safety-intro-card i.fa-shield-alt {
            filter: drop-shadow(0 4px 6px #f2721e);
        }

        /* video cards */
        .transform-hover {
            transition: transform 0.25s ease, box-shadow 0.3s;
            border-radius: 28px;
            overflow: hidden;
            background: white;
            border: 1px solid #ffe6be !important;
        }

        .transform-hover:hover {
            transform: scale(1.01) translateY(-6px);
            box-shadow: 0 28px 34px -20px #d17d28;
        }

        .card-header.bg-warning {
            background: linear-gradient(145deg, #faa51a, #f47c20) !important;
            border-bottom: none;
            font-weight: 600;
            padding: 1rem 1.5rem;
        }

        .card-header.bg-dark {
            background: linear-gradient(145deg, #1b3e4f, #0f2c38) !important;
            border-bottom: none;
            padding: 1rem 1.5rem;
        }

        .ratio video {
            object-fit: cover;
            background: #2d4b57;
        }

        /* additional resource links (commented, but style ready) */
        .btn-warning {
            background: #f47c20;
            border: none;
            color: white;
            border-radius: 60px;
            padding: 0.8rem 2.2rem;
            font-weight: 600;
        }

        .btn-outline-dark {
            border-radius: 60px;
            border-width: 2px;
        }

        /* mobile */
        @media (max-width: 768px) {
            .safety-header h1 {
                font-size: 2.5rem;
            }
            .safety-intro {
                font-size: 1rem;
                padding: 1rem 1.5rem;
            }
            .safety-card .card-title {
                font-size: 1.8rem;
            }
            .video-header h1 {
                font-size: 2rem;
            }
        }
    
/*blog css */

        /* Blog section – clean, spacious, mechanical personality */
        .mechanical-blog-section {
            /*padding: 3rem 0 5rem 0;*/
            /*background: linear-gradient(145deg, #ffffff 0%, #f5faff 100%);*/
            position: relative;
            isolation: isolate;
        }

        /* subtle gear background (very faint) */
        .mechanical-blog-section::before {
            content: "⚙️⚙️⚙️";
            position: absolute;
            top: 30px;
            left: 0;
            width: 100%;
            font-size: 90px;
            opacity: 0.02;
            letter-spacing: 40px;
            text-align: center;
            pointer-events: none;
            transform: rotate(10deg) scale(1.4);
            color: #a5721a;
            z-index: 0;
        }

        .container {
            position: relative;
            z-index: 5;
        }

        /* ----- header: bold, golden, industrial strength ----- */
        .blog-header h2 {
            color: rgb(255, 174, 0);
            font-size: 3.2rem !important;       /* override inline 36px */
            font-weight: 800 !important;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #faa51a, #f47c20, #f0b222);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            margin-bottom: 0.2rem;
            text-transform: uppercase;
            filter: drop-shadow(0 4px 8px rgba(245, 150, 30, 0.3));
        }

        .blog-header .divider {
            width: 140px;
            height: 8px;
            background: linear-gradient(90deg, #f9b81b, #f47c20, #fdae3a);
            margin: 0.8rem auto 0 auto;
            border-radius: 50px;
            box-shadow: 0 2px 10px #f68b28;
            transition: width 0.3s;
        }

        .blog-header:hover .divider {
            width: 200px;
        }

        /* ----- blog cards – modern, robust, interactive ----- */
        .blog-card {
            background: #ffffff;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 18px 30px -16px #94631e60, 0 6px 14px -8px rgba(0, 45, 55, 0.15);
            transition: all 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(255, 185, 60, 0.25);
            position: relative;
            backdrop-filter: blur(2px);
        }

        .blog-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 32px 45px -20px #c07d2b, 0 12px 26px -14px #1d404d;
            border-color: #f7b445;
        }

        /* mechanical corner icon (wrench) */
        .blog-card::before {
            content: "\f0ad";  /* fa-wrench */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            bottom: 12px;
            right: 16px;
            font-size: 2.4rem;
            color: #fbc16a;
            opacity: 0.15;
            transition: opacity 0.25s, transform 0.3s;
            pointer-events: none;
            z-index: 6;
        }

        .blog-card:hover::before {
            opacity: 0.6;
            transform: rotate(-15deg) scale(1.1);
        }

        /* image wrapper for consistent framing */
        .blog-img-wrapper {
            width: 100%;
            height: 260px;         /* increased from 180/280 to a balanced 260 */
            overflow: hidden;
            border-bottom: 4px solid #ffb347;
            background: #2d5b6b;    /* fallback */
        }

        .blog-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-card:hover .blog-img-wrapper img {
            transform: scale(1.05);
        }

        /* card body */
        .blog-card .card-body {
            padding: 2rem 1.8rem 2rem 1.8rem;
            background: linear-gradient(145deg, #ffffff, #fffcf5);
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        /* title – bold, with orange accent */
        .blog-card .card-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1e3f4d;
            margin-bottom: 1rem;
            border-left: 7px solid #f68b28;
            padding-left: 1.2rem;
            line-height: 1.3;
            transition: border-left-width 0.15s;
        }

        .blog-card:hover .card-title {
            border-left-width: 10px;
            border-left-color: #e07512;
        }

        /* description text */
        .blog-card .card-text {
            color: #2b5060;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1.8rem;
            flex: 1;
        }

        /* read more button – gold/mechanical style */
        .btn-blog {
            background: transparent;
            border: 2px solid #f68b28;
            color: #b3630b;
            font-weight: 600;
            padding: 0.7rem 1.8rem;
            border-radius: 50px 12px 50px 12px;
            font-size: 1.05rem;
            letter-spacing: 0.3px;
            transition: all 0.2s;
            align-self: flex-start;
            margin-top: 0.4rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 6px 14px -8px #ab6219;
            background: rgba(255, 200, 100, 0.05);
            text-decoration: none;
        }

        .btn-blog i {
            font-size: 1rem;
            transition: transform 0.2s;
        }

        .btn-blog:hover {
            background: #f68b28;
            color: white;
            border-color: #c7670a;
            transform: scale(1.02);
            box-shadow: 0 12px 22px -10px #b85f0a;
        }

        .btn-blog:hover i {
            transform: translateX(4px);
            color: white;
        }

        /* default fallback image style (if needed) */
        .default-img-fallback {
            background: linear-gradient(145deg, #385f6b, #23424e);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fec57b;
            font-size: 1.2rem;
            font-weight: 500;
        }

        /* mobile adaptation */
        @media (max-width: 768px) {
            .blog-header h2 {
                font-size: 2.5rem !important;
            }
            .blog-card .card-title {
                font-size: 1.6rem;
            }
            .blog-img-wrapper {
                height: 220px;
            }
        }

        /* extra row spacing */
        .row {
            row-gap: 2rem;
        }
        
    /*sliding review*/
    
    
        /* ----- ACHIEVEMENTS SECTION (infinite slider) ----- */
        .slider-section {
            background: linear-gradient(145deg, #0b1f2b, #12303b); /* deep industrial */
            padding: 4rem 0;
            border-bottom: 6px solid #f68b28;
            box-shadow: inset 0 -8px 18px rgba(0,0,0,0.2);
        }

        .slider-section .container {
            position: relative;
            z-index: 4;
        }

        .slider-section h2 {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .slider-section h2 span:first-child {
            font-weight: 800;
            font-size: 3.2rem;
            background: linear-gradient(145deg, #faa51a, #f47c20);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 4px 8px #b45f0e);
        }

        .slider-section h2 span:last-child {
            color: white;
            font-weight: 600;
            font-size: 2.2rem;
            display: block; /* stack on mobile, inline on desktop */
        }

        @media (min-width: 768px) {
            .slider-section h2 span:last-child {
                display: inline;
                font-size: 2.5rem;
                margin-left: 12px;
            }
        }

        .divider {
            width: 140px;
            height: 8px;
            background: linear-gradient(90deg, #f9b81b, #f47c20, #fdae3a);
            margin: 1.2rem auto 0 auto;
            border-radius: 50px;
            box-shadow: 0 2px 12px #f68b28;
        }

        /* infinite slider track – pure CSS */
        .slider_1 {
            overflow: hidden;
            padding: 1rem 0;
            position: relative;
            background: rgba(0, 15, 25, 0.35);
            backdrop-filter: blur(6px);
            /*border-radius: 80px;*/
            border: 1px solid #faa51a40;
            box-shadow: 0 20px 30px -14px black;
        }

        .slider_1::before,
        .slider_1::after {
            content: "";
            position: absolute;
            top: 0;
            width: 180px;
            height: 100%;
            z-index: 3;
            pointer-events: none;
        }

        .slider_1::before {
            left: 0;
            background: linear-gradient(90deg, #0b1f2b 0%, transparent 100%);
        }

        .slider_1::after {
            right: 0;
            background: linear-gradient(270deg, #0b1f2b 0%, transparent 100%);
        }

        .slide-track {
            display: flex;
            width: max-content;
            animation: scrollAchievements 28s linear infinite;
            gap: 1rem;
            padding: 0 1rem;
        }

        .slide-track:hover {
            animation-play-state: paused;
        }

        @keyframes scrollAchievements {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-200px * 7 - 1rem * 7)); } /* adjust based on items */
        }

        .slide_i {
            background: linear-gradient(145deg, #1f4456, #12303e);
            border-radius: 50px;
            padding: 1.2rem 2.5rem;
            text-align: center;
            box-shadow: 0 15px 22px -10px #00000080, inset 0 0 0 1px #f9b42b40;
            border-left: 4px solid #f5a623;
            transition: all 0.2s;
            min-width: 200px;
        }

        .slide_i.highlight {
            background: linear-gradient(145deg, #2c5770, #1b4455);
            border-left: 4px solid #f7c35c;
            transform: scale(1.02);
            box-shadow: 0 18px 28px -12px #d69c2a;
        }

        .slide_i:hover {
            transform: translateY(-6px) scale(1.02);
            background: #1e5268;
            border-left-color: #fdaf4b;
        }

        .slide_i_h3 {
            font-size: 2.4rem;
            font-weight: 800;
            color: #fdd48b;
            margin-bottom: 0.2rem;
            text-shadow: 0 2px 8px #c17619;
            line-height: 1.2;
        }

        .slide_i_p {
            font-size: 1rem;
            font-weight: 500;
            color: #ffffffcc;
            margin-bottom: 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* ----- CUSTOMER REVIEWS SECTION (glass morph) ----- */
        .reviews-section {
            background:linear-gradient(145deg, #2C2C2C, #2C2C2C);
            padding: 4.5rem 0;
            border-top: 1px solid #f5a62360;
        }

        .reviews-section h2 {
            font-size: 3rem;
            font-weight: 800;
            color: rgb(255, 174, 0);
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
            font-family: 'Poppins', sans-serif;
        }

        .reviews-section .divider {
            width: 140px;
            height: 6px;
            background: rgb(255, 174, 0);
            box-shadow: 0 2px 12px #ffb347;
        }

        /* glass card styling */
        .glass-card {
            background: rgba(255, 255, 255, 0.08) !important;
            backdrop-filter: blur(14px) saturate(180%);
            -webkit-backdrop-filter: blur(14px) saturate(180%);
            border: 1px solid rgba(255, 200, 100, 0.25) !important;
            border-radius: 32px !important;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 18px 35px -12px rgba(0, 0, 0, 0.5);
        }

        .glass-card:hover {
            transform: translateY(-10px) scale(1.01);
            box-shadow: 0 28px 45px -16px #f9ae48, 0 0 0 1px #fdc37b60;
            background: rgba(255, 255, 255, 0.12) !important;
        }

        .glass-card .card-title {
            font-size: 1.7rem;
            font-weight: 700;
            color: white;
            border-left: 6px solid #f68b28;
            padding-left: 1rem;
        }

        .glass-card .card-text {
            color: #f0f4fa;
            font-size: 1rem;
            line-height: 1.6;
            min-height: 90px;
        }

        .star-rating i {
            font-size: 1.2rem;
            margin-right: 3px;
            filter: drop-shadow(0 0 4px #fbad26);
        }

        /* carousel controls – refined */
        .carousel-control-prev,
        .carousel-control-next {
            width: 4rem;
            height: 4rem;
            top: 45%;
            background: rgba(0, 20, 30, 0.5);
            backdrop-filter: blur(8px);
            border-radius: 50px;
            border: 1px solid #faa51a80;
            opacity: 0.8;
            transition: all 0.2s;
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background: #f68b28cc;
            border-color: white;
            opacity: 1;
        }

        .carousel-control-prev {
            left: -1rem;
        }
        .carousel-control-next {
            right: -1rem;
        }

        @media (max-width: 768px) {
            .carousel-control-prev,
            .carousel-control-next {
                width: 2.8rem;
                height: 2.8rem;
                top: auto;
                bottom: -10px;
            }
            .carousel-control-prev { left: 20%; }
            .carousel-control-next { right: 20%; }
        }

        .carousel-indicators button {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: #faa51a;
            border: 2px solid white;
            opacity: 0.6;
            transition: all 0.2s;
        }

        .carousel-indicators button.active {
            opacity: 1;
            transform: scale(1.2);
            background: #f68b28;
        }

        /* rating text */
        .glass-card p:last-of-type {
            font-weight: 600;
            color: #ffdb9f;
        }

        /* tiny adjustments for col */
        .row.g-4 {
            row-gap: 1.5rem;
        }
        
    /*slidding media queries */
    
    /* Mobile Responsive Styles */
    @media screen and (max-width: 768px) {
        .slider-section {
            padding: 30px 0;
            overflow: hidden;
        }

        .slider-section-h2 span:first-child {
            font-size: 2rem !important;
            display: block;
            line-height: 1.2;
        }

        .slider-section-h2 span:last-child {
            font-size: 1.5rem !important;
            display: block;
            margin-top: 8px;
        }

        .divider {
            width: 80px !important;
            height: 4px !important;
            margin: 15px auto !important;
        }

        .slider_1 {
            margin-top: 20px;
        }

        .slide-track {
            display: flex;
            animation: scroll 25s linear infinite;
            width: fit-content;
        }

        .slide_i {
            min-width: 180px;
            padding: 15px 10px;
            margin: 0 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .slide_i.highlight {
            background: linear-gradient(135deg, rgba(255, 174, 0, 0.2), rgba(255, 174, 0, 0.3));
            border: 1px solid rgba(255, 174, 0, 0.5);
        }

        .slide_i_h3 {
            font-size: 1.8rem !important;
            margin: 0 0 5px 0;
            color: rgb(255, 174, 0);
            font-weight: 700;
            line-height: 1.2;
        }

        .slide_i_p {
            font-size: 0.9rem !important;
            margin: 0;
            color: #fff;
            opacity: 0.9;
            white-space: nowrap;
        }

        .slide_i:hover {
            transform: scale(1.05);
            background: rgba(255, 174, 0, 0.15);
        }
    }

    /* Small mobile devices */
    @media screen and (max-width: 480px) {
        .slider-section {
            padding: 20px 0;
        }

        .slider-section-h2 span:first-child {
            font-size: 1.6rem !important;
        }

        .slider-section-h2 span:last-child {
            font-size: 1.2rem !important;
        }

        .divider {
            width: 60px !important;
            height: 3px !important;
            margin: 12px auto !important;
        }

        .slide_i {
            min-width: 150px;
            padding: 12px 8px;
            margin: 0 5px;
        }

        .slide_i_h3 {
            font-size: 1.5rem !important;
        }

        .slide_i_p {
            font-size: 0.8rem !important;
        }
    }

    /* Desktop styles (default) */
    @media screen and (min-width: 769px) {
        .slider-section {
            padding: 50px 0;
            overflow: hidden;
        }

        .slide-track {
            display: flex;
            animation: scroll 30s linear infinite;
            width: fit-content;
        }

        .slide_i {
            min-width: 20px;
            padding: 25px 20px;
            margin: 0 15px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .slide_i:hover {
            transform: translateY(-5px);
            background: rgba(255, 174, 0, 0.15);
            border-color: rgba(255, 174, 0, 0.3);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .slide_i.highlight {
            background: linear-gradient(135deg, rgba(255, 174, 0, 0.15), rgba(255, 174, 0, 0.25));
            border: 1px solid rgba(255, 174, 0, 0.4);
        }

        .slide_i_h3 {
            font-size: 2.2rem !important;
            margin: 0 0 8px 0;
            color: rgb(255, 174, 0);
            font-weight: 700;
        }

        .slide_i_p {
            font-size: 1rem !important;
            margin: 0;
            color: #fff;
            opacity: 0.9;
        }
    }

    /* Animation for infinite scroll */
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-50%));
        }
    }

    /* Pause animation on hover */
    .slider_1:hover .slide-track {
        animation-play-state: paused;
    }

    /* Base styles */
    .slider-section {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        color: white;
        position: relative;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .row {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -15px;
    }

    .col-lg-12 {
        width: 100%;
        padding: 0 15px;
    }

    .slider-section-h2 {
        text-align: center;
        margin-bottom: 30px;
        font-size: 2.5rem;
    }

    /* Smooth scrolling */
    .slider_1 {
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    /* Gradient overlays for smooth edges */
    .slider_1::before,
    .slider_1::after {
        content: "";
        position: absolute;
        top: 0;
        width: 100px;
        height: 100%;
        z-index: 2;
        pointer-events: none;
    }

    .slider_1::before {
        left: 0;
        background: linear-gradient(to right, #1a1a1a, transparent);
    }

    .slider_1::after {
        right: 0;
        background: linear-gradient(to left, #1a1a1a, transparent);
    }

    @media screen and (max-width: 768px) {
        .slider_1::before,
        .slider_1::after {
            width: 50px;
        }
    }
/*review media */

    /* Mobile Responsive Styles for Reviews Section */
    @media screen and (max-width: 768px) {
        .reviews-section {
            padding: 30px 0 !important;
        }

        .reviews-section h2 {
            font-size: 2rem !important;
            margin-bottom: 20px !important;
        }

        .reviews-section h2 .divider {
            width: 80px !important;
            height: 4px !important;
            margin: 12px auto !important;
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.1) !important;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 174, 0, 0.2) !important;
            transition: all 0.3s ease;
        }

        .glass-card .card-body {
            padding: 1.25rem !important;
        }

        .glass-card .card-title {
            font-size: 1.1rem !important;
            margin-bottom: 0.5rem !important;
        }

        .glass-card .card-text {
            font-size: 0.85rem !important;
            line-height: 1.4;
            margin-bottom: 0.75rem !important;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .star-rating i {
            font-size: 0.9rem;
        }

        .glass-card p:last-child {
            font-size: 0.85rem !important;
        }

        /* Adjust spacing between cards on mobile */
        .row.g-4 {
            --bs-gutter-y: 1rem;
        }

        /* Show only 1 card on very small screens */
        .col-md-6 {
            width: 100%;
        }

        /* Better touch targets for indicators */
        .carousel-indicators button {
            width: 40px !important;
            height: 40px !important;
            margin: 0 5px !important;
            border-radius: 50% !important;
            background: rgba(255, 174, 0, 0.3) !important;
            border: 2px solid transparent !important;
        }

        .carousel-indicators button.active {
            background: rgb(255, 174, 0) !important;
            transform: scale(1.1);
        }
    }

    /* Small mobile devices */
    @media screen and (max-width: 480px) {
        .reviews-section h2 {
            font-size: 1.6rem !important;
        }

        .reviews-section h2 .divider {
            width: 60px !important;
            height: 3px !important;
            margin: 10px auto !important;
        }

        .glass-card .card-body {
            padding: 1rem !important;
        }

        .glass-card .card-title {
            font-size: 1rem !important;
        }

        .glass-card .card-text {
            font-size: 0.8rem !important;
            -webkit-line-clamp: 3;
        }

        .star-rating i {
            font-size: 0.8rem;
        }

        /* Swipe hint for mobile */
        .carousel-inner::after {
            content: "← Swipe →";
            display: block;
            text-align: center;
            color: rgba(255, 174, 0, 0.6);
            font-size: 0.8rem;
            margin-top: 15px;
            animation: fadeInOut 2s ease-in-out infinite;
        }
    }

    /* Desktop styles enhancement */
    @media screen and (min-width: 769px) {
        .glass-card {
            background: rgba(255, 255, 255, 0.1) !important;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 174, 0, 0.2) !important;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .glass-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 174, 0, 0.15) !important;
            border-color: rgba(255, 174, 0, 0.5) !important;
            box-shadow: 0 10px 30px rgba(255, 174, 0, 0.2);
        }

        .glass-card .card-title {
            color: rgb(255, 174, 0) !important;
            font-size: 1.25rem;
        }
    }

    /* Common styles */
    .glass-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 174, 0, 0.2);
    }

    .star-rating {
        display: flex;
        gap: 2px;
    }

    .star-rating i {
        color: rgb(255, 174, 0);
    }

    /* Carousel navigation for mobile */
    .carousel-control-prev, 
    .carousel-control-next {
        width: 40px;
        height: 40px;
        background: rgba(255, 174, 0, 0.3);
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0.7;
    }

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        opacity: 1;
        background: rgba(255, 174, 0, 0.5);
    }

    /* Animation for swipe hint */
    @keyframes fadeInOut {
        0%, 100% { opacity: 0.3; }
        50% { opacity: 1; }
    }

    /* Ensure carousel works well on all devices */
    .carousel-item {
        transition: transform 0.6s ease-in-out;
    }

    /* Fix for carousel indicators */
    .carousel-indicators {
        position: static;
        margin: 0;
        display: inline-flex;
        gap: 10px;
    }

    .carousel-indicators button {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 174, 0, 0.3);
        border: none;
        margin: 0 5px;
        transition: all 0.3s ease;
    }

    .carousel-indicators button.active {
        background: rgb(255, 174, 0);
        transform: scale(1.2);
    }
    .carousel-indicators [data-bs-target]{
           width: 10px !important;
            height: 5px !important;
       
    }
    
    /* Hide desktop navigation on mobile */
    @media screen and (max-width: 768px) {
        .carousel-control-prev,
        .carousel-control-next {
            display: none !important;
        }
        .carousel-indicators [data-bs-target]{
            width: 10px !important;
            height: 10px !important;
        }
        #navbarContent{
            z-index: 999;
            background: white !important;
        }
        #navbarContent .navbar-nav{
            background: white !important;
        }
    }

