/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
  overflow-x: hidden; /* Prevent horizontal scroll */
}
  /* Top Bar */
  .top-bar {
    display: flex;
    justify-content: space-between;
    padding: 5px 20px;
    background: linear-gradient(135deg, #b00 65%, #333 35%);
    color: white;
    font-size: 16px;
    font-weight: 400;
  }
  
  .top-bar .social-links a {
    color: white;
    text-decoration: none;
    margin-left: 5px;
    margin-top: 50px;
    font-size: 20px;
    line-height: 1;
  }
  
  /* Main Header */
  .main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .main-header h1 {
    font-size: 22px;
    color: #b00;
    text-align: center;
  }
  
  .logo {
    height: 50px;
  }
  
  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-top: 50px;
  }
  
  .nav-menu ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
  }
  
  .toggle-btn {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .nav-menu ul {   
      display: none;
      flex-direction: column;
      background:#b00;
      position: absolute;
      top: 70px;
      right: 30px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      width: 200px;
      padding: 10px;
      border-radius: 4px;
      z-index: 1000;
    }
    .nav-menu ul li a{
        color: white;
        font-size: 20px;
    }
    .nav-menu ul.active {
      display: flex;
    }
  
    .toggle-btn {
      display: block;
    }
  }


/* Slider Styles */
.slider {
  position: relative;
  width: 100%;
  height: 56.25vw; /* 16:9 aspect ratio */
  max-height: 500px;
  overflow: hidden;
}

.slider-container {
  display: flex;
  transition: transform 1s ease-in-out;
}

