@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&family=Roboto:wght@400;700&display=swap');

/* CSS VARIABLES */
:root {
  --primary-text-color: #183b56;
  --secondary-text-color: #577592;
  --accent-color: #2294ed;
  --accent-color-dark: #1d69a3;
  --light-bg: #f8f9fb;
  --neutral-bg: #ffffff;
  --light-accent-bg: #ebf2fa;
  --footer-bg: #183b54;
  --border-color: #e0e0e0;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Cambria', 'Calibri', 'Nunito', 'Merriweather', sans-serif;
  color: var(--primary-text-color);
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 30px 20px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}


h1 {
  font-size: 3rem;
}


h2 {
  font-size: 2.2rem;
}


h3 {
  font-size: 1.8rem;
}


p {
  font-size: 1.25rem;
  color: var(--secondary-text-color);
  line-height: 1.8rem;
}


/* WHATSAPP FLOATING ICON */
.whatsapp_main {
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 9999;
}


.whatsapp_main img {
  width: auto;
  height: 60px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
  background-color: #28a745;
  border-radius: 10px;
}


.whatsapp_main img:hover {
  transform: scale(1.1);
}


/* NAV STYLING */
nav {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 10px 20px;
  background-color: #f9f9f9;
  z-index: 9999;
  transition: all 0.3s ease-in-out;
  position: fixed;
  width: 100%;
}

/* Logo STYLING */
.company-Logo {
  flex: 0 0 auto;
  margin-right: 20px;
}

.company-Logo img {
  height: 80px;
  object-fit: contain;
  border-radius: 25%;
}

/* TOP BANNER */
.top-banner {
  background-image: url(assets/asset\ 28.png);
  background: var(--light-accent-bg);
  border-radius: 10px;
  width: 500px;
}


.banner-text {
  justify-content: space-between;
  display: flex;
  /* align-items: center; */
}


.part1 {
  padding: 15px;
  justify-content: space-between;
  justify-items: flex-start;
}


.part2 {
  padding: 15px;
  justify-content: space-between;
  justify-items: flex-end;
}


.Certification {
  font-size: 1rem;
}

/* NAV LINKS */
#nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /* gap: 20px; */
  margin-left: auto;
  padding-top: 20px;
  padding-right: 60px;
}

#nav-links.active {
  display: flex !important;
}

#nav-links li {
  position: relative;
}


#nav-links a {
  text-decoration: none;
  padding: 10px 15px;
  color: #183b56;
  font-weight: 400;
  transition: 0.3s ease;
  font-size: 1rem;
}


#nav-links a:hover {
  color: #0077cc;
  background-color: #22eddc;
  border-radius: 25px;
}


/* DROPDOWNS */
.dropdown,
.sub-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  border-radius: 25px;
  background: var(--light-accent-bg);
  min-width: 200px;
  z-index: 1000;
}


.dropdown ul,
.sub-dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
}


.dropdown li,
.sub-dropdown li {
  border-bottom: 1px solid #eee;
}


.dropdown a,
.sub-dropdown a {
  display: block;
  padding: 10px;
  white-space: nowrap;
}


#nav-links li:hover>.dropdown {
  display: block;
}


.dropdown li:hover>.sub-dropdown {
  display: block;
  left: 100%;
  top: 0;
}


/* MOBILE TOGGLE BUTTON */
.bar {
  display: none;
  font-size: 24px;
  margin-left: 20px;
  cursor: pointer;
}


.fa-bars,
.fa-times {
  display: none;
}

header {
  padding-top: 100px;
  /* Adjust based on header height */
}

/* Index Page Hero Section */

.hero-section {
  background: linear-gradient(to right, var(--accent-color), var(--light-bg));
  text-align: center;
  color: #fff;
    padding-top: 150px;
  scroll-margin-top: 80px; /* Adjust to match navbar height */
}


.hero-section h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #183b56;
}

