/* Global CSS Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and page layout */
body {
  font-family: 'Lato';
  line-height: 1.6;
  background-color: #fff;
  color: #333;
  padding: 0;
  margin: 0;
  width: 100%;
}

html {
  font-size: 16px; /* Default font size for responsiveness */
}

/* Section Spacing */
section {
  padding: 50px 20px;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 10px;
  font-weight: 600;
}

p {
  margin-bottom: 15px;
}

ul, ol {
  margin-bottom: 15px;
  padding-left: 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header styling */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 150px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}


/* Logo styling */
.logo img {
  max-height: 80px;
  width: auto;
}

/* Text logo styling */
.text-logo {
  font-family: 'Poppins', Arial, sans-serif; /* Sleek, modern font */
  font-size: 1.5rem; /* Larger size for prominence */
  font-weight: 800; /* Extra bold for impact */
  background: linear-gradient(90deg, #d9534f, #000000a8); /* Stylish gradient */
  -webkit-background-clip: text; /* Clips the gradient to the text */
  -webkit-text-fill-color: transparent; /* Makes the text transparent to show gradient */
  text-transform: uppercase; /* All caps for a clean look */
  letter-spacing: 3px; /* Slightly wider spacing */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* Add depth with shadows */
  transition: transform 0.3s ease, text-shadow 0.3s ease; /* Smooth hover animations */
  cursor: pointer; /* Pointer cursor for interactivity */
}



/* Hover Effect */
.text-logo:hover {
  transform: scale(1.1); /* Slightly enlarge on hover */
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3); /* Enhance shadow on hover */
}

/* Button styling */
.button-container {
  text-align: right;
}

.get-estimate {
  background-color: #d9534f;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.get-estimate:hover {
  background-color: #0056b3;
}



/* Add padding-top to hero section to account for the fixed header */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-image: url('images/banner.jpg'); /* Replace with your background image */
  background-size: cover;
  background-position: center;
  padding: 40px;
  padding-top: 120px; /* Adjust this value based on your header's height */
  color: #fff;
}


.hero-content {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding-top:20px;
}

.hero-left {
  flex: 1;
}

.hero-left h1 {
font-size: 28px;
    font-weight: bold;
    line-height: 1.4;
    text-shadow: 2px 2px 5px rgba(255, 0, 0, 0.7), -2px -2px 5px rgba(0, 0, 255, 0.7); /* Colorful shadow */
    color: yellow;
    text-align: center; /* Centers text within the heading itself */
    padding-top:200px;
}

.hero-right {
  flex: 0.4;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: #333;
}

.designer-form h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}

.designer-form input,
.designer-form select {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.phone-input {
  display: flex;
  gap: 10px;
}

.phone-input select {
  width: 30%;
}

.phone-input input {
  width: 80%;
}

.whatsapp-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin: 10px 0;
}

.form-button {
  width: 100%;
  padding: 10px;
  background: #d9534f;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.form-button .free-tag {
  background: #ffc107;
  color: #000;
  font-weight: bold;
  margin-left: 5px;
  padding: 2px 5px;
  border-radius: 3px;
}

.form-button:hover {
  background: #c9302c;
}

.designer-form p {
  font-size: 12px;
  text-align: center;
  margin-top: 10px;
}

.designer-form p a {
  color: #007bff;
  text-decoration: none;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 40px;
  background: #fff;
  text-align: center;
  overflow: hidden; /* Ensure overflow is hidden for smooth scrolling */
}

.why-choose-us h2 {
  font-size: 2rem;
  color: #444;
  margin-bottom: 20px;
}

.features-container {
  position: relative;
  overflow: hidden; /* Hide content overflowing the container */
  width: 100%;
}

.features {
  display: flex;
  gap: 20px;
  animation: scroll-left 15s linear infinite; /* Infinite scroll animation */
}

.features:hover {
  animation-play-state: paused; /* Pause the animation on hover */
}

.feature {
  min-width: 250px; /* Set a fixed width for items */
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.feature img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.feature h3 {
  font-size: 1.2rem;
  color: #333;
  margin: 10px 0;
}

.feature p {
  font-size: 0.9rem;
  color: #666;
}

.feature i{
    font-size:100px;
    color:#d9534f;
}


/* Animation */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}


