/* General Styles */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Typography */

h1,
h2,
h3 {
  font-weight: 700;
  margin-bottom: 20px;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #b8860b;
}

/* Layout & Containers */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #d4af37;
  color: #222;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #b8860b;
}

/* Animations/Transitions */

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.fade-in.active {
  opacity: 1;
}

/* Slide-in Animation (from left) */
.slide-in {
  transform: translateX(-100%);
  transition: transform 0.8s ease-in-out;
}

.slide-in.active {
  transform: translateX(0);
}

/* Zoom-in Animation */
.zoom-in {
  transform: scale(0.9);
  transition: transform 0.5s ease-in-out;
}

.zoom-in.active {
  transform: scale(1);
}

  /* -------------------------------------------------------------------------- */
  /* Index.html Styles start from here */
  /* -------------------------------------------------------------------------- */

  /* Header Styles */

  header {
    background-color: #222;
    color: white;
    padding: 20px 0;
    position: relative;
  }

  .logo h1 {
    color: #d4af37;
  }

  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
  }

  nav ul li {
    margin-left: 30px;
    position: relative;
  }

  nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  nav ul li a:hover {
    color: #d4af37;
  }

  /* Dropdown Styles */

  .dropdown {
    position: relative;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    /* Default z-index */
    border-radius: 5px;
    opacity: 0;
    /* Initially hidden */
    transform: translateY(-10px);
    /* Slightly offset for transition */
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }

  .dropdown-content a:hover {
    background-color: #f1f1f1;
  }

  .dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
    z-index: 10;
    /* Bring dropdown to front when hovered */
  }

  /* Hamburger Menu Styles */

  .hamburger {
    display: none;
    cursor: pointer;
  }

  .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: 0.3s ease;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  /* Hero Section Styles */
  .hero {
    background-color: #f0f0f0;
    position: relative;
    overflow: hidden;
  }

  .hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 1;
    max-width: 500px;
  }

  .hero-slider {
    width: 100%;
    height: 400px; /* Set a fixed height for larger screens */
    margin: 0;
    padding: 0;
  }

  .hero-slider .slick-list,
  .hero-slider .slick-track {
    padding: 0 !important;
    margin: 0 !important;
  }

  .hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  /* About Section Styles */

  .about {
    padding: 80px 0;
    background-color: #fff;
  }

  .about .container {
    flex: 1;
    display: flex;
    align-items: flex-start;
    /* Align items to the top */
    justify-content: space-between;
  }

  .about-image {
    flex: 0 0 40%;
    margin-left: 30px;
    /* Adjust left margin for spacing */
  }

  .about-text {
    flex: 1;
  }


  .about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .about-content {
    flex: 1;
  }

  /* Call to Action Section Styles */

  .cta {
    background-color: #333;
    color: white;
    padding: 60px 0;
    text-align: center;
  }

  .cta h2 {
    color: #d4af37;
  }


  /* Key Highlights Section Styles */

  .key-highlights {
    padding: 80px 0;
    background-color: #fff;
    /* White background */
  }

  .highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* Responsive columns */
    gap: 20px;
    justify-content: center;
  }

  .highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    background-color: #f0f0f0;
    /* Light gray background for cards */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .highlight:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
  }

  .highlight i {
    font-size: 2.5rem;
    color: #369630;
    /* Green color for icons */
    margin-bottom: 15px;
  }

  .highlight h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }



  /* Industries We Serve Section Styles */

  .industries-we-serve {
    padding: 80px 0;
    background-color: #f0f0f0;
    /* Or any suitable background color */
  }

  .industries-grid {
    display: flex;
    /* Use flexbox for horizontal arrangement */
    justify-content: center;
    align-items: center;
    /* Vertically center the icons */
    flex-wrap: wrap;
    /* Allow wrapping on smaller screens */
  }

  .industry {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
    /* Reduce margin for tighter spacing */
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3sease;
    flex: 0 0 150px;
    /* Adjust width as needed to fit more icons */
  }

  .industry:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
  }

  .industry i {
    font-size: 2.5rem;
    color: #369630;
    /* Green color for icons */
    margin-bottom: 15px;
  }

  .industry h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
    /* Remove bottom margin for tighter spacing */
  }


  /* Key Products Section Styles */

  #key-products {
    padding: 80px 0;
    /* Increased bottom padding to create space for sliders */
    background-color: #f0f0f0;
    overflow: auto;
    /* Add clearfix to prevent margin collapse */
  }

  #key-products:after {
    content: "";
    display: table;
    clear: both;
  }

  #key-products h2 {
    color: #222;
    font-size: 2rem;
    margin-bottom: 30px;
  }

  /* Arrange product sections horizontally */
  #key-products .product-section {
    width: calc(100% / 3);
    float: left;
  }

  /* Product Slider Styles */
  .product-slider {
    position: relative;
    /* To position arrows absolutely within the slider */
    padding: 0 40px;
    /* Add padding to the slider container */
  }

  .product-slider .slick-slide {
    display: flex;
    flex-direction: column;
    /* Arrange image and caption vertically */
    align-items: center;
    /* Center horizontally */
  }

  .product-slider .slick-slide img {
    width: 80%;
    height: auto;
    object-fit: contain;
    margin-bottom: 10px;
    /* Add some space between image and caption */
  }

  .image-caption {
    text-align: center;
    margin-top: 10px;
    width: 80%;
    /* Match the image width for centering */
  }

  /* Slick Slider Navigation Customization (Optional) */
  .slick-dots {
    bottom: 10px;
    /* Adjust position as needed */
    text-align: center;
  }

  .slick-dots li button:before {
    font-size: 12px;
    /* Adjust font size as needed */
    color: #333;
    /* Adjust color as needed */
  }

  .slick-dots li.slick-active button:before {
    color: #d4af37;
    /* Highlight active dot */
  }

  .slick-prev,
  .slick-next {
    font-size: 24px;
    /* Adjust font size as needed */
    color: #333;
    /* Adjust color as needed */
    z-index: 1;
    /* Ensure arrows are on top */
    /* Position arrows absolutely within the slider */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .slick-prev {
    left: 10px;
    /* Adjust as needed to prevent overlap */
  }

  .slick-next {
    right: 10px;
    /* Adjust as needed to prevent overlap */
  }

  /* Swiper Slider Navigation Customization */
  .swiper-button-prev,
  .swiper-button-next {
    color: black;
    /* Black color for arrows */
    /* Adjust positioning to prevent overlap */
    margin-top: -20px;
    /* Or adjust as needed based on your arrow size */
  }

  /* Target all product sliders on all product pages */
  .product-section .swiper-button-prev,
  .product-section .swiper-button-next {
    color: black;
    margin-top: -20px;
  }

  .swiper-pagination-bullet-active {
    background-color: #369630;
    /* Green color for active dot */
  }

  /* Swiper Slider Navigation Customization on index.html */
  #key-products .swiper-button-prev,
  #key-products .swiper-button-next {
    color: black !important;
    font-size: 18px !important;
    margin-top: -10px !important;
    z-index: 2;
    /* Ensure arrows are on top of other content */
  }

  #key-products .swiper-container {
    /* Add height to the Swiper container */
    height: 350px;
    /* Adjust this value as needed based on your image sizes */
  }

  /* Center images in Swiper sliders */
  .swiper-slide img {
    display: block;
    /* Ensure the image is a block-level element */
    margin: 0 auto;
    /* Center the image horizontally */
  }


  footer {
    background-color: #222;
    color: white;
    padding: 40px 0;
  }

  .footer-top {
    background-color: #369630;
    /* Green background for the top section */
    padding: 20px 0;
    text-align: center;
  }

  .footer-top p {
    margin-bottom: 10px;
  }

  .social-media {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .social-media a {
    margin: 0 10px;
  }

  .social-media i {
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s ease;
  }

  .social-media a:hover i {
    transform: scale(1.2);
  }

  .footer-bottom {
    padding: 30px 0;
  }

  /* Updated Footer Content Styles */
  .footer-content {
    display: flex;
    /* Use flexbox for horizontal alignment */
    justify-content: space-between;
    /* Distribute sections evenly */
    align-items: flex-start;
    /* Align items to the top */
    flex-wrap: wrap;
    /* Allow wrapping on smaller screens */
  }

  .footer-content > div {
    flex: 1 0 25%;
    /* Adjust as needed for desired spacing */
    margin-bottom: 20px;
  }

  .footer-copyright {
    text-align: center;
    width: 100%;
  }

  /* Desktop (992px to 1199px) */
@media (max-width: 1199px) {
  /* Adjust spacing or font sizes slightly if needed */
  .container {
      max-width: 960px; /* Or adjust as needed */
  }

  nav ul li {
      margin-left: 20px; /* Reduce spacing between navigation items */
  }

  .about .container {
      flex-direction: column; /* Stack image and text vertically */
  }

  .about-image {
      margin-left: 0;
      margin-top: 20px;
  }

  .highlights-grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Adjust column widths */
  }

  .industry {
      flex: 0 0 calc(50% - 20px); /* Two icons per row */
  }

  #key-products .product-section {
      width: 50%; /* Two product sections per row */
  }
}

