/* General Reset */
* {
  margin: 0;
  padding: 0;
}
body,html{
  overflow-x: hidden;
}
.logo {
  width: 100px; 
  filter: brightness(0) invert(1); 
}
/* Navbar Styling */
.navbar {

  background-color: rgb(255, 255, 255);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  /* Aligns brand on the left and menu on the right */
  align-items: center;
  /* Ensures vertical alignment of items */
  box-shadow: 1px 4px 8px rgba(0, 0, 0, 0.618);
   position: fixed !important; 
  top: 0; 
  width: 100%;
  z-index: 1000;
}

/* Logo Styling */
.navbar-brand img {
  width: 170px;
  /* transition: transform 0.3s ease, opacity 0.3s ease; */
  /* backdrop-filter:1px 10px 10px black  !important;
  filter: drop-shadow(1px 1px 1px black); */
  padding: 5px;
}


/* Navbar Links */
.navbar-nav {
  display: flex;
  gap: 3.5rem;
  /* Space between menu items */
  align-items: center;
}

.navbar-nav .nav-link {
  color: darkslategray;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: color 0.3s ease, background-color 0.3s ease;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.navbar-nav .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: rgb(210, 63, 63);
}


/* Dropdown Styling */
.dropdown-menu {
  border-radius: 8px;
  border: none;
  padding: 0.5rem 0;
background-color: white;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  
}

.dropdown-item {
  color: darkslategray;
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
  background-color: #eb194e;
  color: #ffffff;
}

/* Toggler Button */
.navbar-toggler {
  border: none;
  background-color: white;
  /* padding: 0.5rem; */
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.navbar-toggler:hover {
  background-color: rgba(28, 26, 26, 0.429);
}

.navbar-toggler-icon {
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="%23ff6347" viewBox="0 0 30 30"%3E%3Cpath stroke="rgba(0,0,0)" stroke-width="2" d="M4 7h22M4 15h22M4 23h22"/%3E%3C/svg%3E');
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(180deg, rgb(255, 255, 255), rgba(244, 62, 62, 0.9));
    border-radius: 8px;
  }

  .navbar-nav .nav-link {
    width: 100%;
    text-align: left;
    padding: 0.7rem;
  }

  .navbar-brand img {
    width: 130px;
    /* Adjust logo size for mobile screens */
  }
}




/* Make dropdown work on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  position: absolute;
}



.home-main-img {
  width: 100%;
  height: 100vh;
  position: relative;
  background-size: cover;
  background-position: center;
  animation: slide-bg 40s infinite; /* Adjust time as needed */
}



.home-main-img {
  background: url(./photo/slider2.webp) no-repeat center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  position: relative;
}

.content {
  padding: 20px;
  /* backdrop-filter: blur(2px); */
  /* Frosted glass effect */
  background-color: rgba(128, 124, 124, 0.141);
  /* Transparent dark background */
  color:  rgba(0, 0, 0, 0.9);
  font-size: 1.2rem;
  /* Base font size */
  height: 100%;
  /* width: fit-content; */
  /* Fill the available height */
  display: flex;
  /* justify-content: center; */
  align-items: center;
}

.content p{
  color: white;
}


.home_garanm {
  width: 100%;
  display: flex;
  /* align-items: center; */
  flex-direction: column;
  /* Stack content vertically on smaller screens */
  /* text-align: center; */
}

.GarmentMantra {
  width: 100%;
  background-color: rgba(1, 1, 1, 0.744);
  /* Use full width for smaller screens */
  max-width: 600px;
  border-radius: 12px;
  padding: 5px;
  margin-top: 56px;
  /* Limit maximum width for larger screens */
  gap: 10px;
}

.GarmentMantra h1 {
  font-weight: 700;
  font-size: 40px;
  padding: 7px;
  /* font-family: "Bungee Spice", sans-serif; */
  /* Adjust heading size */
  color: rgba(234,28,80,255);
  /* text-shadow: 1px 3px 3px rgb(232, 223, 223); */
  
}


.GarmentMantra p {
  font-size: 19px;
  color: white;
  font-weight: 500;
  /* background-color: rgba(33, 31, 31, 0.375); */
letter-spacing: 0.5px;
padding: 10px;
  /* text-shadow: 1px 1px 1px rgb(51, 48, 48); */
  
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .home_garanm {
    width: 100%;
  }

  .GarmentMantra h1 {
    font-size: 32px;
  }



  .GarmentMantra p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .content {
    font-size: 1rem;
    padding: 15px;
  }

  .GarmentMantra h1 {
    font-size: 28px;
  }


  .GarmentMantra p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .content {
    font-size: 0.9rem;
    padding: 10px;
  }

  .GarmentMantra h1 {
    font-size: 24px;
  }


  .GarmentMantra p {
    font-size: 12px;
  }
}

