@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200&family=Rajdhani&family=Raleway:wght@100;200&family=Sevillana&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Tac+One&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
        font-family: 'Brooke Regular';
        font-style: normal;
        src: local('Brooke Regular'), url('Brooke.woff') format('woff');
 }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.logo{
  width: 70px;
}
.logo-txt{
  width: 600px;
  padding-left: 1rem;
}
body {
  font-family: "Raleway", sans-serif;
  color: #fff;
  background: (312deg, rgba(2, 0, 36, 1) 1%, rgb(24, 77, 133) 55%);
  overflow: hidden;
}



#blk {
  text-decoration: none;
  color: #000;
}

ul {
  list-style: none;
}

.main-header {
  position: fixed;
  align-items: center;
  width: 100%;
  justify-content: center;
  top: 0;
  background-color: #fff;
  z-index: 5;
  text-transform: uppercase;
  padding: 1.1rem 8rem;
  display: flex;
  border-bottom: solid 0.2px #444;
}
.desktop-main-menu{
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-around;

}

.desktop-main-menu ul {
  display: flex;
  padding-right: 13rem;
}

.desktop-main-menu ul li {
  position: relative;
  margin-right: 20px;
}

.contact-bar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 150px;
}

.contact-bar a svg{
  color: #000;
  height: 25px;
  width: 25px;
}

.desktop-main-menu ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  color: #000;
  height: 2px;
  width: 100%;
  background-color: #000;
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}



.hamburger-menu {
  display: none;
}
.desktop-main-menu ul li a:hover::after {
  transform: scaleX(1);
}

.desktop-main-menu ul li a:hover {
  color: #000;
  text-align: center;
  transition: all 0.3s ease;
}

.desktop-main-menu ul li a{
  font-size: 1.1rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

.inner-section {
  display: flex;
  justify-content: start;
  align-items: end;

}

.text-a h1{
  font-family:sans-serif;
  font-size: 5rem;
  font-weight: 600;
}

.text-a {
  position: absolute;
  z-index: 1;
  width: 100%;
  padding: 11.5rem 0;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: flex;
}
.slide-container {
  position: relative;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 80vh;
  box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.2);
}
.slide-container .slides {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.slide-container .slides img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}
.slide-container .slides img:not(.active) {
  top: 0;
  left: -100%;
}
span.next,
span.prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 14px;
  color: #eee;
  font-size: 50px;
  font-weight: 00;
  transition: 0.5s;
  border-radius: 3px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
}
span.next {
  right: 20px;
}
span.prev {
  left: 20px;
}
.slide h2 {
  font-family: sans-serif;
  color: #fff;
  font-weight: 100;
  font-size: 25px;
  margin-left: 7px;
}
span.next:hover,
span.prev:hover {
  opacity: 0.8;
  color: #fff;
  border-radius: 20%;
}
.dotsContainer {
  position: absolute;
  bottom: 90px;
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
}
.dotsContainer .dot {
  width: 15px;
  height: 15px;
  margin: 0px 2px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.6s ease;
}
.dotsContainer .active {
  background-color: #fff;
}

@keyframes next1 {
  from {
    left: 0%;
  }
  to {
    left: -100%;
  }
}
@keyframes next2 {
  from {
    left: 100%;
  }
  to {
    left: 0%;
  }
}

@keyframes prev1 {
  from {
    left: 0%;
  }
  to {
    left: 100%;
  }
}
@keyframes prev2 {
  from {
    left: -90%;
  }
  to {
    left: 0%;
  }
}

.ico a{
  margin: 0 1rem;
  color: #000;
}
.section-a {
  background-color: #fff;
}

