/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(220, 68%, 54%);
  --first-color-lighten: hsl(220, 68%, 97%);
  --title-color: hsl(220, 48%, 28%);
  --text-color: hsl(220, 12%, 45%);
  --body-color: hsl(220, 100%, 99%);
  --main-color: #eb531b;
  --secondry-color: #2d6482;
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}



* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  /* text-transform: capitalize; */
  transition: 0.2s linear;
}

@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 8px hsla(220, 68%, 12%, 0.1);
  background-color: var(--body-color);
  z-index: var(--z-fixed);
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
}

.nav_data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav_logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  transition: color 0.3s;
  font-size: 1.25rem;
}

/* .nav_logo:hover {
  color: var(--first-color);
} */

.nav_logo img {
  height: 40px;
}

.nav_toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav_toggle-menu,
.nav_toggle-close {
  font-size: 1.25rem;
  color: var(--title-color);
  position: absolute;
  display: grid;
  place-items: center;
  inset: 0;
  cursor: pointer;
  transition: opacity 0.1s, transform 0.4s;
}

.nav_toggle-close {
  opacity: 0;
}

.product-btn ul li {
  display: inline-block;
  justify-content: space-between;
  padding: 0 1rem 0 1rem;
  align-items: center;

}

.product-btn ul li a {
  justify-content: center;
  align-items: center;

}