.hero-section p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #f5f5f5;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/*
.primary-button,
.secondary-button {
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.primary-button {
  background-color: #2294ed;
  color: #fff;
}

.primary-button:hover {
  background-color: #0077cc;
}

.secondary-button {
  background-color: #ffffff;
  color: #2294ed;
  border: 2px solid #2294ed;
}

.secondary-button:hover {
  background-color: #f1f6fb;
} */

/* Index Page Hero Section End*/



/* ABOUT PAGE HERO SECTION */
.about-hero-section {
  background: linear-gradient(to right, var(--accent-color), var(--light-bg));
  color: rgb(245, 243, 240);
  padding: 80px 20px;
}


.about-hero-content {
   background: linear-gradient(to right, var(--accent-color), var(--light-bg));

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}


.about-hero-left {
  flex: 1;
}


.about-hero-left h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.about-hero-left p {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: rgb(243, 242, 242);
  text-align: center;
}

.about-btn-wrapper {
  text-align: center;
  margin-top: 20px;
}


.about-hero-right {
   background: linear-gradient(to right, var(--accent-color), var(--light-bg));

  flex: 1;
  text-align: center;
}


.about-hero-right img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* ABOUT PAGE HERO SECTION END */

/* PRODUCT HERO SECTION */

.product-hero-section {
  padding: 50px 20px;
  background-color: #f9fbfd;
}

.product-top-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-info-box {
  background: #f1f6fb;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
  max-width: 400px;
  flex: 1 1 350px;
}

.product-info-box h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #183b56;
}