/* Why HomeLane Bangalore Section */
.why-homelane-bangalore {
  padding: 50px 20;
    max-width:1200px;
    margin:auto; 
  text-align: center;
}

.why-homelane-bangalore h2 {
  font-size: 2rem;
  color: #444;
  margin-bottom: 20px;
}

.statistics {
  display: flex;
  justify-content: center;
  gap: 200px;
  margin: 20px 0;
}



.stat {
  text-align: center;
}

.stat h3 {
  font-size: 4rem;
  color: #000;
  margin-bottom: 10px;
}

.stat p {
  font-size: 1rem;
  color: #666;
}

.description {
  font-size: 1rem;
  color: #555;
  margin-top: 20px;
  line-height: 1.6;
}


/* Complete Home Interiors in 3 Easy Steps Section */
/* Complete Home Interiors in 3 Easy Steps Section */
.easy-steps-ref {
  padding: 40px;
  background: #fff;
  text-align: center;
}

.easy-steps-ref h2 {
  font-size: 2rem;
  color: #444;
  margin-bottom: 30px;
}

.steps-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 200px;
  margin-top: 20px;
}

.image-container img {
  width: 300px;
  border-radius: 8px;
}

.steps-content {
  max-width: 400px;
  text-align: left;
}

.steps-indicator {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.steps-indicator .step {
  width: 20px;
  height: 20px;
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 50%;
  text-align: center;
  line-height: 18px;
  font-size: 12;
  color: #ccc;
  cursor: pointer;
}

.steps-indicator .step.active {
  background: #e63946;
  color: #fff;
  border-color: #e63946;
}

.steps-indicator .line {
  flex: 1;
  height: 2px;
  background: #ccc;
  margin: 0 10px;
}

.step-detail {
  display: none;
}

.step-detail.active {
  display: block;
}

.steps-content h3 {
  font-size: 1.5rem;
  color: #e63946;
  margin-bottom: 10px;
}

.steps-content p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}



/* Centering the CTA Button */
.cta-wrapper {
  text-align: center;
  margin-top: 30px;
}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  background: #e63946;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #c12739;
}


/* End-to-End Interior Solutions Section */
.interior-solutions {
  text-align: center;
  padding: 50px 20px;
    max-width:1200px;
    margin:auto;
}

.interior-solutions h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.interior-solutions p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 30px;
  justify-items: center;
}

.solution-item {
  text-align: center;
}

.solution-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.solution-item p {
  font-size: 1rem;
  color: #333;
}

.cta-button {
  display: inline-block;
  background-color: #e74c3c;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 40px;
}

.cta-button:hover {
  background-color: #c0392b;
}
/*----carousel-section*/
.image-wrapper {
  position: relative;
  width: 242px; /* Fixed width */
  height: 200px; /* Fixed height */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.image-wrapper:hover .overlay {
  opacity: 1; /* Show text on hover */
}

/* General section styles */
.showcase-section {
  text-align: center;
  padding: 50px 20px;
      width: 1200px;
    margin: auto;
  
}

.showcase-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
}

.showcase-section p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
}

.cta-btn {
  padding: 10px 20px;
  background-color: #e63946;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background-color: #d32f2f;
}

/* Swiper container styles */
.swiper {
  padding: 20px 0;
  margin-bottom:50px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.swiper-pagination {
  margin-top: 15px;
}

/* Navigation buttons */
.swiper-button-next,
.swiper-button-prev {
  background-color: #fff;
  color: #333;
  width: 40px !important;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  font-size: 20px; /* Adjust icon size */
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #f1f1f1;
}

.swiper-button-next i,
.swiper-button-prev i {
  font-size: 18px; /* Control the size of the Font Awesome icon */
  color: #333; /* Icon color */
}

.swiper-button-next:hover i,
.swiper-button-prev:hover i {
  color: #e63946; /* Change icon color on hover */
}

.swiper-button-next:after, .swiper-button-prev:after {
    content: '' !important;
}


/* Wrapper for Center Alignment */
.estimate-section-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh; /* Full viewport height */
  padding: 20px;
 border-top:1px solid #8080803d;
}