.main-box2 {
  width: 100%;
  height: fit-content;
  /* background: linear-gradient(90deg, rgba(255, 99, 71, 0.8), rgba(255, 140, 105, 0.8)); */
  background-color: #f3f3f3;
}

.content-box2 {
  width: 100%;
  height: fit-content;
  /* background-color: rgb(164, 181, 164); */
}

.Keyfactors {
  width: 100%;
  height: fit-content;
  /* background-color: #ff6347; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.Keyfactors h1 {
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.Keyfactors p {
  text-align: center;
  font-size: 18px;
}

.Keyfactors_p {
  /* width: 50%; */
  text-align: center;
}

@media screen and (min-width: 0px) and (max-width: 480px) {
  .Keyfactors {
    height: fit-content;
  }

  .Keyfactors_p {
    width: 100%;
    text-align: center;
  }
}




.slider-main {
  width: 100%;
  height: fit-content;
  /* background-color: aquamarine; */
}






.slide {
  width: 100%;
  height: fit-content;
}

.card-image {
  width: 100%;
  height: fit-content;
}

.slick-next:before {
  content: "→";
}

.slick-prev,
.slick-next {
  z-index: 999;
}

.slick-next {
  right: 0 !important;
}

.slick-prev {
  left: 0 !important;
}


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

.text{
  text-align: center;
  padding: 20px;
  font-weight: 500;
  color: rgba(55,56,60,255);
}

.slider {
  width: 90%;
  margin: 0px auto;
}

.slick-slide {
  margin: 10px;
}

.slick-slide img {
  width: 100%;
}

.card-title {
  font-weight: 700;
}

.card {
  position: relative;
  /* border: 2px solid #fff; */
  /* box-shadow: 1px 1px 20px #ccc; */
}

.middle {
  position: absolute;
  visibility: hidden;
  /* top: 24px !important;
  width: 90%;
  height: fit-content;
  left: 26px !important; */

}

.card-body {
  /* background: #fff;  */
  width: 100%;
  /* vertical-align: top; */
}

.card-content {
  text-align: center;
  color: #333;
  padding: 15px;
}

.card-text {
  font-size: 14px;
  font-weight: 300;
}

.car:hover img {
  opacity: 0.1;
}

.card:hover .middle {
  opacity: 3;
}

.car:hover .middle {
  background-color: #f3f3f3;
  color: rgb(21, 17, 17);
  font-size: 16px;
  position: absolute;
  top: 15%;
  right: 1px !important;
  /* padding: 10px 20px; */
  /* left: 35%; */
  visibility: visible;
  width: fit-content !important;
  height: fit-content !important;
}