.product-categories {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.product-categories li a {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 6px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.product-categories li a:hover {
  background-color: #2294ed;
  color: #fff;
}

.feedback-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 6px;
  background-color: var(--accent-color, #2294ed);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.feedback-btn:hover {
  background-color: var(--accent-color-dark, #0077cc);
}

/* Image side */
.product-visual {
  flex: 1 1 500px;
  text-align: center;
}

.product-visual img {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* PRODUCT HERO SECTION END*/

/* SERVICE PAGE HERO SECTION */

.service-hero {
   background: linear-gradient(to right, var(--accent-color), var(--light-bg));

  padding: 60px 20px;
  text-align: center;
}

.service-hero h1 {
  color: #183b56;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.service-hero .sub-heading {
  color: #577592;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 25px;
}

/* SERVICE PAGE HERO SECTION END */

/* BLOG PAGE HERO SECTION */
.blog-hero-section {
  background: linear-gradient(to right, var(--accent-color), var(--light-bg));
  color: rgb(211, 163, 60);
  padding: 80px 20px;
}

.blog-hero {
  flex: 1;
}


.blog-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.blog-hero h4 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.blog-hero p {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: rgb(211, 163, 60);
  font-weight: 450;
  text-align: center;
}

/* extended-blog SECTION */

/* .extended-blog {
  background: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  margin-top: 40px;
} */

.extended-blog h1 {
  font-size: 2rem;
  color: #183b56;
  margin-bottom: 20px;
}

.extended-blog h2 {
  font-size: 1.4rem;
  margin-top: 20px;
  color: #14509e;
}

.extended-blog h3 {
  font-size: 1.2rem;
  color: #333;
  margin-top: 25px;
}

.extended-blog .meta {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 20px;
}

.extended-blog ul {
  padding-left: 20px;
  margin: 10px 0;
}

.extended-blog ul li {
  list-style: disc;
  margin-bottom: 8px;
}

.blog-header h1 {
  font-size: 2rem;
  color: #183b56;
}

.meta {
  color: #888;
  font-size: 0.9rem;
  margin-top: -10px;
  margin-bottom: 20px;
}

blockquote {
  background-color: #ebf4ff;
  padding: 15px 20px;
  margin: 25px 0;
  border-left: 5px solid #0077cc;
  font-style: italic;
  color: #004080;
}

.highlight-link {
  color: #fff;
  background-color: #0077cc;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
}

.highlight-link:hover {
  background-color: #005fa3;
}


/* CHAIR REPAIR HERO SECTION */
.chair-repair-section {
  background: linear-gradient(to right, var(--accent-color), var(--light-bg));
  padding: 60px 20px;
  color: #fff;
}

.chair-repair-hero-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.chair-repair-hero-left {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.chair-repair-hero-left h2 {
  font-size: 2.2rem;
  color: #ffffff;
  text-align: center;
}

.chair-repair-hero-left h3 {
  font-size: 1.8rem;
  color: #ffffff;
}

.chair-repair-hero-left p {
  font-size: 1.3rem;
  color: #fefffe;
  line-height: 1;
}

.chair-repair-hero-left ul,
.chair-repair-hero-left li {
  font-size: 1.3rem;
  color: #fefffe;
  font-weight: 300;
  margin-left: 20px;
  line-height: 1.2;
}

.chair-repair-hero-left .secondary-button {
  margin-top: 20px;
  background-color: #ffffff;
  color: var(--accent-color);
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.chair-repair-hero-left .secondary-button:hover {
  background-color: var(--accent-color-dark);
  color: #ffffff;
}

.chair-repair-hero-right {
  flex: 1 1 600px;
  /* allow more space */
  display: flex;
  justify-content: center;
  align-items: center;
}

.chair-repair-hero-right img {
  width: 100%;
  max-width: 600px;
  /* increase from 500px */
  height: auto;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}


/* CHAIR REPAIR HERO SECTION END */

/* CHAIR PART PAGE STYLING*/

.chair-index {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 10px 0;
}

.chair-index li a {
  padding: 8px 14px;
  background-color: #183b56;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.chair-index li a:hover {
  background-color: #0f2c45;
}

.chair-parts-section {
  padding: 40px 0;
}

.chair-parts-section h3 {
  margin-bottom: 20px;
  color: #183b56;
}


/* Grid Layout */
.chair-parts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.chair-part-card {
  text-align: center;
  cursor: pointer;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 10px;
  transition: transform 0.2s ease-in-out;
}

.chair-part-card:hover {
  transform: scale(1.03);
}

.part-image {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

.part-title {
  margin-top: 10px;
  font-weight: 600;
  color: #183b56;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

.modal-content {
  text-align: center;
  background: #fff;
  margin: 100px auto;
  padding: 25px;
  border-radius: 10px;
  max-width: 500px;
  position: relative;
  /* animation: fadeIn 0.3s ease-in-out; */
}

.modal-content .primary-button {
  display: inline-block;
  margin-top: 20px;
}

.close-btn {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 24px;
  cursor: pointer;
}

.modal-image {
  width: 100%;
  max-width: 250px;
  margin: 15px auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modal-content img.zoomable-modal-image {
  width: 100%;
  max-width: 300px;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.modal-content img.zoomable-modal-image.zoomed {
  transform: scale(2);
  /* Zoom level */
  cursor: zoom-out;
}



/* Table */
.product-table {
  width: 100%;
  margin-top: 15px;
  border-collapse: collapse;
}

.product-table td {
  padding: 8px;
  border-bottom: 1px solid #ccc;
  text-align: left;
  font-size: 0.95rem;
}

.product-table td:first-child {
  font-weight: bold;
  width: 40%;
}


/* Grid Section */
.product-section-grid {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

/* Product Grid Layout */
.product-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  /* wider cards */
  gap: 30px;
  justify-content: center;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

/* Product Card */
.product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

/* Image Container */
.product-image {
  width: 100%;
  height: 260px;
  /* Increased height */
  object-fit: contain;
  /* Maintain aspect ratio */
  padding: 15px;
  background-color: #fff;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.product-image:hover {
  transform: scale(1.05);
}

/* Title Below Image */
.product-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #183b56;
  padding: 14px;
}

/* Modal Styling */
.product-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  overflow-y: auto;
}

.modal-product-image {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.modal-product-image:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
  cursor: zoom-in;
}


.close-btn {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 28px;
  color: #444;
  cursor: pointer;
}

/* Table Style */
.product-table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
}

.product-table td {
  padding: 8px 10px;
  border-bottom: 1px solid #ddd;
  text-align: left;
}

.product-table td:first-child {
  font-weight: 600;
  color: #183b56;
}



/* Product Section End Layout */


/* Zoom Overlay Styles */
#image-zoom-overlay {
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 9999;
}


#image-zoom-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease;
}


#image-zoom-overlay.close-overlay {
  cursor: zoom-out;
}

/* Zoom Overlay Styles End*/

/* IMAGE SLIDER */
.slider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 500px;
  margin: 40px auto;
  overflow: hidden;
  border-radius: 10px;
}


.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  /* <-- disables interaction on hidden slides */
  transition: opacity 1s ease-in-out;
  z-index: 0;
}


.slide.active {
  opacity: 1;
  pointer-events: auto;
  /* <-- enable interaction only for visible slide */
  z-index: 1;
}


.slide img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}


.slide .info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 5px;
  width: calc(100% - 40px);
  max-width: 600px;
}


.slide .info h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInDown 1s ease both;
}


.navigation {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
  z-index: 1;
}


.prev-btn,
.next-btn {
  font-size: 2em;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px;
  border-radius: 50%;
}

