@import url("https://fonts.googleapis.com/css2?family=Architects+Daughter&family=Farro:wght@300;400;500;700&family=Fredericka+the+Great&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Lora:ital,wght@0,400..700;1,400..700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lora", serif;
  font-weight: 100;
  font-style: normal;
}

/* Top Bar */
.top-bar {
  background-color: #f7fbfd;
  color: rgb(6, 5, 5);
  font-size: 14px;
  padding: 8px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.logo a{
  font-size: 26px;
   color: #f7fbfd!important;
}

.top-bar a {
  color: rgb(8, 6, 6);
  text-decoration: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background-color: #2c93f4;
  color: white;
  padding: 15px 20px;
}

.main-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
b {
  color: #0e0b0b !important;
  font-weight: bold;
}
strong {
  color: #060607 !important;
  font-weight: bold;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #090808;
  text-decoration: none;
  padding: 6px 10px;
  transition: background-color 0.3s;
  font-weight: 900;
}

.nav-links a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.social-icons a {
  display: inline-block;
  margin: 0 5px;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background-color: #e1306c;
  color: white;
  transition: background-color 0.3s ease;
}

.social-icons a:nth-child(2) {
  background-color: #ff0000;
}

.social-icons a:nth-child(3) {
  background-color: #3b5998;
}

.social-icons a:hover {
  opacity: 0.8;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #f7fbfd;
  padding: 10px;
  border-radius: 4px;
  min-width: 220px;
  z-index: 1000;
}

.dropdown-content a {
  display: block;
  padding: 8px 14px;
  color: black;
  background-color: white;
  border: 1px solid #6ec1e4;
  margin-bottom: 6px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #e6f7fc;
}

/* Show class via JS */
.dropdown-content.show {
  display: block;
}

/* Hamburger menu */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .social-icons {
    display: none;
  }
  .nav-links {
    display: none;

    flex-direction: column;
    width: 100%;
    background-color: #cce8ff;
    margin-top: 10px;
    padding: 15px;
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown-content {
    position: relative;
  }
  .top-bar {
    display: none;
  }
}

/* Banner section */
.breadcrumb-banner {
  background: url("../images/pageheader.webp") no-repeat center center/cover;
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.breadcrumb-banner::before {
  content: "";
  position: absolute;
  inset: 0;
}

.breadcrumb-banner h1 {
  position: relative;
  font-size: 36px;
  text-transform: uppercase;
  z-index: 1;
}

/* Breadcrumb trail section */
.breadcrumb-trail {
  background-color: #6ec1e4;
  padding: 10px 0;
}

.breadcrumb-trail .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  list-style: none;
  font-size: 14px;
  color: #cce0ff;
  align-items: center;
}

.breadcrumb li a {
  color: #050506;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb li a:hover {
  color: #ffffff;
}

.breadcrumb li.active {
  color: #ffffff;
  font-weight: bold;
}

.breadcrumb li span {
  color: #cce0ff;
}

@media (max-width: 576px) {
  .breadcrumb-banner {
    height: 200px;
  }

  .breadcrumb-banner h1 {
    font-size: 24px;
  }

  .breadcrumb {
    flex-wrap: wrap;
    font-size: 12px;
    gap: 5px;
  }
}

/* carousel */
#carouselExampleCaptions {
  max-height: 600px;
  overflow: hidden;
  position: relative;
}

.carousel-item {
  transition: transform 1s ease-in-out;
}

.carousel-item img {
  height: 600px;
  width: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 4s ease;
}

.carousel-item.active img {
  transform: scale(1.1);
}

.custom-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.65); /* Dark background behind text only */
  padding: 25px 30px;
  text-align: center;
  border-radius: 12px;
  color: #fff;
  max-width: 90%;
  display: inline-block;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.custom-caption h5 {
  font-size: 2rem;
  font-weight: bold;
  color: gold; /* Top heading in gold */
  margin-bottom: 10px;
}

