@import url('https://fonts.googleapis.com/css2?family=Alata&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alata&family=Host+Grotesk:ital,wght@0,300..800;1,300..800&display=swap');



/* General Reset */
/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Alata', sans-serif;
} */

/* Header Container */
header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 5%;
    background-color: #fff;
    border-color:aqua;
    box-sizing: border-box;
    border-bottom: 2px solid #ccc;
}

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 2%;
}

.logo img{
  max-height:none;
}


/* Search Bar */
.search-bar {
    display: flex;
    flex-grow: 1;
    justify-content: center;
    margin: 0 2%;
}

.search-bar input {
    width: 60%;
    height:2.5rem;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 4px 0 0 4px;
    outline: none;
    font-size:1rem !important;
}

.search-bar button {
    height:2.5rem;
    padding:  0.6rem 1rem;
    background-color: #FFCC00; /* Yellow background */
    color: black;
    font-weight: bold;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 16px !important;
}

.search-bar button:hover {
    background-color: #FFE206; /* Slightly darker yellow */
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 2%;
    font-size:  1rem;
    color: #555;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.3rem;
}

.contact-item i {
    color: #555;
    margin-right:0.3rem;
}

/* Login/Register Button */
.auth-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.auth-buttons button {
    display: flex;
    align-items: center;
    padding: 0.6rem 1rem;
    background-color: #FFCC00; /* Yellow */
    color: black;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size:  1rem;
    transition: background-color 0.3s;
}

.auth-buttons button i {
    margin-right: 0.3rem;
}

.auth-buttons button:hover {
    background-color: #FFE206;
}

.auth-buttons .caption {
    margin-top: 0.3rem;
    font-size: 0.8rem;
    color: #555;
    font-style: italic;
}

/* Media Queries for Larger Screens */
@media (min-width: 1440px) {
  header {
      padding: 10px 8%; /* Add more padding */
  }



  .search-bar input {
      width: 55%; /* Increase search bar width */
      font-size: 1rem; /* Increase font size */
  }

  .search-bar button {
      font-size: 1rem;
      padding: 0.8rem 1.2rem; /* Increase button padding */
  }

  .contact-details {
      font-size: 1.2rem; /* Increase font size */
  }

  .auth-buttons button {
      font-size: 1.2rem;
      padding: 0.8rem 1.2rem; /* Increase button padding */
  }

  .auth-buttons .caption {
      font-size: 1rem; /* Adjust caption size */
  }
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFCC00;
    padding: 4px 20px;
    position: relative;
}

.nav-items {
    display: flex;
    gap: 15px;
    list-style: none;
    background-color: transparent;
}

.nav-items li {
  background-color: transparent; /* Reset background for list items */
}
.navbar .nav-items {
  background-color: transparent !important; /* Force transparency */
}

.nav-items li a {
    color: #010101;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    padding: 5px 10px;
    transition: background-color 0.3s;
    background-color: transparent;
}



.nav-items li a i {
    margin-left: 5px;
}



.customer {
    font-size: 14px;
    color: #010101;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

.customer a {
    text-decoration: none;
    color: #333;
}

.customer a i {
    margin-left: 5px;
}

.customer .customer-dropdown-menu {
  display: none; /* Hidden by default */
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  list-style: none;
  padding: 10px 0;
  min-width: 200px;
  z-index: 10;
}

.customer .customer-dropdown-menu li {
  padding: 0;
  border-bottom: 1px solid #ddd; /* Bottom border for items */
  width: 100%;
  box-sizing: border-box;
}

.customer .customer-dropdown-menu li:last-child {
  border-bottom: none; /* Remove border for the last item */
}

.customer .customer-dropdown-menu a {
  display: block;
  color: #333;
  padding: 8px 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: normal;
  transition: background-color 0.3s;
  width: 100%; /* Ensure links fill the container */
  box-sizing: border-box; /* Include padding in the width */
}

.customer .customer-dropdown-menu a:hover {
  background-color: #B1ACAC; /* Same hover color as other dropdowns */
}

/* Show dropdown on hover */
.customer:hover .customer-dropdown-menu {
  display: block;
}

/* Adjust the navbar spacing and layout */
.navbar .nav-items li {
    display: inline-block;
    background-color: transparent; 
}

.navbar .profile, .navbar .customer {
    margin-left: 80px;
}

/* Dropdown Menu Styling */
.nav-items .dropdown {
  position: relative;
}

.nav-items .dropdown-menu {
  display: none; /* Hidden by default */
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  list-style: none;
  padding: 10px 0;
  min-width: 200px;
  z-index: 10;
}

.nav-items .dropdown-menu li a,
.nav-items .dropdown-menu .sub-menu a {
  display: block;
  color: #333;
  padding: 8px 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: normal;
  transition: background-color 0.3s;
  width: 100%; /* Ensure links fill the container */
  box-sizing: border-box; /* Include padding in the width */
}

.nav-items .dropdown-menu li {
  padding: 0;
  border-bottom: 1px solid #ddd;
  width:100%;
  box-sizing: border-box;
}
.nav-items .dropdown-menu li:last-child {
  border-bottom: none; /* Remove border for the last item */
}

.nav-items .dropdown-menu a {
  display: block;
  color: #333;
  padding: 8px 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: normal;
  transition: background-color 0.3s;
}

.nav-items .dropdown-menu a:hover {
  background-color: #B1ACAC;
}

/* Sub-menu Styling */
.nav-items .dropdown-menu .category {
  position: relative;
  border-bottom: 1px solid #ddd;
}

.nav-items .dropdown-menu .sub-menu {
  display: none; /* Hidden by default */
  position: absolute;
  top: 0;
  left: 100%; /* Horizontal display */
  background-color: #fff;
  border: 1px solid #ccc;
  list-style: none;
  padding: 0;
  min-width: 200px;
  z-index: 10;
}

.nav-items .dropdown-menu .sub-menu li {
  display:block;
  border-bottom: 1px solid #ddd; /* Bottom border for sub-menu items */
  padding: 0; /* Add space between items */
}

.nav-items .dropdown-menu .sub-menu li:last-child {
  border-bottom: none; /* Remove border for the last item */
}

.nav-items .dropdown-menu .sub-menu a {
  display: block;
  color: #333;
  padding: 8px 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: normal;
  transition: background-color 0.3s;
}

.nav-items .dropdown-menu .sub-menu a:hover {
  background-color: #B1ACAC;
}

/* Hover to show dropdown and sub-menu */
.nav-items .dropdown:hover .dropdown-menu {
  display: block;
}

.nav-items .dropdown-menu .category:hover .sub-menu {
  display: block;
}

/* Media Queries for Larger Screens (1440px and 4K screens) */
@media (min-width: 1440px) {
  .nav-items {
      gap: 30px; /* Increase gap between items */
  }

  .nav-items li a {
      font-size: 16px; /* Increase font size */
  }

  .navbar .profile, .navbar .customer {
      font-size: 16px; /* Increase font size for profile and customer links */
  }
}

@media (min-width: 2560px) { /* Targeting 4K screen sizes */
  .nav-items {
      gap: 60px; /* Further increase gap between items */
  }

  .nav-items li a {
      font-size: 30px; /* Further increase font size */
  }

  .navbar .profile, .navbar .customer {
      font-size: 24px; /* Further increase font size for profile and customer links */
  }
}

/* Mobile Menu (hidden by default) */
.mobile-icons {
  display: flex; /* Align icons side by side */
  align-items: center; /* Vertically center */
  gap: 15px; /* Space between icons */
  padding: 10px; /* Add padding */
}

.top-row i {
  width: 55px;
  height: 55px;
  
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  margin-right: 15px;
  color: #fff;
}

.search-icon i {
  font-size: 20px;
  color: #333;
  cursor: pointer;
  transition: color 0.3s ease;
}

.search-icon i:hover {
  color: #FFCC00; /* Hover effect */
}

.mobile-menu {
    display: none;
    background-color: #fff;
    padding: 20px;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 520px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    transform: translateX(100%);
    z-index:100;
}

.mobile-menu.active {
    display: block;
    transform: translateX(0);
}

.top-row {
    display: flex;
    justify-content: space-between;
}

.top-row a {
  display: flex; /* Makes icon and text align side by side */
  align-items: center; /* Vertically centers the text and icon */
  padding: 8px 14px;
  background-color: #000; /* Yellow background */
  color: white;
  font-weight: bold;
  border-radius: 25px; /* Rounded corners */
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  margin-right: 10px; /* Space between buttons */
  gap: 8px; /* Space between the icon and the text */
}

.top-row a i {
  font-size: 16px; /* Adjust icon size if needed */
  margin: 0; /* Removes any unwanted margin */
}

.sign-in-link {
  display: inline-flex; /* Ensures content aligns in a row */
  align-items: center; /* Vertically centers icon and text */
  gap: 8px; /* Adds spacing between the icon and text */
  padding: 8px 10px;
  background-color: #000; /* Background color */
  color: white; /* Text color */
  font-weight: bold; /* Makes text bold */
  border-radius: 25px; /* Rounded corners */
  text-decoration: none; /* Removes underline */
  transition: background-color 0.3s, color 0.3s;
  margin-right: 10px; /* Adds spacing from other elements */
}

.sign-in-link i {
  font-size: 16px; /* Adjust the icon size */
  margin: 0; /* Ensures no extra margins */
  display: inline-block; /* Ensures icon behaves like text */
}


.top-row {
  list-style: none;
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
}

.top-row li a {
  display: block;
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 0;
  text-align: center;
  margin-top: 10px;
}

.menu-items {
    list-style: none;
    padding: 20px 0;
}

.menu-items li a {
    display: block;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    padding: 10px 0;
}

.customer-vendor {
    background-color: #fff;
    margin-top: 20px;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
}

.customer-vendor a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: bold;
    margin: 0 5px;
}


.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Close Button (X mark) */
.close-menu {
  font-size: 30px;
  color: #333;
  cursor: pointer;
  display: inline-block;
  padding: 0 10px;
  transition: color 0.3s;
}

.close-menu:hover {
  color: #FFCC00; /* Change color on hover */
}

/* Styling for Sign In and Customer/Vendor as buttons */
.top-row a, .customer-vendor a {
  display: inline-block;
  padding: 8px 14px;
  background-color: #000; /* Yellow background */
  color: white;
  font-weight: bold;
  
  border-radius: 25px; /* Rounded corners */
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  margin-right: 10px; /* Space between buttons */
}

.top-row a:hover, .customer-vendor a:hover {
  background-color: rgba(0, 0, 0, 0.541); /* Slightly darker yellow */
  color: #fff;
  border-color: #FFE206;
}

/* Adding a line below each menu item except the Home link */
.menu-items li {
  position: relative;
  border-bottom: 1px solid #ccc; /* Light gray line */
}

.menu-items li a {
  display: flex;
  justify-content: space-between; /* Align text to the left and icon to the right */
  text-decoration: none;
  color: #333;
  font-size: 14px;
  padding: 10px 0;
  transition: background-color 0.3s;
  
}

/* Add Angular Icon */
.menu-items li a::after {
  content: '\003E'; /* Unicode for '>' symbol */
  font-size: 14px;
  color: #333;
  position: absolute;
  right: 10px; /* Position the arrow to the far right */
  font-weight: bold;
  transition: color 0.3s ease; 
}

.menu-items li a:hover::after {
  color: #FFCC00; /* Change arrow color on hover */
}


.menu-items li a:hover {
  background-color: #f1f1f1; /* Light background color on hover */
}

/* Exclude the Home link from having a bottom border and button styling */
.menu-items li:first-child a, .top-row a:first-child {
  background-color: transparent; /* Remove background for Home */
  border: none; /* Remove border for Home */
  border-bottom: none; /* Remove line below Home */
  padding: 0; /* Adjust padding */
}

.menu-items li:first-child a:hover {
  background-color: transparent; /* No hover effect for Home */
}

/* Optional: Adjust space between menu items for better alignment */
.menu-items {
  padding: 20px 0;
}


/* Optional: Adjust space between menu items for better alignment */
.menu-items {
  padding: 20px 0;
}

/* Follow Us Section Container */
.follow-us {
  display: flex;
  align-items: center; /* Align content vertically */
  justify-content:flex-start; /* Center content horizontally */
  gap: 10px; /* Space between "Follow Us" and icons */
 
  margin:10px;
  border: 1px solid #000; /* Light border */
  border-radius: 25px; /* Rounded corners */
  background-color: #f9f9f9; /* Light gray background */
  
}