/* Section Styling */
.estimate-section {
  text-align: center;
  max-width: 1200px; /* Limit width for proper alignment */
  width: 100%;
  border-radius: 12px;
  padding: 50px 20px;
}

.estimate-header h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.estimate-header .highlight {
  color: #d9534f;
}

.estimate-header p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

/* Card Container */
.estimate-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Individual Card */
.estimate-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 50px;
  width: 520px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.estimate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.card-icon{
    
    display:flex;
    justify-content:space-between;
}

.card-icon img {
  max-width: 60px;
  margin-bottom: 15px;
}

.estimate-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.estimate-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.cta-button {
  background-color: #d9534f;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.cta-button:hover {
  background-color: #c9302c;
}

/* Icon on the Right */
.extra-icon img {
  max-width: 40px;
}


/* Section Styling */
.testimonial-section {
  padding: 50px 20px;
  text-align: center;
}

.testimonial-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Title */
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: bold;
}

/* Slider Wrapper */
.testimonial-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap:40px;
}

.testimonial-card {
  flex: 0 0 30.33%; /* Show 3 cards at a time */
  text-align: left;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  box-sizing: border-box;
}

.testimonial-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.testimonial-card h3 {
  margin: 10px 0;
  font-size: 1.2rem;
}

.location {
  font-style: italic;
  color: #777;
}

/* Navigation Section */
.testimonial-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 20px;
}

/* Navigation Buttons */
.prev-btn,
.next-btn {
  background: #fff;
  color: #000;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 100%;
  transition: background 0.3s;
  box-shadow:0px 4px 4px 0px #00000040;
}

.prev-btn:hover,
.next-btn:hover {
  background: rgba(255, 255, 255, 0.7);
    box-shadow:0px 4px 4px 0px #00000040;
}

/* Dots Section */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: #ff6600;
}

/* Showroom Section */
.showroom-section {
  padding: 20px;
  text-align: center;
  border-top: 1px solid #8080803d;
}

/* Tabs */
.tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.tab {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-weight: bold;
}

.tab.active {
  background-color: #e63946;
  color: #fff;
}

/* Slider Wrapper */
.slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Slider */
.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  margin-left: 0; /* Reset default margin for better responsiveness */
}

.slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
  padding: 20px;
  box-sizing: border-box;
  flex-wrap: wrap; /* Allow content to wrap */
}

.slide img {
  flex-shrink: 0;
  width: 50%; /* Adjust size for better fit */
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}



.slide-content h3 {
  font-size: 24px;
  color: #333;
}

.slide-content p {
  font-size: 16px;
  color: #666;
}

.cta-btn {
  background-color: #e63946;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
}

.cta-btn:hover {
  background-color: #b82b36;
}

/* Navigation Buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.prev-btn2 {
  left: 10px;
}

.next-btn2 {
  right: 10px;
}




/* FAQ Section Styling */
.faq-section {
  padding: 100px 20px 0 0;
  background-color: #fff;
  text-align: center;
}

.faq-section h1 {
  font-size: 24px;
  color: #333;
  margin-bottom: 50px;
}

.faq {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}


.accordion{
    margin: 0 auto;
    text-align: left;
    max-width: 800px;
}

.accordion-header {
    position: relative;
    width: 100%;
    outline: none;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    cursor: pointer;
    padding: 15px 50px 15px 10px;
    position: relative;
    color: #58595B;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 24px;
    font-weight: 400;
}

.accordion-header:hover {
    background-color: #e2e2e2;
}

.accordion-header .arrow {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: solid #333;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    background-color: #fff;
    transition: max-height 0.3s ease;
    border-top: 1px solid #ddd;
}

.accordion-content p {
    margin: 0;
    padding: 15px;
}

.accordion-header.active .arrow {
    transform: rotate(-135deg); /* Rotate the arrow when active */
}


 .popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #fff;
            border: 1px solid #ccc;
            padding: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            z-index: 1000;
        }

.popup.hidden {
    visibility: hidden;
    opacity: 0;
}

.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 400px;
}

.popup-content h3 {
    color: #28a745;
    margin-bottom: 10px;
}

.popup-content img.success-gif {
    max-width: 100px;
    margin-bottom: 15px;
}