/* hero banner slider start  */
.image-slider-wrapper {
  max-width: 100%;
  margin: 35px 5px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.image-slider-track {
  display: flex;
  margin-top: 2.9rem;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.image-slide {
  min-width: 100%;
  /* height: 400px; */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eee;
  overflow: hidden;
}

.image-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Navigation buttons */
.btn-slide {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1;
  padding: 8px 14px;
  border-radius: 50%;
  user-select: none;
  transition: background 0.2s;
}

.btn-slide:hover {
  background: rgba(0, 0, 0, 0.7);
}

.btn-slide-prev {
  left: 16px;
}

.btn-slide-next {
  right: 16px;
}

/* Dots */
.slider-pips {
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 0px;
  left: 0;
  z-index: 2;
}

.slider-pip {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(240, 240, 240, 0.7);
  margin: 0 4px;
  cursor: pointer;
  transition: background 0.25s;
  border: 2px solid #fff;
}

.slider-pip.active {
  background: #007bff;
}

/* Responsive */
@media (max-width: 500px) {
  .image-slide {
    /* height: 220px; */
    height: auto;
    width: 100%;

  }
  .image-slider-track{
    margin-top: 1rem;
  }

  .image-slider-wrapper {
    max-width: 100%;
  }

  .btn-slide {
    font-size: 1.4rem;
    padding: 5px 10px;
  }
}



/* hero banner slider end  */


/* swiper js */
.swiper {
  width: 100%;
  height: 500px;
}

.swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.swiper-button-prev,
.swiper-button-next {
  font-size: 15px;
}

.swiper-slide::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.swiper-slide img {
  display: none;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: auto;
}


.swiper-slide:nth-child(1)::before {
  background-image: url('https://www.globalsteelhub.com/images/banner-2.webp');
}

.swiper-slide:nth-child(2)::before {
  background-image: url('https://www.globalsteelhub.com/images/banner-1.webp');
}

.swiper-slide:nth-child(3)::before {
  background-image: url('https://www.globalsteelhub.com/build/assets/images/fruits-and-vegetable-racks.webp');
}

@media (max-width: 768px) {
  .swiper {
    height: 300px;
  }
}

/* end  */

/* product card start  */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.product-card {
  background: white;
  margin: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-info {
  padding: 15px;
  flex-grow: 1;
}

.product-info h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #333;
}

.product-info p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.price {
  font-size: 16px;
  color: var(--main-color);
  font-weight: bold;
}

.price del {
  color: #888;
  margin-left: 8px;
  font-weight: normal;
  text-decoration: line-through;
}

.book-btn {
  background-color: var(--main-color);
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px;
  width: 100%;
  cursor: pointer;
  margin-top: 10px;
}

.book-btn:hover {
  background-color: #005d96;
}

.show-more-container {
  text-align: center;
  /* margin-top: 30px; */
}

.show-more-btn {
  padding: 12px 30px;
  font-size: 16px;
  background: var(--main-color);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.show-more-btn:hover {
  background: #005d96;
}

.product-card.hidden {
  display: none;
}

/* product card end  */
/* dedicated product page start  */
.product-page {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 7rem;
}


.product-images {
  flex: 1 1 400px;
  min-width: 300px;
  max-width: 550px;
}

.product-images .main-img {
  width: 100%;
  height: 24rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 10px;
}

.product-images .thumbnails {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.product-images .thumb-img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
}

.product-images .thumb-img:hover,
.active-thumb {
  border-color: #eb531b;
}

.product-details {
  flex: 1 1 500px;
}

.product-title {
  color: hsl(220, 48%, 28%);
  font-size: 28px;
  margin-bottom: 10px;
}

.product-price {
  color: #eb531b;
  font-size: 24px;
  font-weight: 600;
  margin: 5px 0 20px;
}

.product-offer {
  color: #28a745;
  font-size: 16px;
  margin-bottom: 20px;
}

.highlight {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.highlight-icon {
  color: #eb531b;
  margin-right: 10px;
  font-size: 18px;
}

.product-btn {
  background: #eb531b;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 18px;
  font-weight: 600;
  margin-top: 30px;
  cursor: pointer;
  transition: background 0.2s;
}

.product-btn:hover {
  background: hsl(220, 48%, 28%);
}

.product-desc {
  margin-top: 30px;
}

.product-desc h3 {
  color: hsl(220, 48%, 28%);
  margin-bottom: 15px;
  font-size: 22px;
}

.product-specs {
  margin: 20px 0 40px;
}

.spec-item {
  display: flex;
  margin-bottom: 10px;
}

.spec-name {
  color: #666;
  min-width: 120px;
  padding-right: 10px;
}

.spec-value {
  color: #333;
  font-weight: 500;
  position: absolute;
  left: 20rem;
}

@media (max-width: 768px) {
  .product-title {
    font-size: 24px;
  }

  .product-price {
    font-size: 22px;
  }

  .product-images {
    max-width: 100%;
  }

  .spec-value {
    left: 15rem;
  }
  .product-page {
    margin-top: 5rem;
  }
}

/* start contact form  */
.contact-container {
  margin: 80px;
  /* max-width: 1100px; */
  /* margin: 10px; */
  background: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  border-radius: 10px;
}

.form-section,
.map-section {
  flex: 1 1 400px;
  padding: 20px;
  margin-top: 1rem;
}

h2 {
  margin-bottom: 15px;
  color: #333;
}

.center {
  align-items: center;
  justify-content: center;
  display: flex;
}

label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

textarea {
  resize: vertical;
}

button {
  margin-top: 15px;
  padding: 10px 20px;
  background: var(--main-color);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background: #005d96;
}

iframe {
  width: 100%;
  /* height: auto; */
  border: none;
  min-height: 40vh;
}

/* end contact form  */

/* Footer Start  */
footer {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-flow: row wrap;
  padding: 50px;
  color: #fff;
  /* background-color: #3f4240; */
  background-color: #011c39;
}

.footer>* {
  flex: 1 100%;

}

.footer-left {
  margin-right: 1.25em;
  margin-bottom: 2em;
}

.footer-left img {
  width: 50%;

}

.footer-head {
  color: #e7f2f4;
}

li h2 {
  font-weight: 600;
  font-size: 17px;
  margin: 15px 0 10px 0;

}

.footer ul {
  list-style: none;
  padding-left: 0;
}

.footer li {
  line-height: 2em;


}

.footer a {
  text-decoration: none;

}

.footer-right {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-flow: row wrap;
}

.footer-right>* {
  flex: 1 50%;
  margin-right: 1.25rem;

}


.box a {
  color: #999;
}

.footer-bottom {
  text-align: center;
  color: #999;
  padding-top: 50px;
}

.footer-left p {
  padding-right: 20%;
  color: #999;
}

.socials a {
  margin-top: 10px;
  background: #364a62;
  width: 40px;
  height: 40px;
  display: inline-block;
  margin-right: 10px;
}

.socials a i {
  color: #e7f2f4;
  padding: 10px 12px;
  font-size: 20px;
}

@media screen and (min-width:600px) {


  .footer-right>* {
    flex: 1;

  }

  .footer-left {
    flex: 1 0px;
  }

  .footer-right {
    flex: 2 0px;
  }

}

@media (max-width:600px) {
  .contact-container {
    margin: 15px;
  }

  .footer {
    padding: 15px;

  }
}

/* footer end  */



@media screen and (max-width: 1118px) {

  .nav_menu {
    background-color: var(--body-color);
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    padding-block: 1.5rem 4rem;
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }

  .nav_menu::-webkit-scrollbar {
    width: 0.5rem;
  }

  .nav_menu::-webkit-scrollbar-thumb {
    background-color: hsl(220, 12%, 70%);
  }
}

.nav_link {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

.nav_link:hover {
  background-color: var(--first-color-lighten);
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 5.5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav_toggle-menu {
  opacity: 0;
  transform: rotate(90deg);
}

.show-icon .nav_toggle-close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown_button {
  cursor: pointer;
}

.dropdown_arrow {
  font-size: 1.5rem;
  font-weight: initial;
  transition: transform 0.4s;
}

.dropdown_content,
.dropdown_group,
.dropdown_list {
  display: grid;
}

.dropdown_container {
  background-color: var(--first-color-lighten);
  height: 0;
  overflow: hidden;
  transition: height 0.4s;
}

.dropdown_content {
  row-gap: 1.75rem;
}

.dropdown_group {
  padding-left: 2.5rem;
  row-gap: 0.5rem;
}

.dropdown_group:first-child {
  margin-top: 1.25rem;
}

.dropdown_group:last-child {
  margin-bottom: 1.25rem;
}

.dropdown_icon i {
  font-size: 1.25rem;
  color: var(--first-color);
}

.dropdown_title {
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.dropdown_list {
  row-gap: 0.25rem;
}

.dropdown_link {
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color);
  transition: color 0.3s;
}

.dropdown_link:hover {
  color: var(--title-color);
}

/* Rotate dropdown icon */
.show-dropdown .dropdown_arrow {
  transform: rotate(180deg);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width:600) {

  .nav_logo img {
    height: 2.5rem;
  }
}

@media screen and (max-width: 300px) {
  .dropdown_group {
    padding-left: 1.5rem;
  }

  .nav_logo img {
    height: 2.5rem;
  }
}

/* For large devices */
@media screen and (min-width: 1118px) {

  /* Nav */
  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }

  .nav_toggle {
    display: none;
  }

  .nav_list {
    display: flex;
    column-gap: 3rem;
    height: 100%;
  }

  .nav li {
    display: flex;
  }

  .nav_link {
    padding: 0;
  }

  .nav_link:hover {
    background-color: initial;
  }

  /* Dropdown */
  .dropdown_button {
    column-gap: 0.25rem;
    pointer-events: none;
  }

  .dropdown_container {
    height: max-content;
    position: absolute;
    left: 0;
    right: 0;
    top: 6.5rem;
    background-color: var(--body-color);
    box-shadow: 0 6px 8px hsla(220, 68%, 12%, 0.05);
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }

  .dropdown_content {
    grid-template-columns: repeat(4, max-content);
    column-gap: 6rem;
    max-width: 1120px;
    margin-inline: auto;
  }

  .dropdown_group {
    padding: 4rem 0;
    align-content: baseline;
    row-gap: 1.25rem;
  }

  .dropdown_group:first-child,
  .dropdown_group:last-child {
    margin: 0;
  }

  .dropdown_list {
    row-gap: 0.75rem;
  }

  .dropdown_icon {
    width: 60px;
    height: 60px;
    background-color: var(--first-color-lighten);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
  }

  .dropdown_icon i {
    font-size: 2rem;
  }

  .dropdown_title {
    font-size: var(--normal-font-size);
  }

  .dropdown_link {
    font-size: var(--small-font-size);
  }

  .dropdown_link:hover {
    color: var(--first-color);
  }

  .dropdown_item {
    cursor: pointer;
  }

  .dropdown_item:hover .dropdown_arrow {
    transform: rotate(180deg);
  }

  .dropdown_item:hover>.dropdown_container {
    top: 6.5rem;
    opacity: 1;
    pointer-events: initial;
    cursor: initial;
  }
}

@media screen and (min-width: 1152px) {

  .container {
    margin-inline: auto;
  }
}

/* 
#bottomNav {
  display: none;
}

@media (max-width: 768px) {
  #bottomNav {
    display: block; */
/* or flex/grid as needed */
/* } */

/* .header{
    height: 9vh;
  } */
/* } */

/* sticky bottom navigation  */


/* @media screen and (max-width: 768px) {
  #bottomNav {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .navItems {
    background-color: #0071b4;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    list-style: none;
    position: relative;
  }

  .navItems li {
    text-align: center;
    flex: 1;
    position: relative;
  }

  .navItems a,
  .navItems span {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .icon {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
    fill: currentColor;
    transition: all 0.3s ease;
  }

  .navItems .active {
    color: var(--main-color);
    font-weight: bold;
  }

  .navItems .active .icon {
    width: 32px;
    height: 32px;
    fill: var(--main-color);
  } */

/* .navItems .active::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 8px solid #007bff;
  } */
/* } */
/* bottom nav design  */
/* Hide on desktop, show on screens <= 768px */
.bottom-supports {
  display: none;
}

/* Show on mobile only */
@media (max-width: 768px) {
  .bottom-supports {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4rem;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
  }

  .supports {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px 0;
  }

  .call,
  .whatsapp {
    flex: 1;
    text-align: center;
  }

  .call a,
  .whatsapp a {
    display: inline-block;
    padding: 10px 0;
    width: 90%;
    font-size: 1rem;
    color: #fff;
    border-radius: 6px;
    /* font-weight: 600; */
    text-decoration: none;
    transition: background 0.2s;
  }

  .call a {
    color: #0071b4;
    font-size: 1.4rem;

  }

  /* .call a:hover {
    background: #218838;
  } */

  .whatsapp a {
    color: #0071b4;
    font-size: 1.4rem;
  }

  /* .whatsapp a:hover {
    background: #1ebe53;
  } */

  .call a i {
    text-align: center;
    justify-self: center;
    color: #0071b4;
    font-size: 1.3em;
    vertical-align: middle;
    margin-right: 8px;
  }

  .whatsapp a i {
    color: green;
    font-size: 1.3em;
    vertical-align: middle;
    margin-right: 8px;
  }


  .border {
    color: #0071b4;
    width: 2px;
    height: 30px;
    background: #eee;
    margin: 0 8px;
  }

  .fa-phone {
    margin-right: 6px;
  }

  .fa-whatsapp {
    margin-right: 6px;
  }

}

.fa-brands {
  display: flex;

}

/* faq section  */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.main-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.faq-col,
.tabs-col {
  flex: 1 1 500px;
  min-width: 300px;
}

.faq-col {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.tabs-col {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

h2 {
  color: hsl(220, 48%, 28%);
  margin-bottom: 20px;
  font-size: 28px;
}

/* FAQ Styles (from previous) */
.faq-item {
  margin-bottom: 16px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  background: #fafafa;
  color: hsl(220, 48%, 28%);
  font-weight: 600;
  padding: 18px 22px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
  font-size: 1.1rem;
  text-align: left;
}

.faq-question:hover,
.faq-question.active {
  background: hsl(220, 48%, 28%);
  color: white;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 22px;
  font-size: 22px;
  color: #eb531b;
  font-weight: bold;
  transition: all 0.3s;
}

.faq-question.active::after {
  content: '−';
  color: white;
}

.faq-answer {
  color: #555;
  background: #fff;
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s, padding 0.2s;
  line-height: 1.6;
}

.faq-answer.expanded {
  max-height: 600px;
  padding: 16px 22px;
  border-top: 1px solid #eee;
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tabs Styles */
.tabs {
  display: flex;
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
}

.tab-btn {
  background: #f5f5f5;
  border: none;
  padding: 12px 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #555;
  transition: all 0.2s;
  flex: 1;
  text-align: center;
}

.tab-btn:hover {
  background: #ebebe5;
}

.tab-btn.active {
  background: #eb531b;
  color: white;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.3s;
}

.tab-content-inner {
  /* display: flex; */
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
}

.tab-content-img {
  flex: 1 0 0px;
  max-width: auto;
}

.tab-content-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.tab-content-text {
  flex: 2 1 0px;
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .main-section {
    flex-direction: column;
    gap: 24px;
  }

  .tab-content-inner {
    flex-direction: column;
  }

  .tab-content-img {
    max-width: 100%;
  }

  .faq-question {
    padding: 14px 18px;
    font-size: 1rem;
  }

  .faq-answer.expanded {
    padding: 14px 18px;
  }

  .tab-btn {
    padding: 10px 16px;
    font-size: 14px;
  }

  h2 {
    font-size: 24px;
  }
}

/* service tab index  */
.service-tab {
  display: flex;
  height: 4rem;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  gap: 60vw;
  background-color: #0071b4;
}

.service-tab p {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;

}

.service-tab a {
  background-color: var(--main-color);
  color: #fff;
  border-radius: 8px;
  padding: 10px;
  font-weight: 600;
}

@media screen and (max-width:768px) {
  .service-tab {
    gap: 10vw;
  }
}

/* @media screen and (max-width:1198px){
  .service-tab{
    gap: 60vw;
  }
} */
/* about section  */
.about-section {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 20px;
  background: #f9f9f9;
  align-items: center;
  justify-content: center;
}

.about-image,
.about-content {
  flex: 1 1 400px;
  padding: 20px;
}

.about-image img {
  /* max-width: 100%; */
  width: 100%;
  height: 500px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-content ul {
  list-style: none;
  padding: 0;
}

.about-content ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 24px;
}

.about-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: green;
}

/* customer counter code  */
.counter-section {
  background-color: #eb531b;
  color: #fff;
  padding: 5px 0;
  text-align: center;
  width: 100%;
  overflow-x: auto;
  /* enable scroll on very small screens */
}

.counter-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  /* gap: 30px; */
  /* padding: 0 20px; */
  flex-wrap: nowrap;
  /* FORCE one line */
  overflow-x: auto;
}

.counter-box {
  flex: 0 0 auto;
  width: 33.33%;
  /* min-width: 150px; */
}

.counter-icon {
  font-size: 19px !important;
  /* margin-bottom: 10px; */
  color: #fff;
}

.counter-number {
  font-size: 17px !important;
  font-weight: bold;
}

.counter-label {
  font-size: 10px !important;
  text-transform: uppercase;
  margin-top: 5px;
}

@media (max-width: 480px) {
  .counter-icon {
    font-size: 26px;
  }

  .counter-number {
    font-size: 24px;
  }

  .counter-label {
    font-size: 12px;
  }
}

/* testimonial section start  */
.review-box {
  max-width: 1200px;
  margin: 20px auto auto auto;
  /* background: white; */
  padding: 40px 20px;
  border-radius: 12px;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); */
  position: relative;
  overflow: hidden;
}

.review-heading {
  text-align: center;
  color: var(--main-color);
  margin-bottom: 30px;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.review-card {
  flex: 0 0 25%;
  padding: 15px;
}

.review-inner {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.review-photo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  border: 2px solid #eb531b;
}

.review-name {
  font-weight: bold;
  color: #eb531b;
  font-size: 16px;
  margin-bottom: 4px;
}

.review-role {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}

.review-stars {
  color: #ffb400;
  font-size: 18px;
  margin-bottom: 10px;
}

.review-text {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.slider-controls {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  padding: 0 10px;
}

.slider-btn {
  align-items: center;
  justify-content: center;
  display: flex;
  background: #eb531b;
  border: none;
  color: white;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.slider-btn:hover {
  opacity: 1;
}

@media (max-width: 991px) {
  .review-card {
    flex: 0 0 50%;
  }
}

@media (max-width: 576px) {
  .review-card {
    flex: 0 0 100%;
  }
}

@media screen and (max-width:768px) {
  .whatsapp-toggle {
    position: fixed;
    bottom: 5rem;
    right: 1rem;
    background: #25D366;
    padding: 10px;
    border-radius: 50px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  }

  .whatsapp-toggle a i {
    color: #fff;
    font-size: 1.5rem;
    padding: 5px;
  }

}

/* top header section */
.top-header {
  color: white;
  height: 2rem;
  align-items: center;
  justify-content: center;
  display: flex;
  background-color: #0071b4;

}

.row {
  display: flex;
  justify-content: space-between;
  /* gap: 5vw; */
  /* background-color: rgb(2, 255, 255) ; */
}

.left {
  margin-right: 100px;
}

.right-social {
  display: flex;
  margin: 0px 5px 0px 5px;
}

.right-social a,
i {
  color: white;
  justify-content: space-between;
  margin: 0px 5px 0px 5px;
}

@media screen and (max-width:981px) {
  .row {
    font-size: 10px;
  }

  .contact-detail {
    display: flex;
  }
}

@media screen and (max-width:768px) {

  .social-detail,
  .header-email {
    display: none;
  }

  .left {
    margin-right: 0px;
    font-size: 11px;
  }

  .right {
    font: 11px;
  }

  .right-social {
    margin-left: 40px;
  }

  .row {
    align-items: center;
    justify-content: space-between;
  }

  .contact-detail a,
  i {
    font-size: 11px;
  }
}

/* area hero section  */
.image-overlay-container {
  position: relative;
  /* width: 100%; */
  height: auto;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
}

.image-overlay-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.overlay-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  /* semi-transparent dark overlay */
  padding: 20px;
  box-sizing: border-box;
}

.overlay-text h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.overlay-text p {
  font-size: 1.2rem;
  margin-bottom: 16px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.overlay-btn {
  background: #eb531b;
  color: #fff;
  border: none;
  padding: 10px 26px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
}

.overlay-btn:hover {
  background: hsl(220, 48%, 28%);
}

@media (max-width: 768px) {
  .overlay-text h2 {
    font-size: 1.15rem;
  }

  .overlay-text p {
    font-size: 0.95rem;
  }

  .image-overlay-container {
    max-width: 100%;
  }

  .overlay-btn {
    font-size: 10px;
  }
}

/* explore our products */
.rack-keyword-grid {
  font-family: Arial, sans-serif;
  padding: 2rem;
  background: #f8f9fa;
  color: hsl(220, 48%, 28%);
  max-width: 1200px;
  margin: 0 auto;
}

.rack-keyword-grid .grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  justify-content: center;
}

.rack-keyword-grid .item {
  padding: 10px 12px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  color: hsl(220, 48%, 28%);
}

.rack-keyword-grid .item a {
  color: #eb531b;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.rack-keyword-grid .item a:hover {
  color: hsl(220, 48%, 28%);
  text-decoration: underline;
}

.rack-keyword-grid .item i {
  color: #eb531b;
  width: 20px;
  text-align: center;
  font-size: 1.15em;
}

@media (max-width: 768px) {
  .rack-keyword-grid .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.area-section {
  padding: 40px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.area-about {
  margin-top: 10px;
}

.area-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.area-left {
  flex: 1 1 400px;
  min-width: 300px;
  max-width: 500px;
}

.area-left img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: block;
}

.area-right {
  flex: 2 1 500px;
}

.area-heading {
  color: hsl(220, 48%, 28%);
  margin-bottom: 20px;
  font-size: 32px;
  text-align: center;
}

.area-desc {
  color: #555;
  line-height: 1.7;
  font-size: 16px;
  position: relative;
  overflow: hidden;
  transition: max-height 0.5s, padding-bottom 0.3s;
  max-height: 160px;
  /* Height for initial collapsed content */
  padding-bottom: 0;
}

.area-desc .readmore-extra {
  display: inline;
  opacity: 0;
  transition: opacity 0.5s;
}

.area-desc.expanded {
  max-height: 2000px;
  padding-bottom: 12px;
}

.area-desc.expanded .readmore-extra {
  opacity: 1;
}

.readmore-btn {
  background: #eb531b;
  color: white;
  border: none;
  border-radius: 18px;
  padding: 8px 24px;
  font-size: 16px;
  margin-top: 16px;
  cursor: pointer;
  transition: background 0.2s;
}

.readmore-btn:hover {
  background: hsl(220, 48%, 28%);
}

@media (max-width: 768px) {
  .area-row {
    flex-direction: column;
  }

  .area-left {
    max-width: 100%;
  }

  .area-heading {
    font-size: 24px;
  }
}

/* pop up contact form product page start  */
/* Overlay that darkens background */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.overlay.active {
  display: block;
  opacity: 1;
}

/* Centered contact form container */
.contact-form-container {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 380px;
  max-width: 90vw;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  padding: 30px 35px;
  z-index: 1000;
  opacity: 0;
  animation-fill-mode: forwards;
}

/* Opening animation */
@keyframes slideFadeIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -45%) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Closing animation */
@keyframes slideFadeOut {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -45%) scale(0.95);
  }
}

.contact-form-container.opening {
  display: block;
  animation: slideFadeIn 0.35s ease forwards;
}

.contact-form-container.closing {
  animation: slideFadeOut 0.3s ease forwards;
}

/* Close button */
.contact-form-container .close-btn {
  background: transparent;
  border: none;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  position: absolute;
  top: 16px;
  right: 18px;
  transition: color 0.2s ease;
}

.contact-form-container .close-btn:hover {
  color: #007BFF;
}

/* Form heading */
.contact-form-container h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  color: #007BFF;
  text-align: center;
}

/* Form styling */
form label {
  display: block;
  /* margin-bottom: 7px; */
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

form input[type="text"],
form input[type="email"],
form textarea {
  width: 100%;
  /* padding: 12px 14px; */
  /* margin-bottom: 18px; */
  font-size: 15px;
  border: 1.8px solid #ccc;
  border-radius: 6px;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form textarea:focus {
  border-color: #007BFF;
  outline: none;
}

form textarea {
  min-height: 100px;
  resize: vertical;
}

/* Submit button */
form button[type="submit"] {
  display: block;
  width: 100%;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 700;
  color: white;
  background-color: #007BFF;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button[type="submit"]:hover {
  background-color: #0056b3;
}

/* Responsive */
@media (max-width: 420px) {
  .contact-form-container {
    width: 95vw;
    padding: 25px 20px;
  }
}

/* end  */

/* solo product review section start*/
/* Container & Layout */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f8faff;
  color: #394764;
}

.new-reviews-wrap {
  display: flex;
  gap: 2.2rem;
  max-width: 1150px;
  margin: 2rem auto;
  background: #fafcff;
  border-radius: 13px;
  padding: 1.1rem 1.7rem;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.09);
  color: #394764;
}

@media screen and (max-width: 990px) {
  .new-reviews-wrap {
    flex-direction: column;
    gap: 2.5rem;
    padding: 1.1rem .7rem;
    margin: 3rem 1rem;

  }
}

/* Sidebar */
.review-sidebar {
  flex: 0 1 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  padding: 0.7rem 0 0 0;
}

@media (max-width: 650px) {
  .review-sidebar {
    flex-direction: column;
    gap: 1.4rem;
  }
}

.review-main-score {
  text-align: left;
}

@media (max-width: 650px) {
  .review-main-score {
    text-align: center;
    width: 100%;
  }
}

.starlist {
  color: #ffb800;
  font-size: 1.45em;
  margin-bottom: 0.18em;
  user-select: none;
}

.main-score-num {
  font-weight: 700;
  font-size: 2.7em;
  color: #094ea2;
  margin-bottom: 0.1em;
}

.main-score-count {
  color: #555;
  font-size: 1.03em;
}

/* Write Review Button */
.review-add-btn {
  padding: 11px 0;
  font-size: 1.08em;
  font-weight: 600;
  background: #007BFF;
  color: #fff;
  border-radius: 1.7em;
  border: none;
  width: 100%;
  cursor: pointer;
  margin-top: 0.7em;
  box-shadow: 0 2px 8px #007bff42;
  transition: background 0.16s;
}

.review-add-btn:hover,
.review-add-btn:focus {
  background: #0056b3;
  outline: none;
}

@media (max-width: 650px) {
  .review-add-btn {
    width: 100%;
  }
}

/* Trust List */
.review-trust-list {
  list-style: none;
  padding: 0;
  margin: .3em 0 0 0;
  color: #10885b;
  font-weight: 500;
  font-size: 1em;
}

.review-trust-list li {
  display: flex;
  align-items: center;
  margin-bottom: .63em;
  gap: 7px;
}

@media (max-width: 650px) {
  .review-trust-list {
    width: 100%;
  }
}

/* User photos mini */
.user-photos-mini {
  display: flex;
  gap: -8px;
  align-items: center;
  margin-top: 1.2em;
  margin-left: 10px;
}

.user-photos-mini img {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid #e3eaff;
  margin-left: -8px;
  box-shadow: 0 0 0 1.5px #fff;
  background: #f1f6fc;
}

.mini-photo-more {
  font-size: 1em;
  font-weight: 600;
  color: #437bb3;
  margin-left: 7px;
}

/* Review cards list */
.review-cards-list {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.review-pill-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px #6ebcff22;
  padding: 1.13em 1.3em;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
  outline: none;
}

.review-pill-card:focus-within,
.review-pill-card:hover {
  box-shadow: 0 3px 24px #1b4a7e14;
  border-color: #007BFF;
}

.pill-header {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: .5em;
}

.pill-header img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px #d5eaff;
  background: #f6fafb;
}

.pill-name {
  font-weight: 700;
  color: #22345a;
  font-size: 1.05em;
}

.pill-stars {
  color: #ffd700;
  font-size: 1.1em;
  margin-left: 2px;
}

.pill-date {
  margin-left: auto;
  color: #555;
  font-size: .95em;
}

.pill-body {
  font-size: .99em;
  color: #394764;
  margin: 0;
}

@media (max-width: 990px) {
  .new-reviews-wrap {
    flex-direction: column;
    gap: 2.5rem;
    padding: 1.1rem .7rem;
  }

  .review-sidebar {
    /* flex-direction: row; */
    gap: 2.5rem;
    justify-content: space-between;
    align-items: flex-start;
  }
}

@media (max-width: 650px) {
  .new-reviews-wrap {
    padding: .8rem 0.2rem;
  }

  .review-sidebar {
    flex-direction: column;
    gap: 1.4rem;
  }

  .review-main-score {
    text-align: center;
    width: 100%;
  }

  .review-add-btn,
  .review-trust-list {
    margin: 10px;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    width: 95%;
  }
}


/* --------- New Feature: Product Specifications --------- */
.product-specs {
  background: #e7f5ff;
  border-radius: 10px;
  padding: 1rem 1.1rem;
  width: 100%;
  box-sizing: border-box;
  font-size: 0.95em;
  color: #133f7c;
  margin-top: 1.8rem;
  box-shadow: 0 3px 7px rgb(19 63 124 / 0.1);
}

.product-specs h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-weight: 700;
  font-size: 1.1em;
  border-bottom: 2px solid #007bff;
  padding-bottom: 0.3rem;
}

.product-specs ul {
  list-style-type: disc;
  margin-left: 1.2rem;
  padding-left: 0;
}

.product-specs li {
  margin-bottom: 0.42rem;
  line-height: 1.3;
}


/* --------- New Feature: FAQ with Accordion --------- */
.product-faq {
  background: #faf9f7;
  border-radius: 10px;
  padding: 1rem 1.1rem;
  width: 100%;
  box-sizing: border-box;
  font-size: 0.95em;
  color: #444;
  /* margin-top: 1.8rem; */
  box-shadow: 0 3px 7px rgb(0 0 0 / 0.06);
}

.product-faq h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-weight: 700;
  font-size: 1.1em;
  border-bottom: 2px solid #28a745;
  padding-bottom: 0.3rem;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 0.5rem 0;
}

.faq-question {
  font-weight: 700;
  cursor: pointer;
  position: relative;
  padding-right: 20px;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  font-weight: 700;
  font-size: 1.2em;
  color: #28a745;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555;
  padding-left: 1rem;
}

.faq-answer.open {
  max-height: 500px;
  /* sufficiently large */
  padding: 0.5rem 1rem 0.7rem 1rem;
}

@media (max-width: 650px) {

  .product-specs,
  .product-faq {
    font-size: 0.9em;
    margin-top: 1.3rem;
  }
}

/* solo product review section end  */
/* scrollable cities section  */
.cities-grid-section {
  max-width: 900px;
  margin: 2rem auto 0;
}

.cities-grid-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #007BFF;
}

