* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header Styling */
.header {
  background: linear-gradient(to right, #004aad, #0078d7) !important;
  padding: 15px 0 !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

/* Navbar Styling */
.navbar {
  background: transparent !important;
}

.navbar-brand {
  font-weight: bold;
  color: white !important;
  font-size: 22px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Navigation Links */
.nav-link {
  color: white !important;
  font-weight: 500 !important;
  padding: 8px 15px !important;
  transition: all 0.3s ease-in-out !important;
  border-radius: 5px !important;
  margin-right: 18px !important;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.2) !important;
  color: #f1f1f1 !important;
}

/* Active Link Highlight */
.nav-link.active {
  background-color: rgba(255, 255, 255, 0.3) !important;
  border-radius: 5px !important;
}

/* Call-to-Action Button */
.btn-service {
  background-color: white !important;
  color: #004aad !important;
  padding: 10px 20px !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  border: 2px solid white !important;
}

.btn-service:hover {
  background-color: #0078d7 !important;
  color: white !important;
  border-color: white !important;
  transform: scale(1.05) !important;
}

/* Mobile Menu */
.navbar-toggler {
  border: 2px solid white !important;
  padding: 8px !important;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) !important;
}


#heroSlider .carousel-item {
  height: 600px; /* Set a fixed height */
}

#heroSlider .carousel-item .container {
  height: 100%; /* Make the container take full height */
  display: flex;
  align-items: center; /* Vertically align content */
  justify-content: center;
}

/* About Us Section */
.about-us {
  background: #f8f9fa;
  padding: 80px 0;
}

.about-contentt h2 {
  font-size: 36px;
  font-weight: bold;
  color: #004aad;
  margin-bottom: 15px;
}

.about-contentt h3 {
  font-size: 22px;
  margin-top: 20px;
  color: #0078d7;
}

.about-contentt p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

.about-listt {
  list-style: none;
  padding: 0;
}

.about-listt li {
  font-size: 16px;
  margin: 8px 0;
  font-weight: 500;
  color: #222;
}

.about-img img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Call-to-Action Button */
.btn-primary {
  background-color: #004aad;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0078d7;
  transform: scale(1.05);
}

/* Why Choose Us Section */
.why-choose-us-us {
  background: #f8f9fa;
  padding: 80px 0;
  text-align: center;
}

.section-title-us {
  font-size: 36px;
  font-weight: bold;
  color: #004aad;
  margin-bottom: 10px;
}

.section-subtitle-us {
  font-size: 18px;
  color: #333;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.why-box-us {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 15px;
}

.why-box-us i {
  font-size: 30px;
  color: #004aad;
  min-width: 40px;
}

.why-box-us h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #0078d7;
}

.why-box-us p {
  font-size: 16px;
  color: #333;
  margin: 5px 0 0;
}

.why-box-us:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background-color: #004aad;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0078d7;
  transform: scale(1.05);
}

/* Our Services Section */
.our-services-us {
  padding: 80px 0;
  text-align: center;
}

.section-title-us {
  font-size: 36px;
  font-weight: bold;
  color: #004aad;
  margin-bottom: 10px;
}

.section-subtitle-us {
  font-size: 18px;
  color: #333;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Service Grid */
.services-grid-us {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

/* Service Card */
.service-card-us {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-us img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.service-info-us {
  padding: 20px;
  text-align: left;
}

.service-info-us h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0078d7;
}

.service-info-us p {
  font-size: 16px;
  color: #333;
  margin: 5px 0 0;
}

.service-card-us:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Button */
.btn-primary {
  background-color: #004aad;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 30px;
}

.btn-primary:hover {
  background-color: #0078d7;
  transform: scale(1.05);
}

/* For tablets and smaller screens */
@media (max-width: 768px) {
  .services-grid-us {
    grid-template-columns: 1fr; /* Single column layout */
    gap: 20px;
  }

  .section-title-us {
    font-size: 28px;
  }

  .section-subtitle-us {
    font-size: 16px;
  }
}

/* For mobile screens */
@media (max-width: 480px) {
  .our-services-us {
    padding: 50px 20px; /* Adjust padding for smaller screens */
  }

  .section-title-us {
    font-size: 24px;
  }

  .section-subtitle-us {
    font-size: 14px;
  }

  .service-info-us h3 {
    font-size: 18px;
  }

  .service-info-us p {
    font-size: 14px;
  }

  .btn-primary {
    padding: 10px 16px;
    font-size: 14px;
  }
}

/* Quality Assurance Section */
.quality-assurance {
  background: #f8f9fa;
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  color: #004aad;
  margin-bottom: 50px;
}

/* Layout: Text on Left, Image on Right */
.quality-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}

/* Left Side - Quality Steps */
.quality-text {
  width: 50%;
}

.quality-step {
  background: white;
  padding: 20px;
  border-left: 5px solid #0078d7;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.quality-step h3 {
  font-size: 22px;
  color: #0078d7;
  margin-bottom: 5px;
}

.quality-step p {
  font-size: 16px;
  color: #333;
  margin: 0;
}

/* Right Side - Image */
.quality-image {
  width: 45%;
}

.quality-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Button */
.btn-primary {
  display: inline-block;
  background-color: #004aad;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.btn-primary:hover {
  background-color: #0078d7;
  transform: scale(1.05);
}

/* Hitachi Service Locations Section */
.hitachi-service-locations {
  background-color: #eef4ff;
  padding: 60px 0;
  text-align: center;
}

.hitachi-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.hitachi-section-title {
  font-size: 30px;
  font-weight: bold;
  color: #004aad; /* Hitachi Blue */
  margin-bottom: 15px;
}

.hitachi-section-subtitle {
  font-size: 18px;
  color: #444;
  margin-bottom: 40px;
}

.hitachi-locations-wrapper {
  display: flex;
  justify-content: center;
}

.hitachi-locations-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  justify-content: space-around;
}