.custom-caption h6 {
  font-size: 1.2rem;
  color: #f2f2f2;
  margin-bottom: 10px;
}

.custom-caption p {
  font-size: 1rem;
  color: #e0e0e0;
  margin: 5px 0;
  line-height: 1.5;
}

.custom-caption a {
  color: #ffd700;
  text-decoration: underline;
}

.custom-caption ul {
  padding-left: 20px;
  text-align: left;
  margin-top: 15px;
}

.custom-caption li {
  font-size: 1rem;
  margin-bottom: 5px;
  color: #ddd;
}

/* === Caption Base Styling === */
.carousel-caption.custom-caption {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.4); /* subtle overlay background */
  padding: 2rem 3rem;
  border-radius: 10px;
  animation: zoomFadeIn 1s ease-in-out;
  width: 90%;
  max-width: 700px;
}

/* === Animation Keyframes === */
@keyframes zoomFadeIn {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

/* === Carousel Controls Styling === */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #007bff;
  border-radius: 50%;
  padding: 15px;
  background-size: 100% 100%;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

/* === Responsive Breakpoints === */
@media (max-width: 768px) {
  .carousel-caption.custom-caption {
    padding: 1.5rem;
    bottom: 15%;
  }

  .custom-caption h5 {
    font-size: 1.4rem;
  }

  .custom-caption h6 {
    font-size: 1.1rem;
  }

  .custom-caption p {
    font-size: 0.95rem;
  }

  #carouselExampleCaptions {
    max-height: 400px;
  }

  .carousel-item img {
    height: 400px;
    object-fit: cover;
  }
}

@media (max-width: 576px) {
  .carousel-caption.custom-caption {
    padding: 1rem;
    bottom: 12%;
  }

  .custom-caption h5 {
    font-size: 1.2rem;
  }

  .custom-caption h6 {
    font-size: 1rem;
  }

  .custom-caption p {
    font-size: 0.85rem;
  }

  #carouselExampleCaptions {
    max-height: 320px;
  }

  .carousel-item img {
    height: 300px;
    object-fit: cover;
  }
}

/* Override Bootstrap's display none on small devices */
.carousel-caption.d-none.d-md-block.custom-caption {
  display: block !important;
}

/* counter */
.custom-stats-section {
  background: #f9f9fc;
  padding: 80px 20px;
  position: relative;
  z-index: 1;
  clip-path: polygon(0 10%, 100% 0%, 100% 100%, 0% 100%);
}

.custom-stats-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
}

.custom-stat-item {
  flex: 1 1 200px;
  margin: 20px;
}

.custom-stat-number {
  font-size: 60px;
  font-weight: 600;
  color: #000;
}

.custom-stat-label {
  margin-top: 10px;
  font-size: 18px;
  letter-spacing: 1px;
  color: #444;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .custom-stats-wrapper {
    flex-direction: column;
    align-items: center; /* Center all children horizontally */
    text-align: center;
  }

  .custom-stat-item {
    width: 100%;
    max-width: 300px; /* Prevents it from stretching too much */
    margin: 15px auto; /* Centers and adds spacing */
  }

  .custom-stat-number {
    font-size: 48px;
  }

  .custom-stat-label {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .custom-stat-number {
    font-size: 40px;
  }

  .custom-stat-label {
    font-size: 14px;
  }
}

/* manufature */
section.hero-section {
  background-image: url("../images/manufacturer -bg.jpg");
  background-repeat: repeat;
  background-size: auto;
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
}

.overlay-box {
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 40px;
  max-width: 788px;
  border-radius: 10px;
}

.overlay-box h1 {
  font-size: 30px;
  font-weight: bold;
  color: #00baff;
}

.overlay-box p {
  font-size: 15px;
  margin-top: 10px;
  line-height: 1.6;
}

