:root{
    --white-primary:#ffffff;
    --yellow-primary:rgb(255, 217, 0);
    --grey-primary: #343a40;
    --white-secondary:  #f9f9f9;
  
  
  }
  html {
    scroll-behavior: smooth;
  }
  
  /* General Body Styles */
  body {
      font-family: Arial, sans-serif;
      width: 100%;
      
    }
  
    h2 {
      font-family: 'Montserrat', sans-serif;  /* Montserrat font applied */
      font-size: 1.5rem;                       /* Adjust font size */
      font-weight: 600;                      /* Bold weight */
      color: var(--dark-primary);            /* Use primary color */
      padding: 15px;
    }
  
    .highlight {
      color: rgb(255, 217, 0);
      border-left: 4px solid rgb(0, 0, 0);
      padding-left: 10px;
    margin-bottom: 20px;
  }
  
    /* Scrollbar Customization */
    ::-webkit-scrollbar {
      width: 7px;
    }
    
    ::-webkit-scrollbar-thumb {
      background: yellow; /* Yellow scrollbar */
    }
    
    ::-webkit-scrollbar-track {
      background: #e0e0e0; /* Light gray scrollbar track */
    }
  
    
    /* Navbar Styles */
    .navbar {
      background-color: white;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      position: sticky;
      top: 0;
      width: 100%;
      z-index: 1030;
    }
  
    .navbar-nav .nav-link {
      font-size: 20px;
      color: black;
      transition: color 0.3s ease, text-decoration 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover {
      color: var(--yellow-primary);
      text-decoration: underline;
    }
    .navbar-toggler{
      width: 50px;
    }
    
    /* Sidebar Styles */
    #infoSidebar {
      position: fixed;
      top: 0;
      right: -300px;
      width: 300px;
      height: 100%;
      padding: 40px 20px;
      background-color: white;
      box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2); /* Sidebar shadow */
      transition: right 0.3s ease; /* Smooth slide-in effect */
      z-index: 1050; /* Above page content */
    }
    
    #infoSidebar.active {
      right: 0; /* Slide in sidebar */
    }
    
    #darkOverlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5); /* Darken background */
      z-index: 1049; /* Below sidebar, above page */
      display: none;
    }
    
    #darkOverlay.active {
      display: block;
    }
    
    .info-close-btn {
      font-size: 24px;
      color: black;
      cursor: pointer;
      margin: 10px;
      display: block;
      text-align: right;
    }
    .info-item{
      padding: 40px 20px;
      text-align: center;
    }
    .info-item i{
      size: 15px;
  
    }
  
  
    /* Hero Section */
  
    .carouselSection {
      height: 80vh;
      margin-bottom: 20px;
    }
    
    #carouselExampleCaptions .carousel-inner img {
      object-fit: cover;
      height: 80vh;
    }
    
    .dark-overlay2 {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.4); /* 40% opacity dark overlay */
      z-index: 1; /* Overlay behind the text */
    }
    
    .carousel-caption {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      text-align: center;
      z-index: 2;
      padding: 20px 150px;
      font-size: 1.2rem; /* Adjusted text size for medium devices */
      width: 100%; /* Ensure full width for centering */
    }
  
    .carousel-control-prev,
  .carousel-control-next {
    z-index: 3; /* Ensure the previous/next buttons are on top */
  }
    
    .buttons {
      display: flex;
      gap: 15px;
      justify-content: center;
      align-items: center; /* Ensures vertical centering of buttons */
      flex-wrap: wrap; /* Allows buttons to wrap on small screens */
      width: 100%; /* Ensure full width */
    }
    
    button {
      padding: 10px 20px;
      font-size: 1rem;
      font-weight: bold;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: all 0.3s ease-in-out;
      margin: 5px; /* Margin to give some space between buttons */
      width: 150px; /* Limit button width */
    }
    
    /* Button styles */
    .btn-orange {
      background-color: rgba(250, 250, 2, 0.9); /* Orange */
      color: var(--grey-primary);
    }
    
    .btn-orange:hover {
      background-color: #E6CE1D; /* Slightly darker orange on hover */
    }
    
    .btn-blue {
      background-color: #00204a; /* Navy blue */
      color: white;
    }
    
    .btn-blue:hover {
      background-color: #001535; /* Slightly darker blue on hover */
    }
    
    
  
  
  .about-section {
    padding: 20px 0;
  }
  
  .abouth2{
    margin-bottom: 50px;
  }
  .about-section .highlight {
    color: rgb(255, 217, 0);
    border-left: 4px solid rgb(0, 0, 0);
    padding-left: 10px;
  }
  
  .about-section img {
    width: 80%;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .about-section h3 {
    font-size: 2rem;
    margin: 20px 0 10px;
  }
  
  .about-section p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
  }
  
  .about-section .btn {
    margin-top: 15px;
  }
  
  .stats {
    margin-top: 40px;
    margin-bottom: 20px;
  }
  
  .stat-box {
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  
  .stat-box:hover {
    transform: translateY(-5px);
    background-color: rgba(250, 250, 2, 0.8);
  }
  
  .stat-box h4 {
    font-size: 1.8rem;
    font-weight: bold;
    color:var(--grey-primary);
    margin-bottom: 10px;
  }
  
  .stat-box p {
    font-size: 1rem;
    color: #777;
    padding-left: 15px;
  }
  
  
  
  
  /* Services Section */
  .services-section {
    padding: 60px 0;
    background-color: #f9f9f9;
  }
  
  
  .service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%; /* Ensure all cards are equal height */
    min-height: 300px; /* Add a minimum height for uniformity */
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  }
  
  .service-card .icon {
    margin-bottom: 15px;
    transition: transform 0.3s ease-in-out;
  }
  
  .service-card:hover .icon {
    transform: translateY(-10px);
  }
  
  .service-card img {
    max-width: 80px;
    height: auto;
  }
  
  .service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .service-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    text-align: center;
    margin-top: auto; /* Push text to the bottom for consistency */
  }
  
  /* Equal Card Height in the Grid */
  .row {
    display: flex;
    flex-wrap: wrap;
  }
  
  .row .col-md-4 {
    display: flex;
    flex-direction: column;
  }
  
  /*PROJECT SECTIONS*/
  
  
 
  #customCarousel {
    justify-content: center;
    margin: 30px;
    height: 600px;
    background-color: var(--white-secondary);
}