.popup-content button {
    padding: 10px 20px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.popup-content button:hover {
    background: #0056b3;
}

/* Custom Styling for Terms and Conditions Modal */
        .modal-header {
            background-color: #0d54a1;
            color: white;
        }
        .modal-footer {
            background-color: #f1f1f1;
        }
        .modal-body {
            max-height: 400px;
            overflow-y: auto;
        }

/* Footer Styling */
.footer {
    background-color: #ffffff;
    padding: 80px 20px 0 0;
    text-align: center;
    width:1200px;
    margin:auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom:1px solid #00000021;
   padding: 50px 0 50px 0;
}

.footer-container-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 0 20px 0;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 60%;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 60%;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-text {
      font-size: 12px;
    color: #555;
    line-height: 1.6;
    background: #f3f3f3;
    padding: 15px;
    text-align: left;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-bottom-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-socials {
    margin-bottom: 10px;
}

.footer-socials a i{
    font-size: 30px;
}

.social-icon {
    margin: 5px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 14px;
}

.social-icon:hover {
    color: #007bff;
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    margin: 0 10px;
    text-decoration: none;
    color: rgb(162, 157, 157);
    padding-right: 50px;
    font-size: 18px;
}

.footer-links a:hover {
    color: #007bff;
}

.footer-links-bottom {
    margin-bottom: 10px;
}

.footer-links-bottom a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
}

.footer-links-bottom a:hover {
    color: #007bff;
}

.footer-contact {
    margin-top: 15px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #555;
}

 .whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #25d366;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon {
  width: 50px;
  height: 50px;
  display: block;
}

/* Style for the Enlarge Icon */
.enlarge-icon {
  font-size: 20px;
  color: #fff;
  margin-left: 10px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.enlarge-icon:hover {
  color: #d9534f; /* Hover color */
}

/* Modal Styling */
#imageModal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  max-width: 1200px;
}

#modalImage {
  margin: auto;
  display: block;
  max-width: 50%;
  max-height: 80%;
}

#modalImage img {
  width: 100%;
  height: auto;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

#caption {
  text-align: center;
  color: white;
  margin-top: 10px;
}

