*{
    padding:0px;
    margin:0px;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
  }
  .social {
  width: 100%;
  height: 8vh;
  background-color: rgb(35, 34, 34);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  }
  
  .socialrap {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  }
  
  .scroll-container {
  display: flex;
  align-items: center;
  }
  
  .name1 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  white-space: nowrap;
  }
  .scroll-arrow {
  color: white;
  font-size: 12px;
  cursor: pointer;
  margin: 0 100px; /* Increase the margin to increase the distance from the text */
  }
  
  
  
  /* Navigation Bar Styling */
  .navi {
  background-color: white !important;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  }
  
  /* Container Flex Styling */
  .container-fluid > .d-flex {
  padding: 0 20px;
  }
  
  /* User Icons Styling */
  .user-icons {
  display: flex;
  gap: 20px;
  
  }
  
  .user-icons i {
  font-size: 20px;
  color: #000;
  cursor: pointer;
  }
  
  /* Logo Styling */
  .navbar-brand img {
  width: 140px;
  margin-left: 50%;
  }
  
  /* Search Container Styling */
  .search-container {
  display: flex;
  align-items: center;
  gap: 10px;
  }
  
  .search-container i {
  font-size: 20px;
  color: #000;
  }
  
  .search-input {
  border: none;
  border-bottom: 1px solid #000;
  outline: none;
  padding: 5px;
  width: 200px;
  }
  
  /* Navigation Links Styling */
  .nav-item {
  margin-right: 20px; /* Adjust the value as needed */
  }
  
  .nav-link.name {
  position: relative;
  color: black;
  margin-bottom: 15px;
  font-size: 15px;
  }
  
  .nav-link.name::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px; /* Thickness of the underline */
  left: 0;
  bottom: -3px; /* Position of the underline below the text */
  background-color: black;
  transition: width 0.3s ease-in-out; /* Animation duration and easing */
  }
  
  .nav-link.name:hover::after {
  width: 100%; /* Full underline on hover */
  }
  
  
  
  /* Dropdown Menu Styling */
  .dropdown-menu {
  border-radius: 0;
  border: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  }
  
  .dropdown-item:hover {
  background-color: #f8f9fa;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
  .container-fluid > .d-flex {
    flex-direction: column;
    align-items: center;
  }
  
  .search-container {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }
  
  .user-icons {
    margin-bottom: 10px;
  }
  
  .search-input {
    width: 100%;
    max-width: 300px;
  }
  }
  
  
  /* banner */
  .ban{
  width: 100%;
  height: 95vh;
  background-image: url(./brandindex1.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  }
  .banrap{
  width: 100%;
  height: 55vh;
  }
  
  .banrap1{
  width: 50%;
  margin: auto;
  /* border: 2px solid white; */
  padding-top: 100px;
  }
  
  
  

  .mid3 {
    text-align: center;
    padding: 20px;
  }
  
  .midrap3 h1 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  
  .brands-container {
    display: flex;
    justify-content: center;
    gap: 180px;
  }
  
  .brand-column {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .brand-column p {
    margin: 15px 0;
  }
  

  


    

  .mid4 {
    text-align: center;
    padding: 20px;
  }
  
  .midrap4 h1 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  
  .brands-container4 {
    display: flex;
    justify-content: center;
    gap: 200px;
  }
  
  .brand-column4 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .brand-column4 p {
    margin: 15px 0;
  }
  .testimonial-container {
    width: 100%;
    text-align: center;
    padding: 15px;
    position: relative; /* For the background quote */
    max-width: 900px; /* Limit the width for proper spacing */
    margin: 0 auto; /* Center the container */
}

.testimonial {
    display: none;
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 500;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    position: relative;
    z-index: 2; /* Make sure the text stays above the background quote */
}

.testimonial.active {
    display: block;
}

.author {
    font-weight: normal;
    margin-top: 10px;
    font-size: 18px;
}

.arrows {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.arrow-box {
    display: inline-block; /* Ensure the box is only as wide as its content */
    border: 1px solid black; /* Add a border for the box */
    padding: 1px; /* Add padding around the buttons */
    background-color: rgb(205, 205, 205); /* Light background color for the box */
    text-align: center; /* Center align the content inside the box */
}

.arrow-btn {
    padding: 8px 15px;
    background-color: rgb(205, 205, 205);
    color: black;
    border: none;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.arrow-btn:hover {
    background-color: white;
    color: black;
}

.arrow-btn:focus {
    outline: none;
}

/* Large inverted comma as background */
.testimonial-container::before {
    content: '“'; /* Use a large double quote */
    position: absolute;
    top: 10px;
    left: 0; /* Align the quote on the left */
    font-size: 150px; /* Size of the inverted comma */
    color: rgba(0, 0, 0, 0.1); /* Light gray color for the background */
    z-index: 1; /* Put the background behind the text */
    font-family: Georgia, serif; /* Use a serif font for the quote */
}






/* Style for the form container */
.form-container {
  max-width: 500px; /* Limit the width of the form */
  margin: 0 auto; /* Center the form */
  padding: 20px; /* Add some padding */
}

/* Style for each form input */
.form-group input, 
.form-group textarea {
  width: 100%; /* Full width */
  padding: 10px 15px; /* Padding inside input */
  margin-bottom: 20px; /* Spacing between input fields */
  border: 1px solid #ccc; /* Light grey border */
  font-size: 16px; /* Adjust the font size */
  box-sizing: border-box; /* Ensure padding does not increase total width */
}

/* Remove default textarea resize handle */
.form-group textarea {
  resize: none;
}

/* Style for the submit button */
.submit-btn {
  width: 100%; /* Full width */
  background-color: black; /* Black background */
  color: white; /* White text */
  padding: 15px; /* Padding inside button */
  font-size: 16px; /* Font size */
  font-weight: bold; /* Bold text */
  border: none; /* Remove default border */
  cursor: pointer; /* Show pointer on hover */
  text-align: center; /* Center the text */
  text-transform: uppercase; /* Uppercase letters */
  transition: background-color 0.3s ease; /* Smooth background color transition */
}

.submit-btn:hover {
  background-color: #333; /* Slightly lighter on hover */
}











  /* footer */
  .foot{
  
  width: 100%;
  background-color: rgb(255, 255, 240);
  }
  .footrap{
  width: 100%;
  margin: auto;
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  }
  .top-section{
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin-bottom: 30px;
  }
  .lastimg p, .connect p{
  color:black;
  font-size: 15px;
  margin-bottom: 10px;
  }
  
  .connect ul{
  display: flex;
  list-style: none;
  padding: 20;
  }
  .connect ul li{
  margin-right: 50px;
      
  }
  .connect ul li a{
  color: black;
  font-size: 20px;
  text-decoration: none;
  }
  .bottom-section{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  width: 80%;
  gap: 20px;
  }
  .boxz ul{
  margin-top: 10px;
  }
  .boxz ul p{
  color: black;
  font-size: 15px;
  margin-bottom: 10px;
  }
  .boxz ul a{
  display: block;
  font-size: 12px;
  margin-top: 10px;
  color: black;
  text-decoration: none;
  }
  .foot-panel2{
  margin-top: 20px;
  background-color:  rgb(255, 255, 240);
  color: black;
  border-top: 1px solid black;
  height: 70px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  }
  .copyright ul{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  }
  .copyright ul p{
  color: black;
  font-size: 12px;
  margin-right: 20px;
  }
  .copyright ul a{
  font-size: 12px;
  color: black;
  text-decoration: none;
  }
  