    /* General Styles */
    body {
      background-color: #ffffff;
      color: #333333;
      scroll-behavior: smooth;
      padding-top: 0; /* Remove the padding-top */
    }

    /* Third Navbar Styles */
    .top-navbar {
      background-color: #000000;
      color: #ffffff;
      padding: 5px 0;
      font-size: 0.9rem;
      position: relative;
      width: 100%;
      z-index: 1050;
    }
    .top-navbar .container-fluid {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    /* Main Navbar Styles */
    .main-navbar {
      background: #1a1a1a !important;
      background-size: cover;
      padding-top: 30px;
      padding-bottom: 30px;
      min-height: 100px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
      position: relative;
      width: 100%;
      z-index: 1040;
    }
    .main-navbar .navbar-brand {
      color: #ff0000 !important;
      font-weight: bold;
      display: flex;
      align-items: center;
      position: relative;
      padding-right: 200px;
      padding-top: 50px;
      transition: color 0.3s ease;
    }
    .main-navbar .nav-link {
      color: #ffffff !important;
      position: relative;
      overflow: hidden;
      transition: color 0.3s ease;
    }
    .main-navbar .nav-link:hover {
      color: #ff0000 !important;
    }
    /* Active Link Underline */
    .main-navbar .nav-link.active::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -5px;
      width: 100%;
      height: 2px;
      background-color: #ff0000;
    }
    /* Fading Shine Hover Effect */
    .main-navbar .nav-link::before {
      content: '';
      position: absolute;
      top: 0;
      left: -75%;
      width: 50%;
      height: 100%;
      background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      transform: skewX(-25deg);
      transition: all 0.5s ease;
    }
    .main-navbar .nav-link:hover::before {
      left: 125%;
    }

    /* Navigation Styles */
    .navbar {
      padding: 0;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    /* Secondary Navbar Styles */
    .secondary-navbar {
      background-color: #ffffff;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      position: relative;
      width: 100%;
      z-index: 1030;
      display: flex;
      justify-content: flex-end;
      padding: 10px 0;
    }

    .secondary-navbar .container {
      display: flex;
      justify-content: flex-end;
    }

    .secondary-navbar .navbar-nav {
      flex-direction: row;
    }

    .secondary-navbar .nav-link {
      color: #333333 !important;
      transition: color 0.3s ease;
      margin-left: 15px;
      position: relative;
      overflow: hidden;
      font-weight: 500;
    }

    .secondary-navbar .nav-link:hover {
      color: #ff0000 !important;
    }

    /* Fading Shine Hover Effect for Secondary Navbar */
    .secondary-navbar .nav-link::before {
      content: '';
      position: absolute;
      top: 0;
      left: -75%;
      width: 50%;
      height: 100%;
      background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      transform: skewX(-25deg);
      transition: all 0.5s ease;
    }

    .secondary-navbar .nav-link:hover::before {
      left: 125%;
    }

    /* Logo Box Styles */
    .logo-box {
      width: 250px;
      height: 125px;
      background-color: #000000;
      padding: 5px 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 10px;
      position: absolute;
      bottom: -10px;
      left: 0;
      border: 1px solid #111;
      border-radius: 5px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
      transition: all 0.3s ease;
      z-index: 1020;
    }

    .logo-box img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      display: block;
    }

    /* Sidebar Styles */
    .sidebar {
      background-color: #2c2c2c;
      padding: 20px;
      border-radius: 8px;
    }
    .sidebar .nav-link {
      color: #ffffff;
      transition: color 0.3s ease;
      display: flex;
      align-items: center;
    }
    .sidebar .nav-link:hover {
      color: #ff0000;
    }
    .sidebar .nav-link i {
      margin-right: 10px;
      min-width: 20px;
      text-align: center;
    }

    /* Card Styles */
    .card {
      background-color: #2c2c2c;
      border: none;
      transition: transform 0.2s;
      cursor: pointer;
    }
    .card:hover {
      transform: scale(1.05);
    }
    .card-title {
      color: #ff0000;
    }

    /* Button Styles */
    .btn-primary {
      background-color: #ff0000;
      border: none;
      transition: background-color 0.3s ease;
    }
    .btn-primary:hover {
      background-color: #e60000;
    }

    /* Footer Styles */
    .footer {
      background-color: #2c2c2c;
      color: #ffffff;
      padding: 20px 0;
    }
    .footer a {
      color: #ff0000;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    .footer a:hover {
      color: #e60000;
    }

    /* Section Title */
    .section-title {
      margin: 40px 0;
      text-align: center;
      color: #ff0000;
    }

    /* Responsive Adjustments */
    @media (max-width: 992px) {
      /* Hide Secondary Navbar on Mobile */
      .secondary-navbar {
        display: none;
      }
      /* Adjust Main Navbar Background to Black on Mobile */
      .main-navbar {
        background: #000000;
        background-image: none; /* Remove gradient and pattern */
      }
      .main-navbar .nav-link {
        color: #ffffff !important;
      }
      .main-navbar .nav-link:hover::before {
        left: -75%; /* Remove the shine effect */
      }
      /* Logo Box Positioning */
      .logo-box {
        position: static;
        margin: 10px auto;
        bottom: auto;
        left: auto;
        box-shadow: none;
      }
      .main-navbar .navbar-brand {
        flex-direction: column;
        align-items: center;
        padding-right: 0;
      }
      /* Adjust Body Padding */
      body {
        padding-top: 0; /* Remove padding-top */
      }
      .carousel-item {
        height: 60vh; /* Reduce height by 40% */
      }
      
      .carousel-caption {
        bottom: 15%; /* Adjust caption position for smaller height */
      }
      
      .carousel-caption h1 {
        font-size: 2.5rem; /* Slightly reduce heading size for mobile */
      }
      
      .carousel-caption p {
        font-size: 1.2rem; /* Adjust paragraph size for mobile */
      }
    }

   
    /* Ensure main navbar is above secondary navbar */
    .main-navbar {
      z-index: 1040;
    }
    /* Ensure secondary navbar is above the logo box */
    .secondary-navbar {
      z-index: 1030;
    }

    /* Fullwidth Slider Styles */
    #equipmentSlider {
      width: 100%;
      height: 100vh; /* Changed from fixed height to viewport height */
      margin-bottom: 40px;
      overflow: hidden;
      position: relative;
    }

    #equipmentSlider .carousel-item {
      height: 100vh; /* Changed from fixed height to viewport height */
      position: relative;
    }

    #equipmentSlider .carousel-item img {
      object-fit: cover;
      height: 100%;
      width: 100%;
      max-height: none; /* Remove any max-height restrictions */
    }

    /* Dark overlay for each slide */
    .carousel-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 1;
    }

    /* Caption container on top of the overlay */
    .carousel-caption-custom {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 2; /* above the overlay */
      text-align: center;
      padding: 0 15px;
      max-width: 700px; /* limit text width */
      width: 100%;
    }

    /* Title, paragraph, buttons, and icons styling */
    .carousel-caption-custom h1 {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }
    .carousel-caption-custom p {
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
      color: #f0f0f0;
    }
    .carousel-caption-custom .btn {
      margin: 0 0.5rem;
    }
    .carousel-caption-custom .social-icons {
      margin-top: 1.5rem;
      display: flex;
      gap: 1.5rem;
      justify-content: center;
    }
    .carousel-caption-custom .social-icons a {
      color: #ffffff;
      transition: color 0.3s ease;
    }
    .carousel-caption-custom .social-icons a:hover {
      color: #ff0000;
    }

    /* Hide default carousel captions if any */
    #equipmentSlider .carousel-caption {
      display: none;
    }

    /* Responsive adjustments for text size */
    @media (max-width: 992px) {
      #equipmentSlider,
      #equipmentSlider .carousel-item {
        height: 450px;
      }
    }

    @media (max-width: 768px) {
      #equipmentSlider,
      #equipmentSlider .carousel-item {
        height: 500px;
      }
    }

    @media (max-width: 576px) {
      #equipmentSlider,
      #equipmentSlider .carousel-item {
        height: 400px;
      }
      
      #equipmentSlider .carousel-item img {
        height: 400px;
      }
    }

    /* Add styles for extra large screens */
    @media (min-width: 1920px) {
      #equipmentSlider,
      #equipmentSlider .carousel-item {
        height: 100vh; /* Keep full viewport height on large screens */
        max-height: 1080px; /* Optional: set a max height if needed */
      }

      #equipmentSlider .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
      }
    }

    /* Custom Navigation Arrows with Black Backgrounds */
    .carousel-control-prev,
    .carousel-control-next {
      width: 5%;
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
      border-radius: 50%;
      padding: 10px;
      background-size: 100%, 100%;
      background-image: none; /* Remove default Bootstrap arrow */
    }
    /* Add custom arrow using pseudo-elements */
    .carousel-control-prev-icon::after,
    .carousel-control-next-icon::after {
      content: '';
      display: inline-block;
      width: 0.8em;
      height: 0.8em;
      background: transparent;
      border: solid white;
      border-width: 0 0.2em 0.2em 0;
      transform: rotate(135deg);
    }
    .carousel-control-next-icon::after {
      transform: rotate(-45deg);
    }

    /* Carousel Content Styles */
    .carousel-caption {
      padding: 30px;
      bottom: 20%;
    }

    .carousel-caption h1 {
      font-size: 3.5rem;
      margin-bottom: 1.5rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .carousel-caption p {
      font-size: 1.5rem;
      margin-bottom: 2rem;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .carousel-caption .btn {
      font-size: 1.25rem;
      padding: 12px 30px;
      margin: 10px;
      border-radius: 30px;
      text-transform: uppercase;
      font-weight: 600;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .carousel-caption .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
    }

    /* Mobile Navigation Icon */
    .navbar-toggler {
        border: none;
        padding: 0.5rem;
    }

    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }

    .navbar-toggler-icon {
        background-image: none;
        position: relative;
        width: 24px;
        height: 2px;
        background-color: #ffffff;
        display: inline-block;
    }

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: '';
        position: absolute;
        left: 0;
        width: 24px;
        height: 2px;
        background-color: #ffffff;
    }

    .navbar-toggler-icon::before {
        top: -8px;
    }

    .navbar-toggler-icon::after {
        bottom: -8px;
    }

    /* New Homepage Sections Styles */

    /* About Section */
    .about-section {
      background-color: #1a1a1a;
      color: #ffffff;
      padding: 80px 0;
      min-height: 300px;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .about-section .video-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      object-fit: cover;
    }

    .about-section .video-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      z-index: 1;
    }

    .about-section .container {
      position: relative;
      z-index: 2;
    }

    .about-section .text-box {
      background-color: transparent;
      padding: 30px;
      border-radius: 10px;
      margin-bottom: 30px;
    }

    .about-section .btn {
      margin-top: 20px;
    }

    .about-section .about-content {
      background-color: rgba(255, 255, 255, 0.95);
      padding: 2rem;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      color: #333;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100px;
    }

    .about-section .about-content .mt-3 {
      margin: 0 !important;
      display: flex;
      justify-content: center;
    }

    .about-section .about-image {
      display: none;
    }

    .about-section .about-image img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .about-content {
      padding: 2rem 0;
    }

    .about-image img {
      transition: transform 0.3s ease;
    }

    .about-image img:hover {
      transform: scale(1.02);
    }

    .about-section .text-box h3 {
      text-align: center;
      color: #ff0000;
      font-weight: 700;
      margin-bottom: 5px;
      font-size: 1.8rem;
    }

    .about-section .text-box p {
      color: #ffffff;
      font-size: 1.1rem;
      line-height: 1.6;
      margin: 0;
      font-weight: 500;
      text-align: center;
    }

    /* Services Section */
    .services-section {
      background-color: #ffffff !important;
      color: #333333;
      padding: 3rem 0;
      position: relative;
      z-index: 1;
      margin: 0;
      overflow: hidden;
    }

    .services-section .video-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      object-fit: cover;
    }

    .services-section .video-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(255, 255, 255, 0.9);
      z-index: 1;
    }

    .services-section .container {
      position: relative;
      z-index: 2;
    }

    .services-section .text-box {
      padding: 20px;
      border-radius: 8px;
      display: inline-block;
      max-width: 300px;
      margin: 0 auto;
      background-color: #ffffff;
      min-height: 200px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .services-section .text-box p {
      font-size: 1.1rem;
      line-height: 1.6;
      margin: 0;
      color: #000000;
      font-weight: 500;
      text-align: center;
    }

    .services-section .text-box img {
      max-width: 60px !important;
      width: 60px !important;
      height: auto;
      margin: 0 auto;
      display: block;
      margin-bottom: 15px;
    }

    .services-section .image-box {
      padding: 10px;
      border-radius: 8px;
      display: inline-block;
      max-width: 400px;
      margin: 0 auto;
    }

    .services-section img {
      max-width: 100% !important;
      width: 100% !important;
      height: auto;
      margin: 0 auto;
      display: block;
    }

    .service-card {
      background-color: #1a1a1a;
      padding: 2rem;
      border-radius: 8px;
      text-align: center;
      transition: transform 0.3s ease;
      height: 100%;
    }

    .service-card:hover {
      transform: translateY(-5px);
    }

    .service-icon {
      font-size: 2.5rem;
      color: #ff0000;
      margin-bottom: 1.5rem;
    }

    .service-card h3 {
      color: #ffffff;
      margin-bottom: 1rem;
      font-size: 1.5rem;
    }

    .service-card p {
      color: #cccccc;
      margin-bottom: 0;
    }

    /* Why Choose Us Section */
    .why-choose-section {
      background-color: #1a1a1a;
      color: #ffffff;
    }

    .why-choose-content {
      padding: 2rem 0;
    }

    .why-choose-list {
      margin-top: 2rem;
    }

    .why-choose-item {
      margin-bottom: 2rem;
      display: flex;
      align-items: flex-start;
    }

    .why-choose-item i {
      font-size: 1.5rem;
      margin-right: 1rem;
      margin-top: 0.25rem;
    }

    .why-choose-item h4 {
      color: #ffffff;
      margin-bottom: 0.5rem;
      font-size: 1.25rem;
    }

    .why-choose-item p {
      color: #cccccc;
      margin-bottom: 0;
    }

    .why-choose-image img {
      transition: transform 0.3s ease;
    }

    .why-choose-image img:hover {
      transform: scale(1.02);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .about-content,
      .why-choose-content {
        padding: 1rem 0;
        text-align: center;
      }

      .about-image,
      .why-choose-image {
        margin-top: 2rem;
      }

      .service-card {
        margin-bottom: 1rem;
      }

      .why-choose-item {
        text-align: left;
      }
    }

    /* Green Button Styles */
    .btn-green {
      background-color: #28a745 !important;
      border-color: #28a745 !important;
    }

    .btn-green:hover {
      background-color: #218838 !important;
      border-color: #1e7e34 !important;
    }

    /* Custom Button Styles */
    .btn-bright-green {
      background-color: #2ecc71 !important;
      border-color: #2ecc71 !important;
    }

    .btn-bright-green:hover {
      background-color: #27ae60 !important;
      border-color: #27ae60 !important;
    }

    .navbar-brand {
      padding: 0;
      margin: 0;
    }

    .logo-box {
      background-color: #000000;
      padding: 10px 20px;
      display: flex;
      align-items: center;
      height: 100%;
      transition: all 0.3s ease;
    }