.slide {
  width: 100%; /* Full width of the container */
  flex-shrink: 0;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fixed-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.fixed-icons a {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}

.fixed-icons a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

.call {
  background-color: #34c759;
  color: white;
}

.whatsapp {
  background-color: #25d366;
  color: white;
}

.email {
  background-color: #007bff;
  color: white;
}

.fixed-icons a i {
  font-size: 24px;
}


.about-section {
  padding: 50px 20px;
  background: linear-gradient(to right, #f4f4f4, #ffffff);
  position: relative;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.about-content {
  flex: 1;
  padding: 20px;
}

.about-content h2 {
  font-size: 3rem;
  color: #333;
  margin-bottom: 20px;
  position: relative;
  animation: slideInLeft 1.2s ease-in-out;
}

.about-content h2:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 5px;
  background: #ff6600;
  left: 0;
  bottom: -10px;
}

.about-content p {
  font-size: 1.5rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  animation: fadeIn 1.5s;
}

.about-content p span {
  font-weight: bold;
  color: #ff6600;
}

.about-images {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.about-images img {
  width: 100%;
  max-width: 280px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.about-images img:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.compliments {
  margin-top: 30px;
  padding: 20px;
  background:linear-gradient(135deg, #b00 50%, #333 50%);
  color: #fff;
  text-align: center;
  border-radius: 10px;
  animation: zoomIn 1.5s;
}

.compliments h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.compliments p {
  font-size: 1.2rem;
  margin: 10px 0;
}

@keyframes slideInLeft {
  from {
      transform: translateX(-100%);
      opacity: 0;
  }
  to {
      transform: translateX(0);
      opacity: 1;
  }
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

@keyframes zoomIn {
  from {
      transform: scale(0.8);
      opacity: 0;
  }
  to {
      transform: scale(1);
      opacity: 1;
  }
}

@media (max-width: 768px) {
  .about-container {
      flex-direction: column;
  }

  .about-content h2 {
      font-size: 2.5rem;
  }

  .about-content p {
      font-size: 1.5rem;
  }

  .about-images img {
      max-width: 350px;
  }

  .compliments h3 {
      font-size: 1.5rem;
  }

  .compliments p {
      font-size: 1rem;
  }
}






/* Quote Section Styling */
.quote-section {
    background:linear-gradient(135deg, #b00 50%, #333 50%); /* Dark blue background */
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
    width: 100%;
    overflow-x: hidden;
}

/* Form Container */
.qouteclass {
    max-width: 600px;
    margin: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    padding: 40px 30px;
    box-sizing: border-box;
}

/* Title */
.qouteclass h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #001f54;
    font-size: 30px;
    font-weight: 700;
}

/* Form Fields */
.qouteformclass {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.qouteformclass label {
    display: none; /* Hidden for modern minimalist design */
}

.qouteformclass input[type="text"],
.qouteformclass input[type="email"],
.qouteformclass textarea {
    padding: 14px 18px;
    border-radius: 6px;
    border: 1.5px solid #ccc;
    font-size: 16px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.qouteformclass input:focus,
.qouteformclass textarea:focus {
    border-color: #007bff;
    background-color: #fff;
    outline: none;
}

/* Submit Button */
.quote-btn {
    background: linear-gradient(to right, #007bff, #00c6ff);
    color: #fff;
    font-size: 18px;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.quote-btn:hover {
    background: linear-gradient(to right, #0056b3, #0096d6);
}

/* Responsive */
@media (max-width: 600px) {
    .qouteclass {
        padding: 30px 20px;
    }

    .qouteclass h2 {
        font-size: 26px;
    }
}








.services-section {
  padding: 60px 20px;
  background: linear-gradient(to right, #ffffff, #f4f4f4);
}

.services-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.services-title {
  font-size: 3rem;
  color: #333;
  margin-bottom: 40px;
  position: relative;
}

.services-title:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 5px;
  background: #ff6600;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin: 20px 0;
}

.service-card p {
  font-size: 1rem;
  color: #555;
  margin: 0 20px 20px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .services-title {
      font-size: 2.5rem;
  }

  .service-card img {
      height: 150px;
  }

  .service-card h3 {
      font-size: 1.3rem;
  }

  .service-card p {
      font-size: 0.9rem;
  }
}



.mission-vision-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 50px;
  background: linear-gradient(135deg, #b00 50%, #333 50%);
  color: white;
}

.mission, .vision {
  width: 45%;
  margin: 15px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  color: black;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.mission img, .vision img {
  width: 100%;
  height: auto;
}

.content {
  padding: 20px;
}

.content h2 {
  color: #ff4500;
  font-size: 1.8rem;
}

.content p {
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .mission, .vision {
      width: 90%;
  }
}




/* Container with rounded corners, padding, and background */
.scroll-container {
  width: 70%;
  margin-left: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  max-height: 300px; /* Reduced height for a more compact look */
  overflow-y: auto; /* Enables vertical scrolling */
  border: 2px solid #007bff; /* Border outside the container */
  border-radius: 12px; /* Smooth rounded corners */
  background-image:url('../images/scrollbg.jpg');
  padding: 8px; /* Slightly reduced padding */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease-in-out; 
}

/* Remove list styling */
.scroll-container ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

/* List item styling */
.scroll-container li {
  margin: 8px 0; /* More compact margin between list items */
  transition: transform 0.3s ease; /* Smooth transform effect */
}

/* Link styling */
.scroll-container a {
  text-decoration: none; /* Remove underline */
  color: #333; /* Default text color */
  font-size: 14px; /* Reduced font size for a cleaner look */
  font-weight: 500; /* Semi-bold text */
  display: block;
  padding: 10px 12px;
  border-radius: 25px; /* Rounded corners for links */
  transition: all 0.3s ease-in-out; /* Smooth transition effect */
}

/* Hover effect for links */
.scroll-container a:hover {
  background-color: #007bff; /* Background color changes */
  color: #fff; /* Text color changes */
  transform: scale(1.05); /* Slight zoom effect */
}

/* Styling for the scrollbar */
.scroll-container::-webkit-scrollbar {
  width: 15px; /* Wider scrollbar */
}

.scroll-container::-webkit-scrollbar-thumb {
  background-color: #007bff; /* Color of the scrollbar thumb */
  border-radius: 10px; /* Rounded corners for the scrollbar thumb */
  transition: background-color 0.3s ease; /* Smooth color transition */
}

.scroll-container::-webkit-scrollbar-thumb:hover {
  background-color: #0056b3; /* Darker color when hovering */
}

.scroll-container::-webkit-scrollbar-track {
  background: #f4f4f4; /* Light background for the track */
  border-radius: 10px; /* Rounded corners for the track */
}

.scrl{
  background-image: url('../images/map.jpg');
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex; /* Use Flexbox for alignment */
  flex-direction: column; /* Stack elements vertically */
  border: 1px solid rgb(245, 243, 243);
} 
  

.lead{
  background-color: white;
  margin:0 0 10px 0;
}
.lead h2{
  margin: 0;
  padding: 0;
  font-size: 24px;
}
.serve {
  text-align: center;
  padding: 50px 20px;
  background-color:rgb(4, 60, 74);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.serve h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color:rgb(5, 218, 246) ;
}
.service-box {
  display: inline-block;
  width: 30%;
  padding: 20px;
  margin: 10px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.service-box .icon {
  display: inline-block; /* Ensure it's visible */
  visibility: visible; 
  font-size: 50px;
  color: #333;
  margin-bottom: 10px;
}

.service-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 16px;
  color: #666;
}

@media (max-width: 768px) {
  .service-box {
      width: 100%;
      margin: 10px auto;
  }
}



/*work process*/
.work-process {
  background-image: url('../images/packersandmoverspune.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: 30px;
  }

  .process-step {
    padding: 15px;
  }

  .icon {
    font-size: 25px;
  }

  .process-step h3 {
    font-size: 14px;
  }
}









.owner-details-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
  background:linear-gradient(135deg, #b00 50%, #333 50%) ;
}

.owner-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: flex;
  max-width: 800px;
  width: 100%;
}

.owner-photo {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.owner-content {
  padding: 20px;
  flex: 1;
}

.owner-content h2 {
  font-size: 2rem;
  color: #ff4500;
  margin-bottom: 10px;
}

.owner-name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
}

.owner-title {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 20px;
}

.owner-bio {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 15px;
  margin: 5px 0;
}

.contact-info strong {
  color: #ff4500;
}

@media (max-width: 768px) {
  .owner-card {
      flex-direction: column;
      align-items: center;
  }

  .owner-photo {
      width: 100%;
      height: auto;
      border-radius: 0;
  }

  .owner-content {
    text-align: center;
  }
}


.addressee {
  background-image:url('../images/scrollbg.jpg'); 
  text-align: center;
}
.addressee h3{
  color: #000;
  font-size: xxx-large;
}
.addressee p{
  color: #000;
}
#map {
  width: 100%;
  height: 400px;
  margin-top:10px;

}

iframe {
  border: 0; /* Separate border styling */
  margin: 0;
  padding: 0;
}

.about-sectiontwo {
  background: linear-gradient(135deg, #b00 50%, #333 50%);
  color: #fff;
  padding: 20px;
}

.containertwo {
  max-width: 1200px;
  margin: 0 auto;
}
.text-content p{
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.text-content h2 {
  margin-top: 10px;
  color: yellow;
  font-size: 2rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin: 20px 0;
  text-align: center;
}

.stat-item {
  background: rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 8px;
}

.stat-item .icon {
  font-size: 3rem;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.info-cards p{
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.card {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 8px;
}

.card h3 {
  font-size: 1.5rem;
}

.card a {
  color: yellow;
  text-decoration: none;
}

/*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;
  }
}



/* General Footer Styling */
footer {
    background:linear-gradient(135deg, #b00 50%, #333 50%);
    color: #fff;
    padding: 40px 0;
    font-family: 'Arial', sans-serif;
    text-align: left;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.footer-section h3,
.footer-section h4 {
    color: #e1ff00;
    margin-bottom: 10px;
}

.footer-section p, 
.footer-section ul {
    font-size: 14px;
    line-height: 1.6;
}

.footer-section a {
    color: #00c8ff;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    background-color: #1a1a1a;
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-section {
        margin-bottom: 20px;
    }

    .footer-bottom {
        font-size: 12px;
    }
}
  