/* Tablet (768px to 991px) */
@media (max-width: 991px) {
  .container {
      max-width: 720px;
  }

  nav ul {
      display: none; /* Hide navigation on tablets */
  }

  .hamburger {
      display: block; /* Show hamburger menu */
  }

  /* ... (Add styles to handle hamburger menu toggle and display) ... */

  .hero-slider {
      height: 300px; /* Adjust height for tablets */
  }

  .highlights-grid {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .industry {
      flex: 0 0 calc(33.33% - 20px); /* Three icons per row */
  }

  #key-products .product-section {
      width: 100%; /* Stack product sections vertically */
      margin-bottom: 20px;
  }
}

/* Mobile (below 767px) */
@media (max-width: 767px) {
  .container {
      max-width: 100%;
      padding: 0 20px;
  }

  .hero-slider {
      height: 200px; /* Adjust height for mobile */
  }

  .highlights-grid {
      grid-template-columns: 1fr; /* Single column layout */
  }

  .industry {
      flex: 0 0 100%; /* One icon per row */
  }

  /* Adjust footer layout for mobile */
  .footer-content > div {
      flex: 1 0 100%; /* Stack footer sections vertically */
  }
}

  




  /* -------------------------------------------------------------------------- */
  /* Index.html Styles end here */
  /* -------------------------------------------------------------------------- */





/* -------------------------------------------------------------------------- */
/* About-Yugant.html Styles start from here */
/* -------------------------------------------------------------------------- */