#customCarousel .carousel-inner {
    overflow: visible !important;
}

/* Style the carousel images */
#customCarousel .carousel-item img {
    width: 70%;
    height: 400px;
    object-fit: cover;
    padding-left: 80px;
    height: auto;
    max-height: 440px;
    margin: 0 auto;
}

#customCarousel .carousel-caption {
    position: absolute;
    margin-left: 280px;
    top: 70%;
    left: 53%;
    height: 450px;
    width: 700px;
    margin-top: 3px;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 15px 0px 0px 0px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
    text-align: left;
    color: black;
    z-index: 3;
}

/* Custom navigation arrows */
#customCarousel .carousel-control-prev,
#customCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

#customCarousel .carousel-control-prev-icon,
#customCarousel .carousel-control-next-icon {
    width: 30px;
    height: 30px;
    z-index: 4;
}

#customCarousel .carousel-indicators {
    margin-right: 500px;
    margin-top: 200px;
}

/* Bottom navigation dots */
#customCarousel .carousel-indicators [data-bs-target] {
    background-color: #f8b400;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

/* Custom yellow button */
#customCarousel .custom-btn {
    background-color: #f8b400;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
}

#customCarousel .custom-btn:hover {
    background-color: #d89400;
}
  
  
  
  /* Contact Section */
  
  
  .contact-section {
    background-color: var(--grey-primary);
  }
  
  .contact-info {
    background: white;
    border-radius: 10px;
    padding: 20px;
  
    margin-bottom: 50px;
  }
  
  .contact-info h5 {
    margin-bottom: 5px;
  }
  
  .carda {
    background: white;
    border-radius: 15px;
  }
  
  
  
  
  
  
  
  /* Brands Section */
  #brands {
    background-color: #f8f9fa; /* Light gray background */
    padding: 2rem 0;
  }
  
  
  #brands p {
    color: #6c757d; /* Subtle gray for description */
    font-size: 1rem;
  }
  
  .brand-card {
    background-color: #ffffff; /* White card background */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    height: 150px;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .brand-card:hover {
    transform: translateY(-5px); /* Hover effect */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
  }
  
  .brand-logo {
    max-width: 80%;
    height: auto;
  }
  
  
  /* General footer styles */
  footer ul {
    padding-left: 0;
  }
  
  footer i {
    margin-right: 10px;
  }
  
  footer a:hover {
    color: #aaa;
  }
  
  
  
    
    /* Responsive Styles */
    @media (max-width: 768px) {
      .navbar-nav {
        text-align: center;
      }
  
  
  
      .carousel-caption {
        font-size: 1rem;
        padding: 70px 50PX;
        top: 40%;
        width: 100%;
      }
    
      .buttons {
        gap: 10px;
        flex-direction: column;
        align-items: center;
        width: 100%;
      }
    
      button {
        width: 50%;
        font-size: 0.9rem;
      }
    
    
  
      .about-section h3 {
        font-size: 1.5rem;
      }
    
      .stats .stat-box {
        margin-bottom: 20px;
      }
  
      .services-section .service-card {
        margin: 10px 0;
        min-height: auto; /* Remove strict height for smaller screens */
      }

      #customCarousel .carousel-item img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        padding: 0px;
    }
    #customCarousel .carousel-caption {
        position: absolute;
        margin-top: 20px;
        bottom: 20px;
        left: -33%;
        transform: translateX(-50%);
        width: 70%;
        max-width: 85%;
        background: rgba(255, 255, 255, 0.95);
        color: black;
        text-align: center;
        padding: 20px;
        border-radius: 15px 0px 0px 0px;
        box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
        height:300px;
    


    }
    #customCarousel .carousel-caption h5 {
        font-size: 0.8rem;
    }
    #customCarousel .carousel-caption p {
        font-size: 0.72rem;
    }

    #customCarousel .custom-btn{
        font-size: 0.8rem;
        size: 10px;
    }


    #customCarousel .carousel-control-prev,
    #customCarousel .carousel-control-next {
        width: 40px;
        height: 40px;
        margin-top: 150px;
    }
  
      .card img {
        height: auto;
      }
  
        #brands .brand-logo {
          max-width: 50%; /* Smaller logos on mobile for better fit */
        }
    
        .footer .footer-text {
          font-size: 12px;
      }
      .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
  
    .project-title {
        font-size: 1.3rem;
    }
  
    .project-description {
        font-size: 0.95rem;
    }}
  
    
    
    
  