/* dsl General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

body {
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

header {
  background-color: #ffb400;
  padding: 10px 0;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.left-section {
  display: flex;
  align-items: center;
  color: #000;
  font-size: 14px;
  font-weight: bold;
}

.left-section i {
  margin-right: 10px;
  font-size: 18px;
}

.right-section {
  display: flex;
  align-items: center;
}

.right-section a {
  color: #000;
  margin-left: 15px;
  text-decoration: none;
  font-size: 16px;
}

.email-icon {
  display: flex;
  align-items: center;
  color: #000;
  font-size: 16px;
}

.email-icon i {
  margin-right: 5px;
  font-size: 18px;
}

/* Make the icons more visible and styled properly */
.right-section a.social-icon i {
  font-size: 20px;
  color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
      flex-direction: column;
      text-align: center;
  }

  .right-section {
      margin-top: 10px;
  }

  .right-section a {
      margin-left: 10px;
  }

  .left-section {
      font-size: 12px;
  }
}

/* Google Fonts Link */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


nav {
  background: white;
  height: 55px;
  width: 100%;
}

label.logo {
  color: rgb(10, 3, 3);
  font-size: 25px;
  line-height: 80px;
  padding: 0 100px;
  font-weight: bold;
}

nav ul {
  float: right;
  margin-right: 20px;
  z-index: 1000;
  height: 350px;
}

nav ul li {
  display: inline-block;
  line-height: 80px;
  margin: 0 5px;
}

nav ul li a {
  color: rgb(15, 13, 13);
  font-size: 17px;
  padding: 17px 19px;
  border-radius: 3px;
  text-transform: uppercase;
}

a.active,
a:hover {
  background: #1b9bff;
  transition: .5s;
}

.checkbtn {
  font-size: 30px;
  color: rgb(22, 20, 20);
  float: right;
  line-height: 80px;
  margin-right: 30px;
  cursor: pointer;
  display: none;
}

#check {
  display: none;
}

@media (max-width: 1050px) {
  label.logo {
    padding-left: 30px;
  }

  nav ul li a {
    font-size: 16px;
  }
}

/* Responsive media query code for small screen */
@media (max-width: 890px) {
  .checkbtn {
    display: block;
  }

  label.logo {
    font-size: 22px;
  }

  ul {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #ffb400;
    top: 130px;
    left: -100%;
    text-align: center;
    transition: all .5s;
  }

  nav ul li {
    display: block;
    margin: 50px 0;
    line-height: 30px;
  }

  nav ul li a {
    font-size: 20px;
  }

  a:hover,
  a.active {
    background: none;
    color: red;
  }

  #check:checked~ul {
    left: 0;
  }
}

/*image logo*/
.containerlogo {
  text-align: center;
}

.logo img {
  max-width: 70%;
  height: auto;
}

.enquiry {
  margin: 20px 0;
}

.enquiry-button {
  background-color: #ff0000;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}

.enquiry-button:hover {
  background-color: #cc0000;
}

.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}

.phone-icon {
  margin-right: 10px;
}

.phone-number {
  font-weight: bold;
}


/* Hero Section */
/* Main container for the slider */
.hero {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-top: 56.25%; /* This maintains a 16:9 aspect ratio */
}

.slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.slide:nth-child(1) {
  background-image: url('/images/packerskondapur.jpg');
}

.slide:nth-child(2) {
  background-image: url('/images/affordablepackersandmovers.jpg');
}

.slide:nth-child(3) {
  background-image: url('/images/packersandmoversoldalwal.jpg');
}

.slide.active {
  opacity: 3;
  z-index: 2;
}

/* Overlay styling */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

/* Font size without clamp */
.overlay h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

/* Button styling */
.btn-quote {
  padding: 15px 30px;
  background-color: #ffb400;
  color: #333;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 25px;
  transition: background-color 0.3s;
}

.btn-quote:hover {
  background-color: #333;
  color: #FFD700;
}

/* Adjust the slider for different screen sizes */
@media (max-width: 1200px) {
  .overlay h2 {
      font-size: 2.5rem; /* Adjusted size */
  }
}