.about-yugant {
    padding: 80px 0;
    background-color: #f0f0f0;
}

.text-effect-outline {
    font-size: 3rem;
    color: #222;
    /* Black color */
    text-shadow: none;
    /* Remove the text-shadow for a clean look */
}

.about-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.about-content .column {
    flex: 0 0 calc(50% - 20px);
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-content .column:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.about-content .column img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.about-content .column h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Carousel Styles */
.carousel {
    margin-bottom: 40px;
}

.text-highlight {
    font-size: 2rem;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background-color: #d4af37;
}

.value-slider {
}

.value-slide {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.value-slide.slick-active {
    opacity: 1;
    transform: translateY(0);
}

.value-slide i {
    font-size: 2rem;
    color: #369630;
    margin-bottom: 10px;
}

.value-slide h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Additional Elements Styles */
.additional-elements {

}

.additional-elements .row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.additional-elements .column {
    flex: 0 0 calc(50% - 20px);
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.additional-elements .column:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.additional-elements .column h3 {
    font-size: 1.5rem;margin-bottom: 10px;
  }

  /* Media Queries for Responsiveness */
@media (max-width: 576px) { /* Small devices */
  .about-content {
      flex-direction: column; /* Stack columns vertically */
  }

  .about-content .column {
      flex: 0 0 100%; /* Each column takes full width */
  }

  .about-content .column img {
      max-height: 300px; /* Adjust image height on small devices */
  }

  .carousel .value-slider .value-slide h4 {
      font-size: 1.1rem; /* Slightly reduce font size for better fit */
  }

  .additional-elements .row {
      flex-direction: column; /* Stack columns vertically */
  }

  .additional-elements .column {
      flex: 0 0 100%;
      margin-bottom: 20px; 
  }
}

@media (max-width: 480px) { /* Extra small devices */
  .about-content .column img {
      max-height: 250px; /* Further reduce image height */
  }

  .carousel .value-slider .value-slide h4 {
      font-size: 1rem; /* Further reduce font size */
  }

  .additional-elements .column p {
      font-size: 0.9rem; /* Reduce font size for better readability */
  }
}
  
  
  
  /* -------------------------------------------------------------------------- */
  /* Services.html Styles start from here */
  /* -------------------------------------------------------------------------- */
  
  /* Services Hero Section Styles */
  .services-hero {
      position: relative;
      overflow: hidden;
  }
  
  .services-hero .hero-slider div {
      /* Style for each slide in the carousel */
      height: 400px;
      /* Adjust height as needed */
  }
  
  .services-hero .hero-slider img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }
  
  .services-hero .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      /* Adjust opacity as needed */
  }
  
  .services-hero .hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: white;
      z-index: 1;
  }
  
  .services-hero .hero-content h1 {
      font-size: 3rem;
      margin-bottom: 10px;
  }
  
  .services-hero .hero-content p {
      font-size: 1.2rem;
  }
  
  
  /* Services Section Styles */
  .services {
      padding: 80px 0;
      background-color: #fff;
  }
  
  .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      /* Responsive columns */
      gap: 30px;
  }
  
  .service {
      background-color: #f0f0f0;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      padding: 30px;
      text-align: left;
      /* Align text to the left */
      transition: all 0.3s ease;
  }
  
  .service:hover {
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transform: translateY(-5px);
  }
  
  .service-icon {
      font-size: 2.5rem;
      color: #369630;
      margin-bottom: 15px;
      text-align: center;
  }
  
  .service h3 {
      font-size: 1.8rem;
      margin-bottom: 15px;
  }
  
  .service p {
      margin-bottom: 20px;
      line-height: 1.4;
  }
  
  .service .btn {
      display: inline-block;
  }
  
  /* Partnership Section Styles */
  .partnership-section {
      text-align: left;
      /* Left-align the content */
      margin-top: 40px;
  }
  
  .partnership-section h3 {
      font-size: 2.5rem;
      margin-bottom: 20px;
  }
  
  .partnership-section p {
      max-width: 800px;
      margin-bottom: 20px;
      line-height: 1.6;
  }
  
  /* Call to Action Section Styles */
  
  .cta {
      margin-top: 60px;
      background-color: #333;
      color: white;
      padding: 60px 0;
      text-align: center;
  }
  
  .cta h2 {
      color: #d4af37;
  }
  
  
  
  
  /* -------------------------------------------------------------------------- */
  /* building-infrastructure.html Styles start from here */
  /* -------------------------------------------------------------------------- */
  
  
  /* Product Category Section Styles */
  .product-category {
      padding: 80px 0;
      background-color: #fff;
      /* Or any background color you prefer */
  }
  
  .product-category .container {
      text-align: left;
      /* Align content to the left */
  }
  
  .product-category-header {
      text-align: center;
      /* Center the header content */
      margin-bottom: 40px;
  }
  
  .product-category h2 {
      color: #222;
      font-size: 2.5rem;
      margin-bottom: 20px;
  }
  
  .product-category p {
      margin-bottom: 30px;
  }
  
  .products {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      /* Responsive grid layout */
      gap: 30px;
  }
  
  .other-products {
      margin-top: 40px;
  }
  
  .other-products h3 {
      font-size: 1.5rem;
      margin-bottom: 20px;
  }
  
  .other-products ul {
      list-style: disc;
      padding-left: 20px;
  }
  
  .contact-cta {
      margin-top: 40px;
      text-align: center;
      margin-bottom: 30px;
  }
  
  /* Product Showcase Styles (for building-infrastructure.html and Fasteners.html) */
  .product-showcase {
      display: flex;
      align-items: flex-start;
      /* Align items to the top */
  }
  
  .image-container {
      flex: 1;
      /* Allow the image to grow and take available space */
      margin-right: 30px;
  }
  
  .image-container img {
      width: 100%;
      height: auto;
      max-height: 400px;
      /* Set a maximum height to prevent the image from becoming too large */
      object-fit: cover;
  }
  
  .text-content {
      flex: 1;
      text-align: left;
      /* Left-align the text content */
  }
  
  /* ... (Your existing CSS) ... */
  
  .product {
      text-align: center;
      padding: 20px;
  }
  
  .product h3 {
      font-size: 1.2rem;
      margin-bottom: 10px;
  }
  
  .product p {
      font-size: 0.9rem;
      color: #666;
  }
  
  .swiper-slide .image-caption {
      text-align: center;
      margin-top: 10px;
      width: 80%;
      /* Match the image width for centering */
  }
  /* ... (Your existing CSS) ... */