.cities-grid-3x4 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 1.2rem;
  background: #eef7ff;
  border-radius: 12px;
  padding: 1.3rem 1rem;
  max-height: 380px;
  overflow-y: auto;
  box-shadow: 0 2px 10px #aed6fa33;
}

.city-link {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
  color: #0056b3;
  text-decoration: none;
  font-weight: 600;
  background: #fff;
  border-radius: 8px;
  padding: 10px 12px;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
  box-shadow: 0 1px 4px #ddefff7c;
  min-width: 0;
  overflow: hidden;
}

.city-link:hover,
.city-link:focus {
  background: #cce4ff;
  color: #003d80;
  outline: none;
  box-shadow: 0 3px 12px #007bff44;
}

.city-icon {
  font-size: 1.25em;
  min-width: 22px;
  color: #007BFF;
  flex-shrink: 0;
}

@media (max-width: 650px) {
  .cities-grid-3x4 {
    grid-template-columns: repeat(2, 1fr);
    padding: 1rem 0.3rem;
  }
}

@media (max-width: 420px) {
  .cities-grid-3x4 {
    grid-template-columns: 1fr;
  }

  .city-link {
    font-size: 0.97rem;
    padding: 9px 9px;
  }
}

/* end  */

/* chat bot start  */
.chatbot-container {
  position: fixed;
  bottom: 80px;
  right: 30px;
  width: 350px;
  max-width: 95vw;
  height: 480px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .09), 0 4px 4px rgba(0, 0, 0, .07);
  border-radius: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  transition: opacity .3s, visibility .3s, transform .3s;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.96);
  pointer-events: none;
}