/* Follow Us Title */
.follow-title {
  font-size: 16px;
  font-weight: bold;
  color: #000;
  text-transform: capitalize;
  white-space: nowrap;
}

/* Social Links Container */
.social-links {
  display: flex;
  gap: 10px; /* Space between icons */
  margin-left: 10px;
}

/* Individual Social Icons */
.social-icon {
  font-size: 18px;
  color: #000; /* Default icon color */
  transition: color 0.3s ease;
}

/* Icon Hover Effects */
.social-icon.facebook:hover {
  color: #3b5998; /* Facebook Blue */
}

.social-icon.instagram:hover {
  color: #e4405f; /* Instagram Pink/Red */
}

.social-icon.linkedin:hover {
  color: #0077b5; /* LinkedIn Blue */
}

.social-icon.twitter:hover {
  color: #1da1f2; /* Twitter Blue */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .follow-us {
    flex-wrap: nowrap; /* Prevent wrapping */
    justify-content: space-between; /* Adjust alignment */
  }

  

}



/* Mobile Responsiveness for menu bar items in mobile view */
@media (max-width: 768px) {
  /* Hide Navbar, Search Bar, and Auth Buttons */
  .navbar, .search-bar, .auth-buttons {
      display: none;
  }

  /* Display Logo, Contact Info, and Auth Caption in a Row */
  header {
      flex-direction: row;
      justify-content: space-between;
      width: 100%;
  }

  .logo {
      flex: 1;
      margin-left:10px;
  }

  .contact-details {
      display: flex;
      flex: 2;
      flex-direction: column;
      margin-left: 10px;
  }

  .contact-item {
      margin-bottom: 10px;
  }

  .auth-buttons .caption {
      display: block;
      margin-top: 10px;
      font-size: 12px;
      color: #555;
      font-style: italic;
  }

  .menu-icon {
      display: block;
      position: absolute;
      right: 20px;
      top: 20px;
  }
}
/*menu bar in mobile reduces -- style ends*/

.find-section {
    position: relative;
    width: 100%;
    height: 500px; /* Adjust the height as needed */
    display: flex;
    align-items:flex-start;
    justify-content:flex-start;
    padding-left: 250px;
    overflow: hidden; /* Ensure no overflow outside the section */
    object-position: center; 
    border-bottom: 2px solid #ccc;
}

.banner-image.desktop-banner {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit:fill; /* Ensures the image completely covers the section */
    z-index: -1; /* Ensure the image stays behind the content */
}

.banner-image.mobile-banner{
  display: none;
}





/* Mobile view styles */
@media screen and (max-width: 768px) {
  .find-section {
    position: relative;
    width: 100%;
    height: auto; /* Adjust height based on content */
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center the content horizontally */
    justify-content: flex-start; /* Align items at the top */
    padding: 0; /* Remove padding */
    overflow: hidden; /* Ensure no extra spaces appear */
    border-bottom: 2px solid #ccc; /* Border for visual separation */
  }

  .banner-image.desktop-banner {
    display: none; /* Hide the desktop image on mobile */
  }

  .banner-image.mobile-banner {
    position: relative; /* Position the mobile banner image */
    display: block; /* Show the mobile-specific image */
    width: 100%;
    height: 250px; /* Adjust height of image */
    object-fit: fill; /* Ensure the image covers the area */
    z-index: 0;
  }

  
}

/* equipment listing Section Styling starts*/
.equipment-section {
  width: 100%;
  text-align: center;
  padding: 40px 20px;
  border-bottom: 2px solid #ccc;
}

/* Centered Text Styling */
.equipment-text .promise-text {
  color: #B1ACAC;
  font-size: 14px;
  margin: 0;
  text-transform: capitalize;
}

.equipment-text .popular-heading {
  color: black;
  font-size: 38px;
  margin: 5px 0 30px;
  font-weight:500;
}


/* listing Equipment Section Styles starts*/
.equipment-cards-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.equipment-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.equipment-slide {
  display: flex;
  width: 100%;
  flex: none;
  justify-content:flex-start;
  align-items: center;
  padding: 20px;
}

.slide-left {
  flex:1;
  margin-right: 10px; /* Reduce space between the left and right div */
}

.slide-left img {
  width: 100%;
  max-width: 350px;
  display: block;
  margin: 0 auto;
}

.slide-right {
  flex: 1; /* Ensure right div takes up the remaining space */
}

.slide-right table {
  width: 100%;
  color: #797878;
  border-collapse: collapse;
}

.slide-right table tr td {
  padding: 8px 12px; /* Add padding for better readability */
  text-align: left; /* Align all content to the left */
  
}

.slide-right table tr td:first-child {
  font-weight: bold;
  padding-right: 10px;
}

/* Specific Styling for Table Headers (e.g., Request ID, Equipment Name) */
.slide-right table tr td:nth-child(odd) {
  color: #4B82AF; /* Apply blue color to odd-numbered columns (example: Request ID, Equipment Name) */
}

/* Comments Section Styling */
.comments {
  border: 1px solid #ddd; /* Light border around the div */
  border-radius: 16px; /* Rounded corners */
  padding: 10px 16px; /* Padding inside the div */
  margin-top: 20px; /* Space between the table and comments div */
  width: fit-content; /* Adjust width to fit the content */
  max-width: 100%; /* Prevent div from exceeding the container width */
  text-align: left; /* Align content to the left */
}

.comment-heading {
  color: #4B82AF; /* Blue color for the heading "Comments" */
  font-weight: bold;
  margin-right: 15px;
}

.comment-text {
  color: #797878; /* Black color for the comment text */
  margin-left: 5px; /* Small space between heading and comment text */
}


.navigation-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: black;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
}

.navigation-arrow.left-arrow {
  left: 10px;
}

.navigation-arrow.right-arrow {
  right: 10px;
}

.navigation-arrow .arrow {
  color: white;
  font-size: 20px;
}