/* Media Query Adjustments for smaller screens */
@media (max-width: 768px) {
  /* ... other styles ... */
  .product-section .swiper {
    height: auto;
  }

  .product-section .swiper-slide { 
    height: auto;
    padding: 0 !important;
    margin: 0 60px !important; /* Add horizontal margin to create gaps between slides */
  }

  .product-section .swiper-slide img {
    width: auto;
    height: auto; 
    object-fit: cover;
  }

  .swiper-button-prev,
  .swiper-button-next {
    position: absolute; 
    bottom: 100px; /* Position arrows at the bottom of the Swiper container */
    transform: none; 
    z-index: 10;
  }

  .swiper-button-prev {
    left: 20px; 
  }

  .swiper-button-next {
    right: 20px;
  }
}

@media (max-width: 480px) {
    /* ... other styles ... */

    .product-section .swiper-slide img {
        height: 200px; /* Further reduce image height on very small screens */
    }
}

  /* -------------------------------------------------------------------------- */
  /* Fire and Safety.html Styles start from here */
  /* -------------------------------------------------------------------------- */
  
 /* Main Content Section Styles */
.fire-safety-content {
  padding: 80px 0;
  text-align: left; /* Align text to the left as in the image */
}

.fire-safety-content h2 {
  font-size: 2.5rem; 
  margin-bottom: 20px;
}

.fire-safety-content p {
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Product Showcase Styles */
.product-showcase { /* Adjust if you have a different class for this section */
  display: flex;
  align-items: center;
  margin-bottom: 40px; /* Add spacing below the showcase */
}

.product-showcase .image-container {
  flex: 0 0 40%; /* Adjust width as needed */
  margin-right: 30px;
}

.product-showcase .image-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-showcase .text-content {
  flex: 1;
}

.product-showcase .text-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .product-showcase {
      flex-direction: column; /* Stack image and text vertically on smaller screens */
  }

  .product-showcase .image-container {
      margin-right: 0;
      margin-bottom: 20px;
  }
}

/* ... (Rest of your existing CSS) ... */

/* -------------------------------------------------------------------------- */
/* Fire and Safety.html Styles end here */
/* -------------------------------------------------------------------------- */




/* -------------------------------------------------------------------------- */
/* Sanitary.html Styles start from here */
/* -------------------------------------------------------------------------- */




/* -------------------------------------------------------------------------- */
/* fasteners.html Styles start from here */
/* -------------------------------------------------------------------------- */




/* -------------------------------------------------------------------------- */
/* electricalandelectronics.html Styles start from here */
/* -------------------------------------------------------------------------- */




/* -------------------------------------------------------------------------- */
/* ss-turned.html Styles start from here */
/* -------------------------------------------------------------------------- */




/* -------------------------------------------------------------------------- */
/* forging.html Styles start from here */
/* -------------------------------------------------------------------------- */




/* -------------------------------------------------------------------------- */
/* quality.html Styles start from here */
/* -------------------------------------------------------------------------- */