.overlay-box ul {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.overlay-box ul li {
  padding: 5px 0;
  border-left: 3px solid #00baff;
  padding-left: 10px;
  font-size: 15px;
}

.read-more-btn {
  margin-top: 20px;
  background-color: yellow;
  color: black;
  border: none;
  padding: 10px 25px;
  font-weight: bold;
  border-radius: 30px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .overlay-box {
    padding: 20px;
    margin: 20px;
  }
}

/* socks */
.socks-section {
  padding: 80px 20px;
}

.socks-img {
  width: 100%;
  max-width: 300px;
  height: 250px;
  object-fit: cover;
  display: block;
  margin: 0 auto 20px;
  border-radius: 10px;
}

.socks-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.socks-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.socks-text a {
  color: #0056d2;
  font-weight: 500;
  text-decoration: underline;
}

/* Responsive adjustment */
@media (max-width: 576px) {
  .socks-img {
    height: 200px;
  }
}

/* socks manufaturer */

.section-bg {
  background: linear-gradient(135deg, #0497f3, #008be5);
  padding: 100px 0 40px;
  color: #fff;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.divider {
  width: 30px;
  height: 3px;
  background-color: #ff5f2e;
  margin: 0 auto;
}

/* Card Box Styling */
.card-box {
  background: #fafafa;
  border-radius: 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  padding: 60px 30px 30px;
  text-align: center;
  position: relative;
  height: 100%;
}

.icon-circle {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ff7a45;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
}
.mb-4 {
  margin-top: -119px;
}
.card-title {
  font-weight: 700;
  font-size: 20px;
  color: #f45c2b;
  margin-bottom: 15px;
}

.card-box p {
  font-size: 15px;
  color: #333;
}

.learn-more {
  display: inline-block;
  margin-top: 20px;
  font-weight: bold;
  color: #f45c2b;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 2px solid #f45c2b;
  padding-bottom: 3px;
}

@media (max-width: 767px) {
  .card-box {
    padding-top: 50px;
    margin-bottom: 20px; /* Adds vertical spacing between cards */
  }

  .icon-circle {
    top: -30px;
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .section-title {
    font-size: 28px;
  }

  .col-md-4 {
    margin-bottom: 30px !important; /* Extra spacing between cards */
  }

  .row.justify-content-center {
    gap: 15px 0; /* Vertical spacing between rows */
  }
}

/* zes */
.zesox-section {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #1899ff, #1e88e5);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.zesox-text {
  flex: 1 1 450px;
  max-width: 600px;
}

.zesox-text h5 {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.zesox-text h2 {
  font-size: 28px;
  line-height: 1.5;
  margin-bottom: 20px;
  font-weight: 700;
}

.zesox-text p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.zesox-text ul {
  margin-top: 20px;
  padding-left: 20px;
}

.zesox-text ul li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #f0f8ff;
}

.zesox-text a {
  color: #cce8ff;
  text-decoration: underline;
}

.zesox-image {
  flex: 1 1 300px;
  text-align: center;
}

.zesox-image img {
  width: 100%;
  max-width: 420px;
  border: 6px solid #fff;
  background: #fff;
}

@media (max-width: 768px) {
  .zesox-text h2 {
    font-size: 22px;
  }

  .zesox-text p,
  .zesox-text ul li {
    font-size: 14px;
  }

  .zesox-image img {
    max-width: 260px;
  }
}

/* about  */

.custom-about-section {
  position: relative;
  background: url("../images/bg-socks.jpg") no-repeat center center/cover;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  clip-path: polygon(0 8%, 100% 0%, 100% 100%, 0 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-about-overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 50px 20px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.custom-about-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
}

.custom-about-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: capitalize;
}

.custom-about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #ddd;
}

.custom-about-content a.read-more {
  display: inline-block;
  margin-top: 25px;
  padding: 10px 20px;
  background: red;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .custom-about-content h2 {
    font-size: 28px;
  }

  .custom-about-content p {
    font-size: 14px;
  }

  .custom-about-content a.read-more {
    font-size: 11px;
    padding: 8px 16px;
  }
}

.zesox-sect {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  padding: 60px 20px;
  align-items: center;
  flex-wrap: wrap;
}

.zesox-left {
  flex: 1 1 400px;
  text-align: center;
}

.zesox-left img {
  width: 100%;
  max-width: 380px;
  border: 4px solid #2e2e7e;
  margin-bottom: 15px;
}

.zesox-left h1 {
  font-size: 36px;
  font-weight: 800;
  color: #2e2e7e;
  margin-top: 10px;
}

.zesox-right {
  flex: 1 1 500px;
}

.zesox-right h2 {
  font-size: 36px;
  color: #0033cc;
  font-weight: bold;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.zesox-right p {
  font-size: 17px;
  color: #111;
  line-height: 1.7;
  margin-bottom: 20px;
}

.zesox-right a {
  color: #0066cc;
  font-weight: bold;
  text-decoration: none;
}

.zesox-right strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  .zesox-section {
    flex-direction: column;
    text-align: center;
  }

  .zesox-right {
    text-align: left;
  }

  .zesox-right h2 {
    font-size: 28px;
    text-align: center;
  }

  .zesox-right p {
    font-size: 16px;
  }

  .zesox-left h1 {
    font-size: 28px;
  }
}
.about-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.about-title {
  font-size: 1.3rem;
  letter-spacing: 1px;
  font-weight: 600;
  color: #0c3c60;
  text-transform: uppercase;
}

.about-desc {
  max-width: 800px;
  margin: 20px auto;
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
}

.circular-image-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}

.circular-image-row img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.circular-image-row img:hover {
  transform: scale(1.1);
}

@media (max-width: 576px) {
  .circular-image-row img {
    width: 80px;
    height: 80px;
  }
}

.review-stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;
  padding: 40px 20px;
  background: #fff;
  font-family: "Arial", sans-serif;
}