.pagination-bubbles {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.pagination-bubbles .bubble {
  width: 10px;
  height: 10px;
  background: lightgray;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.pagination-bubbles .bubble.active {
  background: black;
}

@media (max-width: 480px) {
  .equipment-cards-container {
      position: relative;
      width: 100%; /* Ensure full width of container */
      overflow-x: scroll; /* Allow horizontal scrolling */
      overflow-y: hidden; /* Prevent vertical scrolling */
      scroll-snap-type: x mandatory; /* Enable horizontal snap scrolling */
      -webkit-overflow-scrolling: touch; /* Smooth scrolling for touch devices */
  }

  .equipment-slider {
      display: flex; /* Ensure flex container layout */
      flex-wrap: nowrap; /* Prevent wrapping */
      width: 100%; /* Full width */
      transform: none; /* Disable transform to avoid restricting slides */
  }

  .equipment-slide {
      flex: 0 0 100%; /* Each slide takes full width of the viewport */
      display: flex; /* Maintain flex layout for content */
      flex-direction: column; /* Stack children vertically */
      align-items: center; /* Center align items */
      justify-content: center; /* Center align content */
      scroll-snap-align: center; /* Snap slide to center */
      padding: 20px; /* Adjust padding for smaller screens */
  }

  .slide-left,
  .slide-right {
      flex: none; /* Prevent flex growth or shrink */
      width: 100%; /* Full width for each section */
      margin: 0; /* Remove margin */
  }

  .slide-left img {
      max-width: 80%; /* Scale down image */
      margin-bottom: 15px; /* Add spacing */
  }

  .slide-right table {
      font-size: 12px; /* Reduce table font size */
  }

  .navigation-arrow {
      width: 30px; /* Adjust size for smaller screens */
      height: 30px;
      background: black; /* Retain black background */
      position: absolute;
      top: 50%; /* Adjust vertical positioning */
      transform: translateY(-50%); /* Center vertically */
      z-index: 10;
      cursor: pointer;
  }

  .navigation-arrow.left-arrow {
      left: 5px; /* Adjust left position */
  }

  .navigation-arrow.right-arrow {
      right: 5px; /* Adjust right position */
  }

  .navigation-arrow .arrow {
      color: white; /* Retain white arrow color */
      font-size: 16px; /* Adjust arrow size */
  }

  .pagination-bubbles {
      margin-top: 20px; /* Add spacing */
  }

  .pagination-bubbles .bubble {
      width: 8px; /* Adjust bubble size */
      height: 8px;
  }
}



@media (max-width: 768px) {
  .equipment-cards-container {
      padding: 10px; /* Reduce padding */
      width: 100%; /* Full width for the container */
      overflow-x: scroll; /* Allow horizontal scrolling */
      overflow-y: hidden; /* Disable vertical scrolling */
      scroll-snap-type: x mandatory; /* Enable snapping horizontally */
      -webkit-overflow-scrolling: touch; /* Smooth scrolling on touch devices */
  }

  .equipment-slider {
      display: flex; /* Horizontal flex layout */
      flex-wrap: nowrap; /* Prevent wrapping */
      width: 100%; /* Full width for the slider */
  }

  .equipment-slide {
      flex: 0 0 100%; /* Each slide takes up full width of the viewport */
      display: flex; /* Flex container for slide content */
      flex-direction: column; /* Stack content vertically */
      align-items: center; /* Center align items */
      justify-content: center; /* Center align content */
      scroll-snap-align: center; /* Snap to center of the viewport */
      padding: 10px; /* Adjust padding for smaller screens */
  }

  .slide-left {
      width: 100%; /* Full width for image container */
      margin-bottom: 15px; /* Add spacing below image */
      text-align: center; /* Center align image */
  }

  .slide-left img {
      max-width: 80%; /* Adjust image size */
      height: auto; /* Maintain aspect ratio */
  }

  .slide-right {
      width: 100%; /* Full width for text content */
  }

  .slide-right table {
      font-size: 14px; /* Adjust table font size */
      width: 100%; /* Ensure full width */
  }

  .slide-right table tr td {
      padding: 6px 10px; /* Adjust cell padding */
  }

  /* Equipment Text Styling */
  .equipment-text .promise-text {
      font-size: 12px; /* Reduce font size for promise text */
      margin-bottom: 10px; /* Adjust spacing */
  }

  .equipment-text .popular-heading {
      font-size: 26px; /* Reduce font size for the popular heading */
      margin: 5px 0 20px; /* Adjust margin for spacing */
  }

  /* Pagination Bubbles */
  .pagination-bubbles {
      margin-top: 20px; /* Add spacing above bubbles */
  }

  .pagination-bubbles .bubble {
      width: 8px; /* Adjust bubble size */
      height: 8px;
  }

  /* Navigation Arrows */
  .navigation-arrow {
      width: 30px; /* Adjust arrow size */
      height: 30px;
      background: black; /* Retain black background */
      position: absolute;
      top: 50%; /* Center vertically */
      transform: translateY(-50%); /* Align to center */
      z-index: 10; /* Ensure above other elements */
      cursor: pointer;
  }

  .navigation-arrow.left-arrow {
      left: 10px; /* Adjust left position */
  }

  .navigation-arrow.right-arrow {
      right: 10px; /* Adjust right position */
  }

  .navigation-arrow .arrow {
      color: white; /* Retain arrow color */
      font-size: 16px; /* Adjust arrow font size */
  }

  /* Comments Section Styling */
  .comments {
      padding: 10px; /* Adjust padding inside comments */
      font-size: 12px; /* Adjust font size */
  }

  .comment-heading {
      font-size: 12px; /* Adjust font size for heading */
  }

  .comment-text {
      font-size: 10px; /* Adjust font size for comments */
  }
}



@media (max-width: 1024px) {
  .equipment-cards-container {
      padding: 20px; /* Reduce padding */
      width: 100%; /* Reduce overall width */
      margin: 0 auto; /* Center the container */
  }

  .equipment-slide {
      padding: 10px; /* Reduce padding around each slide */
  }

  .slide-left img {
      max-width: 250px; /* Decrease the size of images */
  }

  .slide-right table {
      font-size: 14px; /* Decrease the font size for the table */
  }

  .pagination-bubbles .bubble {
      width: 8px; /* Decrease bubble size */
      height: 8px;
  }

  .navigation-arrow {
      width: 30px; /* Decrease arrow size */
      height: 30px;
  }

  .navigation-arrow .arrow {
      font-size: 14px; /* Decrease arrow font size */
  }

  /* Equipment Text Styling */
  .equipment-text .promise-text {
      font-size: 12px; /* Reduce font size for promise text */
      margin-bottom: 10px; /* Add some spacing */
  }

  .equipment-text .popular-heading {
      font-size: 28px; /* Reduce font size for the popular heading */
      margin: 5px 0 20px; /* Adjust margin for better spacing */
  }
}


/* Media Queries for Large Laptop Screens */
@media (min-width: 1600px) {
  .equipment-cards-container {
      padding: 20px; /* Reduce padding */
      width: 100%; /* Reduce overall width */
      margin: 0 auto; /* Center the container */
  }
  .equipment-section {
      padding: 60px 40px; /* Increase padding */
  }

  .equipment-text .promise-text {
      font-size: 18px; /* Increase font size */
  }

  .equipment-text .popular-heading {
      font-size: 50px; /* Increase font size */
  }

  .equipment-cards-container {
      padding: 40px; /* Add more space around cards */
  }

  .equipment-slide {
      padding: 30px; /* Increase padding */
  }

  .slide-left img {
      max-width: 500px; /* Increase max-width for images */
  }

  .slide-right table {
      font-size: 20px; /* Decrease the font size for the table */
  }

  .slide-right table tr td {
      padding: 6px 10px; /* Adjust padding for smaller table cells */
  }

  /* Increase sizes of the bubbles and navigation arrows */
  .pagination-bubbles .bubble {
      width: 14px;
      height: 14px;
  }

  .pagination-bubbles .bubble.active {
      width: 16px;
      height: 16px;
  }

  .navigation-arrow {
      width: 50px;
      height: 50px;
  }

  .navigation-arrow .arrow {
      font-size: 24px;
  }
}

@media (min-width: 1920px) {
  .equipment-cards-container {
      padding: 20px; /* Reduce padding */
      width: 100%; /* Reduce overall width */
      margin: 0 auto; /* Center the container */
  }

  .equipment-section {
      padding: 70px 50px; /* Further increase padding */
  }

  .equipment-text .promise-text {
      font-size: 20px; /* Further increase font size */
  }

  .equipment-text .popular-heading {
      font-size: 55px; /* Further increase font size */
  }

  .equipment-cards-container {
      padding: 50px; /* Add more space around cards */
  }

  .equipment-slide {
      padding: 40px; /* Increase padding */
  }

  .slide-left img {
      max-width: 600px; /* Increase max-width for images */
  }

  .slide-right table {
      font-size: 24px; /* Decrease the font size for the table */
  }

  .slide-right table tr td {
      padding: 10px 14px; /* Adjust padding for smaller table cells */
  }

  /* Increase sizes of the bubbles and navigation arrows */
  .pagination-bubbles .bubble {
      width: 16px;
      height: 16px;
  }

  .pagination-bubbles .bubble.active {
      width: 18px;
      height: 18px;
  }

  .navigation-arrow {
      width: 60px;
      height: 60px;
  }

  .navigation-arrow .arrow {
      font-size: 28px;
  }
}

@media (min-width: 2000px) {
  .equipment-cards-container {
      padding: 20px; /* Reduce padding */
      width: 100%; /* Reduce overall width */
      margin: 0 auto; /* Center the container */
  }

  .equipment-section {
      padding: 75px 55px; /* Further increase padding */
  }

  .equipment-text .promise-text {
      font-size: 22px; /* Further increase font size */
  }

  .equipment-text .popular-heading {
      font-size: 60px; /* Further increase font size */
  }

  .equipment-cards-container {
      padding: 60px; /* Add more space around cards */
  }

  .equipment-slide {
      padding: 50px; /* Increase padding */
  }

  .slide-left img {
      max-width: 700px; /* Increase max-width for images */
  }

  .slide-right table {
      font-size: 26px; /* Decrease the font size for the table */
  }

  .slide-right table tr td {
      padding: 10px 14px; /* Adjust padding for smaller table cells */
  }

  /* Increase sizes of the bubbles and navigation arrows */
  .pagination-bubbles .bubble {
      width: 18px;
      height: 18px;
  }

  .pagination-bubbles .bubble.active {
      width: 20px;
      height: 20px;
  }

  .navigation-arrow {
      width: 70px;
      height: 70px;
  }

  .navigation-arrow .arrow {
      font-size: 32px;
  }
}

@media (min-width: 2160px) {
  .equipment-cards-container {
      padding: 20px; /* Reduce padding */
      width: 100%; /* Reduce overall width */
      margin: 0 auto; /* Center the container */
  }

  .equipment-section {
      padding: 80px 60px; /* Further increase padding */
  }

  .equipment-text .promise-text {
      font-size: 24px; /* Further increase font size */
  }

  .equipment-text .popular-heading {
      font-size: 65px; /* Further increase font size */
  }

  .equipment-cards-container {
      padding: 70px; /* Add more space around cards */
  }

  .equipment-slide {
      padding: 60px; /* Increase padding */
  }

  .slide-left img {
      max-width: 800px; /* Increase max-width for images */
  }

  .slide-right table {
      font-size: 30px; /* Decrease the font size for the table */
  }

  .slide-right table tr td {
      padding: 12px 16px; /* Adjust padding for smaller table cells */
  }
  /* Increase sizes of the bubbles and navigation arrows */
  .pagination-bubbles .bubble {
      width: 20px;
      height: 20px;
  }

  .pagination-bubbles .bubble.active {
      width: 22px;
      height: 22px;
  }

  .navigation-arrow {
      width: 80px;
      height: 80px;
  }

  .navigation-arrow .arrow {
      font-size: 36px;
  }
}

@media (min-width: 2560px) {
  .equipment-section {
      padding: 100px 80px; /* Further increase padding */
  }

  .equipment-text .promise-text {
      font-size: 26px; /* Further increase font size */
  }

  .equipment-text .popular-heading {
      font-size: 70px; /* Further increase font size */
  }

  .equipment-cards-container {
      padding: 80px; /* Add more space around cards */
  }

  .equipment-slide {
      padding: 70px; /* Increase padding */
  }

  .slide-left img {
      max-width: 900px; /* Increase max-width for images */
  }

  .slide-right table {
      font-size: 34px; /* Decrease the font size for the table */
  }

  .slide-right table tr td {
      padding: 16px 20px; /* Adjust padding for smaller table cells */
  }

  /* Increase sizes of the bubbles and navigation arrows */
  .pagination-bubbles .bubble {
      width: 22px;
      height: 22px;
  }

  .pagination-bubbles .bubble.active {
      width: 24px;
      height: 24px;
  }

  .navigation-arrow {
      width: 90px;
      height: 90px;
  }

  .navigation-arrow .arrow {
      font-size: 40px;
  }
}

/*listing equipments section style ends*/




/*Listing stylings*/
.listing-section{
  width: 100%;
  height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid #ccc;
  background-color: #f4f4f4;
}
.eq-text {
  color: black;
  font-size: 24px;
  margin: 5px 0 30px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}



.slide-container{
max-width: 3000px;
width: 95%;

}
.slide-content{
margin: 0 40px;
overflow: hidden;

}


.card{
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Distribute space */
  align-items: center;
  padding: 10px; /* Added padding for spacing */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
 
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Vertically centers content */
  padding: 5px; /* Adjusted padding */
}

.card-content h2 {
  margin: 5px 0 5px 0; /* Reduce unwanted heading margins */
}

.card-content p {
  margin: 5px 0; /* Adjust paragraph margins */
}

/* Table Styling */
.details-table {
  width: 100%; /* Full width of the card */
  border-collapse: collapse; /* Remove gaps between borders */
  margin: 4px 0; /* Add spacing around the table */
}

.details-table th,
.details-table td {
  
  padding: 8px; /* Add padding inside cells */
  text-align:start; /* Center align the text */
  font-size: 14px;
}

.details-table th {
 font-size:20px;
  font-weight: bold;
  color: blue;
}

.details-table td {
  color: #000; /* Text color for table data */
  font-weight: bold;
}

.image-content{
display: flex;
flex-direction: column;
align-items: center;
padding: 10px 14px;
}
.image-content{
position: relative;
row-gap: 5px;

}

.card-image{
  height: 200px; /* Fixed height */
  width: 200px; /* Fixed width */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Hide overflow */

}
.card-image .card-img{
  width: 100%;
  height: auto;
  object-fit: contain; /* Fill the image without distortion */
  border-radius: 8px;

}
.name {
  display: inline-block; /* Ensure it behaves like a button */
  background-color: black; /* Button background color */
  color: white; /* Text color */
  padding: 6px 60px; /* Button padding for height and width */
  border-radius: 2px; /* Rounded corners */
  font-size: 16px; /* Adjust font size */
  font-weight:400; /* Make the text bold */
  text-align: center; /* Center the text */
  border: 2px solid black; /* Optional: Border for emphasis */
  margin: 10px 0; /* Space above and below the name */
  cursor: default; /* No pointer effect, as it's not clickable */
}

.description{
font-size: 14px;
color: #707070;
text-align: center;
}
.button{
  border: none;
  font-size: 16px;
  color: #000;
  padding: 6px 60px; /* Reduce padding for a cleaner button */
  background-color: #FFF;
  border:2px solid #000;
  border-radius: 3px;
  margin-top: 10px; /* Reduced margin */
  margin-bottom: 10px; /* Prevent extra space */
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: center; /* Center button horizontally */
  text-transform:uppercase;
  font-weight: bold;
}

.button:hover {
color: #FFF; /* Text color changes to white */
background-color: #000; /* Button background changes to black */
border-color: #000; /* Keep border consistent */
}


/* General styles for navigation buttons */
.swiper-button-next,
.swiper-button-prev {
width: 40px;
height: 40px;
background-color: black; /* Black circular background */
border-radius: 50%; /* Make the buttons circular */
display: flex;
align-items: center;
justify-content: center;
position: absolute;
z-index: 10; /* Ensure buttons are above other elements */
cursor: pointer;
transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Hover effect */
.swiper-button-next:hover,
.swiper-button-prev:hover {
background-color: rgba(0, 0, 0, 0.8); /* Slightly lighter black */
transform: scale(1.1); /* Slight zoom effect */
}

/* Custom arrow content */
.swiper-button-next::before,
.swiper-button-prev::before {
font-family: Arial, sans-serif; /* Optional: Set a clear font for arrows */
font-size: 18px; /* Adjust arrow size */
color: white; /* Arrow color */
content: ''; /* Reset content initially */
}

/* Right arrow (next button) */
.swiper-button-next::before {
content: '\276F'; /* Unicode for right-pointing arrow (or &#10095;) */
}

/* Left arrow (previous button) */
.swiper-button-prev::before {
content: '\276E'; /* Unicode for left-pointing arrow (or &#10094;) */
}

/* Remove default Swiper arrow content */
.swiper-button-next::after,
.swiper-button-prev::after {
content: none !important; /* Completely hide default Swiper arrow */
}

/* Position adjustments */
.swiper-button-next {
right: 15px; /* Adjust right positioning */
}

.swiper-button-prev {
left: 15px; /* Adjust left positioning */
}

.swiper-pagination{
margin-bottom: 10px;
padding-bottom: 10px;
}
.swiper-pagination-bullet{
background: color #8b8080 !important;
opacity: 1;
}
.swiper-pagination-bullet-active{
background-color: #000 !important;
}


/* Mobile View: Screens below 768px */
@media screen and (max-width: 768px) {
.listing-section{
  height: auto;
}
/* Remove extra space around the slide container */
.slide-container {
  margin: 0;
  padding: 0;
  height: auto; /* Ensure no extra space at the top or bottom */
}

/* Remove space inside the slide-content */
.slide-content {
  margin: 0 5px; /* Smaller margin for mobile */
  padding: 0; /* Ensure no padding inside the content */
}

/* Hide the navigation buttons */
.swiper-navBtn {
  display: none;
}

/* Adjust Swiper Navigation Button Size and Color */
.swiper-button-next,
.swiper-button-prev {
  color: #000 !important; /* Force the color to black */
  font-size: 10px !important; /* Force smaller font size */
}

.swiper-button-next {
  right: 3px !important; /* Adjust position */
}

.swiper-button-prev {
  left: 3px !important; /* Adjust position */
}

/* Reduce Card Size */
.card {
  height: 400px !important; 
  /* Shorter card height */
  padding: 5px; 
  /* Less padding inside card */
}

.card-image {
  height: 150px; /* Reduce image container height */
  width: 150px; /* Reduce image container width */
}

.card-image .card-img {
  width: 100%; /* Adjust image width */
  height: auto; /* Maintain aspect ratio */
}

.card-content {
  padding: 3px; /* Reduce padding */
}

.card-content h2.name {
  font-size: 14px; /* Reduce heading size */
  padding: 5px 30px; /* Adjust padding */
}

.details-table th,
.details-table td {
  padding: 5px; /* Reduce table cell padding */
  font-size: 12px; /* Reduce font size */
}

.button {
  font-size: 14px; /* Reduce button text size */
  padding: 5px 30px; /* Adjust button padding */
  margin: 5px 0; /* Reduce margin */
}
}

/* Very Small Devices: Screens below 480px */
@media screen and (max-width: 480px) {
/* Further Reduce Swiper Navigation Buttons */
.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 10px; /* Further reduce arrow size */
}

.swiper-button-next {
  right: 2px; /* Adjust position */
}

.swiper-button-prev {
  left: 2px; /* Adjust position */
}


.card-image {
  height: 120px; /* Smaller image container */
  width: 120px;
}

.card-content h2.name {
  font-size: 12px; /* Smaller heading */
  padding: 5px 20px;
}

.details-table th,
.details-table td {
  font-size: 10px; /* Smaller table text */
  padding: 3px; /* Compact padding */
}

.button {
  font-size: 12px; /* Smaller button text */
  padding: 4px 20px; /* Compact button padding */
}

.eq-text {
  font-size: 18px; /* Reduce section title size */
}
}


/* Larger screens: 1440px and above */
@media screen and (min-width: 1440px) {

/* Increase eq-text font size */
.eq-text {
  font-size: 30px; /* Increase font size */
  margin-top: 40px;
}

/* Increase card-content h2 font size */
.card-content h2 {
  font-size: 24px; /* Larger heading size */
  padding: 10px 30px; /* Adjust padding for better appearance */
}

/* Increase font size for table elements */
.details-table th,
.details-table td {
  font-size: 20px; /* Increase font size for table headers and data */
  padding: 8px; /* Add more padding inside the table cells */
}

/* Increase button size */
.button {
  font-size: 20px; /* Increase button text size */
  padding: 10px 80px; /* Increase padding for larger buttons */
}

/* Increase the font size for name in card-content */
.card-content h2.name {
  font-size: 20px; /* Larger font size for name */
  padding: 10px 50px; /* Adjust padding */
}

}

/* Ultra-large screens: 4k screens (2560px and above) */
@media screen and (min-width: 2560px) {
.listing-section{
  height: auto;
}
.card{
  margin-bottom: 40px;
  height: 600px;
}
.swiper-pagination{
  margin-top: 80px;
  
}

.slide-container .swiper{
  margin-bottom: 10px;
  padding: 20px;
}

.card-image .card-img {
  width: 100%; /* Adjust image width */
  height: auto; /* Maintain aspect ratio */
}

/* Increase card-content h2 font size */
.card-content h2 {
  font-size: 38px; /* Larger heading size for 4k screens */
}

/* Increase font size for table elements */
.details-table th,
.details-table td {
  font-size: 26px; /* Larger font size for table headers and data */
  padding: 10px; /* More padding for better spacing */
}

/* Increase button size */
.button {
  font-size: 24px; /* Larger button text size */
  padding: 5px 30px; /* Increase button padding for better look */
}
}



/*listing style ends*/

/*about style starts*/
.overlay-section {
    position: relative;
    background-image: url(./assets/img/bg/bg_stats.jpg); /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    height: 250px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: justify;
    background-attachment: fixed;
  }

  .overlay-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Black transparent overlay */
    z-index: 1;
  }

  .flex-container {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    width: 90%;
    z-index: 2;
    height: 100%;
  }

  .flex-box {
    text-align: center;
    justify-content: left;
    padding: 10px;
    width: 22%; /* Adjust width for spacing */
    display: flex;
    flex-direction: column;
    justify-content: center; 
  }

  .flex-box .contents {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Ensure all text elements are aligned to the left */
}

  .flex-box .title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #FFE204;
    margin-bottom: 10px;
    text-align: -webkit-left;
    white-space:nowrap;
  }

  .flex-box .title img {
    width: 30px; /* Icon size */
    height: 30px;
    margin-left: 8px;
  }

  .flex-box .text-medium-container {
    display: flex;
    width: 100%;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    height:40px;
}

  .flex-box .text-medium {
    font-size: 15px;
    color: silver;
    margin-bottom: 8px;
    text-align: -webkit-left;
  }

  .flex-box .text-small {
    font-size: 12px;
    color: silver;
    text-align: -webkit-left;
    height:30px;
  }


  @media screen and (max-width: 1024px) {
    .overlay-section {
        height: auto; /* Adjust height for smaller laptop screens */
        padding: 20px 0; /* Add some padding for spacing */
    }

    .flex-container {
        flex-wrap: wrap; /* Allow items to wrap if necessary */
        height: auto; /* Ensure it adjusts dynamically */
    }

    .flex-box {
        width: 45%; /* Allow two boxes per row on smaller screens */
        margin-bottom: 20px; /* Add spacing between boxes */
    }
}

  /* For screens smaller than 768px (tablet and mobile view) */