.nav-btnm {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 30px;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.nav-btnm:hover {
  background-color: rgba(0, 0, 0, 0.8);
}


/*----- Responsive CSS--- */
@media (max-width: 480px) {
    
     .showcase-section {
    padding: 20px 10px;
    width:100%;
  }

  .showcase-section h2 {
    font-size: 1.4rem;
  }

  .showcase-section p {
    font-size: 0.8rem;
    margin-bottom: 15px;
  }

  .cta-btn {
    font-size: 0.75rem;
    padding: 6px 10px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 25px;
    height: 25px;
  }
  
    .image-wrapper{
      
      width:100%;
  }
    
  .slide-content h3 {
    font-size: 20px; /* Smaller headings for very small screens */
  }

  .slide-content p {
    font-size: 14px; /* Adjust text size */
  }

  .cta-btn {
    padding: 8px 12px; /* Adjust button size */
    font-size: 14px; /* Adjust button font size */
  }
}

@media (max-width: 768px) {
  .header {
    align-items: flex-start;
    padding: 0px;
  }
  
  .hero-left h1{
      padding-top:0px;
      font-size:25px;
  }
  
  .cta-button{
      font-size:12px !important; 
      padding:10px;
  }
 
  .text-logo {
    font-size: 1.2rem; /* Slightly smaller font size */
    letter-spacing: 2px; /* Adjust spacing */
    padding:20px;
  }
 
  .button-container {
    text-align: center;
    margin-top: 10px; /* Add spacing from logo */
  }
 
  .get-estimate {
    width: 100%; /* Full width button */
    font-size: 14px; /* Slightly smaller font size */
  }
 
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .features {
    flex-direction: row;
  }


  .feature {
    min-width: 200px;
  }


  .statistics {
  gap: 0px;
 
}


 
  .showcase-section {
    padding: 30px 10px;
  width:100%;
      
  }

  .showcase-section h2 {
    font-size: 1.6rem;
  }

  .showcase-section p {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }

  .cta-btn {
    font-size: 0.8rem;
    padding: 7px 12px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 30px;
    height: 30px;
  }
    .image-wrapper{
      
      width:100%;
  }

    
      .estimate-cards {
    flex-direction: column;
    align-items: center;
  }

  .estimate-card {
    width: 90%;
  }
    
      .slide img {
    width: 100%; /* Full width image for smaller screens */
    margin-bottom: 10px; /* Add spacing below image */
  }

  .slide-content {
    width: 100%; /* Full width text content */
  }
    
      .nav-btn {
    padding: 8px; /* Reduce button size */
  }
    
      .showroom-section {
    padding: 15px; /* Adjust padding for smaller screens */
  }

  .tabs {
    gap: 10px; /* Reduce gap for tabs */
  }

  .tab {
    padding: 8px 15px; /* Adjust tab padding */
    font-size: 14px; /* Reduce font size */
  }
    
      .accordion-header{
  font-size:12px;
 
}

.accordion-header .arrow {
    width: 10px;
    height: 10px;
}
    
    
   .footer {
   width:100%;
   padding:0px;
}
   

    .footer-left {
        max-width: 100%;
        align-items: center;
        text-align: left;
         padding:10px;
    }
    
    .footer-right {
        max-width: 100%;
        align-items: center;
        text-align: left;
         padding:10px;
    }
    
    .footer-bottom-left,
    .footer-bottom-right {
        max-width: 100%;
        align-items: center;
        text-align: left;
        padding:10px;
    }

    .footer-text {
        font-size: 10px;
        margin-bottom: 15px;
    }

    .footer-socials {
        margin-bottom: 15px;
    }

    .footer-socials .social-icon {
        font-size: 13px;
    }
    

    .footer-links {
        font-size: 12px;
        margin-bottom: 15px;
    }

.footer-links a{
    
  margin: 0px;
    text-decoration: none;
    color: rgb(162, 157, 157);
    padding-right: 20px;
    font-size: 14px;
}
    .footer-contact .whatsapp {
        font-size: 13px;
        padding: 8px 16px;
    }
    
}


@media (min-width: 1024px) {
    
    .showcase-section {
    padding: 40px 15px;
  }

  .showcase-section h2 {
    font-size: 1.8rem;
  }

  .showcase-section p {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }

  .cta-btn {
    font-size: 0.9rem;
    padding: 8px 15px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 35px;
    height: 35px;
  }
  
  .image-wrapper{
      
      width:100%;
  }
  
  .testimonial-card {
    flex: 0 0 30.33%; /* Show 3 cards at a time */
  }
}

/* Small screens (up to 640px) */
@media (max-width: 640px) {
      .easy-steps-ref h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .steps-wrapper {
    gap: 20px; /* Reduce gap */
    flex-direction: column; /* Stack items vertically */
  }

  .steps-content {
    max-width: 100%; /* Allow full width for text */
    text-align: center; /* Center align text */
  }

  .steps-content h3 {
    font-size: 1.4rem; /* Adjust heading size */
  }

  .steps-content p {
    font-size: 0.9rem; /* Adjust paragraph size */
  }

  .image-container img {
    max-width: 250px; /* Reduce image size */
  }

  .steps-indicator {
    flex-direction: row; /* Stack indicators vertically */
    gap: 50px;
  }

  .steps-indicator .line {
    display: none; /* Hide lines between steps */
  }
    
    
  .testimonial-slider {
    gap: 20px;
  }

  .testimonial-card {
    flex: 0 0 100%; /* Show 1 card at a time */
    padding: 15px;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1rem;
  }
}

/* Medium screens (641px to 1024px) */
@media (min-width: 641px) and (max-width: 1024px) {
      .easy-steps-ref h2 {
    font-size: 1.9rem;
  }

  .steps-wrapper {
    gap: 30px; /* Adjust gap */
    flex-direction: row; /* Retain horizontal layout */
  }

  .steps-content {
    max-width: 350px;
    text-align: left; /* Align text to the left */
  }

  .steps-content h3 {
    font-size: 1.4rem; /* Adjust heading size */
  }

  .steps-content p {
    font-size: 0.95rem; /* Adjust paragraph size */
  }

  .image-container img {
    max-width: 280px; /* Slightly reduce image size */
  }
    
    
  .testimonial-card {
    flex: 0 0 48%; /* Show 2 cards at a time */
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.1rem;
  }
}