.review-column {
  flex: 1 1 200px;
  margin: 10px;
}

.review-column h2 {
  font-size: 32px;
  font-weight: bold;
  color: #004aad;
  margin-bottom: 10px;
}

.google-review {
  color: green;
  font-weight: bold;
  margin-bottom: 5px;
}

.subtitle {
  color: #9c0270;
  font-size: 16px;
}

.review-column h1 {
  font-size: 48px;
  font-weight: bold;
  color: #147495;
  margin-bottom: 5px;
}

.review-column p {
  font-size: 14px;
  letter-spacing: 1.5px;
  color: #222;
}

.stars {
  margin-top: 5px;
  color: #ffc107;
  font-size: 20px;
}

@media (max-width: 768px) {
  .review-stats-container {
    flex-direction: column;
    align-items: center;
  }

  .review-column {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
}

.reviews-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.reviews-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #1f8d00;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.review-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.review-card small {
  font-weight: 600;
  color: #333;
}
.triangle-yellow {
    width: 100%;
    height: 180px;
    background-color: #f1b800;
    clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
    margin-top: -30px;
}


a {
  text-decoration: none;
}

/* footer */

.info_section {
  background-color: #161616;
  color: #ffffff;
  padding: 60px 0px;
}

.info_section h6 {
  font-weight: bold;
  color: #2c93f4;
}

.info_section .info_form {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 45px;
}

.info_section .info_form h4 {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}

.info_section .info_form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.info_section .info_form form input {
  background-color: #ffffff;
  border: none;
  width: calc(100% - 139px);
  outline: none;
  color: #000000;
  height: 42.4px;
  padding-left: 15px;
}

.info_section .info_form form input ::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 0.2;
}

.info_section .info_form form input :-ms-input-placeholder {
  color: #ffffff;
  opacity: 0.2;
}