/* For screens smaller than 768px (tablet and mobile view) */
@media screen and (max-width: 768px) {
  .overlay-section {
    height: auto; /* Adjust height dynamically */
    padding: 20px 25px; /* Add vertical padding */
  }

  .flex-container {
    flex-direction: column; /* Stack vertically */
    align-items: flex-start; /* Align items to the left */
    width: 100%; /* Ensure full width */
    
  }

  .flex-box {
    width: 100%; /* Full width */
    margin-bottom: 20px; /* Add spacing between boxes */
    padding: 8px; /* Reduce padding */
    text-align: left; /* Align text content to the left */
  }

  .flex-box .title {
    font-size: 18px; /* Reduce title font size */
    justify-content: flex-start; /* Align title elements to the left */
  }

  .flex-box .title img {
    width: 20px; /* Reduce icon size */
    height: 20px;
    margin-left: 8px; /* Add small spacing for icon */
  }

  .flex-box .text-medium {
    font-size: 13px; /* Reduce medium text size */
    margin-bottom: 6px; /* Slightly reduce spacing */
  }

  .flex-box .text-small {
    font-size: 11px; /* Reduce small text size */
  }
}

/* For very small screens smaller than 480px */
@media screen and (max-width: 480px) {
  .overlay-section {
    height: auto; /* Adjust height dynamically */
    padding: 20px 15px; /* Add vertical padding */
  }

  .flex-box {
    width: 100%; /* Take up full width */
    padding-left: 10px; /* Adjust left padding for better alignment */
    padding-right: 10px; /* Avoid overflow */
  }

  .flex-box .title {
    font-size: 16px; /* Reduce title font size further */
    justify-content: flex-start; /* Align title elements to the left */
  }

  .flex-box .title img {
    width: 18px; /* Reduce icon size */
    height: 18px;
  }

  .flex-box .text-medium {
    font-size: 12px; /* Smaller text for small screens */
  }

  .flex-box .text-small {
    font-size: 10px; /* Smallest readable text */
  }
}

/* For larger screens (1440px and 4k screens) */
@media screen and (min-width: 1440px) {

  /* Increase overlay section height and padding for larger screens */
  .overlay-section {
    height: 350px; /* Increased height */
    padding: 40px 0; /* More padding for spacing */
  }

  /* Flex container adjustments for larger screens */
  .flex-container {
    width: 80%; /* Make the container wider */
    justify-content: space-around; /* More even distribution of flex items */
  }

  /* Adjust flex-box for larger screens */
  .flex-box {
    width: 20%; /* Narrower width for more spacing between boxes */
    padding: 15px; /* More padding */
  }

  /* Title adjustments */
  .flex-box .title {
    font-size: 30px; /* Increase font size for the title */
  }

  .flex-box .title img {
    width: 35px; /* Increase icon size */
    height: 35px;
    margin-left: 10px; /* Increase space between icon and text */
  }

  /* Medium text size adjustments */
  .flex-box .text-medium {
    font-size: 20px; /* Larger text */
  }

  /* Small text size adjustments */
  .flex-box .text-small {
    font-size: 14px; /* Increase small text */
  }
}

/* For ultra-large screens (4k screens) */
@media screen and (min-width: 2560px) {

  /* Further increase overlay section height and padding for ultra-large screens */
  .overlay-section {
    height: 400px; /* Even larger height */
    padding: 50px 0; /* More padding */
  }

  /* Flex container adjustments for ultra-large screens */
  .flex-container {
    width: 85%; /* Slightly more compact container */
  }

  /* Adjust flex-box for ultra-large screens */
  .flex-box {
    width: 18%; /* Further narrow the width of each box */
    padding: 20px; /* Add more padding */
  }

  /* Title adjustments */
  .flex-box .title {
    font-size: 32px; /* Larger font size for the title */
  }

  .flex-box .title img {
    width: 40px; /* Larger icon size */
    height: 40px;
    margin-left: 12px; /* More space between icon and text */
  }

  /* Medium text size adjustments */
  .flex-box .text-medium {
    font-size: 20px; /* Larger text */
  }

  /* Small text size adjustments */
  .flex-box .text-small {
    font-size: 16px; /* Larger small text */
  }
}


  /*about section style ends*/

  /*about section1 style starts*/

 /* Main Container with Background Image */
/* Reset defaults for html and body */


.background-section {
  width: 100%;
  
  background-image: url(./assets/img/banner2.jpg);
  background-size: cover; /* Ensures no white space */
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

/* @media (min-width:1600px) and (max-width:1879px){
  .background-section {
    width: 100%;
    height: 650px ; 
    background-image: url(./assets/img/banner2.jpg);
    background-size: 100% auto !important; 
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
} */
/* 
@media (min-width:1440px) and (max-width:1599px){
  .background-section {
    width: 100%;
    height: 580px !important; 
    background-image: url(./assets/img/banner2.jpg);
    background-size: 100% auto !important; 
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
} */

/* Flex Container */
.flex-container {
    display: flex;
    width: 96vw;
    /* max-width: 1300px; */
    justify-content: space-between;
    gap: 30px;
    align-items: center; /* Align center vertically */
    height: 100%;
    box-sizing: border-box;/* Matches the height of the container */
}

/* Image Flex Box */
.image-box {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex: 1;
    position: relative;
}

.image-box img {
    width: 70%;
    height: auto;
    object-fit: contain;
    box-shadow: 8px 8px 15px rgba(255, 255, 255, 0.3); /* Shadow on right and bottom */
    background-color: transparent; /* Ensures the image background doesn't interfere */
}

/* Content Flex Box */
.content-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2px;
    text-align: justify;
}

/* Text Styling */
.content-box h4.highlight-title {
    color: yellow;
    font-size: 1.5rem;
    margin: 4px 0;
}

.content-box h3.highlight-content {
    color:white;
    font-size: 1.2rem;
    margin: 2px 0;
}

.content-box h3 {
    color: white;
    font-size: 1.2rem;
    margin: 10px 0;
}

.content-box p {
    color: silver;
    font-size: 0.8rem;
    margin: 2px 0;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
  /* Ensure the background image fits properly */
  .background-section {
      height: auto; /* Dynamic height on smaller screens */
      padding: 20px 25px;  /* Add vertical padding */
      background-size: cover; /* Maintain the aspect ratio */
  }

  /* Flex Container for mobile: stack the boxes vertically */
  .flex-container {
      flex-direction: column; /* Stack the items vertically */
      justify-content: center; /* Center items vertically */
      gap: 20px; /* Add spacing between the sections */
      width: 100%;
      margin-left: 5px;
  }

  /* Image Box (Mobile) */
  .image-box {
      display: flex;
      justify-content: center; /* Center the image horizontally */
      align-items: center; /* Center the image vertically */
      width: 100%;
      flex: 1; /* Take full width */
  }

  .image-box img {
      width: 80%; /* Adjust image size for mobile */
      height: auto;
      object-fit: contain;
  }

  /* Content Box (Mobile) */
  .content-box {
      flex: 1;
      width: 100%; /* Take full width */
      align-items: flex-start; /* Align text to the left */
  }

  /* Adjust the title and content text sizes for mobile */
  .content-box h4.highlight-title {
      font-size: 1.5rem; /* Smaller title size */
      margin: 8px 0;
  }

  .content-box h3.highlight-content {
      font-size: 1.1rem; /* Smaller subtitle size */
      margin: 4px 0;
  }

  .content-box h3 {
      font-size: 1.1rem; /* Smaller heading size */
      margin: 8px 0;
  }

  .content-box p {
      font-size: 0.9rem; /* Smaller paragraph size */
      margin: 5px 0;
  }
}