.slick-prev:before,
.slick-next:before {
  font-family: 'slick';
  font-size: 20px;
  line-height: 1;
  opacity: .75;
  color: #eb194e !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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





.main-box3 {
  width: 100%;
  height: fit-content;
  /* background: linear-gradient(90deg, rgba(255, 99, 71, 0.8), rgba(255, 140, 105, 0.8)); */
}

.Keyfactors_box3 {
  width: 100%;
  height: fit-content;
  /* background-color: #ff6347; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.Keyfactors_p_box3 {
  /* width: 50%; */
  text-align: center;
  font-size: 17px;
}

.Keyfactors_box3 h1 {
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

@media screen and (min-width: 0px) and (max-width: 480px) {
  .Keyfactors_box3 {
    height: fit-content;
  }

  .Keyfactors_p_box3 {
    width: 100%;
    text-align: center;
  }
}





.main-box4 {
  /* padding: 40px 15px; */
  background-color: #ffffff;
  /* Add a background for contrast */
}

.box4_sub1 {
  height: fit-content;
  border-radius: 10px;
  /* background: linear-gradient(90deg, rgba(255, 99, 71, 0.8), rgba(255, 140, 105, 0.8)); */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  /* Add a subtle shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Add hover effects */
}

.box4_sub1:hover {
  transform: translateY(-10px);
  /* Lift effect */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Styling */
@media screen and (max-width: 992px) {
  .box4_sub {
    margin-bottom: 20px;
    /* Add spacing for medium screens */
  }
}

@media screen and (max-width: 576px) {
  .box4_sub1 {
    height: fit-content;
    /* Reduce the height for smaller screens */
  }

  .main-box4 {
    padding: 20px 10px;
  }
}
























.wrapper {
  width: 90%;
  margin: 0 auto;
  max-width: 80rem;
}

.cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 70px;
}

.col {
  width: calc(25% - 2rem);
  margin: 1rem;
  cursor: pointer;
}

.container {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.front,
.back {
  background-size: cover;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  background-position: center;
  -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  text-align: center;
  min-height: 280px;
  height: auto;
  border-radius: 10px;
  color: #fff;
  font-size: 1.5rem;
}

.back {
  background: #cedce7;
  background: -webkit-linear-gradient(45deg, #cedce7 0%, #596a72 100%);
  background: -o-linear-gradient(45deg, #cedce7 0%, #596a72 100%);
  background: linear-gradient(45deg, #cedce7 0%, #596a72 100%);
}

.front:after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  opacity: .6;
  background-color: #000;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 10px;
}

.container:hover .front,
.container:hover .back {
  -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.inner {
  -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
  transform: translateY(-50%) translateZ(60px) scale(0.94);
  top: 50%;
  position: absolute;
  left: 0;
  width: 100%;
  padding: 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: 1px solid transparent;
  -webkit-perspective: inherit;
  perspective: inherit;
  z-index: 2;
}

.container .back {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.container .front {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.container:hover .back {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.container:hover .front {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.front .inner p {
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.front .inner p:after {
  content: '';
  width: 4rem;
  height: 2px;
  position: absolute;
  background: #C6D4DF;
  display: block;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -.75rem;
}

.front .inner span {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Montserrat';
  font-weight: 300;
}
.wrapper-h1{
  text-align: center;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  text-transform: uppercase;
  font-weight: 700;
  
}
@media screen and (max-width: 64rem) {
  .col {
    width: calc(33.333333% - 2rem);
  }
}

@media screen and (max-width: 48rem) {
  .col {
    width: calc(50% - 2rem);
  }
}

@media screen and (max-width: 32rem) {
  .col {
    width: 100%;
    margin: 0 0 2rem 0;
  }
}



































footer a {
  color: #000;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer i {
  font-size: 18px;
  color: #000;
}

footer div {
  margin: 10px;
}


.footer {
  display: flex; 
  justify-content: center;
  align-items: center;
  padding: 10px;
  /* background-color:rgb(210, 63, 63);  */
  color: #777; 
  position: relative; 
}

.footer-left {
  position: absolute;
  left: 10px; /* Align to the left */
  text-align: left;
}

.footer-center {
  text-align: center; /* Center align the text */
}


@media (max-width: 768px) {
  footer div {
    flex: 1 1 100%;
  }
}
.quick_link_li{
  color: rgb(255, 255, 255);
  text-decoration: none !important;
  font-weight: 500;

}
.quick_link_li:hover{
  color: black;
}











#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #eb194e; /* Icon color */
  border: none;
  border-radius: 50%; /* Circular shape */
  width: 25px;
  height: 25px;
  font-size: 13px;
  display: none; /* Initially hidden */
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Shadow for depth */
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  z-index: 1000;
  color: white;
}

/* Hover effect */
#backToTop:hover {
  background-color: #eb194dd2; /* Brighter red */
  transform: scale(1.1); /* Slight enlargement */
}




@media screen and (min-width: 0px) and (max-width: 480px) {
  #backToTop{
    width: 20px;
    height: 20px;
    padding: 18px !important;
    position: fixed;
    right: 15px;
    bottom: 10px;

  }
  .fas{
    height: fit-content;
    width: fit-content;
  }

}





/* Button and Popup Styling */
.button-container {
    position: fixed;
    bottom: 60px;
    right: 9px;
    z-index: 1000;
}



.circle-button {
    width: 50px;
    height: 50px;
    background-color: #eb194e;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    color: white;
    border: none;
    outline: none;
    padding: 0 20px;
    transition: transform 0.3s ease-in-out;
}

.circle-button .circle-button.clicked :hover {
  background-color: #eb194dd2; /* Brighter red */
  transform: scale(2); /* Slight enlargement */
}

/* Rotate icon when clicked */
.circle-button.clicked {
    transform: rotate(360deg);
}

/* Custom Animation for Popup Card */
@keyframes slideInBounce {
    0% {
        transform: translateX(200px);
        opacity: 0;
    }
    60% {
        transform: translateX(-20px);
        opacity: 1;
    }
    100% {
        transform: translateX(0);
    }
}

/* Popup Card Styling */
.popup-card {
    display: none;
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 220px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 10px;
    animation: slideInBounce 1s ease forwards; /* Apply custom animation */
}

.popup-card a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: black;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.popup-card a:hover {
    background-color: #f0f0f0;
}

.popup-card a i {
    font-size: 20px;
    margin-right: 10px;
}

.popup-card a span {
    font-size: 16px;
    font-weight: 500;
}

.popup-card .whatsapp { color: #25D366; }
.popup-card .phone { color: #34B7F1; }
.popup-card .email { color: #FF4500; }