@media (max-width: 992px) {
  .overlay h2 {
      font-size: 2rem; /* Adjusted size */
  }

  .btn-quote {
      font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .overlay h2 {
      font-size: 1.5rem; /* Adjusted size */
  }

  .btn-quote {
      padding: 12px 25px;
      font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .overlay h2 {
      font-size: 1.2rem; /* Adjusted size */
  }
  .logo h1{
    font-size: 0.5 rem;
    text-align: center;
  }

  .btn-quote {
      padding: 10px 20px;
      font-size: 0.9rem;
  }
}

.containertip {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  background-color: #f2f2f2;
  padding: 20px;
}

.column {
  background-color: #ffb400;
  color: #000;
  flex: 1 1 200px;
  margin: 10px;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
}

.column h2 {
  color: red;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.column p {
  font-size: 1em;
  line-height: 1.5;
}

.icon {
  font-size: 3em;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .column {
      flex: 1 1 100%;
  }
}


.about-section {
  background-color:#ffb400; /* Light background for contrast */
  padding: 40px 20px; /* Padding for spacing */
  text-align: center; /* Center align text */
}

.about-section h2 {
  font-size: 36px; /* Heading size */
  margin-bottom: 20px; /* Space below heading */
  color: red; /* Header color */
}

.about-section p {
  font-size: 18px; /* Paragraph size */
  line-height: 1.6; /* Line height for readability */
  margin: 10px 0; /* Margin for spacing */
}

.about-image {
  width: 100%; /* Responsive width */
  max-width: 600px; /* Max width for larger screens */
  height: auto; /* Maintain aspect ratio */
  margin: 20px 0; /* Space above and below the image */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .about-section h2 {
      font-size: 28px; /* Smaller heading size on mobile */
  }

  .about-section p {
      font-size: 16px; /* Smaller paragraph size on mobile */
  }

  .about-image {
      max-width: 100%; /* Full width on mobile */
  }
}


/* Floating Call and WhatsApp Buttons */
.fixed-buttons {
  position: fixed;
  bottom: 290px;
  right: 10px;
  z-index: 1000;
  display: flex;
  overflow-x: hidden;
  flex-direction: column;
  gap: 10px;
}

.call-btn, .whatsapp-btn {
  padding: 10px 4px;
  background-color: rgb(13, 236, 13);
  color: white;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  overflow-x: hidden;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

.call-btn:hover, .whatsapp-btn:hover {
  background-color: #e03e20;
}

/* Services Section */
.services-section {
  background-color: #f8f8f8;
  padding: 100px 20px;
  text-align: center;
}

.services-section h2 {
  color: #333;
  font-size: 36px;
  margin-bottom: 50px;
}

.services-slider {
  position: relative;
}

.service-box {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.service-box img {
  width: 100%;
  border-radius: 10px;
}

.service-box h3 {
  margin: 20px 0 10px;
  color: #f04e23;
}

.service-box p {
  color: #555;
}

/* Services Section */
.services-section {
  background-color: #f8f8f8;
  padding: 100px 20px;
  text-align: center;
}

.services-section h2 {
  color: #333;
  font-size: 36px;
  margin-bottom: 50px;
}

.services-slider {
  display: flex;
  align-items: center; /* Center vertically */
  justify-content: center; /* Center horizontally */
  position: relative;
}

.service-box {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  flex: 1; /* Allow the service box to grow */
  max-width: 300px; /* Set a maximum width for the service box */
  margin: 0 20px; /* Margin for spacing */
}

.service-box img {
  width: 100%;
  border-radius: 10px;
}

.service-box h3 {
  margin: 20px 0 10px;
  color: #f04e23;
}

.service-box p {
  color: #555;
}

/* Slider Controls */
.slider-btn {
  background-color: #f04e23;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 20px; /* Adjust font size for visibility */
}

.slider-btn:hover {
  background-color: #e03e20;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .service-box {
    margin-bottom: 20px;
  }

  .slider-controls {
    flex-direction: row;
  }

  .slider-btn {
    width: auto; /* Adjust width for better appearance on mobile */
  }
}

/*work process*/
.work-process {
  background-image: url('../images/packersandmovershyderbad.jpg'); /* Replace with your background image */
  background-size: cover;
  background-position: center;
  padding: 40px 20px;
  text-align: center;
  color: #f3f3f3;
}

.work-process h2 {
  color: #121010;
  font-size: 32px;
  margin-bottom: 20px;
}

.process-steps {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.process-step {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 20px;
  margin: 10px;
  border-radius: 8px;
  width: 200px;
  transition: transform 0.3s;
}

.process-step:hover {
  transform: scale(1.05);
}

.icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.process-step h3 {
  font-size: 18px;
}

/* work process*/
@media (max-width: 768px) {
  .work-process h2 {
    font-size: 24px;
  }

  .process-step {
    width: 40%;
    margin: 10px 0;
  }

  .icon {
    font-size: 30px;
  }

  .process-step h3 {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .work-process h2 {
    font-size: 20px;
  }

  .process-step {
    padding: 15px;
  }

  .icon {
    font-size: 25px;
  }

  .process-step h3 {
    font-size: 14px;
  }
}

/*image our client*/
.client{
  text-align: center;
  margin: 5px 0;
}
.cl{
  max-width: 100%;
  height: auto;
  width: 600px;
}
@media (max-width:768px) {
  .cl{
    width:400px;
  } 
}
@media (max-width:480px) {
  .cl{
    width:300px;
  }
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.testimonial-slider {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: auto;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  text-align: center;
}

.testimonial-slide p {
  font-size: 1.2em;
}

.testimonial-slide h3 {
  margin-top: 10px;
  color: #555;
}

.active-slide {
  display: block;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border: none;
  background-color: rgba(0, 0, 0, 0.5);
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Responsive design */
@media (max-width: 768px) {
  .testimonial-slide p {
      font-size: 1em;
  }

  .testimonial-slide h3 {
      font-size: 0.9em;
  }
}

.testimonials-section {
  width: 100%;
  max-width: 600px;
  margin: auto;
  text-align: center;
  position: relative;
  padding: 40px 0;
  background-color: #fff;
  color: #333;
}

h2 {
  color: orange;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonial {
  display: none;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  color: #555;
}

.testimonial.active {
  display: block;
}

button.testimonial-prev,
button.testimonial-next {
  background-color: orange;
  border: none;
  color: white;
  font-size: 20px;
  padding: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

button.testimonial-prev {
  left: 10px;
}

button.testimonial-next {
  right: 10px;
}

button.testimonial-prev:hover,
button.testimonial-next:hover {
  background-color: #ff6600;
}


/* Quote Section Styles */
.quote-section {
    background: linear-gradient(135deg, #ffb400 50%, #f8f8f8 50%);
    color: white;
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .quote-section h2 {
    color: rgb(230, 7, 7);
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
  }
  
  .quote-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
  
  #quoteForm {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  #quoteForm label {
    color: #333;
    font-weight: bold;
    margin-bottom: 8px;
  }
  
  #quoteForm input, #quoteForm textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: 2px solid #ffb400;
    border-radius: 10px;
    font-size: 16px;
  }
  
  #quoteForm input:focus, #quoteForm textarea:focus {
    outline: none;
    border-color: #ffb400;
  }
  
  .quote-btn {
    background-color: #f04e23;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .quote-btn:hover {
    background-color: #e03e20;
  }
  
  /* Right Column: Visual/Testimonial */
  .quote-visual {
    text-align: center;
  }
  
  .quote-visual img {
    width: 70%;
    border-radius: 15px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
  }
  
  .quote-visual p {
    font-size: 16px;
    color: #333;
    font-style: italic;
  }
  
  /* Responsive Styles for Quote Section */
  @media (max-width: 768px) {
    .quote-content {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .quote-section {
      padding: 50px 20px;
    }
  }
  



.containercnt {
  background-color: #ff0000;
  text-align: center;
}

.container h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.hours {
  margin-bottom: 20px;
}

.hours div {
  color: white;  
  margin: 5px 0;
}


/* Footer Section */
.footer-section {
  background: #ffb400;
  color: white;
  padding: 50px 0;
  font-family: 'Poppins', sans-serif;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-column h4 {
  color: #e20c0c;
  margin-bottom: 15px;
  font-size: 20px;
}

.footer-column p, .footer-column li {
  color: #0f0b0b;
  font-size: 16px;
  line-height: 1.6;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #090707;
  padding-top: 20px;
}

.footer-bottom p {
  color: #0e0a0a;
  font-size: 14px;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-column {
    margin-bottom: 30px;
  }
}