@media screen and (max-width: 480px) {
  .content-box h4.highlight-title {
      font-size: 1.2rem; /* Further reduce title size */
      margin: 6px 0;
  }

  .content-box h3.highlight-content {
      font-size: 1.1rem; /* Further reduce subtitle size */
      margin: 4px 0;
  }

  .content-box h3 {
      font-size: 1rem; /* Further reduce heading size */
      margin: 6px 0;
  }

  .content-box p {
      font-size: 0.8rem; /* Further reduce paragraph size */
      margin: 4px 0;
  }
}

/* For 4K Screens */
@media screen and (min-width: 2560px) {
  .background-section {
      height: 800px !important; /* Maintain the fixed height */
      overflow: hidden; /* Prevent content from increasing height */
  }

  .flex-container {
      gap: 120px; /* Slightly increase gap for better spacing on large screens */
  }

  .content-box, .image-box {
      height: auto; /* Allow content to adjust within fixed container height */
      flex: 1;
  }

  .content-box h4.highlight-title {
    font-size: 3rem; /* Increase title size for 4K */
    margin: 15px 0; /* Adjust margin for better spacing */
}

.content-box h3.highlight-content {
    font-size: 2rem; /* Increase subtitle size for 4K */
    margin: 10px 0; /* Adjust margin for better spacing */
}

.content-box h3 {
    font-size: 1.2rem; /* Increase heading size for 4K */
    margin: 12px 0; /* Adjust margin for better spacing */
}

.content-box p {
    font-size: 1.5rem; /* Increase paragraph size for 4K */
    line-height: 2rem; /* Add spacing between lines for readability */
    margin: 10px 0; /* Adjust margin for better spacing */
}

  .image-box img {
      max-height: 80%; /* Ensure images don't exceed the parent height */
      width: auto;
  }
}

@media (width: 820px) {
  .content-box {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      /* gap: 2px; */
      text-align: justify;
  }
}



  /*about section1 style ends*/

 


/*flexbox section style staarts*/
.flexbox-section {
    display: flex;
    border: 2px solid #ccc; /* Border around the entire flexbox */
    border-radius: 10px; /* Rounded corners for the entire flexbox */
    overflow: hidden; /* Ensures the content stays within the border radius */
    margin: 20px auto;
    width: 70% !important; /* Adjust width as needed */
    max-width: 3000px; /* Maximum width */
    height: 350px; /* Adjust the height as needed */
}

.left-column {
    flex: 1; 
    /* Occupies 50% of the space */
    background-color: #f0f0f0; /* Fallback background color if image doesn't load */
}

.left-column img {
    width: 100%;
    height: 100%;
    object-fit: fill; 
    /* Ensures the image fills the column */
}

.right-column {
    flex: 1; /* Occupies the other 50% */
    display: flex;
    flex-direction: column; /* Arranges items vertically */
    justify-content:center; /* Centers content vertically */
    align-items: flex-start; /* Aligns content to the left */
    padding: 0 20px;
    background-color:#FBFAFA; /* Background color for the right column */
    height: 100%; /* Ensures it fills the flexbox height */
    box-sizing: border-box;
}

.right-column h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333; /* Title text color */
    text-transform: capitalize;
    font-weight: bold;
}



.right-column p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #000; /* Paragraph text color */
    line-height: 1.6;
}

.rounded-button {
    align-self:flex-start;
    background-color: #000; /* Button background color */
    color: #fff; /* Button text color */
    padding: 10px 40px;
    border: none;
    border-radius: 5px; /* Fully rounded corners */
    cursor: pointer;
    font-size: 25px;
    transition: background-color 0.3s ease;
}

.rounded-button:hover {
    background-color: #333; /* Darker shade on hover */
}


/* Mobile Responsiveness */
@media screen and (max-width: 768px) {

  /* Stack the columns vertically in mobile view */
  .flexbox-section {
      flex-direction: column;
      height: auto; /* Allow height to adjust for content */
      width:55% !important;
  }

  .left-column,
  .right-column {
      flex: none;
      width: 100%; /* Ensure both columns take full width */
  }

  /* Adjust the size of the image */
  .left-column img {
      height: auto; /* Adjust image height for mobile */
      object-fit: fill; 
      /* Ensure image is resized correctly */
  }

  /* Right column adjustments */
  .right-column {
      padding: 15px; /* Reduce padding for mobile */
  }

  .right-column h3 {
      font-size: 18px; /* Reduce font size */
      margin-bottom: 8px;
  }

  .right-column p {
      font-size: 14px; /* Reduce font size */
      margin-bottom: 15px;
  }

  .rounded-button {
      font-size: 18px; /* Reduce button font size */
      padding: 8px 55px; /* Adjust padding */
      width: auto; /* Allow button to adjust width */
  }
}

/* Smaller Mobile Responsiveness */
@media screen and (max-width: 480px) {

  .right-column h3 {
      font-size: 16px; /* Further reduce font size */
      margin-bottom: 5px;
  }

  .right-column p {
      font-size: 12px; /* Further reduce font size */
      margin-bottom: 10px;
  }

  .rounded-button {
      font-size: 14px; /* Further reduce font size */
      padding: 6px 40px; /* Adjust padding */
  }
}

/* For Laptop Larger Screens (1440px) */
@media screen and (min-width: 1440px) {
  .flexbox-section {
      height: 450px; /* Increase height for larger screens */
  }

  .right-column h3 {
      font-size: 30px; /* Increase font size for titles */
  }

  .right-column p {
      font-size: 18px; /* Increase font size for paragraphs */
      line-height: 1.8; /* Improve readability */
  }

  .rounded-button {
      font-size: 22px; /* Increase button font size */
      padding: 12px 75px; /* Adjust padding */
  }
}

/* For 4K Screens (2560px and above) */
@media screen and (min-width: 2560px) {
  .flexbox-section {
      height: 600px; /* Further increase height for 4K screens */
  }

  .right-column h3 {
      font-size: 38px; /* Larger titles for 4K */
  }

  .right-column p {
      font-size: 28px; /* Larger paragraph font size for 4K */
      line-height: 2; /* Improve spacing between lines */
  }

  .rounded-button {
      font-size: 30px; /* Larger button font size for 4K */
      padding: 15px 85px; /* Adjust padding for buttons */
  }

  .left-column img {
      /* object-fit: cover; */
      height: 110%; /* Ensure the image fills the column */
  }
}

/*flexbox style ends*/

/*testimonial starts*/
.testimonials {
  height: auto;
  text-align: center;
  padding: 10px;
}

.testimonials h5 {
  font-size: 16px;
  color: #999;
}

.testimonials h1 {
  font-size: 34px;
  margin: 0;
}


.underline {
  width: 170px;  /* Adjust the width of the line */
  height: 8px;
  background: #f8c400;
  margin: 10px auto 20px;  /* Centers the line horizontally */
  border-radius: 50px;
}

.carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 60px; /* Adds space between heading and carousel */
}


.testimonials h4 {
  font-size: 14px;
  font-weight: bold;
  padding-left: 40px; /* Adding some space between icon and text */
  margin-top: 25px;
  margin-bottom: 20px;
}


.profile .info h5{
  color: #000;
}


.info {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stars-container {
  width: 100%;  /* Make it span full width */
  display: flex;
  justify-content: center;  /* Center the stars */
  margin-top: 10px; /* Adjust spacing */
}


.stars {
  color: #f0bd0683;
  margin-top: 1px;
  font-size: 2em;
  gap:4px;
  /* width: -webkit-fill-available; */
}

button {
  border: none;
  background: #000;
  /*color: #fff;*/
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
}

button:hover {
  background: #444;
}
/* Style for the profile image */

/* Style for the dots */
.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #bbb;
  cursor: pointer;
}

.dot.active {
  background-color: #060606;  /* Active dot color */
}

.dot:hover {
  background-color: #070707;
}
  
/* Adjust the layout of the testimonial */
.testimonial {
  position: relative;          /* Set relative positioning to allow absolute positioning of the icon */
  width: 350px;    
  height: 400px;            /* Optional width for the testimonial */
  padding: 20px;
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.1);
  background: #fff;
  gap:20px;
  flex: 0 0 30.5%; /* Each card takes up 30% of the width of the carousel wrapper */
scroll-snap-align: start; /* Snap each card into view */
margin:20px;
}


/* Profile image */
.profile-img {
  width: 50px;                /* Profile image width */
  height: 50px;               /* Profile image height */
  
  object-fit: cover;  
  top:5px;  /* Ensure image scaling */
  margin-left: 20px;
}


/* Icon with image inside */
.icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background: #f8c400;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 10000px;
  border-bottom-left-radius: 50px;
  display: flex;
  justify-content: center; /* Center the image horizontally */
  align-items: center;     /* Center the image vertically */
}

/* Style for the image inside the icon */
.icon-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  /* Move the image to the right and top */
  margin-top: -5px; /* Move the image 5px down */
  margin-left: -25px; /* Move the image 5px to the right */
}

/* Left-side strip with half yellow and half black */
.testimonial::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;  /* Width of the strip */
  height: 20%;
  margin-top: 300px;  /* Full height of the testimonial box */
  background: linear-gradient(to bottom, #000 50%, #f8c400 50%);  /* Yellow to black gradient */
}

/* Top right strip with half yellow and half black */
.testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 20px;
  width: 5px;  /* Width of the strip */
  height: 20%;  /* Full height of the testimonial box */
  background: linear-gradient(to bottom,#000 50%, #f8c400 50%);  /* Yellow to black gradient */
}
/* Paragraph style */
.testimonials p {
  font-size: 14px;
  margin: 10px 0 20px 0; /* Adjusted the bottom margin to add space */
  padding-left: 10px; /* Keeping space between icon and paragraph text */
  text-align: justify;
  line-height: 1.5;
}



/* Info section with the name, manager, and stars */
.info {
  display: flex;
  flex-direction: column; /* Stacks name, manager, and stars vertically */
  justify-content: flex-start;  /* Align items at the top */
}







/* Profile name styling */
.testimonials.info h5 {
  margin: 0;   
  margin-top: 30px;           /* Remove any margin */
  font-size: 1.2em;       /* Font size for the name */
  font-weight: bold;      /* Make the name bold */
}

/* Profile role (Manager) styling */
.testimonials.info p {
  margin: 5px 0;          /* Space between name and role */
  color: #999;            /* Color for the role */
  font-size: 0.9em;       /* Font size for the role */
}
.carousel-wrapper{
  display: flex;
overflow: hidden; /* Hide extra cards */
width: 90%;
scroll-snap-type: x mandatory;
}
/* Carousel container */
.carousel {
  display: flex;
  align-items: center;      /* Vertically center items */
  justify-content: center;  /* Horizontally center items */
  gap: 40px;                /* Space between testimonial and arrows */
  margin-top: 60px;         /* Space between heading and carousel */
  position: relative;       /* Position the arrows absolutely within the carousel */
  width: 100%;
}

/* Previous and next buttons (arrows) */
button.prev, button.next {
  position: absolute;        /* Position arrows absolutely within carousel */
  top: 50%;                  /* Vertically center the buttons */
  transform: translateY(-50%); /* Adjust for perfect vertical centering */
  font-size: 1.5em;            /* Increase the size of the > symbol */
  padding: 0px 10px;        /* Add padding around the symbol */
  border-radius: 60%;        /* Circular button */
  background: #000;          /* Button background color */
  color: #fff;               /* Text color (white) */
  cursor: pointer;          /* Pointer cursor on hover */
  border: none;              /* Remove button border */
}

button.prev {
  left: 10px;                /* Position the previous button on the left */
}

button.next {
  right: 10px;               /* Position the next button on the right */
}

button:hover {
  background: #444;          /* Change background on hover */
}