/* Quality Hero Section Styles */
.quality-hero {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.quality-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.quality-hero p {
    font-size: 1.2rem;
}

/* Quality Standards Section Styles */
.quality-standards {
    padding: 80px 0;
    background-color: #fff;
}

.quality-standards h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Quality Control Section Styles */
.quality-control {
    padding: 80px 0;
    background-color: #f0f0f0;
}

.quality-control h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.qc-highlights {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.highlight {
    flex: 0 0 calc(33.33% - 20px);
    margin: 10px;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.highlight:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.highlight i {
    font-size: 2.5rem;
    color: #369630;
    margin-bottom: 15px;
}

.highlight h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Continuous Improvement Section Styles */
.continuous-improvement {
    padding: 80px 0;
    background-color: #fff;
}

.continuous-improvement h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}


@media (max-width: 576px) { /* Small devices */
  .about-content {
    flex-direction: column; /* Stack columns vertically */
  }

  .about-content .column {
    flex: 0 0 100%; /* Each column takes full width */
  }

  .about-content .column img {
    max-height: 300px; /* Adjust image height on small devices */
  }

  .carousel .value-slider .value-slide h4 {
    font-size: 1.1rem; /* Slightly reduce font size for better fit */
  }

  .additional-elements .row {
    flex-direction: column; /* Stack columns vertically */
  }

  .additional-elements .column {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
}


@media (max-width: 480px) { /* Extra small devices */
  .quality-hero h1 {
    font-size: 2.2rem; /* Reduce heading size */
  }

  .quality-hero p {
    font-size: 1rem; /* Reduce paragraph font size */
  }

  .quality-standards,
  .quality-control,
  .continuous-improvement {
    padding: 40px 0; /* Reduce section padding */
  }

  .quality-standards h2,
  .quality-control h2,
  .continuous-improvement h2 {
    font-size: 1.8rem; /* Reduce heading size */
  }

  .qc-highlights .highlight {
    flex: 0 0 100%; /* Single column layout for highlights */
    margin-bottom: 20px;
  }

  .cta {
    padding: 40px 0; /* Reduce padding */
  }

  .cta h2 {
    font-size: 1.8rem; /* Reduce font size */
  }
}



/* -------------------------------------------------------------------------- */
/* contact.html Styles start from here */
/* -------------------------------------------------------------------------- */

/* Contact Section Styles */
.contact {
    padding: 80px 0;
    background-color: #fff;
    /* White background for a clean look */
}

.contact-content {
    display: flex;
    align-items: flex-start;
    /* Align items to the top */
}

.contact-form {
    flex: 1;
    padding: 30px;
    background-color: #f0f0f0;
    /* Light gray background for the form */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form textarea {
    height: 120px;
}

.contact-details {
    flex: 1;
    padding: 30px;
    text-align: center;
    /* Center the contact details */
}

.details-image {
    margin-bottom: 30px;
}

.details-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.details-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.details-text p {
    margin-bottom: 15px;
}

.details-text i {
    margin-right: 10px;
}

.details-text .btn {
    margin-top: 20px;
}

@media (max-width: 576px) { /* Small devices */
  .contact-content {
      flex-direction: column; /* Stack sections vertically */
  }

  .contact-form, 
  .contact-details {
      flex: 0 0 100%; /* Each section takes full width */
  }

  .contact-details {
      text-align: left; /* Align text to the left on smaller screens */
  }
}

@media (max-width: 480px) { /* Extra small devices */
  .contact {
      padding: 40px 0; /* Reduce padding in the contact section */
  }

  .contact-form h2 {
      font-size: 1.8rem; /* Reduce heading size */
  }

  .contact-form input,
  .contact-form textarea {
      padding: 8px; /* Reduce input and textarea padding */
  }

  .contact-details .details-image img {
      max-height: 300px; /* Adjust image height on very small screens */
  }

  .details-text h3 {
      font-size: 1.5rem; /* Reduce heading size */
  }
}




/* -------------------------------------------------------------------------- */
/* Area of Supply.html Styles start from here */
/* -------------------------------------------------------------------------- */

/* Area of Supply Page Styles */
.area-of-supply {
    padding: 80px 0;
    background-color: #f0f0f0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.text-effect {
    /* Example text effect - adjust as needed */
    font-size: 3rem;
    background: linear-gradient(to right, #d4af37, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.supply-map {
    position: relative;
    /* To position markers absolutely */
    text-align: center;
    margin-bottom: 30px;
}

.supply-map img {
    max-width: 100%;
    height: auto;
}

.marker {
    position: absolute;
    color: #369630;
    /* Green color for markers */
    font-size: 1.2rem;
    /* Adjust top, left values based on map image and desired marker positions */
}

.marker span {
    display: none;
    /* Hide labels initially */
    position: absolute;
    top: -25px;
    /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    padding: 5px 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.marker:hover span {
    display: block;
    /* Show labels on hover */
}

.supply-content {
    text-align: center;
    /* Center the content */
    margin-bottom: 40px;
}

.supply-content p {
    max-width: 800px;
    /* Limit paragraph width */
    margin: 20px auto;
    /* Center the paragraph */
}

/* Regions Served Styles */
.regions {
    text-align: center;
    margin-bottom: 40px;
}

.regions-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.region {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex: 0 0 150px;
    /* Adjust width as needed to fit more icons */
}

.region:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.region i {
    font-size: 2rem;
    color: #d4af37;
    /* Gold color for icons */
    margin-bottom: 10px;
}

.region span {
    font-weight: 500;
}



/* -------------------------------------------------------------------------- */
/* Our Process.html Styles start from here */
/* -------------------------------------------------------------------------- */


.our-process {
    padding: 80px 0;
    background-color: #f0f0f0;
}

/* Timeline Styles */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

/* Add a timeline line to the right side as well */
.timeline::before,
.timeline::after {
    content: '';
    position: absolute;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #d4af37;
    /* Gold timeline line */
}

.timeline::before {
    left: 20px;
    top: 0;
    /* Start from the top for the left line */
    height: 100%;
    /* Adjust left position for the left vertical line */
}

.timeline::after {
    right: 20px;
    top: 60px;
    height: calc(100% - 60px - 25px);
    /* Adjust right position for the right vertical line */
}

.timeline-container {
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

/* Alternate layout for even items */
.timeline-item:nth-child(even) {
    left: 50%;
    text-align: right;
}

.timeline-item:nth-child(odd) {
    left: 0%;
    text-align: left;
}

.timeline-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #369630;
    /* Green background for icon */
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    z-index: 1;
    /* Ensure icon is on top of the timeline line */
    position: absolute;
    top: 0;
    left: -20px;
    /* Adjust left position for the circle */

}

.timeline-item:nth-child(even) .timeline-icon {
    left: auto;
    right: -20px;
    /* Adjust right position for even items */
}

.timeline-item:nth-child(even)::before {
    left: -15px;
    /* Adjust left position for even items */
}

.timeline-content {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: max-height 0.3s ease-in-out;
    overflow: hidden;
    max-height: 80px;
    /* Initially show only the title */
}

.timeline-content:hover,
.timeline-item.active .timeline-content {
    max-height: 1000px;
    /* Adjust as needed to reveal full content on hover/click */
    cursor: pointer;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #222;
}

.timeline-content p {
    margin: 0;
}

.step-details {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 20px;
}

.step-details img {
  width: 45%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-left: 20px;
}

.step-details p {
  flex: 1;
  margin-right: 20px;
}

/* Media Queries for Our Process Page */
@media (max-width: 768px) {
  .timeline-item {
      width: 100%;
  }

  .timeline-item:nth-child(even) {
      left: 0%;
      /* Reset left position for even items */
      text-align: left;
      /* Reset text alignment */
  }

  .timeline-item:nth-child(even) .timeline-icon {
      left: -20px;
      /* Reset left position for icon */
  }

  .timeline-item:nth-child(even)::before {
      left: 20px;
      /* Reset left position for the connector */
  }

  .step-details {
      flex-direction: column; /* Stack image and text vertically */
  }

  .step-details img {
      margin-left: 0;
      margin-top: 20px;
      width: 100%;
  }
}
/* -------------------------------------------------------------------------- */
/* Future Mission.html Styles start from here */
/* -------------------------------------------------------------------------- */

/* Future Mission Hero Section Styles */
.future-mission-hero {
  position: relative;
  /* For positioning the overlay and content */
  overflow: hidden;
  /* Hide overflow for the slider */
  margin-top: -60px;
  margin-bottom: -60px;
}

.hero-slider {
}

.hero-slider div {
  /* Style for each slide in the carousel */
  height: 400px;
  /* Adjust height as needed */
}

.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Adjust opacity as needed */
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  /* Change text color to white */
  z-index: 1;
  /* Ensure content is on top of the overlay */
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content h1,
.hero-content .subtitle {
  color: white;
  /* Set text color to white */
}

/* Mission & Vision Styles */
.mission-vision {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 0;
  background-color: #fff;
}

.mission-vision .content-block {
  flex: 1;
  padding: 0 30px;
  text-align: left;
  /* Left-align the text content */
}

.mission-icon {
  font-size: 2rem;
  color: #369630;
  /* Green color for the icon */
  margin-right: 10px;
  /* Adjust spacing as needed */
  display: inline-block; /* Ensure the icon is displayed inline */
  vertical-align: middle; /* Vertically align the icon with the text */
}

.mission-title {
  display: inline-block;
  vertical-align: middle;
  /* Allow vertical alignment of icon and title */
  margin: 0 10px; /* Add some spacing between the icon and title */
}

/* Key Focus Areas Styles */
.key-focus-areas {
  padding: 80px 0;
  background-color: #f0f0f0;
}

.focus-area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  /* Responsive columns */
  gap: 20px;
  justify-content: center;
}

.focus-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.focus-area:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

.focus-area i {
  font-size: 2.5rem;
  color: #369630;
  margin-bottom: 15px;
}

.focus-area h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

/* Additional Info Section Styles */
.additional-info {
  padding: 80px 0;
  background-color: #fff;
}

.additional-info .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.additional-info .column {
  flex: 1;
  padding: 0 30px;
}

.additional-info .column img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.additional-info .column h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

/* ... (Your existing CSS) ... */

/* Media Query Adjustments for different screen sizes */

/* Styles for tablets and smaller screens */
@media (max-width: 1023px) {
  /* Header adjustments */
  header nav ul {
    display: none; /* Hide the navigation menu on smaller screens */
  }

  header .hamburger {
    display: block; /* Show the hamburger menu icon */
  }

  /* Hero section adjustments */
  .hero-slider div {
    height: 300px; /* Adjust the height of the hero slider for smaller screens */
  }

  .hero-content h1 {
    font-size: 2.5rem; /* Reduce the font size of the hero title */
  }

  /* Mission & Vision adjustments */
  .mission-vision {
    flex-direction: column; /* Stack the mission and vision content vertically */
    padding: 40px 0; /* Reduce padding on smaller screens */
    text-align: center; /* Center align all content within .mission-vision */
  }

  .mission-vision .content-block {
    padding: 0 15px; /* Reduce padding for the content blocks */
  }

  .mission-icon,
  .mission-title {
    display: block; /* Display icon and title on separate lines */
    margin: 0 auto 10px; /* Center them horizontally */
  }

  /* Key Focus Areas adjustments */
  .focus-area-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Adjust column widths for smaller screens */
  }

  /* Additional Info adjustments */
  .additional-info .row {
    flex-direction: column; /* Stack the image and text vertically */
  }

  .additional-info .column {
    padding: 0 15px; /* Reduce padding for the columns */
  }

  .additional-info .column:first-child {
    margin-bottom: 20px; /* Add spacing between the image and text */
  }
}

/* Styles for mobile phones */
@media (max-width: 767px) {
  /* Header adjustments */
  header .logo h1 {
    font-size: 1.8rem; /* Reduce the logo font size further */
  }

  /* Hero section adjustments */
  .hero-slider div {
    height: 200px; /* Further reduce the height of the hero slider */
  }

  .hero-content h1 {
    font-size: 2rem; /* Further reduce the font size of the hero title */
  }

  /* Key Focus Areas adjustments */
  .focus-area-grid {
    gap: 15px; /* Reduce the gap between focus areas */
  }

  .focus-area {
    padding: 20px; /* Reduce padding for the focus areas */
  }

  /* Additional Info adjustments */
  .additional-info .column h3 {
    font-size: 1.8rem; /* Reduce the heading font size */
  }

  .mission-vision .content-block {
    text-align: left; /* Align text to the left on smaller screens */
  }

  .mission-icon,
  .mission-title {
    display: block; /* Display icon and title on separate lines on small screens */
    margin: 0 auto 10px; /* Center them horizontally */
  }
}

/* -------------------------------------------------------------------------- */
/* Future Mission.html Styles start from here */
/* -------------------------------------------------------------------------- */

/* Future Mission Hero Section Styles */
.future-mission-hero {
  position: relative;
  /* For positioning the overlay and content */
  overflow: hidden;
  /* Hide overflow for the slider */
  margin-top: -60px;
  margin-bottom: -60px;
}

.hero-slider {
}

.hero-slider div {
  /* Style for each slide in the carousel */
  height: 400px;
  /* Adjust height as needed */
}

.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Adjust opacity as needed */
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  /* Change text color to white */
  z-index: 1;
  /* Ensure content is on top of the overlay */
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content h1,
.hero-content .subtitle {
  color: white;
  /* Set text color to white */
}

/* Mission & Vision Styles */
.mission-vision {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 0;
  background-color: #fff;
}

.mission-vision .content-block {
  flex: 1;
  padding: 0 30px;
  text-align: left;
  /* Left-align the text content */
}

.mission-icon {
  font-size: 2rem;
  color: #369630;
  /* Green color for the icon */
  margin-right: 10px;
  /* Adjust spacing as needed */
  display: inline-block; /* Ensure the icon is displayed inline */
  vertical-align: middle; /* Vertically align the icon with the text */
}

.mission-title {
  display: inline-block;
  vertical-align: middle;
  /* Allow vertical alignment of icon and title */
  margin: 0 10px; /* Add some spacing between the icon and title */
}

/* Key Focus Areas Styles */
.key-focus-areas {
  padding: 80px 0;
  background-color: #f0f0f0;
}

.focus-area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  /* Responsive columns */
  gap: 20px;
  justify-content: center;
}

.focus-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.focus-area:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

.focus-area i {
  font-size: 2.5rem;
  color: #369630;
  margin-bottom: 15px;
}

.focus-area h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

/* Additional Info Section Styles */
.additional-info {
  padding: 80px 0;
  background-color: #fff;
}

.additional-info .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.additional-info .column {
  flex: 1;
  padding: 0 30px;
}

.additional-info .column img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.additional-info .column h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

/* ... (Your existing CSS) ... */

/* Media Query Adjustments for different screen sizes */

/* Styles for tablets and smaller screens */
@media (max-width: 1023px) {
  /* Header adjustments */
  header nav ul {
    display: none; /* Hide the navigation menu on smaller screens */
  }

  header .hamburger {
    display: block; /* Show the hamburger menu icon */
  }

  /* Hero section adjustments */
  .hero-slider div {
    height: 300px; /* Adjust the height of the hero slider for smaller screens */
  }

  .hero-content h1 {
    font-size: 2.5rem; /* Reduce the font size of the hero title */
  }

  /* Mission & Vision adjustments */
  .mission-vision {
    flex-direction: column; /* Stack the mission and vision content vertically */
    padding: 40px 0; /* Reduce padding on smaller screens */
    text-align: center; /* Center align all content within .mission-vision */
  }

  .mission-vision .content-block {
    padding: 0 15px; /* Reduce padding for the content blocks */
  }

  .mission-icon,
  .mission-title {
    display: block; /* Display icon and title on separate lines */
    margin: 0 auto 10px; /* Center them horizontally */
  }

  /* Key Focus Areas adjustments */
  .focus-area-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Adjust column widths for smaller screens */
  }

  /* Additional Info adjustments */
  .additional-info .row {
    flex-direction: column; /* Stack the image and text vertically */
  }

  .additional-info .column {
    padding: 0 15px; /* Reduce padding for the columns */
  }

  .additional-info .column:first-child {
    margin-bottom: 20px; /* Add spacing between the image and text */
  }
}

/* Styles for mobile phones */
@media (max-width: 767px) {
  /* Header adjustments */
  header .logo h1 {
    font-size: 1.8rem; /* Reduce the logo font size further */
  }

  /* Hero section adjustments */
  .hero-slider div {
    height: 200px; /* Further reduce the height of the hero slider */
  }

  .hero-content h1 {
    font-size: 2rem; /* Further reduce the font size of the hero title */
  }

  /* Key Focus Areas adjustments */
  .focus-area-grid {
    gap: 15px; /* Reduce the gap between focus areas */
  }

  .focus-area {
    padding: 20px; /* Reduce padding for the focus areas */
  }

  /* Additional Info adjustments */
  .additional-info .column h3 {
    font-size: 1.8rem; /* Reduce the heading font size */
  }

  .mission-vision .content-block {
    text-align: left; /* Align text to the left on smaller screens */
  }

  .mission-icon,
  .mission-title {
    display: block; /* Display icon and title on separate lines on small screens */
    margin: 0 auto 10px; /* Center them horizontally */
  }
}

/* -------------------------------------------------------------------------- */
/* Future Mission.html Styles start from here */
/* -------------------------------------------------------------------------- */

/* Future Mission Hero Section Styles */
.future-mission-hero {
  position: relative;
  /* For positioning the overlay and content */
  overflow: hidden;
  /* Hide overflow for the slider */
  margin-top: -10px;
  margin-bottom: -60px;
}

.hero-slider {
}

.hero-slider div {
  /* Style for each slide in the carousel */
  height: 400px;
  /* Adjust height as needed */
}

.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0,   
 0.5);
  /* Adjust opacity as needed   
 */
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  /* Change text color to white */
  z-index: 1;
  /* Ensure content is on top of the overlay */
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content h1,
.hero-content .subtitle {
  color: white;
  /* Set text color to white */
}

/* Mission & Vision Styles */
.mission-vision {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 0;
  background-color: #fff;
}

.mission-vision .content-block {
  flex: 1;
  padding: 0 30px;
  text-align: left;
  /* Left-align the text content */
}

.mission-icon {
  font-size: 2rem;
  color: #369630;
  /* Green color for the icon */
  margin-right: 10px;
  /* Adjust spacing as needed */
  display: inline-block; /* Ensure the icon is displayed inline */
  vertical-align: middle; /* Vertically align the icon with the text */
}

.mission-title {
  display: inline-block;
  vertical-align: middle;
  /* Allow vertical alignment of icon and title */
  margin: 0 10px; /* Add some spacing between the icon and title */
}

/* Key Focus Areas Styles */
.key-focus-areas {
  padding: 80px 0;
  background-color: #f0f0f0;
}

.focus-area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  /* Responsive columns */
  gap: 20px;
  justify-content: center;
}