.navigation-visibility {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  gap: 10px;
}

.slider-button {
  border: 0.5px solid var(--secondary-text-color);
  border-radius: 6px;
  font-weight: 700;
  color: var(--accent-color);
  padding: 12px 24px;
  transition: 0.2s ease-out;
}


.slider-button:hover {
  background-color: var(--accent-color);
  color: white !important;
  border-color: var(--accent-color);
}

/* CLIENT SECTION */
.client-header {
  text-align: center;
  margin: 30px 0;
  color: var(--primary-text-color);
}

.Logos {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 20px;
}


.Logo {
  height: 60px;
  border-radius: 2px;
}

/* CLIENT SECTION END */


.big-feature-section {
  padding: 60px 20px;
}


.big-feature-container {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}


.feature-img img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}


.feature-desc {
  flex: 1;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  text-align: left;
}


.feature-desc h3 {
  font-size: 1.8rem;
  color: var(--primary-text-color);
}


.feature-desc h4 {
  font-size: 1.2rem;
  color: var(--accent-color-dark);
  font-weight: 600;
}


.feature-desc p {
  font-size: 1.05rem;
  color: var(--secondary-text-color);
  line-height: 1.6rem;
  margin-bottom: 15px;
}


/* EXAMPLES SECTION */

.examples-section {
  background-color: #f9f9f9;
  padding-bottom: 50px;

}

.examples-header {
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
  text-align: center;
}

.examples-heading-text {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-text-color);
  margin: 0 auto;
  padding: 20px 0;
}

.examples-area {
  display: flex;
  justify-content: space-evenly;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.examples-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  text-decoration: none;
}

.examples-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.examples-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.card-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 12px;
}

.secondary-button {
  border: 0.5px solid var(--secondary-text-color);
  border-radius: 6px;
  font-weight: 700;
  color: var(--accent-color);
  padding: 12px 24px;
  transition: 0.2s ease-out;
  text-decoration: none;
  font-size: 1.2Rem;
}


.secondary-button:hover {
  background-color: var(--accent-color);
  color: white !important;
  border-color: var(--accent-color);
}

/* CTA SECTION */
.cta-section {
  padding: 50px;
  background-color: #183b54;
  color: white;
  text-align: center;
}


.cta-section-container {
  display: flex;
  /* Add this */
  flex-direction: column;
  align-items: center;
  /* Centers items horizontally */
  gap: 30px;
}

.primary-button {
  background-color: var(--accent-color);
  border-radius: 6px;
  font-weight: 700;
  color: white !important;
  padding: 12px 24px;
  box-shadow: 0 0 2px var(--secondary-text-color);
  transition: 0.2s ease-out;
  text-align: center;
}


.primary-button:hover {
  background-color: var(--accent-color-dark);
  color: white !important;
}



/* --- Contact Section Intro --- */
.contact-intro-section {
  background-color: #f1f6fb;
  text-align: center;
  margin-top: 2rem;
  padding-bottom: 1rem;
}


.contact-intro-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-text-color);
  margin-bottom: 10px;
}


.contact-intro-section .section-subtitle {
  font-size: 1.2rem;
  color: var(--secondary-text-color);
}


/* --- Main Contact Section --- */
.contact-main-section {
  background-color: #f7f4f4;
  padding: 20px 20px;
}


.contact-main-section .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}


/* --- Contact Info Box --- */
.contact-info {
  flex: 1 1 40%;
  min-width: 300px;
  max-width: 600px;
}


.info-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}


.info-box .icon {
  font-size: 1.8rem;
  line-height: 1.4;
  color: var(--accent-color);
  margin-left: 50px;
}


.info-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-text-color);
  margin-bottom: 5px;
}


.info-text p,
.info-text a {
  font-size: 1rem;
  color: var(--secondary-text-color);
  line-height: 1.6;
}


.info-text a:hover {
  color: var(--accent-color-dark);
  text-decoration: underline;
}


/* --- Contact Form Styling --- */
.contact-form {
  flex: 1 1 55%;
  min-width: 300px;
  max-width: 600px;
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}


.contact-form .form-title {
  font-size: 1.8rem;
  color: var(--primary-text-color);
  margin-bottom: 10px;
  text-align: center;
}


.contact-form .form-subtitle {
  font-size: 1.2rem;
  color: var(--secondary-text-color);
  margin-bottom: 30px;
  text-align: center;
}