@media (max-width: 480px) {
  .testimonials {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative; /* Ensures proper positioning for arrows */
  }

  .carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Adjust spacing between elements */
    position: relative; /* Allow positioning of arrows */
  }

  .carousel-wrapper {
    display: flex;
    flex-direction: row; /* Keep testimonials in a row for sliding */
    overflow: hidden; /* Hide overflow content */
    width: 90%; /* Adjust width for responsiveness */
    max-width: 320px; /* Center align within arrows */
    position: relative; /* Position relative to arrows */
    gap: 20px;
  }

  .testimonial {
    flex: 0 0 calc(100% - 20px); /* Show one card at a time */
    width: 100%; /* Fill carousel-wrapper */
    box-sizing: border-box;
    margin: 0 auto;
    text-align: center; /* Center text and content */
    scroll-snap-align: center; 
  }

  /* Arrows Styling */
  .prev,
  .next {
    position: absolute;
    top: 50%; /* Center arrows vertically */
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: #ddd; /* Arrow background color */
    border: none; /* Remove border */
    border-radius: 50%; /* Circular arrows */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10; /* Place above other elements */
    cursor: pointer;
  }

  .prev {
    left: -40px; /* Position the left arrow */
  }

  .next {
    right: -40px; /* Position the right arrow */
  }

  .icon {
    width: 60px; /* Reduce icon size */
    height: 60px;
  }

  .icon-img {
    width: 40px; /* Reduce icon image size */
    height: 40px;
  }

  .testimonial h4 {
    font-size: 14px;
    margin: 10px 0;
  }

  .testimonials p {
    font-size: 12px;
    line-height: 1.4;
  }

  .profile-img {
    width: 40px; /* Reduce profile image size */
    height: 40px;
  }

  .info h5 {
    font-size: 14px;
  }

  .stars {
    font-size: 1.5em; /* Adjust star size */
  }
}


@media (max-width: 1024px) {
  .testimonials {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:center; /* Ensure proper spacing between cards */
    gap: 20px; /* Adjust gap between cards */
    
  }

  .testimonials h5 {
    font-size: 14px; /* Smaller subtitle font size */
  }
  .testimonials h1 {
    font-size: 30px; /* Smaller heading font size */
  }
  .underline {
    width: 150px;
    height: 8px;
    margin: 10px auto 20px;
  }
  .testimonial {
    width: 300px; /* Adjust card width */
    height: 400px; /* Adjust card height */
    padding: 20px;
    gap: 15px; /* Reduce gap inside card */
  }
  .icon {
    width: 70px; /* Reduce icon size */
    height: 70px;
  }
  .icon-img {
    width: 50px; /* Reduce icon image size */
    height: 50px;
  }
  .testimonial h4 {
    font-size: 14px;
    font-weight: bold;
    padding-left: 35px; /* Adjust spacing between icon and text */
    margin-top: 20px;
    margin-bottom: 18px;
  }
  .testimonials p {
    font-size: 14px;
    margin: 10px 0 15px 0; /* Adjust spacing */
    padding-left: 10px; /* Adjust text alignment padding */
    text-align: justify;
    line-height: 1.4; /* Slightly reduce line height */
  }
  .profile {
    display: flex;
    align-items: center;
    gap: 10px; /* Reduce gap between image and text */
    margin: 18px;
    padding: 10px;
    line-height: 1;
  }
  .profile-img {
    width: 50px; /* Reduce profile image size */
    height: 50px;
  }
  .info h5 {
    font-size: 16px; /* Reduce profile title font size */
  }
  .info p {
    font-size: 12px; /* Reduce profile description font size */
  }
  .stars {
    font-size: 1.8em; /* Reduce star size */
  }
  .carousel {
    gap: 30px; /* Adjust carousel gap */
  }

  /* Display 3 cards per row */
  .testimonial {
    flex: 1 1 calc(33.33% - 20px); /* 3 cards with spacing */
    box-sizing: border-box;
  }
}


/* Media query for 1600px and above */
@media (min-width: 1600px) {
.testimonials h5 {
  font-size: 18px;
}
.testimonials h1 {
  font-size: 38px;
}
.underline {
  width: 200px;
  height: 10px;
}
.testimonial {
  width: 380px;
  height: 420px;
  padding: 25px;
  gap:30%;
}
.icon {
  width: 90px;
  height: 90px;
}
.icon-img {
  width: 60px;
  height: 60px;
}
.testimonial h4{
  font-size: 16px;
  font-weight: bold;
  padding-left: 42px; /* Adding some space between icon and text */
  margin-top: 26px;
  margin-bottom: 22px;
}
.testimonials p {
  font-size: 16px;
  margin: 12px 0 20px 0; /* Adjusted the bottom margin to add space */
  padding-left: 12px; /* Keeping space between icon and paragraph text */
  text-align: justify;
  line-height: 1.5;
}
.profile {
display: flex;
align-items: center;
gap: 15px;  /* Space between the profile image and text */
margin: 22px;
padding: 12px;
 line-height: 1;
}
.profile-img {
  width: 60px;
  height: 60px;
}
.info h5 {
  font-size: 20px;
}
.info p {
  font-size: 14px;
}
.stars {
  font-size: 2.2em;
}
.carousel {
  gap: 50px;
}
}

/* Media query for 1920px and above */
@media (min-width: 1920px) {
.testimonials h5 {
  font-size: 20px;
}
.testimonials h1 {
  font-size: 42px;
}
.underline {
  width: 230px;
  height: 12px;
}
.testimonial {
  width: 440px;
  height: 500px;
  padding: 30px;
  gap: 30px;
}
.icon {
  width: 100px;
  height: 100px;
}
.icon-img {
  width: 70px;
  height: 70px;
}
.testimonial h4{
  font-size: 18px;
  font-weight: bold;
  padding-left: 44px; /* Adding some space between icon and text */
  margin-top: 28px;
  margin-bottom: 24px;
}
.testimonials p {
  font-size: 18px;
  margin: 14px 0 22px 0; /* Adjusted the bottom margin to add space */
  padding-left: 14px; /* Keeping space between icon and paragraph text */
  text-align: justify;
  line-height: 1.75;
}
.profile {
display: flex;
align-items: center;
gap: 20px;  /* Space between the profile image and text */
margin: 24px;
padding: 14px;
 line-height: 1;
}
.profile-img {
  width: 70px;
  height: 70px;
}
.info h5 {
  font-size: 22px;
}
.info p {
  font-size: 16px;
}
.stars {
  font-size: 2.4em;
}
.carousel {
  gap: 60px;
}
.testimonial::after{
  width:6px;
  height: 20%;
  margin-top: 340px;
}
.testimonial::before{
  width: 6px;
  height: 20%;
  margin-top: 30px;
}
button.prev, button.next{
  font-size: 1.8em;
}
}

/* Media query for 2000px and above */
@media (min-width: 2000px) {
.testimonials h5 {
  font-size: 22px;
}
.testimonials h1 {
  font-size: 46px;
}
.underline {
  width: 250px;
  height: 14px;
}
.testimonial {
  width: 460px;
  height: 520px;
  padding: 35px;
  gap:35px
}
.icon {
  width: 110px;
  height: 110px;
}
.icon-img {
  width: 80px;
  height: 80px;
}
.testimonial h4{
  font-size: 20px;
  font-weight: bold;
  padding-left: 46px; /* Adding some space between icon and text */
  margin-top: 30px;
  margin-bottom: 26px;
}
.testimonials p {
  font-size: 20px;
  margin: 16px 0 22px 0; /* Adjusted the bottom margin to add space */
  padding-left: 16px; /* Keeping space between icon and paragraph text */
  text-align: justify;
  line-height: 1.5;
}
.profile {
display: flex;
align-items: center;
gap: 24px;  /* Space between the profile image and text */
margin: 26px;
padding: 16px;
 line-height: 1;
}
.profile-img {
  width: 80px;
  height: 80px;
}
.info h5 {
  font-size: 24px;
}
.info p {
  font-size: 18px;
}
.stars {
  font-size: 2.6em;
}
.carousel {
  gap: 70px;
}
.testimonial::after{
  width:7px;
  height: 22%;
  margin-top: 335px;
}
.testimonial::before{
  width: 7px;
  height: 22%;
  margin-top: 32px;
}
button.prev, button.next{
  font-size: 1.9em;
}
}

/* Media query for 2160px and above */
@media (min-width: 2160px) {
.testimonials{
  height: auto;
}
.testimonials h5 {
  font-size: 24px;
}
.testimonials h1 {
  font-size: 50px;
}
.underline {
  width: 280px;
  height: 16px;
}
.testimonial {
  width: 470px;
  height: 580px;
  padding: 40px;
  gap: 40px;
}
.icon {
  width: 120px;
  height: 120px;
}
.icon-img {
  width: 90px;
  height: 90px;
}
.testimonial h4{
  font-size: 22px;
  font-weight: bold;
  padding-left: 48px; /* Adding some space between icon and text */
  margin-top: 32px;
  margin-bottom: 28px;
}
.testimonials p {
  font-size: 22px;
  margin: 18px 0 24px 0; /* Adjusted the bottom margin to add space */
  padding-left: 18px; /* Keeping space between icon and paragraph text */
  text-align: justify;
  line-height: 1.5;
}
.profile {
display: flex;
align-items: center;
gap: 26px;  /* Space between the profile image and text */
margin: 28px;
padding: 18px;
 line-height: 1;
}
.profile-img {
  width: 90px;
  height: 90px;
}
.info h5 {
  font-size: 26px;
}
.info p {
  font-size: 22px;
}
.stars {
  font-size: 2.8em;
}
.carousel {
  gap: 80px;
}
.testimonial::after{
  width:8px;
  height: 24%;
  margin-top: 370px;
}
.testimonial::before{
  width: 8px;
  height: 24%;
  margin-top: 32px;
}
button.prev, button.next{
  font-size: 2em;
}
}

/* Media query for 2560px and above */
@media (min-width: 2560px) {
.testimonials h5 {
  font-size: 26px;
}
.testimonials h1 {
  font-size: 56px;
}
.underline {
  width: 300px;
  height: 18px;
}
.testimonial {
  width: 490px;
  height: 600px;
  padding: 45px;
}
.icon {
  width: 130px;
  height: 130px;
}
.icon-img {
  width: 100px;
  height: 100px;
}
.testimonial h4{
  font-size: 26px;
  font-weight: bold;
  padding-left: 50px; /* Adding some space between icon and text */
  margin-top: 34px;
  margin-bottom: 30px;
}
.testimonials p {
  font-size: 25px;
  margin: 18px 0 24px 0; /* Adjusted the bottom margin to add space */
  padding-left: 20px; /* Keeping space between icon and paragraph text */
  text-align: justify;
  
}
.profile {
display: flex;
align-items: center;
gap: 28px;  /* Space between the profile image and text */
margin: 30px;
padding: 20px;
 line-height: 1;
}
.profile-img {
  width: 100px;
  height: 100px;
}
.info h5 {
  font-size: 28px;
}
.info p {
  font-size: 24px;
}
.stars {
  font-size: 3em;
}
.carousel {
  gap: 90px;
}
button.prev, button.next{
  font-size: 2.2em;
}
}




/*testimonial ends*/

/*updates section*/
.news-section {
  background-color: #DDDCDC;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 20px;
  
  position: relative;
  overflow: hidden;
}

.news-header-container {
  display: flex;
  justify-content: space-between; /* Push h6, h2 to left, button to right */
  align-items: flex-start; /* Align to top */
  margin-bottom: 20px; /* Add spacing below */
  flex-wrap: wrap; /* Ensure wrapping on small screens */
}

.news-header-content {
  display: flex;
  flex-direction: column; /* Stack h6 and h2 vertically */
  gap: 10px; /* Add spacing between h6 and h2 */
}

.news-header-container h6 {
  font-size: 1.2vw;
  color: #666;
  margin-left: 20px; /* Remove margin */
}

.news-header-container h2 {
  font-size: 2.5vw;
  font-weight: bold;
  margin-left: 20px; /* Remove margin */
}

.view-all2 {
  align-self: flex-start; /* Align button to the top-right */
  
}

.view-all2 button {
  display: flex;
  align-items: center;  /* Align items (text + arrow) vertically centered */
  justify-content: center; 
  padding: 10px 15px;
  background-color: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 4px;
  transition: 0.3s ease;
  gap: 2px;
  margin-right:10px;
}

.view-all2 button:hover {
  background-color: #333;
}

.seeall_arrow {
  width:  3em; /* Adjust SVG width */
  height: 1.5em;
  fill: #fff; /* Match the SVG color with the button text */
}

/* Carousel Container */
.carousel-container2 {
  position: relative;
  overflow: hidden;
  padding: 0 50px;
}

.cards-container2 {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 37px;
}

.card2 {
  flex: 0 0 calc(33.33% - 20px);
  background-color: #f9f9f9;
  
  overflow: hidden;
  text-align: center;
  
}