.chatbot-container.open {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  pointer-events: auto;
}

.chatbot-container.slide-down {
  transform: translateY(110%) scale(1);
  /* moves chat off bottom */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform .4s, opacity .3s, visibility .3s;
}

.chatbot-header {
  height: 4rem;
  background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
  color: #fff;
  padding: 16px;
  border-radius: 18px 18px 0 0;
  display: flex;
  align-items: center;
  font-size: 1.1em;
  font-weight: bold;
  justify-content: space-between;
}

.bot-img {
  width: 32px;
  margin-right: 12px;
}

.close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.3em;
  cursor: pointer;
}

.chatbot-body {
  flex: 1;
  padding: 18px 14px;
  overflow-y: auto;
  background: #f4f7fb;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.message {
  max-width: 75%;
  padding: 11px 16px;
  border-radius: 21px;
  font-size: 1em;
  word-break: break-word;
  position: relative;
  line-height: 1.5;
}

.user-message {
  align-self: flex-end;
  background: #2575fc;
  color: #fff;
  border-bottom-right-radius: 6px;
}

.bot-message {
  align-self: flex-start;
  background: #ececec;
  color: #222;
  border-bottom-left-radius: 6px;
}

.chatbot-input-area {
  display: flex;
  gap: 5px;
  padding: 12px;
  background: #fafafa;
  border-radius: 0 0 18px 18px;
}