.focus-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px   
 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.focus-area:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

.focus-area i {
  font-size: 2.5rem;
  color: #369630;
  margin-bottom: 15px;
}

.focus-area h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

/* Additional Info Section Styles */
.additional-info {
  padding: 80px 0;
  background-color: #fff;
}

.additional-info .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.additional-info .column {
  flex: 1;
  padding: 0 30px;
}

.additional-info .column img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.additional-info .column h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

/* ... (Your existing CSS) ... */

/* Media Query Adjustments for different screen sizes */

/* Styles for tablets and smaller screens */
@media (max-width: 1023px) {
  /* Header adjustments */
  header nav ul {
    display: none; /* Hide the navigation menu on smaller screens */
  }

  header .hamburger {
    display: block; /* Show the hamburger menu icon */
  }

  /* Hero section adjustments */
  .hero-slider div {
    height: 300px; /* Adjust the height of the hero slider for smaller screens */
  }

  .hero-content h1 {
    font-size: 2.5rem; /* Reduce the font size of the hero title */
  }

  /* Mission & Vision adjustments */
  .mission-vision {
    flex-direction: column; /* Stack the mission and vision content vertically */
    padding: 40px 0; /* Reduce padding on smaller screens */
    text-align: center; /* Center align all content within .mission-vision */
  }

  .mission-vision .content-block {
    padding: 0 15px; /* Reduce padding for the content blocks */
  }

  .mission-icon,
  .mission-title {
    display: block; /* Display icon and title on separate lines */
    margin: 0 auto 10px; /* Center them horizontally */
  }

  /* Key Focus Areas adjustments */
  .focus-area-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Adjust column widths for smaller screens */
  }

  /* Additional Info adjustments */
  .additional-info .row {
    flex-direction: column; /* Stack the image and text vertically */
  }

  .additional-info .column {
    padding: 0 15px; /* Reduce padding for the columns */
  }

  .additional-info .column:first-child {
    margin-bottom: 20px; /* Add spacing between the image and text */
  }
}

/* Styles for mobile phones */
@media (max-width: 767px) {
  /* Header adjustments */
  header .logo h1 {
    font-size: 1.8rem; /* Reduce the logo font size further */
  }

  /* Hero section adjustments */
  .hero-slider div {
    height: 150px; /* Further reduce the height of the hero slider */
  }

  .hero-content h1 {
    font-size: 1rem; /* Further reduce the font size of the hero title */
  }

  /* Key Focus Areas adjustments */
  .focus-area-grid {
    gap: 15px; /* Reduce the gap between focus areas */
  }

  .focus-area {
    padding: 20px; /* Reduce padding for the focus areas */
  }

  /* Additional Info adjustments */
  .additional-info .column h3 {
    font-size: 1.8rem; /* Reduce the heading font size */
  }

  .mission-vision .content-block {
    text-align: left; /* Align text to the left on smaller screens */
  }

  .mission-icon,
  .mission-title {
    display: block; /* Display icon and title on separate lines on small screens */
    margin: 0 auto 10px; /* Center them horizontally */
  }
}

/* ---------------------------------

/* -------------------------------------------------------------------------- */
/* Styles.css organization and optimization complete! */
/* -------------------------------------------------------------------------- */