.card2 img {
  width: 100%;
  height: auto;
 
}

.card-content2 {
  padding: 15px;
  text-align: left;
  width:100%;
}

.card-content2 span {
  /* display: block; */
  font-size: 1vw;
  color: #666;
  margin-bottom: 10px;
}

.card-container {
  display: flex;
  flex-direction: column;
  align-items: start;
  border-bottom:2px solid black;
  margin-bottom: 10px;
}

.card-content2 h3 {
  font-size: 1.5vw;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 10px;
  width: 100%;
  white-space: normal; /* Allows full display */
  overflow: visible;
}

.card-content2 p {
  font-size: 1.1vw;
  color: #666;
  line-height: 1.5;
  margin-top: 15px;
  margin-bottom: 15px;
  padding-bottom: 8px;
  /* border-bottom: 1px solid #ccc; */
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Show only 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  height: calc(1.5em * 3); /* Ensures strict 3-line height */
  max-height: calc(1.5em * 3); /* Prevents any extra height */
}

.read-more2 {
  display: block;
  text-align: center;
  text-decoration: none;
  background-color: #000;
  color: #fff;
  padding: 10px 0;
  font-weight: bold;
  transition: 0.3s ease;
  border-radius: 4px;
}

.read-more2:hover {
  background-color: #333;
  color:#fff;
}



.label2 {
  position: absolute;
  background-color: #fff;
  font-weight: bold;
  color: #000;
  font-size: 14px;
  padding: 5px 10px;
  top: 30px;
  right: 10px;
 
}

/* Arrows */
.carousel-btn2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: black;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10; /* Ensures arrows are on top */
}

.carousel-btn2:hover {
  background-color: #333;
}

.carousel-btn2.left {
  left: 5px;
}

.carousel-btn2.right {
  right: 5px;
}


.view-all2 button:hover {
  background-color: #333;
}

/* Responsive Styles */
@media screen and (max-width: 1240px) {
  .card2 {
      flex: 0 0 calc(33.33% - 15px);
  }
  .news-header-container{
      margin-left: 20px;
      margin-top: 10px;
      margin-right:20px;
  }
}