.info_section .info_form form input ::-ms-input-placeholder {
  color: #ffffff;
  opacity: 0.2;
}

.info_section .info_form form input ::placeholder {
  color: #ffffff;
  opacity: 0.2;
}
.info_social {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.info_social a {
  font-size: 20px;
  color: #fff;
  background: #333;
  padding: 10px;
  border-radius: 50%;
  text-decoration: none;
  transition: background 0.3s;
}

.info_social a:hover {
  background: #f8bc1a;
}

.info_section .info_form form button {
  background-color: #f8bc1a;
  display: inline-block;
  padding: 9px 30px;
  background-color: #f8bc1a;
  border: 1px solid #f8bc1a;
  color: #000000;
  font-size: 15px;
  text-transform: uppercase;
}

.info_section .info_form form button:hover {
  background-color: transparent;
  color: #f8bc1a;
}

.info_section h6 {
  margin-bottom: 12px;
  font-size: 18px;
}

.info_section p {
  color: #cbc9c9;
}

.info_section ul {
  padding: 0;
}

.info_section ul li {
  list-style-type: none;
  margin: 3px 0;
}

.info_section ul li a {
  color: #cbc9c9;
}

.info_section ul li a:hover {
  color: #ffffff;
}

.info_section .info_link-box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 15px 0;
}

.info_section .info_link-box a:hover {
  color: #ffffff;
}

.info_section .info_link-box a img {
  margin-right: 15px;
}

.info_section .info_link-box a span {
  color: #cbc9c9;
}

.info_section .info_link-box a:hover span {
  color: #ffffff;
}

.info_section .info_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 45px auto 15px auto;
}

.info_section .info_social img {
  width: 35px;
  margin-right: 8px;
}

.footer_section {
  background-color: #161616;
  padding: 20px 0;
}

.footer_section p {
  margin: 0;
  text-align: center;
  color: #ffffff;
}

.footer_section a {
  color: #ffffff;
}

/* Back to Top Button Style */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 25px;
  width: 45px;
  height: 45px;
  background-color: #2c93f4;
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #2c93f4;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* about us */
.subheading {
  color: #2c93f4;
  font-weight: bold;
  margin-bottom: 40px;
}

.section-title {
  font-size: 16px;
  font-weight: bold;
  text-align: left;
}

.left-content,
.right-content {
  text-align: left;
}
.socks-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .left-content,
  .right-content {
    text-align: center;
  }
}
.zesox-title {
  font-weight: bold;
  font-size: 32px;
  margin-bottom: 15px;
}

.custom-img {
  width: 100%;
  border-radius: 8px;
}

.feature-list p {
  font-size: 14px;
  margin-bottom: 8px;
}

.image-grid img {
  width: 100%;
  border-radius: 6px;
}

.image-grid .col {
  padding: 5px;
}
@media (max-width: 768px) {
  .d-md-flex {
    flex-direction: column !important;
  }

  .custom-img {
    margin-top: 20px;
  }

  .zesox-title {
    text-align: center;
  }
}
/* Contact Section Container */
.contact-section {
  margin: 20px auto;
  background-color: #f5f7f9;
  border-radius: 10px;
  padding: 30px;
  color: #060606;
}

/* Section Heading */
.contact-section h4 {
  color: #060606;
  border-bottom: 2px solid #060606;
  display: inline-block;
  padding-bottom: 5px;
}
.map-container iframe {
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(13, 59, 102, 0.4);
}

.contact-info p {
  font-size: 16px;
  margin-bottom: 10px;
  color: #060606;
}

.form-container input,
.form-container textarea {
  background-color: white;
  border: 1px solid white;
  border-radius: 5px;
  color: #0d3b66;
  font-size: 15px;
  padding: 10px;
}

.form-container input:focus,
.form-container textarea:focus {
  border-color: #3399ff;
  outline: none;
  box-shadow: 0 0 5px #3399ff;
}