.section-a .inner-section h2 {
  font-size: 30px;
  margin-bottom: 5px;
  font-weight: 300;
  animation: fadeInUp 0.5s ease-in-out 0.2s;
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
  font-style: normal;
}
@keyframes fadeInUp {
  0% {
    opacity: 0%;
    transform: translateX(-120px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.inner-section h4 {
  font-size: 150px;
  font-family: "Tac One", sans-serif;
  font-weight: 100;
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  position: relative;
}
.inner-section h4::before {
  content: "FOR U INDUSTRIES";
  position: absolute;
  width: 0%;
  height: 100%;
  overflow: hidden;
  color: #fff;
  border-right: 8px solid #fff;
  transition: 1s ease-in-out;
}
.inner-section h4:hover::before {
  width: 100%;
  filter: drop-shadow(0 0 25px #fff);
}

.btn {
  position: relative;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  min-width: 130px;
  padding: 15px 25px;
  margin-top: 10px;
  border: 2px solid #fff;
  text-transform: uppercase;
  font-weight: bold;
  z-index: 2;
  font-size: 20px;
  border-radius: 50px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}
.btn:hover span {
  color: #fff;
  text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #b5b5b5;
  transition: all 0.6s ease;
  text-align: center;
}

.btn .hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  z-index: -1;
  background: linear-gradient(
    145deg,
    rgb(133, 141, 179),
    rgb(34, 159, 179),
    rgb(226, 79, 87)
  );
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

/* Hover effect */
.btn:hover .hover {
  transform: translateY(0%);
}

.btn:hover .hover {
  transform: translateY(0%);
  transform-origin: bottom top;
  transition: transform 0.5s ease;
}

.section-a .scroll-arrow {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  animation: arrow-down 4s infinite;
}
@keyframes arrow-down {
  0%,
  20%,
  50%,
  70%,
  90%,
  100% {
    transform: translateY(-20px);
    opacity: 0;
  }
  30% {
    transform: translateY(0px);
    opacity: 100%;
  }
}

.section-b {
  background: #fff;
  color: #000;
  overflow: hidden;
  height: fit-content;
}
.section-b .sect-b {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow-y: scroll;
}

.total_txt {
  animation: fadeInUp 0.5s ease-in-out 0s;
  display: none;
}

.line {
  height: 2px;
  width: 100%;
  background-color: #f6bb3e;
  position: relative;
  bottom: 60px;
}

.section-b .scroll-arrow {
  animation: arrow-down 5s infinite;
  justify-content: center;
  display: flex;
}

.about-slides {
  justify-content: space-around;
  align-items: center;
  display: flex;
  padding: 0;
  background: white;
  position: relative;
}
.slide {
  flex-direction: column;
  align-items: center;
  display: flex;
  padding: 3rem 8rem;
  margin: 0 1rem;
  background: rgba(66, 124, 175, 0.2); /* More transparent for glass effect */
  border-radius: 15px;
  overflow: hidden;
  color: #000;
  position: relative;
  height: 100%;
  backdrop-filter: blur(12px); /* Blur effect for background */
  -webkit-backdrop-filter: blur(12px); /* For Safari */
  border: 1px solid rgba(255, 255, 255, 0.15); /* Soft border to mimic light reflection */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}
.slide h2, .circle {
  z-index: 1;
  color: #000;
}

.slide::after {
  content: '';
  background: transparent;
  box-shadow: 30px 50px 20px #ffffffc6;
  height: 10px;
  width: 1000px;
  position: absolute;
  top:-450px ;
  left: -250px;
  right:0 ;
  bottom: 100px;
  z-index: 0; /* Ensure it sits behind the content */
  transform: rotate(-45deg);
  transition: all 2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.slide:hover::after{
  top: 250px;
  border-radius: 20px;
}
.products-h2 {
  font-size: 50px;
  font-family: sans-serif;
  color: #fff;
  position: absolute;
  font-weight: 100;
  padding: 1rem 0;
}

/* .products-h2::after{
    content: '';
    width:50px;
    height:1px;
    background-color: #f6bb3e
} */

.circle{
  height:120px;
  width:120px;
  border-radius: 50%;
}



.b-text {
  font-family: sans-serif;
  font-weight: 100;
  color: #fff;
  padding: 1rem 0;
}

.two {
  background: url("img/sect-b-products/ap.png") center/cover;
  background-size: cover; /* Add this line */
}

.three {
  background: url("img/sect-b-products/bp.png") center/cover;
}

.four {
  background: url("img/sect-b-products/dp.png") center/cover;
}

.five {
  background: url("img/sect-b-products/50.png") center/cover;
}

.six {
  background: url("img/sect-b-products/fp.png") center/cover;
}

#contact {
  padding: 6rem 1rem;
  background: linear-gradient(
    312deg,
    rgba(2, 0, 36, 1) 1%,
    rgb(24, 77, 133) 55%
  );
  background-size: 200% 200%;
  animation: rotateBackground 4s linear infinite; /* Adjusted duration for a slower rotation */
}

.form {
  grid-area: form;
}

#about-con{
  height: 100vh;
  background-image: url('img/trail_of.jpg');
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-us {
  width: 90%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem 5rem;
  background: rgba(0, 0, 0, 0.184); /* translucent white */
  backdrop-filter: blur(12px); /* glass blur */
  -webkit-backdrop-filter: blur(50px); /* Safari support */
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}

.about-h2 {
  font-size: 50px;
  font-family: "Roboto", sans-serif;
  font-weight: 60;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.gradient{
  display: none;
}
.about-h2::after {
  content: "";
  height: 2px;
  width: 150px;
  background: #f6bb3e;
}

.about-p {
  font-size: 26px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  text-align: justify;
  padding: 2rem 0;
}
.map {
  grid-area: map;
  grid-column: span 10;
  border-radius: 50px;
  width: 100%;
  padding: 5rem 10%;
  height: 25rem;
}

.box {
  padding: 0 5rem;
}
.map iframe {
  border-radius: 10px;
}

.info {
  grid-area: info;
  grid-column: span 10;
  border-radius: 5px;
  background: rgb(11, 10, 103);
  background: linear-gradient(
    126deg,
    rgba(11, 10, 103, 1) 21%,
    rgba(43, 43, 131, 1) 62%,
    rgba(0, 0, 0, 1) 85%
  );
  background-size: 400% 400%;
  animation: colorbg 5s ease infinite;
}
@keyframes colorbg {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}

.container h2 {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  font-weight: 60;
  font-family: "Roboto", sans-serif;
}




.box {
  position: relative;
  display: grid;
  grid-template-columns: 5fr 1fr;
  grid-template-rows: 5fr 4fr;
  grid-template-areas:
    "form info"
    "form map";
  grid-gap: 50px;
}

.container {
  background-color: #ffffff9a;
  padding: 20px;
  width: 500px;
  border-radius: 5px;
}
.us {
  font-size: 200px;
  color: #000;
  font-family: "Raleway", sans-serif;
  position: absolute;

  transform: translateX(0%);
  animation: x-slide 0.8s ease-in-out;
}
.clothing-img {
  height: 70vh;
  width: 100%;
  background: url(img/clothing.png) center/cover;
}

.inner-img {
  height: 70vh;
  width: 100%;
  background: url(img/sect-b-products/inner-div.png) center/cover;
}

.uniform-img {
  height: 70vh;
  width: 100%;
  background: url(img/sect-b-products/uniforms.png) center/cover;
}

.sock-img {
  height: 70vh;
  width: 100%;
  background: url(img/sect-b-products/socks.png) center/cover;
}
.clothes-h2 {
  font-size: 50px;
  font-family: "Roboto", sans-serif;
  font-weight: 200;
  color: #000;
  padding: 2rem 3rem;
}
.contact-container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(145deg, rgb(24, 77, 133), rgb(34, 159, 179));
  padding: 2rem;
}

/* Container */
.contact-page {
  width: 600px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  margin: auto;
  transition: all 0.4s ease;
}

/* Toggle buttons */
.contact-toggle {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-toggle button {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  padding: 0.6rem 1.2rem;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.contact-toggle button.active {
  color: rgb(226, 79, 87); /* Your red main color */
  background: rgba(255, 255, 255, 0.1);
}

/* Container for form/map */
.contact-cont {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
}

/* Shared styles for contact and map sections */
.contact-content,
.location-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2rem;
  box-sizing: border-box;
  border-radius: 0 0 20px 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
}

/* Make visible section active */
.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

/* Contact Form */
.contact-content form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-content input,
.contact-content textarea {
  padding: 0.8rem;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 1rem;
  outline: none;
}

.contact-content input::placeholder,
.contact-content textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-content button {
  background: linear-gradient(90deg, rgb(180, 130, 158), rgb(228, 116, 106));
  border: none;
  padding: 0.75rem;
  border-radius: 12px;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-content button:hover {
  background: linear-gradient(90deg, rgb(133, 141, 179), rgb(34, 159, 179));
}

/* Map styling */
.location-content iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0 0 20px 20px;
}
.contact-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 4rem 3rem; /* Increased padding (vertical, horizontal) */
  width: 90%;
  margin: 0 5rem;
  max-width: 500px;    /* Slightly wider max width */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.toggle-tabs {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.tab {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab.active {
  color: #fff; /* Main red highlight */
  text-shadow: 0 0 10px #ffffff96;
}

.content-wrapper {
  position: relative;
  height: 300px; /* or more, depending on your padding needs */
  border-radius: 0 0 20px 20px; 
  overflow: hidden;
}
#contactContent h2{
  font-size: 2rem;
}
#locationContent h2{
  font-size: 2rem;
}

#locationContent iframe{
  margin-top: 1rem;
  border-radius: 5px;
}

.grab{
  font-size: 1.5rem;
  padding: 2rem 0;
}

.grab p{
  padding: 0.8rem 0;
  font-family: 'Roboto', sans-serif;
  font-weight: 200;
}

.grab p a{
  text-decoration: none;
  color: #fff;
}

.content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
  pointer-events: none;
}

.content.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.img-gallery {
  width: 80%;
  margin: 100px auto 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 30px;
}
.img-gallery img {
  width: 100%;
  cursor: pointer;
  transition: 0.4s;
  border-radius: 5px;
}
.img-gallery img:hover {
  transform: scale(0.8) rotate(-15deg);
  border-radius: 20px;
  box-shadow: 0 32px 75px rgba(68, 77, 136, 0.2);
  filter: none;
}
.clothes {
  background: #fff;
}
.title-a {
  font-family: "Raleway", sans-serif;
  font-size: 70px;
  color: #f6bb3e;
}

.title-b {
  text-decoration: underline;
}
.cont-clothes {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.c-contain {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}
.c-text {
  font-size: 70px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  align-items: center;
  display: flex;
  color: #000;
  flex-direction: column;
  padding: 2rem 0;
}

.c-text::after {
  content: "";
  height: 2px;
  width: 500px;
  background: #f6bb3e;
}

.c {
  color: #000;
}
.ac {
  background: url(img/tshirt.png) center/cover;
  box-shadow: 0px 0px 5px #000;
}
.ad {
  background: url(img/traditional.png) center/cover;
  box-shadow: 0px 0px 5px #000;
}
.ae {
  background: url(img/sect-b) center/cover;
  box-shadow: 0px 0px 5px #000;
  box-shadow: 0px 0px 5px #000;
}
.ae {
  background: url(img/sect-b-products/cp.png) center/cover;
  box-shadow: 0px 0px 5px #000;
}
.af {
  background: url(img/sect-b-products/dp.png) center/cover;
  box-shadow: 0px 0px 5px #000;
}

.brands {
  overflow: hidden;
  padding: 1rem 0;
  background: #fff;
  white-space: nowrap;
}
.brands-slide {
  display: inline-block;
  animation: 10s slide-brands infinite linear;
}
.brands:hover .brands-slide {
  animation-play-state: paused;
}
@keyframes slide-brands {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.brands-slide img {
  height: 150px;
  margin: 0 40px;
}

.bc {
  background: url(img/sect-b-products/bp.png) center/cover;
  box-shadow: 0 0 5px #000;
}
.bd {
  background: url(img/sect-b-products/bc.png) center/cover;
  box-shadow: 0 0 5px #000;
}
.be {
  background: url(img/sect-b-products/bd.png) center/cover;
  box-shadow: 0 0 5px #000;
}

.cc {
  background: url(img/sect-b-products/cc.png) center/cover;
  box-shadow: 0 0 5px #000;
}
.cd {
  background: url(img/sect-b-products/cd.png) center/cover;
  box-shadow: 0 0 5px #000;
}
.ce {
  background: url(img/sect-b-products/ce.png) center/cover;
  box-shadow: 0 0 5px #000;
}
.cf {
  background: url(img/sect-b-products/material.png) center/cover;
  box-shadow: 0 0 5px #000;
}

.dd {
  background: url(img/sect-b-products/dd.png) center/cover;
  box-shadow: 0 0 5px #000;
}

.de {
  background: url(img/sect-b-products/de.png) center/cover;
  box-shadow: 0 0 5px #000;
}

.shirt-intro {
  height: 100vh;
  display: none;
  background-color: #fffbfb;
  overflow: hidden;
}

.shirt-container {
  height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
}

.shirt img {
  z-index: 2;
  height: 500px;
  width: 500px;
  transform: translateY(0%);
  animation: y-slide 0.8s ease-in-out;
  margin: 7rem 30rem;
  transform: translateY(-150%);
  animation: y-drop 5s ease-in-out infinite;
}

@keyframes y-drop {
  0% {
    transform: translateY(-150%);
  }
  50% {
    transform: translateY(20%);
  }
  80% {
    transform: translateY(150%);
  }
  100% {
    transform: translateY(-150%);
  }
}

@keyframes y-slide {
  0% {
    transform: translateY(-100%);
    opacity: 0%;
  }
  100% {
    transform: translateY(0%);
    opacity: 100%;
  }
}

@keyframes x-slide {
  0% {
    transform: translateX(-100%);
    opacity: 50%;
  }
  100% {
    transform: translateX(0%);
    opacity: 100%;
  }
}

.white {
  color: #fff;
  text-shadow: -5px 10px 20px #000;
}

.brand-right {
  width: 50%;
  height: 50vh;
  padding: 3rem;
}

.brand-left {
  width: 50%;
  height: 30vh;
  padding: 3rem;
}

.coverd {
  display: flex;
}
.brand-right ul li a {
  text-decoration: none;
  color: #fff;
}
.brand-right ul li {
  padding: 0.5rem 10rem;
}


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



.bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 3rem;
  font-size: 15px;
}

.ico {
  font-size: 25px;
}

@media screen and (max-width: 1230px) {
  .about-us {
    margin: 0;
    padding: 3rem 10rem;
    overflow-y: scroll;
  }
  .about-slides{
    flex-direction: column;
  }
 .slide{
  margin: 1rem 0;

 }
 .slide::after{
  padding: 25rem;
  top: 500px;
 }
 .slide:hover::after{
  top:-290px;
 }
  .main-header {
    width: 100%;
      background-color: #fff;
}
  }

  .about-h2 {
    padding: 3rem 0;
  }
  #contact {
    overflow: hidden;
  }

  .form {
    grid-column: span 10;
    height: 30rem;
  }
  .main-mobile-menu {
    right: 0;
  }
  .bottom {
    padding: 1rem;
  }
  .us {
    font-size: 150px;
  }

  .shirt-container {
    width: 100%;
  }

  .box {
    padding: 0 1rem;
  }
  .map {
    height: 30rem;
  }
  /* 
    } */

  .info {
    height: 30rem;
  }
  .brand-left,
  .brand-right {
    height: 30vh;
    padding: 5rem;
  }
  .brand-f {
    position: relative;
    right: 5rem;
  }

form {
  display: grid;
  gap: 10px;
  margin: 3rem 0;
}

label {
  font-weight: bold;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 60;
  position: relative;
  top: 1rem;
  left: 0;
}

input,
textarea {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
  background: none;
  border: none;
  border-bottom: solid 1px #fff;
  outline: none;
  resize: none;
}

.whatsapp_float {
  position: fixed;
  width: 100px;
  height: 100px;
  bottom: 100px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.whatsapp-icon {
  margin-top: 25px;
  font-size: 50px;
}

.sub-button {
  background: #f6bb3e;
  color: #fff;
  cursor: pointer;
  border-bottom: none;
  margin: 2rem 0;
  padding: 0.7rem 0;
  border-radius: 10px;
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 60;
}

.sub-button:hover {
  background: #f9c85c;
  transition: all 0.6s ease inherit;
}

.info ul {
  list-style: none;
  width: 100%;
}

.inf {
  color: #fff;
  font-size: 15px;
  font-family: "Roboto", sans-serif;
  display: flex;
  border-bottom: solid #fff 1px;
  padding: 1rem;
  width: 100%;
  font-weight: 60;
}

.info h2 {
  padding: 0 1rem;
  font-weight: 60;
}

.info i {
  font-size: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.phone {
  cursor: pointer;
}

.phone a {
  text-decoration: none;
  color: #fff;
}

.main-mobile-menu {
  display: none;
}


.site-footer {
  background: linear-gradient(135deg, 
    rgb(180, 130, 158), 
    rgb(133, 141, 179), 
    rgb(34, 159, 179), 
    rgb(226, 79, 87));
  color: #fff;
  font-family: 'Titillium Web', sans-serif;
  padding: 2rem 8rem 1rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.4);
  transition: background 0.4s ease;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 1rem;
}

.footer-left {
  max-width: 400px;
}

.footer-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.menu{
  display: none;
}

.footer-left h2 {
  font-size: 1.8rem;
  margin-bottom: 0.3rem;
}

.footer-left p {
  font-size: 1rem;
  color: #fff;
  margin: 0.2rem 0;
}

.footer-left .phone i {
  margin-right: 0.5rem;
  color: #f6bb3e;
}

.footer-right a {
  color: #fff;
  font-size: 1.6rem;
  margin: 0 0.8rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-right a:hover {
  color: #f6bb3e;
  transform: scale(1.2);
}

.footer-right{
  min-width: 500px;
}
.footer-bottom {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #fff;
}

.helper-wrapper {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.helper-circle {
  width: 60px;
  height: 60px;
  background-image: url('img/helper.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10001;
}



.helper-box {
  background: linear-gradient(
    135deg,
    rgba(34, 159, 179, 0.3),
    rgba(133, 141, 179, 0.3),
    rgba(180, 130, 158, 0.3)
  );
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  padding: 1rem 10rem;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateX(100%);
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
  position: absolute;
  right: 70px;
  bottom: 0;
  max-width: 250px;
  color: #ffffff;
  white-space: nowrap;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.helper-box.show {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.helper-content {
  font-family: 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.helper-content i {
  margin-right: 8px;
  color: #fff;
  padding: 0.5rem 0;
  font-size: 1.3rem;
}

.helper-content h1{
  margin-right: 8px;
  color: #fff;
  font-size: 1.3rem;
  font-family: 'Raleway', sans-serif;
}

.p-cont{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.p-cont p{
  font-size: 1.2rem;
}

.helper-content a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 1.2rem;
}


@media (max-width: 768px) {
  .whatsapp-icon {
    margin-top: 10px;
  }
  .whatsapp_float {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 10px;
    font-size: 20px;
  }
  .clothing-img {
    height: 50vh;
  }
  .inner-img {
    height: 50vh;
  }

  .uniform-img {
    height: 50vh;
  }
  .sock-img {
    height: 50vh;
  }
  .container h2 {
    font-size: 25px;
  }
  .about-us{
    border-radius: 0;
    height: 100%;
    width: 100%;
  }

 .contact-container{
    height: auto;
  }
.contact-page{
 margin-top: 3rem ;
}
  .inf {
    color: #fff;
    font-size: 10px;
  }
  .box {
    grid-template-areas:
      "form"
      "info"
      "map";
  }
  #contact {
    overflow: hidden;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .form,
  .map,
  .info {
    grid-column: span 18;
    width: 80%;
    position: relative;
    left: 4.4rem;
  }
  .coverd {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  /* .text-a {
    bottom: 0rem;
    padding: 5rem 1rem;
  } */

  .dotsContainer .dot {
    width: 10px;
    height: 10px;
  }
  .scroll-arrow {
    display: none;
  }
  .side::after {
    width: 56%;
  }
  .btn {
    font-size: 20px;
    padding: 9px 30px;
  }
  .inner-section h4 {
    font-size: 100px;
  }
  .section-a .inner-section h2 {
    font-size: 35px;
    font-weight: bold;
  }

  .dotsContainer {
    bottom: 1rem;
  }

  .us {
    font-size: 90px;
    left: 6rem;
  }

  .shirt-intro {
    overflow: hidden;
  }
  .brand-left,
  .brand-right {
    margin: 4rem 0;
    padding: 0 0;
  }
  span.next,
  span.prev {
    font-size: 20px;
  }
  .main-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    z-index: 4;
    background: linear-gradient(
      312deg,
      rgba(2, 0, 36, 1) 1%,
      rgb(24, 77, 133) 55%
    );
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.6s ease;
  }
  .logo{
    height: 70px;
    width: 70px;
    margin: 1rem 0;
  }
  .main-mobile-menu::after {
    content: "";
    height: 100vh;
    width: 100vh;
    background-color: #333333;
  }

  .desktop-main-menu {
    display: none;
  }


 



  .text-a {
    background: none;
  }

  .main-header h1 {
    font-size: 20px;
    z-index: 6;
  }

  .brand-right ul li {
    padding: 0.5rem 0rem;
  }


  .left-div {
    width: 100%;
  }
  .right-div .rot {
    display: none;
  }
  .us {
    left: 0;
    font-size: 80px;
  }
  .whatsapp-icon {
    margin-top: 10px;
    font-size: 22px;
  }
  .whatsapp_float {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 10px;
    font-size: 22px;
  }

  .inner-section h4 {
    font-size: 50px;
    font-weight: 300;
  }
  .section-a .inner-section h2 {
    font-size: 20px;
    font-weight: 300;
  }
  .about-h2 {
    font-size: 30px;
  }
  .about-p {
    font-size: 20px;
    padding: 0;
    text-align: justify;
    width: 500px;
  }
  .about-us {
    overflow-y: scroll;
    overflow: hidden;
 
  }
  .circle {
    height: 130px;
    width: 130px;
    padding: 3rem;
  }
  .c-text {
    font-size: 30px;
    font-weight: 100;
  }
  .cont-clothes {
    display: none;
  }
  .slide h2 {
    font-weight: 50;
  }
  #contact {
    width: 100%;
    padding: 5rem 0;
  }
  .box {
    width: 50%;
    padding: 0 15rem;
  }
  .form {
    width: 35%;
    margin: 0 10rem;
  }
  .info {
    width: 35%;
    margin: 0 10rem;
  }
  .map {
    width: 40%;
    margin: 0 17rem;
  }

  .coverd {
    position: relative;
    left: 5rem;
  }
  .coverd h1 {
    font-size: 30px;
    width: 100%;
  }

  .hamburger {
  position: fixed;
  top: 3;
  left: 20px;
  z-index: 999;
  width: 30px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
}

.contact-container{
  display:flex;
  flex-direction: column;
}

.content-wrapper{
  padding-top:5rem ;
}

.hamburger span {
  height: 3px;
  background: black;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 3px);
  background: white;
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-46deg) translate(11px, -10px);
  background: white;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: black;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 998;
}
.overlay.show {
  opacity: 1;
  pointer-events: all;
}
.menu{
  display: block;
}

.menu ul {
  list-style: none;
  text-align: center;
  padding: 0;
  display: block;
}
.menu li {
  margin: 20px 0;
}
.menu a {
  text-decoration: none;
  color: #fff;
  font-size: 2rem;
  transition: color 0.3s ease;
}
.menu a:hover {
  color: #aaa;
}
}

@media (max-width: 508px){
 .inner-section{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column-reverse;
 }
 .slide-container {
  height: 36vh;
 }
 
 .text-a {
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
 }
 .text-a h4{
  font-size: 50px;
 }
 .text-a h2{
  font-size: 35px;
 }
.btn{
  padding: 10px 20px;
  font-size: 25px;
}
.inner-section h4 {
  font-family: "Tac One", sans-serif;
  font-weight: 100;
}
.inner-section h4::before {
  border-right: 2px solid #fff;
}
.logo{
  height: 50px;
  width: 50px;
  margin: 1rem 0;
}
.gradient{
  display: block;
  height: 50vh;
  width: 100%;

}
}
.thank-you-container {
  text-align: center;
  background-color: #ffffff;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.thank-you-container h1 {
  color: #4CAF50;
  font-size: 2.5em;
  margin-bottom: 20px;
}

.thank-you-container p {
  font-size: 1.2em;
  color: #555555;
  margin-bottom: 30px;
}

.back-button {
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  background-color: #4CAF50;
  padding: 15px 25px;
  border-radius: 5px;
  font-size: 1em;
}

.back-button:hover {
  background-color: #45a049;
}

@media (max-width:600px) {
  .us{
    display: none;
  }
  .menu{
  padding: 10rem 0;
}
  .whatsapp_float, .whatsapp-icon{
    display: none;
  }
.main-header{
  display: flex;
  flex-direction: column;
}
  .about-p {
    text-align: center;
    width: 350px;
    padding: 0 ;
  }
#mobile-menu{
    display: none;
  }
  .buttons{
    display: none;
  }
  .dotsContainer{
    visibility: hidden;
  }
.overlay{
  display: block;
}
  .slide-container {
    height: 30vh;
   }
   .text-a h4{
    font-size: 20px;
    font-family: sans-serif;
   }
   .text-a h2{
    font-size: 15px;
   }

   .text-a {
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 4rem;
   }
   .slide{
    overflow: hidden;
    position: relative;
    left: 0px;
   }
   .circle{
    height: 100px;
    width: 100px;
   }
   .about-con{
    display: none;
   }
.contact-page{
  width: 400px;
}
   .brand-left h1, .brand-right h1{
    font-size: 20px;
  }
  .brand-right ul li {
    position: relative;
    right: 2rem;
  }
  .brand-left ul li, .brand-right ul li a{
    font-size: 20px;
   }
  .bottom{
    flex-direction: column;
    align-items: center;
    justify-content: center;
   }
  .bottom p{
    font-size: 10px;
  }
    .contact-bar{
    display: none;
  }
  .logo{
  width: 50px;
  height: 50px;
}

.logo-txt{
  width: 300px;
  font-size: 20px !important;
  padding-left: 4rem;
}
.hamburger span {
  height: 2px;
  width: 25px;
  background: black;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger{
  height: 20px;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(9.5px, -9.3px);
}

.menu a {
  font-size: 1.5rem;
}
.inner-section{
  padding-top:8rem ;
  justify-content: center;
  align-items: baseline;
}
.section-a{
  height: 100vh;
}
.slide-container {
  position: relative;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100vh;
}
.text-a{
  padding-top: 10rem;
  background: #0000007c;
  height: 96.5%;
}
.text-a h1{
  font-size: 3rem;
  font-family: "Brooke", sans-serif;
}

.btn{
  padding: 10px 20px;
  font-size: 1rem  !important;
}

}