.hitachi-location {
  background: white;
  border-radius: 12px;
  width: 30%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hitachi-location:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 74, 173, 0.15);
}

.hitachi-location-header {
  background-color: #004aad;
  color: white;
  padding: 15px;
  border-radius: 12px 12px 0 0;
  text-align: center;
}

.hitachi-location-header h3 {
  font-size: 18px;
  margin: 0;
}

.hitachi-location-content {
  padding: 20px;
  text-align: left;
}

.hitachi-location-info p {
  font-size: 16px;
  color: #222;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.hitachi-location-info i {
  color: #004aad;
  margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hitachi-location {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .hitachi-locations-slider {
    flex-direction: column;
    gap: 25px;
  }

  .hitachi-location {
    width: 90%;
    margin: 0 auto;
  }

  .hitachi-section-title {
    font-size: 26px;
  }

  .hitachi-section-subtitle {
    font-size: 16px;
  }
}

/* About Hitachi Hitachi Service Center Section */
.about-service-center {
  background-color: #f8f9fa;
  padding: 60px 0;
  text-align: left;
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  color: #004aad; /* Hitachi Blue */
  margin-bottom: 10px;
  text-align: center;
}

.section-intro {
  font-size: 18px;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
}

.service-history,
.doorstep-services,
.washing-machine-services,
.washing-machine-technologies {
  background: white;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.service-history h3,
.doorstep-services h3,
.washing-machine-services h3,
.washing-machine-technologies h3 {
  font-size: 24px;
  color: #004aad;
  margin-bottom: 15px;
}

.washing-machine-technologies h4 {
  font-size: 20px;
  color: #004aad;
  margin-top: 20px;
}

.washing-machine-technologies p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.washing-machine-services ul {
  list-style-type: none;
  padding-left: 0;
}

.washing-machine-services li {
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
}

.washing-machine-services i {
  color: #004aad;
  margin-right: 8px;
}

/* Font Awesome Icons Styling */
.about-service-center i {
  color: #004aad;
  margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-history,
  .doorstep-services,
  .washing-machine-services,
  .washing-machine-technologies {
    width: 90%;
    margin: auto;
    margin-bottom: 10px !important;
  }
}
/* Styling for the Hitachi Service Center Section */
#hitachi-service-center {
  max-width: 900px;
  margin: 20px auto;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Main Heading */
#hitachi-service-center h1 {
  text-align: center;
  color: #004aad;
  font-size: 28px;
  margin-bottom: 20px;
}

/* Subheadings */
#hitachi-service-center h2 {
  color: #333;
  font-size: 22px;
  margin-top: 20px;
  border-bottom: 2px solid #004aad;
  padding-bottom: 5px;
}

/* Small Headings (h3) */
#hitachi-service-center h3 {
  color: #444;
  font-size: 18px;
  margin-top: 15px;
}

/* Paragraphs */
#hitachi-service-center p {
  color: #555;
  font-size: 16px;
  text-align: justify;
}

/* List Styling */
#hitachi-service-center ul {
  padding-left: 20px;
}

#hitachi-service-center ul li {
  color: #333;
  font-size: 16px;
  margin-bottom: 8px;
}

/* Highlighted Features */
#hitachi-service-center strong {
  color: #004aad;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  #hitachi-service-center {
    padding: 15px;
  }

  #hitachi-service-center h1 {
    font-size: 24px;
  }

  #hitachi-service-center h2 {
    font-size: 20px;
  }

  #hitachi-service-center p,
  #hitachi-service-center ul li {
    font-size: 14px;
  }
}
/* Further Optimization for Mobile Devices */
@media (max-width: 480px) {
  #hitachi-service-center {
    padding: 10px;
    margin: 10px;
  }

  #hitachi-service-center h1 {
    font-size: 22px;
  }

  #hitachi-service-center h2 {
    font-size: 18px;
  }

  #hitachi-service-center h3 {
    font-size: 16px;
  }

  #hitachi-service-center p,
  #hitachi-service-center ul li {
    font-size: 13px;
  }
}

/* Footer Styling */
.footer {
  background-color: #002147; /* Dark Blue */
  color: #ffffff;
  padding: 40px 0;
  text-align: center;
  font-family: Arial, sans-serif;
}

/* Footer Container */
.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 20px;
}

/* Footer Sections */
.footer-section {
  max-width: 250px;
  text-align: left;
}

.footer-section h3 {
  color: #00aaff; /* Light Blue */
  margin-bottom: 10px;
  font-size: 18px;
}