#userInput {
  width: auto;
  flex: 1;
  padding: 0 12px;
  border: 1px solid #d3d3d3;
  border-radius: 14px;
  font-size: 1em;
  outline: none;
}

.chatbot-input-area button {
  background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
  color: #fff;
  border: none;
  padding: 0 20px;
  border-radius: 12px;
  font-size: 1em;
  cursor: pointer;
  transition: background .2s;
}

.chatbot-input-area button:hover {
  background: #2575fc;
}

.chat-toggle-btn {
  position: fixed;
  bottom: 22px;
  right: 32px;
  z-index: 1100;
  font-size: 2.3em;
  background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  box-shadow: 0 2px 10px rgba(37, 117, 252, .2);
  cursor: pointer;
  display: block;
  outline: none;
  transition: opacity .2s;
}

.chat-toggle-btn.hide {
  display: none;
}

@media (max-width: 540px) {
  .chatbot-container {
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    right: 0;
    bottom: 0;
    border-radius: 0;
  }

  .chat-toggle-btn {
    right: 12px;
    bottom: 12px;
  }
}

/* chat bot end */

/* Area section why choose us start  */
/* Container & section styling */
    #why-choose-global {
      padding: 50px 20px;
      background: #f7f9fc;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      max-width: 1200px;
      margin: 0 auto;
      color: #213b64;
    }

    #why-choose-global .section-header {
      text-align: center;
      margin-bottom: 40px;
    }

    #why-choose-global .section-header h2 {
      font-size: 2.8rem;
      font-weight: 700;
      letter-spacing: 1.2px;
      margin: 0;
      color: #0c2544;
    }

    /* Grid container for boxes */
    .choose-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      padding: 0 10px;
    }

    /* Individual box styling */
    .choose-item {
      background: #fff;
      border-radius: 12px;
      padding: 30px 25px;
      box-shadow: 0 6px 22px rgba(14, 50, 120, 0.1);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      transition: box-shadow 0.3s ease, transform 0.3s ease;
      cursor: default;
    }
    .choose-item:hover {
      box-shadow: 0 14px 40px rgba(14, 50, 120, 0.25);
      transform: translateY(-10px);
    }

    /* Icon styling with hover scale and color change */
    .choose-icon {
      font-size: 48px;
      color: #1266d3;
      margin-bottom: 18px;
      transition: color 0.3s ease, transform 0.3s ease;
    }
    .choose-item:hover .choose-icon {
      color: #0c3967;
      transform: scale(1.2) rotate(10deg);
    }

    /* Title styling */
    .choose-title {
      font-size: 1.4rem;
      font-weight: 700;
      color: #103a6f;
      margin-bottom: 12px;
    }

    /* Description styling */
    .choose-desc {
      font-size: 1rem;
      color: #4a5568;
      line-height: 1.55;
      max-width: 280px;
      user-select: none;
    }

    /* Responsive rules */
    @media (max-width: 992px) {
      .choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }
      .choose-desc {
        max-width: 100%;
      }
    }

    @media (max-width: 600px) {
      .choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      #why-choose-global {
        padding: 40px 12px;
      }
      .choose-item {
        padding: 24px 20px;
      }
      .choose-icon {
        font-size: 42px;
      }
      .choose-title {
        font-size: 1.25rem;
      }
    }
/* end  */
/* blog post style start  */

/* end  */