.accordion-button {
  background-color: white;
  color: #0d3b66;
  font-weight: 500;
  border: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: white;
  color: #0d3b66;
}

.accordion-body a {
  color: #0d3b66;
  text-decoration: none;
  padding-left: 10px;
  transition: all 0.3s ease;
}

.accordion-body a:hover {
  color: #0056b3;
  font-weight: 500;
  text-decoration: underline;
}

.form-container button {
  background-color: #3399ff;
  color: white;
  font-weight: bold;
  border: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.form-container button:hover {
  background-color: #0077cc;
  box-shadow: 0 5px 15px rgba(0, 119, 204, 0.3);
}

@media (max-width: 768px) {
  .contact-section {
    padding: 20px;
  }

  .map-container iframe {
    height: 200px;
  }

  .form-container input,
  .form-container textarea {
    font-size: 14px;
  }

  .form-container button {
    font-size: 16px;
  }
}

/* products */
.product-section {
  background-color: #f8f9fa;
}
.product-showcase-img {
  width: 330px;
  max-height: 300px;
  object-fit: contain;
  border: none;
  border-radius: 0;
  margin-bottom: 0;
  background-color: #cce8ff;
}

.product-section h2 {
  font-size: 1.75rem;
}

.blue-list {
  padding-left: 1.2rem;
}

.blue-list li {
  margin-bottom: 0.5rem;
  position: relative;
  color: #0a0909;
}

.blue-list li::before {
  content: "✔";
  color: #0d6efd;
  margin-right: 8px;
}

/* sitemap */
.sitemap-wrapper {
  max-width: 900px;
  margin: auto;
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(106, 27, 154, 0.2);
}

.sitemap-wrapper h2 {
  color: #0d6efd;
  font-size: 32px;
  margin-bottom: 30px;
  border-left: 6px solid #0d6efd;
  padding-left: 15px;
}

.sitemap-list {
  list-style: none;
  padding-left: 20px;
  position: relative;
}

.sitemap-list li {
  position: relative;
  margin: 12px 0;
  padding-left: 28px;
  font-size: 18px;
}

.sitemap-list li::before {
  content: "🧦";
  position: absolute;
  left: 0;
  color: #0d6efd;
  font-size: 16px;
}

.sitemap-list a {
  color: #0d6efd;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.sitemap-list a:hover {
  color: #0d6efd;
  border-color: #0d6efd;
}

.sub-list {
  list-style: none;
  padding-left: 25px;
  margin-top: 8px;
  border-left: 2px dashed #ccc;
}

.sub-list li {
  position: relative;
  padding-left: 20px;
  margin: 6px 0;
}

.sub-list li::before {
  content: "↳";
  position: absolute;
  left: 0;
  color: #999;
}

@media (max-width: 600px) {
  .sitemap-wrapper {
    padding: 25px 20px;
  }

  .sitemap-list li {
    font-size: 16px;
  }

  .sitemap-wrapper h1 {
    font-size: 26px;
  }
}
/* market area */
.market-area {
  padding: 60px 15px;
  text-align: center;
}

.market-area h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #333;
}

.area-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.area-box {
  width: 250px;
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease-in-out;
  display: block;
}

.area-box:hover {
  transform: scale(1.05);
}

.area-icon {
  font-size: 38px;
  margin-bottom: 15px;
}

/* Example colors */
.lucknow {
  background: #f0f7ff;
  color: #0b4f79;
}

.bhopal {
  background: #fff2e5;
  color: #b05a00;
}

.shastri {
  background: #f5e6ff;
  color: #7200a8;
}

.jaipur {
  background: #ffe6e6;
  color: #c70039;
}

.gandhinagar {
  background: #eaffea;
  color: #1d6f42;
}

.mumbai {
  background: #e6f0ff;
  color: #0047ab;
}

.hyderabad {
  background: #fcefea;
  color: #93291e;
}