/* --- Input Field Styling --- */
.inputBox {
  position: relative;
  margin-bottom: 20px;
}


.inputBox input,
.inputBox textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  background-color: #fff;
  color: var(--primary-text-color);
  transition: border-color 0.3s ease;
}


.inputBox input:focus,
.inputBox textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px rgba(34, 148, 237, 0.15);
}


.inputBox span {
  display: block;
  margin-top: 6px;
  font-size: 0.9rem;
  color: var(--secondary-text-color);
}


.inputBox .requirements {
  font-style: italic;
}


/* --- Submit Button --- */
.inputBox input[type="submit"] {
  background-color: var(--accent-color);
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 12px 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}


.inputBox input[type="submit"]:hover {
  background-color: var(--accent-color-dark);
}


/* Terms & Conditions Page CSS */
.term-condition-wrapper {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: 'Poppins', sans-serif;
  padding-top: 160px;
}

.tc_wrap {
  max-width: 1100px;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.tabs_list ul {
  display: flex;
  flex-wrap: wrap;
  background-color: #183b56;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tabs_list ul li {
  flex: 1;
  padding: 15px;
  text-align: center;
  color: #fff;
  cursor: pointer;
  font-weight: 500;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.tabs_list ul li:last-child {
  border-right: none;
}

.tabs_list ul li.active {
  background-color: #14509e;
}

.tabs_content {
  padding: 30px;
}

.tabs_content h1 {
  font-size: 2rem;
  color: #183b56;
  margin-bottom: 20px;
}

.tabs_content h2 {
  font-size: 1.5rem;
  margin-top: 20px;
  color: #14509e;
}

.tabs_content h3 {
  font-size: 1.2rem;
  margin-top: 15px;
  color: #333;
}

.tabs_content p,
.tabs_content li {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.tab_item {
  display: none;
}

.tab_item.active {
  display: block;
}

.tab_foot {
  display: flex;
  justify-content: space-between;
  padding: 20px 30px;
  background-color: #f0f0f0;
}

.tab_foot button {
  padding: 10px 25px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.tab_foot .agree {
  background-color: #28a745;
  color: #fff;
}

.tab_foot .decline {
  background-color: #dc3545;
  color: #fff;
}

/* Terms & Conditions Page CSS END */

/* Gallery Section Page */

.gallery-section {
  padding: 60px 20px;
  background-color: #f8f9fb;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  color: var(--primary-text-color);
  margin-bottom: 10px;
}

.section-subtitle {
  color: var(--secondary-text-color);
  margin-bottom: 40px;
  font-size: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Gallery Section Page */


#backToTop {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  background-color: #2294ed;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 12px 15px;
  font-size: 18px;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}


#backToTop:hover {
  background-color: #186db5;
}




/* FOOTER */
.footer {
  background-color: #b9cde4;
  padding: 15px 20px;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}

.footer a.company-Logo img {
  height: 40px;
  object-fit: contain;
}

.footer-container {
  display: flex;
  /* Fix: make it a flex container */
  gap: 30px;
  /* spacing between the two baby-footer-containers */
  align-items: center;
  flex-wrap: wrap;
}

.baby-footer-container {
  display: flex;
  /* Fix: enable flex layout */
  gap: 20px;
  /* spacing between links/icons */
  align-items: center;
}

/* Link styles */
.footer-container a {
  color: #183b56;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-container a:hover {
  color: #005fa3;
}

/* Icon styles */
.footer-container i {
  font-size: 1.2rem;
  color: #183b56;
  transition: color 0.3s ease;
}

.footer-container i:hover {
  color: #0077cc;
}



/* =================== RESPONSIVE DESIGN =================== */

/* Tablets: 768px to 1024px */
@media (max-width: 1024px) and (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .container {
    width: 95%;
    padding: 25px 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
  }

  .product-info-box,
  .product-visual,
  .chair-repair-hero-left,
  .chair-repair-hero-right {
    flex: 1 1 100%;
  }

  .about-hero-content,
  .chair-repair-hero-section,
  .product-top-section,
  .big-feature-container,
  .examples-area {
    flex-direction: column;
    align-items: center;
  }

  .product-categories li a {
    font-size: 1rem;
  }

  nav {
    flex-direction: column;
  }

  #nav-links {
    padding-top: 10px;
    justify-content: center;
  }

  .contact-intro-section .section-title {
    font-size: 1.8rem;
  }

  .contact-intro-section .section-subtitle {
    font-size: 1.1rem;
  }

  .contact-main-section .container {
    flex-direction: column-reverse;
    align-items: center;
  }

  .contact-info,
  .contact-form {
    max-width: 90%;
  }

  .info-box .icon {
    margin-left: 20px;
    font-size: 1.6rem;
  }

  .contact-form .form-title {
    font-size: 1.6rem;
  }

  .contact-form .form-subtitle {
    font-size: 1.1rem;
  }


}

/* Mobile: 480px to 767px */
@media (max-width: 767px) {

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  h3 {
    font-size: 1.4rem;
  }

  p,
  .product-categories li a,
  .info-text p,
  .info-text a {
    font-size: 1rem;
  }

  .container {
    width: 98%;
    padding: 20px 10px;
    box-shadow: none;
    border-radius: 6px;
  }
  header {
  padding-top: 180px;
  /* Adjust based on header height */
}

  nav {
    flex-direction: column;
    align-items: stretch;
    padding-right: 2rem;
  }

  /* Logo and hamburger in same row */
  /* .company-Logo {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    width: 100%;
  }

  .company-Logo img {
    height: 60px;
    object-fit: contain;
  .company-Logo img {
    height: 60px;
  } */

 

  /* Top banner comes first and full width */
  .top-banner {
    order: -1;
    width: 100%;
    margin: 0;
    padding: 10px;
    background-size: cover;
    background-position: center;
 }
 
  .banner-text {
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: nowrap; /* Prevent wrapping */
    align-items: center;
  }

  .part1,
  .part2 {
    flex: 1;
    padding: 0;
    text-align: center;
    white-space: nowrap; /* Prevent text wrapping */
    overflow: hidden;
    text-overflow: ellipsis; /* Optional: Add "..." if text is too long */
  }

  .Certification {
    font-size: 0.7rem;
  }

  /* Logo + Hamburger Row */
  .nav-header-row {
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 30px;
    padding-top: 10px;
    padding-right: 50px;
    /* align-items: center;
    justify-content: space-between;
    padding-left:50px;
    background-color: #ffffff; */
  }

  .bar {
    display: block;
    font-size: 26px;
    cursor: pointer;
    /* padding: 10px; */
    margin-right: 5px;
    /* right spacing */
  }

  .fa-bars {
    display: inline;
  }

  .fa-times {
    display: none;
  }

  #nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid #ddd;
  }

  #nav-links.active {
    display: flex !important;
  }

  #nav-links li {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #eee;
  }

  #nav-links a {
    padding: 12px 20px;
    display: block;
    font-size: 1rem;
  }

  .dropdown,
  .sub-dropdown {
    position: relative;
    background-color: #f4f4f4;
    top: 0;
    left: 0;
    border-radius: 0;
  }

  .dropdown ul,
  .sub-dropdown ul {
    padding-left: 15px;
  }

  .dropdown li:hover>.sub-dropdown {
    display: block;
    left: 0;
  }

  /* Optional: Add a background hover to better show tap zones */
  .dropdown a:hover,
  .sub-dropdown a:hover {
    background-color: #e0f7fa;
  }

  .slide .info h2 {
    font-size: 1.5rem;
  }

  .slider {
    height: 280px;
  }