/* For screens 480px and below */
@media screen and (max-width: 480px) {
  .news-header-container h6 {
    font-size: 4vw;
  }
  
  .news-header-container h2 {
    font-size: 6vw;
  }

  .view-all2 button {
    font-size: 0.8rem;
    padding: 8px 10px;
  }

  .seeall_arrow {
    width: 2.5em;
    height: 1.2em;
  }

  .card-content2 span {
    font-size: 2.5vw;
  }

  .card-content2 h3 {
    font-size: 3.5vw;
  }

  .card-content2 p {
    font-size: 3vw;
  }

  .read-more2 {
    font-size: 3.5vw;
    padding: 8px 0;
  }

  .label2 {
    font-size: 2.8vw;
    padding: 5px;
  }

  .carousel-btn2 {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

/* For screens 425px and below */
@media screen and (max-width: 425px) {
  .news-header-container h6 {
    font-size: 4.5vw;
  }
  
  .news-header-container h2 {
    font-size: 6.5vw;
  }

  .view-all2 button {
    font-size: 0.7rem;
    padding: 7px 8px;
  }

  .seeall_arrow {
    width: 2.2em;
    height: 1em;
  }

  .card-content2 span {
    font-size: 3vw;
  }

  .card-content2 h3 {
    font-size: 4.2vw;
  }

  .card-content2 p {
    font-size: 3.5vw;
  }

  .read-more2 {
    font-size: 4vw;
    padding: 6px 0;
  }

  .label2 {
    font-size: 3vw;
    padding: 4px;
  }

  .carousel-btn2 {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

/* For screens 375px and below */
@media screen and (max-width: 375px) {
  .news-header-container content h6 {
    font-size: 0.4rem !important;
  }
  
  .news-header-container h2 {
    font-size: 0.5rem !important;
  }

  .view-all2 button {
    font-size: 0.4rem !important;
    padding: 6px 8px;
  }

  .seeall_arrow {
    width: 2em;
    height: 0.9em;
  }

  .card-content2 span {
    font-size: 3.5vw;
  }

  .card-content2 h3 {
    font-size: 4.5vw;
  }

  .card-content2 p {
    font-size: 4vw;
  }

  .read-more2 {
    font-size: 4.5vw;
    padding: 5px 0;
  }

  .label2 {
    font-size: 3.5vw;
    padding: 3px;
  }

  .carousel-btn2 {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
}

/* For screens 320px and below */
@media screen and (max-width: 320px) {
  .news-header-container h6 {
    font-size: 0.6rem !important;
  }
  
  .news-header-container h2 {
    font-size: 1rem !important;
  }

  .view-all2 button {
    font-size: 0.4rem !important;
    padding: 5px 7px;
  }

  .seeall_arrow {
    width: 1.8em;
    height: 0.8em;
  }

  .card-content2 span {
    font-size: 4vw;
  }

  .card-content2 h3 {
    font-size: 5vw;
  }

  .card-content2 p {
    font-size: 4.5vw;
  }

  .read-more2 {
    font-size: 5vw;
    padding: 5px 0;
  }

  .label2 {
    font-size: 4vw;
    padding: 2px;
  }

  .carousel-btn2 {
    width: 25px;
    height: 25px;
    font-size: 10px;
  }
}


/* Responsive Styles */
@media screen and (max-width: 768px) {
  .news-header-container {
    flex-direction: row !important; /* Ensure elements stay in a row on small screens */
    justify-content: space-between; /* Maintain spacing between elements */
    align-items: center; /* Center-align items vertically */
    flex-wrap: nowrap;
    margin-top: 10px;
  }

  .view-all2 {
    margin-top: 0; /* Remove margin-top if it exists */
    margin-left: auto; /* Push the button to the right */
    display: flex;
    align-items: center;
  }

  .news-header-container h6 {
    font-size: 0.8rem !important; /* Decrease font size for smaller screens */
    margin-left: 20px;
  }

  .news-header-container h2 {
    font-size: 1.5rem !important; /* Decrease font size for smaller screens */
    margin-left: 20px;
  }

  .view-all2 button {
    font-size: 0.6rem !important; /* Adjust button font size for smaller screens */
    padding: 4px 8px; /* Reduce padding for the button */
    display: flex;
    align-items: center;
  }

  .seeall_arrow {
      width:  3em; /* Adjust SVG width */
      height: 1.5em;
      fill: #fff; /* Match the SVG color with the button text */
  }

  .card2 {
    flex: 0 0 100%; /* Ensure cards take full width on smaller screens */
  }

  .carousel-btn2 {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .news-section h2 {
    font-size: 5vw;
  }

  .card-content2 span,
  .card-content2 p,
  .card-content2 h3 {
    font-size: 3vw;
  }
}

@media screen and (min-width: 641px) and (max-width: 768px) {
  .card-content2 span {
      font-size:2vw; /* Ensures text stays in one line */
      display:inline-block !important;
      vertical-align: middle;
  }

  .card-content2 p{
    font-size:2vw;
  }
}


/* For Larger Screens (1600px and above) */
@media screen and (min-width: 1600px) {
  .news-header-content{
      margin-left: 10px;
      margin-top: 20px;
  }

  .view-all2{
      margin-top: 20px;
  }
  .news-header-container{
      margin-top: 40px;
  }
  
  .news-header-container2{
      display: flex;
      margin-top: 30px;
  }
  .news-header-container2 {
    margin-top: 30px; /* Increased gap for larger screens */
  }

  .news-section {
      width: 100%; /* Occupy full screen width */
      padding: 0 20px; /* Optional padding */
  }

  .carousel-container2 {
      padding: 25px; /* Adjust container padding */
  }

  .card2 {
      flex: 0 0 calc(33.33% - 20px); /* 3 cards per row */
  }

  .cards-container2 {
      gap: 25px;
  }

  .news-section h2 {
      font-size: 2.5vw; /* Adjust font size */
  }

  .card-content2 span,
  .card-content2 p,
  .card-content2 h3 {
      font-size: 1.5vw; /* Adjust font size */
  }

  .read-more2 {
      font-size: 1.3vw;
      padding: 12px 0;
  }

  .label2{
      font-size: 1rem;
    }
  
    .carousel-btn2.left{
      width: 40px;
      height: 40px;
      font-size: 20px;
    }
    .carousel-btn2.right{
      width: 40px;
      height: 40px;
      font-size: 20px;
    }
}

/* For Full HD Screens (1920px and above) */
@media screen and (min-width: 1920px) {
  .news-header-content{
      margin-left: 10px;
  }

  .news-header-container2{
      display: flex;
      margin-top: 35px;
  }

  .news-header-container2 {
    margin-top: 35px;
  }

  .news-section {
      width: 100%; /* Occupy full screen width */
      max-width: 1920px;
      padding: 0 20px;
  }

  .carousel-container2 {
      padding: 30px; /* Increased padding */
  }

  .cards-container2 {
      gap: 30px;
  }

  .card2 {
      flex: 0 0 calc(33.33% - 20px); /* 3 cards per row */
  }

  .card-content2 span,
  .card-content2 h3,
  .card-content2 p {
      font-size: 1.7vw; /* Slightly larger font size */
  }

  .read-more2 {
      font-size: 1.4vw;
      padding: 14px 0;
  }

  .label2{
      font-size: 1.2rem;
    }
  
    .carousel-btn2.left{
      width: 50px;
      height: 50px;
      font-size: 25px;
    }
    .carousel-btn2.right{
      width: 50px;
      height: 50px;
      font-size: 25px;
    }
}

/* For Screens (2000px and 2160px and above) */
@media screen and (min-width: 2000px) {
  .news-header-container{
      display: flex;
      margin-top: 45px;
    }

    .news-header-content{
      margin-left: 10px;
    }

  .news-section {
      width: 100%; /* Occupy full screen width */
      max-width: 2560px;
      padding: 0 25px;
  }

  .carousel-container2 {
      padding: 35px; /* Increased padding */
  }

  .cards-container2 {
      gap: 35px;
  }

  .card2 {
      flex: 0 0 calc(33.33% - 20px); /* 3 cards per row */
  }

  .card-content2 span,
  .card-content2 h3,
  .card-content2 p {
      font-size: 1.8vw; /* Slightly larger font size */
  }

  .read-more2 {
      font-size: 1.5vw;
      padding: 15px 0;
  }

  .label2{
      font-size: 1.2rem;
    }
  
    .carousel-btn2.left{
      width: 50px;
      height: 50px;
      font-size: 25px;
    }
    .carousel-btn2.right{
      width: 50px;
      height: 50px;
      font-size: 25px;
    }
}
/* For Laptop Larger Screens (1440px) */
@media screen and (min-width: 1440px) {
  .news-header-container{
      display: flex;
      margin-top: 20px;
    }

  .news-header-content{
      margin-left: 10px;
  }
  .carousel-container2 {
      padding: 40px; /* Optional spacing for the container */
  }

  .cards-container2 {
      gap: 40px;
  }

  .card-content2 span {
      font-size: 1.2vw; /* Slightly larger font size */
  }

  .card-content2 h3 {
      font-size: 1.8vw; /* Larger heading font size */
  }

  .card-content2 p {
      font-size: 1.3vw; /* Larger paragraph font size */
  }

  .read-more2 {
      font-size: 1.2vw; /* Larger 'Read More' button font size */
      padding: 12px 0; /* Adjust padding for the button */
  }

  .label2{
      font-size: 1rem;
    }
  
    .carousel-btn2.left{
      width: 40px;
      height: 40px;
      font-size: 20px;
    }
    .carousel-btn2.right{
      width: 40px;
      height: 40px;
      font-size: 20px;
    }
}

/* For 4K Screens (2560px and above) */
@media screen and (min-width: 2560px) {
  .news-section {
    max-width: none; /* Remove the max-width constraint */
    width: 100%; /* Ensure the background spans the full screen */
    padding: 0 20px; /* Optional: Add some padding if needed */
}

.news-header-container{
  display: flex;
  margin-top: 40px;
}

.news-header-content{
  margin-left: 15px;
}

  .carousel-container2 {
      padding: 40px; /* More spacing for the container */
  }

  .card-content2 span {
      font-size: 1.5vw; /* Even larger font size for spans */
  }

  .card-content2 h3 {
      font-size: 2.2vw; /* Larger heading font size */
  }

  .card-content2 p {
      font-size: 1.5vw; /* Larger paragraph font size */
      line-height: 1.8; /* Improve readability */
  }

  .read-more2 {
      font-size: 1.5vw; /* Larger 'Read More' button font size */
      padding: 15px 0; /* Adjust padding for the button */
  }

  .card2 {
    flex: 0 0 calc(33.33% - 20px); /* Keep 3 cards per row */
}

.label2{
  font-size: 1.5rem;
}

.carousel-btn2.left{
  width: 60px;
  height: 60px;
  font-size: 30px;
}
.carousel-btn2.right{
  width: 60px;
  height: 60px;
  font-size: 30px;
}
}

/*updates section ends*/

/*footer starts*/
/* General Footer Styling */
.footer-section,
.subscription-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lets-talk, .follow-us {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.social-icons-wrapper {
  display: flex;
  justify-content: space-evenly; /* Distribute social icons evenly */
}


.page-footer {
    background-color: #000;
    color: #fff;
    padding: 40px 20px;
  }
  
  .page-footer h4 {
    color: #ffe209;
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .footer-middle {
    display: flex;
    flex-direction: row; /* Row layout on large screens */
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    margin-bottom: 20px;
  }
  
  /* Footer Row Styling */
  .footer-row{
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
  
  .footer-row-2 {
    display: flex;
    justify-content: flex-end; /* Align content to the right of the row */
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    width:100%;
  }
  
  /* Subscription Block */
  .subscription-block {
    border: 2px solid #fff;
    border-radius: 20px;
    padding: 6px;
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px; /* Reduced gap between elements */
    text-align: center;
  
  }
  
  .subscription-block h4 {
    margin-bottom: 5px;
    font-size: 30px;
    color: #ffe209;
  }
  
  .subscription-block p {
    margin-bottom: 10px;
    font-size: 14px;
    font-family: Georgia;
  }
  
  .subscription-block__form-box {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Reduced gap between input and button */
    width: 100%;
    max-width: 250px; /* Reduced max width of form box */
    align-items: center;
  }
  
  .uk-input {
    width: 100%; /* Full width of the form box */
    font-size: 12px; /* Adjust font size */
    padding: 6px 8px; /* Adjust padding for reduced height */
    border-radius: 6px; /* Rounded corners for input */
    color:#000;
  }
  
  /* Make the placeholder smaller */
  .uk-input::placeholder {
    font-size: 12px; /* Smaller font size for placeholder */
    
  }
  
  .uk-button {
    width: 60%; /* Adjust width to 80% of the form box */
    padding: 6px 8px; /* Adjust padding for proper button height */
    background-color: #f6ff00;
    color: #000;
    font-size: 14px;
    border-radius: 20px; /* Rounded corners for the button */
    border: none;
    align-items: center;
  }
  
  /* Ensure lists in footer sections have white dots */
.footer-section ul {
  list-style-type: none;  /* Remove default list bullets */
  padding-left: 20px;     /* Add padding to the left for proper alignment */
}

.footer-section ul li {
  position: relative; /* Allows positioning of custom dots */
  margin-bottom: 8px;  /* Space between list items */
}

.footer-section ul li::before {
  content: '\2022'; /* Unicode character for a bullet */
  color: #fff;      /* White color for the bullet */
  font-size: 20px;   /* Adjust bullet size */
  position: absolute;
  left: -20px;      /* Adjust position of the bullet */
  top: 50%;
  transform: translateY(-50%);
}

  
  /* Footer Sections */
  .footer-section {
    flex: 1;
    display: flex;
    flex-direction: column; /* Stack the content vertically */
  }
  
  /* Footer Links */
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-section ul li a:hover {
    text-decoration: underline;
  }
  
  /* Let's Talk Section */
  .lets-talk {
    display: flex;
    justify-content: flex-start; /* Align Let's Talk section to the left of this section */
    gap: 20px;
    align-items: flex-start;
  }
  
  .lets-talk-content {
    display: flex;
    justify-content: flex-start; /* Ensure logo and text are aligned left */
    gap: 20px;
    align-items: flex-start;
  }
  
  
  
  .lets-talk-info {
    display: flex;
    flex-direction: column; /* Stack the text and buttons vertically */
    align-items: flex-start;
  }
  
 /* Remove dots for all ULs in the footer */
.footer-section ul,
.lets-talk-info ul {
  list-style: none !important; /* Ensure no default bullets */
  padding: 0 !important; /* Remove padding */
  margin: 0 !important; /* Remove margin */
}

/* Ensure specific list items don't have bullets */
.footer-section ul li,
.lets-talk-info li {
  position: relative; /* Allow further customization if needed */
}


/* Style anchor tags within .lets-talk-info ul */
.lets-talk-info ul li a {
  color: #fff !important; /* Override default blue color */
  text-decoration: none;  /* Remove underline if any */
}

.lets-talk-info ul li a:hover {
  color: #fff !important; /* Ensure hover color is black too */
  text-decoration: underline; /* Add underline on hover */
}



  .footer-logo {
    width: 100px;
  }
  
  .lets-talk h4 {
    margin: 10px 0;
  }
  
  
  
  /* Follow Us Section */
  .footer-follow-us {
    display: flex;
    flex-direction: column; /* Stack button and icons */
    align-items: center;
    gap: 10px;
  }
  
  .follow-button {
    display: inline-block;
      padding: 10px 20px;
      color: white;
      font-size: 16px;
      font-weight: bold;
      background: linear-gradient(90deg, #ff5f6d,rgb(195, 33, 216));
      border-radius: 20px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
      cursor: pointer;
      text-transform: uppercase;
      text-align: center;
      width: fit-content; /* Automatically adjust width */
    margin-bottom: 10px; /* Spacing below the button-like div */
  }
  
  .follow-button:hover {
    transform: scale(1.05); /* Slight zoom on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3); /* Deeper shadow */
  }
  
  .social-icons-wrapper {
    display: flex;
    justify-content: center; /* Center the icons in the container */
    padding: 10px;
    border: 2px solid #FFFF00; /* Border around the social icons container */
    border-radius: 20px; /* Rounded corners for the container */
    background-color: #fff; /* Background color for better contrast */
  }
  
  .social-icons {
    display: flex;
    gap: 3px;
  }
  
  .social-list__link {
    color: #000; /* Set the color of the link (social icon) to black */
    text-decoration: none; /* Remove underline */
  }
  
  .social-list__link:hover {
    color: #000000af; /* Change color when hovered (or apply any hover effect) */
  }

  .social-list__item {
    color: #000;
    font-size: 20px;
    text-decoration: none;
  }
  
  .social-list__item:hover {
    color: #000000af;
  }
  
  /* Footer Bottom */
  .footer-bottom {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #333;
    width: 100%; /* Set width to full viewport width */
    
    
    
  }
  
  .footer-content {
    display: flex;
    gap: 10px; /* Space between elements */
    align-items: center;
    background-color: #fff; /* White background */
    color: #000; /* Black text color */
    border: 2px solid #ffe209; /* Yellow border */
    border-radius: 20px; /* Rounded corners */
    padding: 5px 10px; /* Padding around the content */
    flex-wrap: wrap; /* Allow elements to wrap on smaller screens */
  justify-content: center; /* Center elements when wrapped */
  }

  .footer-content a {
    color: #000;
    text-decoration: none; /* Remove underline from links */
  }
  
  .footer-content a:hover {
    text-decoration: underline; /* Add underline on hover */
    color: #000;
  }
  
  .footer-bottom p {
    font-size: 14px;
    margin: 0; /* Remove default margin */
    padding: 0;
  }

  /* Mobile Styles */
  @media (max-width: 767px) {


    .footer-middle {
      flex-direction: column; /* Stack items vertically on mobile */
    }
  
    .footer-row, .footer-row-2 {
      flex-direction: column; /* Stack items vertically in rows */
    }
  
    .subscription-block,
    .footer-section {
      flex: 1 100%; /* Take up full width on mobile */
    }

    /* Ensure footer-content in the footer-bottom is displayed in a row on mobile */
    .footer-bottom {
      display: flex;
      justify-content: center; /* Center the content */
      align-items: center; /* Align items vertically */
      /* width: 100%;  */
      /* Ensure full width */
      flex-wrap: wrap; /* Allow content to wrap if needed */
    }
  
    .footer-content {
      display: flex;
      flex-direction: row; /* Horizontal layout */
      flex-wrap: wrap; /* Allow wrapping if content exceeds width */
      justify-content: center; /* Center horizontally */
      align-items: center; /* Center vertically */
      gap: 5px; /* Adjust space between elements */
      font-size: 12px; /* Adjust font size for consistency */
    }
  
    .footer-content a {
      font-size: 12px; /* Ensure link text is consistent */
      text-decoration: none; /* Remove underlines for cleaner look */
      color: #000; /* Set link color */
    }
  
    .footer-content span {
      white-space: nowrap; /* Prevent breaking onto multiple lines */
    }
  
    .footer-bottom p {
      font-size: 10px; /* Adjust for mobile readability */
      margin: 0;
    }

  
  }

/* Increase font sizes for large screens (1440px and above) */
@media (min-width: 1440px) {
  .page-footer h4 {
    font-size: 22px; /* Increased font size for footer headings */
  }

  .footer-middle {
    font-size: 18px; /* Larger font for middle section */
  }

  .footer-row {
    font-size: 18px; /* Increase font size for footer row */
  }

  .footer-row-2 {
    font-size: 18px; /* Increase font size for footer row 2 */
  }

  .subscription-block h4 {
    font-size: 40px; /* Increase font size of subscription heading */
  }

  .subscription-block p {
    font-size: 16px; /* Increase font size of subscription description */
  }

  .uk-input {
    font-size: 16px; /* Increase font size of input fields */
  }

  .uk-button {
    font-size: 18px; /* Larger font size for buttons */
  }

  .lets-talk h4 {
    font-size: 24px; /* Increase font size for Let's Talk section */
  }

  .follow-button {
    font-size: 20px; /* Increase font size for Follow Us button */
  }

  .social-list__item {
    font-size: 24px; /* Increase font size of social media icons */
  }

  .footer-bottom p {
    font-size: 18px; /* Increase font size for footer bottom text */
  }

  .footer-content {
    font-size: 18px; /* Increase font size for footer content */
  }

  /* Optional: Increase other elements in the footer */
  .footer-section ul li {
    font-size: 18px; /* Increase font size for footer links */
  }
}

/* Further increase font sizes for 4K screens (2160px and above) */
@media (min-width: 2160px) {
  .page-footer h4 {
    font-size: 36px; /* Significantly larger font size for 4K screens */
  }

  .footer-middle {
    font-size: 28px;
  }

  .footer-row {
    font-size: 28px;
  }

  .footer-row-2 {
    font-size: 28px;
  }

  .subscription-block h4 {
    font-size: 64px; /* Larger subscription heading for 4K */
  }

  .subscription-block p {
    font-size: 24px; /* Larger font size for description */
  }

  .uk-input {
    font-size: 24px; /* Larger font size for inputs */
  }

  .uk-button {
    font-size: 26px; /* Larger button font size */
  }

  .lets-talk h4 {
    font-size: 36px; /* Larger font size for Let's Talk section */
  }

  .follow-button {
    font-size: 28px; /* Larger Follow Us button font */
  }

  .social-list__item {
    font-size: 36px; /* Larger social media icon text */
  }

  .footer-bottom p {
    font-size: 28px; /* Larger footer bottom text */
  }

  .footer-content {
    font-size: 28px; /* Larger footer content font */
  }

  .footer-section ul li {
    font-size: 28px; /* Larger font for footer links */
  }
}


  /*footer ends*/

  /* Container for buttons in mobile*/
.authh-buttons {
  display: flex;
  gap: 10px; /* Space between the buttons */
}

/* Styling for individual buttons */
.authh-button {
  display: flex;
  align-items: center; /* Centers icon and text vertically */
  gap: 8px; /* Space between icon and text */
  background-color: #000; /* Black background */
  color: #fff; /* White text */
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  padding: 10px 20px; /* Padding for better button size */
  border-radius: 25px; /* Rounded corners */
  transition: background-color 0.3s ease, color 0.3s ease; /* Smooth hover effect */
}

/* Icon styling inside buttons */
.authh-button i {
  font-size: 20px; /* Adjust icon size */
}

/* Hover effect */
.authh-button:hover {
  background-color: #333; /* Darker background on hover */
  color: #ccc; /* Light gray text on hover */
}