.bengaluru {
  background: #ecf5ff;
  color: #004466;
}

.chhattisgarh {
  background: #fff9e6;
  color: #665c00;
}

.bhubaneshwar {
  background: #f4e6ff;
  color: #5e00a6;
}

/* --- New Locations --- */
.delhi {
  background: #fff0f0;
  color: #8b0000;
}

.tamilnadu {
  background: #f0fff4;
  color: #006b2d;
}

.andhrapradesh {
  background: #f0f8ff;
  color: #005f8f;
}

.punjab {
  background: #fffbe6;
  color: #7f6000;
}

.rajasthan {
  background: #fff5e6;
  color: #b34700;
}

.karnataka {
  background: #f2f0ff;
  color: #3d0099;
}


@media (max-width: 768px) {
  .area-box {
    width: 90%;
  }

  .market-area h2 {
    font-size: 28px;
  }
}

/* market-area-content */
/* Main container */
.market-content-container {
  padding: 60px 20px;
  background-color: #e6f0ff;
}

.market-content-con {
  max-width: 1200px;
  margin: auto;
}

/* Section Title */
.market-content-title {
  text-align: center;
  margin-bottom: 40px;
}

.market-content-title h3 {
  color: #0056b3;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Content Blocks */
.market-content {
  background: #fff;
  border-left: 6px solid #0056b3;
  padding: 25px 30px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.market-content:hover {
  transform: translateY(-5px);
}

.market-content h4,
.market-content h5,
.market-content h6 {
  color: #0d6efd;
  font-size: 25px;
  font-weight: 800;
  margin-bottom: 12px;
}

.market-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 10px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .market-content-title h3 {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .market-content-title h3 {
    font-size: 24px;
  }

  .market-content {
    padding: 20px;
  }

  .market-content h4,
  .market-content h5,
  .market-content h6 {
    font-size: 20px;
    font-weight: 700;
  }

  .market-content p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .market-content-title h3 {
    font-size: 22px;
  }

  .market-content {
    padding: 16px;
  }

  .market-content h4,
  .market-content h5,
  .market-content h6 {
    font-size: 18px;
  }

  .market-content p {
    font-size: 14px;
  }
}

/* disclaimer terms and privacy */
.blue-disclaimer-section {
  background-color: #f4faff;
  padding: 60px 20px;
  font-family: "Segoe UI", sans-serif;
  color: #003366;
}

.blue-disclaimer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.blue-disclaimer-container h2 {
  font-size: 2.2rem;
  text-align: center;
  color: #0056b3;
  border-bottom: 2px solid #3399ff;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 40px;
}

.blue-disclaimer-block {
  background: #e6f0ff;
  border-left: 4px solid #3399ff;
  padding: 25px 30px;
  margin-bottom: 25px;
  border-radius: 6px;
  transition: box-shadow 0.3s ease;
}

.blue-disclaimer-block:hover {
  box-shadow: 0 4px 10px rgba(0, 86, 179, 0.15);
}

.blue-disclaimer-block h3 {
  font-size: 1.25rem;
  color: #004a99;
  margin-bottom: 12px;
}

.blue-disclaimer-block p {
  font-size: 1rem;
  line-height: 1.7;
  color: #1a1a1a;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .blue-disclaimer-container h2 {
    font-size: 1.9rem;
    margin-bottom: 30px;
  }

  .blue-disclaimer-block {
    padding: 20px;
  }

  .blue-disclaimer-block h3 {
    font-size: 1.1rem;
  }

  .blue-disclaimer-block p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .blue-disclaimer-section {
    padding: 40px 15px;
  }

  .blue-disclaimer-block {
    padding: 15px;
  }

  .blue-disclaimer-container h2 {
    font-size: 1.6rem;
  }

  .blue-disclaimer-block h3 {
    font-size: 1rem;
  }

  .blue-disclaimer-block p {
    font-size: 0.92rem;
  }
}