/* index hero page section */


.hero-section {
    padding-top: 170px;
  }
 
  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section p {
    font-size: 1.05rem;
    max-width: 90%;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .primary-button,
  .secondary-button {
    width: 80%;
    margin: 0 auto;
  }

/* index hero page section end */


/* about hero page section */

  .about-hero-content {
    flex-direction: column;    /* Stack sections vertically */
    text-align: center;
    gap: 30px;                  /* Reduce gap between sections */
  }

  .about-hero-left h1 {
    font-size: 2rem;            /* Smaller heading */
  }

  .about-hero-left p {
    font-size: 1.1rem;          /* Smaller paragraph */
  }

  .about-hero-right {
    padding: 0 10px;            /* Add some side padding */
  }

/* about hero page section end*/


/* Product hero page section */

  .product-top-section {
    flex-direction: column;          /* Stack sections vertically */
    align-items: center;              /* Center align content */
    gap: 30px;                        /* Reduce gap */
  }

  .product-info-box {
    max-width: 100%;                  /* Full width */
    padding: 25px;                    /* Slightly reduced padding */
  }

  .product-info-box h2 {
    font-size: 1.8rem;                /* Slightly smaller heading */
  }

  .product-categories li a {
    font-size: 1rem;                  /* Reduce font size */
    padding: 8px 12px;                /* Smaller padding */
  }

  .product-visual img {
    max-width: 400px;                 /* Limit image size on tablets */
  }


/* Product hero page section end*/


/* Service hero page section*/

  .service-hero {
    padding: 50px 15px;           /* Slightly reduce padding */
  }

  .service-hero h1 {
    font-size: 2rem;              /* Smaller heading */
  }

  .service-hero .sub-heading {
    font-size: 1.05rem;           /* Slightly smaller subheading */
    max-width: 90%;               /* Use more width on smaller screens */
  }

/* Service hero page section end*/


  .product-image {
    height: 200px;
  }

  .modal-content {
    width: 90%;
  }

  .examples-card img {
    height: 180px;
  }

  .product-grid-container {
    grid-template-columns: 1fr;
  }

Logos {
    justify-content: center;  /* Center align logos */
    gap: 15px;                 /* Reduce gap */
  }

  .Logo {
    height: 50px;              /* Slightly smaller logos */
  }

  .footer-container {
    flex-direction: column;
    gap: 10px;
  }

  .baby-footer-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .contact-intro-section .section-title {
    font-size: 1.6rem;
  }

  .contact-intro-section .section-subtitle {
    font-size: 1rem;
  }

  .contact-main-section .container {
    flex-direction: column-reverse;
    align-items: center;
  }

  .contact-info,
  .contact-form {
    max-width: 95%;
  }

  .info-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .info-box .icon {
    margin-left: 0;
    font-size: 1.5rem;
  }

  .info-text h3 {
    font-size: 1.3rem;
  }

  .inputBox input,
  .inputBox textarea {
    font-size: 0.95rem;
  }

  .contact-form .form-title {
    font-size: 1.5rem;
  }

  .contact-form .form-subtitle {
    font-size: 1rem;
  }
}