.footer-section p,
.footer-section ul {
  font-size: 14px;
  line-height: 1.6;
}

/* Footer Links */
.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 5px 0;
}

.footer-section a {
  color: #00aaff; /* Light Blue */
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

.footer-section a i {
  margin-right: 8px;
}

.footer-section a:hover {
  color: #ffffff; /* White */
  text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 20px;
  font-size: 14px;
  border-top: 1px solid #00aaff;
  padding-top: 10px;
}

.footer-bottom p {
  font-size: 13px;
  margin: 5px 0;
}

/* Icons */
.footer i {
  margin-right: 8px;
  color: #00aaff;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

/* Contact Form Section */
.form-section {
  background-color: #f8f9fa;
  padding: 50px 0;
  text-align: center;
}

.form-section h2 {
  color: #002147;
  font-size: 2rem;
  margin-bottom: 20px;
}

.form-section .input-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-section label {
  font-weight: bold;
  color: #002147;
}

.form-section input,
.form-section textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-section textarea {
  height: 150px;
  resize: none;
}

.form-section button {
  background-color: #00aaff;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  display: inline-block;
}

.form-section button:hover {
  background-color: #0088cc;
}
/* Contact Page Section */
.contact-page-section {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.section-title h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #002147;
  margin-bottom: 30px;
}

.container-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  width: 45%;
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.office-title {
  font-size: 1.8rem;
  color: #002147;
  margin-bottom: 15px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-details span {
  color: white;
}

.contact-item {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  color: #002147;
}

.contact-item i {
  margin-right: 10px;
  color: #00aaff;
  font-size: 1.3rem;
}

.contact-item a {
  color: #002147;
  text-decoration: none;
}

.contact-item a:hover {
  color: #00aaff;
}

/* Map and Office Image Section */
.map-section {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.map-container iframe {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  border: none;
}

.office-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container-contact {
    flex-direction: column;
    align-items: center;
  }

  .contact-info,
  .map-section {
    width: 90%;
  }

  .map-container iframe {
    height: 200px;
  }
}
/* About Page Section */
.about-page {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.about-content {
  padding: 20px;
}

.about-content h2 {
  font-size: 2.5rem;
  color: #002147;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.about-list li {
  font-size: 1.1rem;
  color: #002147;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.about-list i {
  color: #00aaff;
  margin-right: 10px;
  font-size: 1.3rem;
}

.about-img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-page .row {
    flex-direction: column;
    align-items: center;
  }

  .about-content,
  .about-img {
    width: 90%;
    text-align: center;
  }

  .about-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
/* Hitachi Service Section */
.hitachi-service-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.hitachi-service-section h2 {
  font-size: 2.2rem;
  color: #002147;
  margin-bottom: 20px;
}

.hitachi-service-section p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.service-card {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  width: 48%;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.service-card h5 {
  font-size: 1.3rem;
  color: #002147;
  margin-bottom: 15px;
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card ul li {
  font-size: 1rem;
  color: #002147;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.service-card ul i {
  color: #00aaff;
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .services-grid {
    flex-direction: column;
  }

  .service-card {
    width: 100%;
  }
}
/* Dropdown Styling */
.navbar-nav .dropdown-menu {
  background-color: #0057b38e; /* Blue Background */
  border: none;
  border-radius: 5px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Dropdown Links */
.navbar-nav .dropdown-menu .dropdown-item {
  color: white;
  font-size: 16px;
  padding: 10px 20px;
  transition: all 0.3s ease-in-out;
}

/* Hover Effect */
.navbar-nav .dropdown-menu .dropdown-item:hover {
  background-color: #004494; /* Darker Blue */
  color: #ffffff;
}

/* Dropdown Arrow Color */
.navbar-nav .nav-link.dropdown-toggle::after {
  border-top-color: white; /* Ensures the dropdown arrow is white */
}

/* Dropdown Menu Show on Hover for Large Screens */
@media (min-width: 992px) {
  .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* Responsive Styling */
@media (max-width: 991px) {
  .navbar-nav .dropdown-menu {
    background-color: white; /* White background for mobile */
    box-shadow: none;
  }

  .navbar-nav .dropdown-menu .dropdown-item {
    color: #0057b362 !important;
  }

  .navbar-nav .dropdown-menu .dropdown-item:hover {
    background-color: #e6e6e6;
    color: #0056b3;
  }
}
/* Full-page Centering */
.hitachi-service-center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40vh; /* Full screen height */
  background-color: #f4f4f4; /* Light Grey Background */
}

/* Centered Box with a Premium Look */
.service-box {
  background: linear-gradient(135deg, #004080, #0073e6); /* Blue Gradient */
  padding: 40px 60px;
  border-radius: 12px;
  border: 3px solid #002f6c; /* Deep Blue Border */
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  width: 100%;
}

/* Title Styling */
.section-titlc {
  font-size: 40px; /* Large Font */
  color: #ffffff; /* White Text */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Subtle Glow Effect */
}
.hitachi-repair-section {
  background-color: #f0f4f8;
  padding: 60px 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.repair-box {
  background-color: #ffffff;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #002147;
  padding: 40px;
  border-radius: 4px;
}

.repair-box h1 {
  color: #002147;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 25px 0;
  line-height: 1.3;
}

.repair-box h2 {
  color: #222;
  font-size: 24px;
  font-weight: 600;
  margin: 30px 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #e9ecef;
}

.repair-box h3 {
  color: #333;
  font-size: 20px;
  font-weight: 600;
  margin: 25px 0 15px 0;
}

.repair-box p {
  margin-bottom: 20px;
  font-size: 16px;
}

.repair-box strong {
  color: #333;
  font-weight: 600;
}

.repair-box ul {
  margin: 0 0 25px 0;
  padding-left: 20px;
}

.repair-box ul li {
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  padding-left: 5px;
  list-style: none;
}

/* Media Queries */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }

  .repair-box {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .hitachi-repair-section {
    padding: 40px 0;
  }

  .container {
    max-width: 540px;
  }

  .repair-box {
    padding: 25px;
  }

  .repair-box h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .repair-box h2 {
    font-size: 20px;
  }

  .repair-box h3 {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .hitachi-repair-section {
    padding: 30px 0;
  }

  .repair-box {
    padding: 20px 15px;
    border-left: 4px solid #002147;
  }

  .repair-box h1 {
    font-size: 22px;
  }

  .repair-box h2 {
    font-size: 18px;
  }

  .repair-box h3 {
    font-size: 17px;
  }

  .repair-box p,
  .repair-box ul li {
    font-size: 15px;
  }
}

/* Section Styling */
.hitachi_customer_service_mumbai {
  background-color: #ecf5f0;
  padding: 120px 0 90px;
  position: relative;
}

/* Section Title */
.hitachi_customer_service_mumbai .section-title h5 {
  font-size: 18px;
  color: #007bff;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.hitachi_customer_service_mumbai .section-title h5 i {
  margin-right: 10px;
  color: #007bff;
}

.hitachi_customer_service_mumbai .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-top: 10px;
  text-align: left;
}

.hitachi_customer_service_mumbai .section-title p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  text-align: right;
}

/* Service Items */
.services-item {
  background: #fff;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: 0.3s ease-in-out;
  margin-bottom: 10px;
}

.services-item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
}

.services-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.services-content {
  padding: 20px;
  background: #fff;
  text-align: left;
}

.services-content h3 a {
  font-size: 20px;
  font-weight: 600;
  color: #007bff;
  text-decoration: none;
  transition: 0.3s;
}

.services-content h3 a:hover {
  color: #0056b3;
}

.services-content p {
  font-size: 14px;
  color: #555;
  margin-top: 5px;
}

/* Font Awesome Icons */
.services-content .icon {
  font-size: 30px;
  color: #007bff;
  text-align: right;
}

/* Responsive Design */
@media (max-width: 991px) {
  .hitachi_customer_service_mumbai .section-title h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .hitachi_customer_service_mumbai {
    padding: 80px 0;
  }

  .services-item {
    margin-bottom: 30px;
  }

  .hitachi_customer_service_mumbai .section-title h2 {
    font-size: 24px;
  }
}
/* Section Styling */
.hitachi_machine_repair_in_mumbai {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Titles & Headings */
.section-title h5 {
  font-size: 18px;
  color: #28a745;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #212529;
}

.section-title p {
  font-size: 16px;
  color: #555;
}

/* List Styles */
.fa-ul {
  list-style: none;
  text-align: left;
  margin: 20px auto;
  max-width: 700px;
}

.fa-ul li {
  font-size: 16px;
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  color: #444;
}

.fa-ul .fa-li {
  color: #28a745;
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 2px;
}

/* Sections Styling */
.repair-services,
.why-choose-us,
.contact-us {
  background: #f1f1f1;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.repair-services h3,
.why-choose-us h3,
.contact-us h3 {
  font-size: 22px;
  color: #007bff;
  margin-bottom: 15px;
}

/* Contact Section */
.contact-us p {
  font-size: 16px;
  color: #333;
}

.contact-us strong {
  color: #000;
}

.contact-us i {
  color: #007bff;
  margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 24px;
  }

  .fa-ul {
    max-width: 100%;
  }

  .repair-services h3,
  .why-choose-us h3,
  .contact-us h3 {
    font-size: 20px;
  }
}
/* Main Section Styling */
.hitachi_service_thane_section {
  background: #f8f9fa;
  padding: 60px 0;
  font-family: "Arial", sans-serif;
}

/* Container */
.custom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Section Header */
.service_header {
  text-align: center;
  margin-bottom: 40px;
}

.service_header h5 {
  font-size: 18px;
  color: #d9534f;
  font-weight: 600;
  text-transform: uppercase;
}

.service_header h2 {
  font-size: 28px;
  color: #333;
  font-weight: bold;
  margin: 10px 0;
}

.service_header p {
  font-size: 16px;
  color: #555;
}

/* Service Description */
.service_description,
.why_choose_us,
.contact_details {
  background: #ffffff;
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.service_description h3,
.why_choose_us h3,
.contact_details h3 {
  font-size: 22px;
  color: #222;
  font-weight: bold;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.service_description h3 i,
.why_choose_us h3 i,
.contact_details h3 i {
  color: #002f6c;
  margin-right: 10px;
}

/* Font Awesome List Styling */
.fa-ul {
  list-style: none;
  padding-left: 20px;
}

.fa-ul li {
  font-size: 16px;
  color: #444;
  margin-bottom: 10px;
}

.fa-ul .fa-li {
  color: #002f6c;
}

/* Contact Details */
.contact_details p {
  font-size: 16px;
  color: #333;
  margin: 8px 0;
}

.contact_details a {
  color: #002f6c;
  text-decoration: none;
  font-weight: bold;
}

.contact_details a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .custom-container {
    padding: 10px;
  }

  .service_header h2 {
    font-size: 24px;
  }

  .service_description h3,
  .why_choose_us h3,
  .contact_details h3 {
    font-size: 20px;
  }

  .fa-ul li {
    font-size: 15px;
  }

  .contact_details p {
    font-size: 15px;
  }
}
/* Hitachi Service Section */
.hitachi-service-vikhroli {
  background-color: #f0f8ff;
  padding: 50px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.hitachi-service-vikhroli .container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  font-size: 28px;
  color: #007bff;
  margin-bottom: 15px;
}

.section-title i {
  margin-right: 10px;
  color: #0056b3;
}

.section-description {
  font-size: 16px;
  color: #333;
  margin-bottom: 30px;
}

/* Service Boxes */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.service-boxx {
  background: #e3f2fd;
  border-radius: 8px;
  padding: 20px;
  width: 48%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  transition: 0.3s;
}

.service-boxx:hover {
  background: #bbdefb;
}

.service-boxx h3 {
  font-size: 20px;
  color: #0056b3;
  margin-bottom: 10px;
}

.service-boxx h3 i {
  margin-right: 8px;
  color: #007bff;
}

.service-boxx ul {
  list-style: none;
  padding: 0;
}

.service-boxx ul li {
  font-size: 16px;
  color: #333;
  margin: 8px 0;
}

.service-boxx ul li i {
  color: #007bff;
  margin-right: 8px;
}

/* Contact Info */
.contact-info {
  margin-top: 30px;
  background: #007bff;
  color: #fff;
  padding: 15px;
  border-radius: 8px;
}

.contact-info p {
  font-size: 16px;
  margin: 5px 0;
}

.contact-info i {
  margin-right: 8px;
}

/* Hitachi Lower Parel Service Section */
.hitachi-lowerparel {
  background-color: #e3f2fd;
  padding: 50px 20px;
  text-align: center;
  font-family: "Arial", sans-serif;
}

.hitachi-lowerparel .container {
  max-width: 1000px;
  margin: 0 auto;
}

.service-title {
  font-size: 28px;
  color: #007bff;
  margin-bottom: 15px;
}

.service-title i {
  margin-right: 10px;
  color: #0056b3;
}

.service-description {
  font-size: 16px;
  color: #333;
  margin-bottom: 30px;
}

/* Service List */
.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.service-item {
  background: #bbdefb;
  border-radius: 8px;
  padding: 20px;
  width: 48%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  transition: 0.3s;
}

.service-item:hover {
  background: #90caf9;
}

.service-item h3 {
  font-size: 20px;
  color: #0056b3;
  margin-bottom: 10px;
}

.service-item h3 i {
  margin-right: 8px;
  color: #007bff;
}

.service-item ul {
  list-style: none;
  padding: 0;
}

.service-item ul li {
  font-size: 16px;
  color: #333;
  margin: 8px 0;
}

.service-item ul li i {
  color: #007bff;
  margin-right: 8px;
}

/* Contact Details */
.contact-details {
  margin-top: 30px;
  background: #007bff;
  color: #fff;
  padding: 15px;
  border-radius: 8px;
}

.contact-details p {
  font-size: 16px;
  margin: 5px 0;
}

.contact-details i {
  margin-right: 8px;
}
/* Hitachi Churchgate Service Section */
.hitachi-churchgate {
  background: linear-gradient(to right, #007bff, #0056b3);
  padding: 60px 20px;
  font-family: "Arial", sans-serif;
  color: white;
  text-align: center;
}

.hitachi-churchgate .container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
.header-box {
  margin-bottom: 40px;
}
.header-box .service-title {
  color: white;
}
.header-box .service-title i {
  color: white;
}
.service-title {
  font-size: 28px;
  font-weight: bold;
}

.service-tagline {
  font-size: 16px;
  margin-top: 5px;
  font-style: italic;
}

/* Service Grid */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.service-card {
  background: white;
  color: #333;
  border-radius: 10px;
  padding: 20px;
  width: 250px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease-in-out;
}

.service-card:hover {
  background: #007bff;
  color: white;
}

.card-icon {
  font-size: 40px;
  color: #007bff;
  margin-bottom: 15px;
}

.service-card:hover .card-icon {
  color: white;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* Contact Box */
.contact-box {
  background: white;
  color: #007bff;
  padding: 20px;
  margin-top: 40px;
  border-radius: 10px;
  font-size: 16px;
}

.contact-box h4 {
  font-size: 22px;
  margin-bottom: 10px;
}

.contact-box p {
  margin: 5px 0;
}

/* Hitachi Service Center - Tardeo */
.hitachi-tardeo {
  background: #f0f8ff;
  padding: 60px 20px;
  font-family: "Arial", sans-serif;
  color: #333;
}

.hitachi-tardeo .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Title */
.title-box h2 {
  font-size: 30px;
  color: #007bff;
  font-weight: bold;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

/* Service Wrapper */
.service-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: left;
  gap: 30px;
}

/* Left Column - Services */
.services-list {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 48%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.services-list h3 {
  font-size: 22px;
  color: #0056b3;
  margin-bottom: 15px;
}

.services-list ul {
  list-style: none;
  padding: 0;
}

.services-list li {
  font-size: 16px;
  margin-bottom: 8px;
  color: #333;
}

.services-list li i {
  color: #007bff;
  margin-right: 8px;
}

/* Right Column - Why Choose Us */
.why-choose-us {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 48%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.why-choose-us h3 {
  font-size: 22px;
  color: #0056b3;
  margin-bottom: 15px;
}

.why-choose-us p {
  font-size: 16px;
  margin-bottom: 8px;
}

.why-choose-us i {
  color: #007bff;
  margin-right: 8px;
}

/* Contact Information */
.contact-info {
  background: #007bff;
  color: white;
  padding: 20px;
  margin-top: 40px;
  border-radius: 10px;
}

.contact-info h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.contact-info p {
  font-size: 16px;
  margin: 5px 0;
}
/* Hitachi Service Center - Vile Parle */
.hitachi-vile-parle {
  background: #e6f2ff;
  padding: 60px 20px;
  font-family: "Arial", sans-serif;
  color: #333;
}

.hitachi-vile-parle .container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

/* Title */
.title-box h2 {
  font-size: 28px;
  color: #0056b3;
  font-weight: bold;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

/* Service Details */
.service-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

/* Info Box */
.info-box {
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 48%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.info-box h3 {
  font-size: 22px;
  color: #0056b3;
  margin-bottom: 15px;
}

.info-box ul {
  list-style: none;
  padding: 0;
}

.info-box ul li {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
}

.info-box ul li i {
  color: #007bff;
  margin-right: 8px;
}

/* Contact Box */
.contact-box {
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 48%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.contact-box h3 {
  font-size: 22px;
  color: #0056b3;
  margin-bottom: 15px;
}

.contact-box p {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
}

.contact-box p i {
  color: #007bff;
  margin-right: 8px;
}

/* Button */
.contact-btn {
  background: #007bff;
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 15px;
  display: inline-block;
}

.contact-btn i {
  margin-right: 8px;
}

.contact-btn:hover {
  background: #0056b3;
}

/* Responsive */
@media (max-width: 900px) {
  .service-details {
    flex-direction: column;
    align-items: center;
  }
  .info-box,
  .contact-box {
    width: 100%;
  }
}
/* Hitachi Service Center - Jogeshwari */
.hitachi-jogeshwari {
  background: #e6f2ff;
  padding: 60px 20px;
  font-family: "Arial", sans-serif;
  color: #333;
}

.hitachi-jogeshwari .container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

/* Title Section */
.header-section h2 {
  font-size: 30px;
  color: #0056b3;
  font-weight: bold;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

/* Service Content */
.service-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

/* Service Info */
.service-info,
.why-choose,
.booking-section {
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 48%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.service-info h3,
.why-choose h3,
.booking-section h3 {
  font-size: 22px;
  color: #0056b3;
  margin-bottom: 15px;
}

.service-info ul,
.why-choose ul {
  list-style: none;
  padding: 0;
}

.service-info ul li,
.why-choose ul li {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
}

.service-info ul li i,
.why-choose ul li i {
  color: #007bff;
  margin-right: 8px;
}

/* Booking Section */
.booking-section p {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
}

.booking-section p i {
  color: #007bff;
  margin-right: 8px;
}

/* Book Service Button */
.book-service {
  background: #007bff;
  color: white;
  padding: 12px 25px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 15px;
  display: inline-block;
}

.book-service i {
  margin-right: 8px;
}

.book-service:hover {
  background: #0056b3;
}

/* Responsive */
@media (max-width: 900px) {
  .service-content {
    flex-direction: column;
    align-items: center;
  }
  .service-info,
  .why-choose,
  .booking-section {
    width: 100%;
  }
}
/* Hitachi Service Center - Borivali */
.hitachi-borivali {
  background: linear-gradient(135deg, #e6f0ff, #d6e6ff);
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
  color: #333;
}

.hitachi-borivali .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Header Box */
.header-box h2 {
  font-size: 32px;
  color: #0047b3;
  font-weight: bold;
  margin-bottom: 10px;
}

.tagline {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

/* Services Container */
.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.service-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.service-card h3 {
  font-size: 20px;
  color: #0047b3;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 16px;
  color: #555;
}

.service-card i {
  color: #007bff;
  margin-right: 8px;
}

/* Why Choose Us */
.why-us {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  text-align: left;
}

.why-us h3 {
  font-size: 24px;
  color: #0047b3;
  margin-bottom: 15px;
}

.why-us ul {
  list-style: none;
  padding: 0;
}

.why-us ul li {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

.why-us ul li i {
  color: #007bff;
  margin-right: 8px;
}

/* Contact Info */
.contact-info {
  background: #0047b3;
  color: white;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 20px;
}

.contact-info h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.contact-info p {
  font-size: 16px;
  margin-bottom: 10px;
}

.contact-info p i {
  margin-right: 8px;
}

.book-appointment {
  background: #ffffff;
  color: #0047b3;
  padding: 12px 25px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 15px;
  display: inline-block;
  font-weight: bold;
}

.book-appointment i {
  margin-right: 8px;
}

.book-appointment:hover {
  background: #ffffffcc;
}

/* Responsive Design */
@media (max-width: 900px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-container {
    grid-template-columns: 1fr;
  }
}
/* Hitachi Service Center - Vasai */
.hitachi-vasai {
  background: linear-gradient(135deg, #f0f8ff, #d9e6ff);
  padding: 60px 20px;
  font-family: "Roboto", sans-serif;
  color: #333;
}

.hitachi-vasai .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* Header Section */
.header-box h2 {
  font-size: 34px;
  color: #003366;
  font-weight: bold;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

/* Services Section */
.services-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.service-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.service-card h3 {
  font-size: 20px;
  color: #003366;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 16px;
  color: #555;
}

.service-card i {
  color: #007bff;
  margin-right: 8px;
}

/* Why Choose Us */
.why-choose-us {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  text-align: left;
}

.why-choose-us h3 {
  font-size: 24px;
  color: #003366;
  margin-bottom: 15px;
}

.why-choose-us ul {
  list-style: none;
  padding: 0;
}

.why-choose-us ul li {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

.why-choose-us ul li i {
  color: #007bff;
  margin-right: 8px;
}

/* Contact Information */
.contact-details {
  background: #003366;
  color: white;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
}

.contact-details h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.contact-details p {
  font-size: 16px;
  margin-bottom: 10px;
}

.contact-details p i {
  margin-right: 8px;
}

.cta-button {
  background: #ffffff;
  color: #003366;
  padding: 12px 25px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 15px;
  display: inline-block;
  font-weight: bold;
}

.cta-button i {
  margin-right: 8px;
}

.cta-button:hover {
  background: #ffffffcc;
}

/* Responsive Design */
@media (max-width: 900px) {
  .services-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-wrapper {
    grid-template-columns: 1fr;
  }
}
.contact-container {
  max-width: 800px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
  margin-bottom: 20px;
}

.form-header {
  text-align: center;
  color: #2b6d98;
  font-size: 42px;
  font-weight: normal;
  margin-bottom: 10px;
}

.divider-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.form-divider {
  width: 120px;
  height: 2px;
  background: linear-gradient(to right, #e0c878, #2b6d98, #e0c878);
  display: inline-block;
  position: relative;
}

.divider-dot {
  width: 10px;
  height: 10px;
  background-color: #2b6d98;
  border-radius: 50%;
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-input {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

.form-message {
  width: 100%;
  height: 180px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  resize: vertical;
}

.submit-wrapper {
  text-align: center;
  margin-top: 10px;
}

.submit-button {
  background-color: #f9d252;
  color: #333;
  font-size: 18px;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s;
}

.submit-button:hover {
  background-color: #f0c230;
}
.common-faq {
  max-width: 800px;
  margin: auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.common-faq h2 {
  text-align: center;
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-size: 18px;
  color: #0073e6;
}

.faq-item p {
  font-size: 16px;
  color: #555;
  margin-top: 5px;
}
:root {
  --hitachi-red: #000ce6;
  --hitachi-dark: #333333;
  --background-light: #f7f7f7;
  --text-color: #333;
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #fff;
  margin: 0;
  padding: 0;
}

.common-faq {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
}

.common-faq h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--hitachi-dark);
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.common-faq h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--hitachi-red);
  border-radius: 2px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.faq-item {
  background-color: var(--background-light);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-left: 4px solid transparent;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--hitachi-red);
}

.faq-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--hitachi-dark);
  padding-right: 30px;
  transition: var(--transition);
  position: relative;
}

.faq-item h3::before {
  content: "Q:";
  color: var(--hitachi-blue);
  font-weight: 700;
  margin-right: 8px;
}

.faq-item p {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: var(--transition);
  margin: 0;
  position: relative;
  padding-left: 24px;
}

.faq-item p::before {
  content: "A:";
  position: absolute;
  left: 0;
  color: var(--hitachi-red);
  font-weight: 700;
}

.faq-item.active {
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--hitachi-red);
}

.faq-item.active h3 {
  color: var(--hitachi-red);
}

.faq-item.active p {
  max-height: 200px;
  opacity: 1;
  margin-top: 1rem;
}

.faq-item::after {
  content: "+";
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  font-size: 1.5rem;
  color: var(--hitachi-dark);
  transition: var(--transition);
}

.faq-item.active::after {
  content: "−";
  color: var(--hitachi-red);
}

.service-cta {
  background-color: var(--hitachi-red);
  color: white;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}

.service-cta h3 {
  margin-top: 0;
  font-size: 1.3rem;
}

.service-cta p {
  margin-bottom: 1.5rem;
}

.service-button {
  background-color: white;
  color: var(--hitachi-red);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.service-button:hover {
  background-color: var(--hitachi-dark);
  color: white;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .section-titlc {
    font-size: 14px;

  }
  .common-faq {
    padding: 1.5rem;
    margin: 1rem;
  }
}

@media (max-width: 768px) {
  .navbar-brand {
    font-size: 14px !important;
  }
}
/* Style for outbound (external) links */
.about-us a[href^="https://www.hitachi.com/en/"] {
  color: #d9534f; /* Red shade for distinction */
  font-weight: bold;
  text-decoration: none !important;
}

.about-us a[href^="https://www.hitachi.com/en/"]:hover {
  text-decoration: underline;
  color: #c9302c;
}

.about-content p a{
  text-decoration: none !important;
}
/* Style for outbound (external) links */
.why-choose-us-us a[href^="https://www.hitachi.com/en/"] {
  color: #d9534f; /* Red color for differentiation */
  font-weight: bold;
  text-decoration: none;
}

.why-choose-us-us a[href^="https://www.hitachi.com/en/"]:hover {
  text-decoration: underline;
  color: #c9302c;
}

/* Style for inbound (internal) links */
.why-choose-us-us a[href^="services.php"],
.why-choose-us-us a[href^="testimonials.php"] {
  color: #0275d8; /* Blue color for internal links */
  font-weight: bold;
  text-decoration: none;
}

.why-choose-us-us a[href^="services.php"]:hover,
.why-choose-us-us a[href^="testimonials.php"]:hover,
.why-choose-us-us a[href^="form.php"]:hover {
  text-decoration: underline;
  color: #025aa5;
}

/* Outbound links (Hitachi official site) */
.our-services-us a[href^="https://www.hitachi.com/en/"] {
  color: #d9534f;
  font-weight: bold;
  text-decoration: none;
}

.our-services-us a[href^="https://www.hitachi.com/en/"]:hover {
  text-decoration: underline;
  color: #c9302c;
}

/* Internal service links */
.our-services-us a[href^="service.php"] {
  color: #0275d8;
  font-weight: bold;
  text-decoration: none;
}
/* Outbound Links (Hitachi official site) */
.about-service-center a[href^="https://www.hitachi.com/en/"] {
  color: #d9534f;
  font-weight: bold;
  text-decoration: none;
}

.about-service-center a[href^="https://www.hitachi.com/en/"]:hover {
  text-decoration: underline;
  color: #c9302c;
}

/* Internal Service Links */
.about-service-center a[href^="service.php"],
.about-service-center a[href^="washing-machine-repair.php"],
.about-service-center a[href^="refrigerator-repair.php"],
.about-service-center a[href^="microwave-repair.php"] {
  color: #0275d8;
  font-weight: bold;
  text-decoration: none;
}

.about-service-center a[href^="service.php"]:hover,
.about-service-center a[href^="washing-machine-repair.php"]:hover,
.about-service-center a[href^="refrigerator-repair.php"]:hover,
.about-service-center a[href^="microwave-repair.php"]:hover {
  text-decoration: underline;
  color: #025aa5;
}

/* Outbound Links (Hitachi official site) */
#hitachi-service-center a[href^="https://www.hitachi.com/en/"] {
  color: #d9534f;
  font-weight: bold;
  text-decoration: none;
}

#hitachi-service-center a[href^="https://www.hitachi.com/en/"]:hover {
  text-decoration: underline;
  color: #c9302c;
}

/* Internal Service Links */
#hitachi-service-center a[href$="-repair.php"],
#hitachi-service-center a[href="service.php"] {
  color: #0275d8;
  font-weight: bold;
  text-decoration: none;
}

#hitachi-service-center a[href$="-repair.php"]:hover,
#hitachi-service-center a[href="service.php"]:hover {
  text-decoration: underline;
  color: #025aa5;
}



/* General styles for all links */
.hitachi_service_thane_section a {
  color: #007bff; /* SEO-friendly blue for visibility */
  text-decoration: none; /* No underline for a clean look */
  font-weight: 600; /* Bold text for better readability */
  transition: color 0.3s ease-in-out; /* Smooth color transition */
}

/* Hover effect for links */
.hitachi_service_thane_section a:hover {
  color: #ff4500; /* Eye-catching orange on hover */
  text-decoration: underline; /* Adds underline for usability */
}

/* Links inside lists (services & why choose us) */
.hitachi_service_thane_section ul li a {
  font-weight: 500;
  padding-left: 5px;
}

/* Contact links (phone & email) */
.contact_details a {
  color: #28a745; /* Green for contact links */
  font-weight: 700;
}

.contact_details a:hover {
  color: #155724; /* Darker green on hover */
  text-decoration: underline;
}

/* Outbound links (Hitachi official website) */
.hitachi_service_thane_section a[href*="hitachi.com"] {
  color: #c0392b; /* Red color for brand differentiation */
  font-weight: bold;
}

.hitachi_service_thane_section a[href*="hitachi.com"]:hover {
  color: #e74c3c; /* Lighter red on hover */
}

.hitachi-service-vikhroli h2 a{
  text-decoration: none;
}
.section-description  a {
  text-decoration:none !important;
}
.service-description a {
  text-decoration:none !important;
}