/* Extra small devices: below 480px */
@media (max-width: 479px) {
  h1 {
    font-size: 1.7rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  p {
    font-size: 0.95rem;
  }

  .container {
    width: 100%;
    padding: 15px 8px;
    box-shadow: none;
    border-radius: 4px;
  }

  .banner-text {
    flex-wrap: wrap;
    /* allow wrapping if absolutely needed */
    justify-content: center;
    gap: 10px;
  }

  .part1,
  .part2 {
    flex: 1 1 45%;
    text-align: center;
  }

  .company-Logo img {
    height: 40px;
  }


  .slide .info h2 {
    font-size: 1.2rem;
  }

  .slider {
    height: 240px;
  }

  .product-image {
    height: 160px;
  }

  .examples-card img {
    height: 150px;
  }

  .primary-button,
  .secondary-button {
    padding: 10px 20px;
    font-size: 1rem;
  }

Logos {
    flex-direction: column;    /* Stack logos vertically */
    align-items: center;       /* Center align in column */
    gap: 10px;                  /* Reduce spacing further */
  }

  .Logo {
    height: 40px;              /* Even smaller logos for better fit */
  }

  .footer {
    font-size: 0.8rem;
  }

/* Index Page Hero Section */


  .hero-section {
    padding-top: 200px;
  }

  .hero-section h1 {
    font-size: 1.5rem;
  }

  .hero-section p {
    font-size: 0.95rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
    padding: 10px 18px;
  }

/* Index Page Hero Section  End*/

  .contact-intro-section .section-title {
    font-size: 1.4rem;
  }

  .contact-intro-section .section-subtitle {
    font-size: 0.95rem;
  }

  .contact-main-section .container {
    flex-direction: column-reverse;
    align-items: center;
  }

  .contact-info,
  .contact-form {
    max-width: 100%;
    padding: 10px;
  }

  .info-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .info-box .icon {
    margin-left: 0;
    font-size: 1.4rem;
  }

  .info-text h3 {
    font-size: 1.2rem;
  }

  .inputBox input,
  .inputBox textarea {
    font-size: 0.9rem;
    padding: 10px 14px;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-form .form-title {
    font-size: 1.4rem;
  }

  .contact-form .form-subtitle {
    font-size: 0.95rem;
  }
}

