/* 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;
}








/* Header Section */
.header {
  background: url(./photo/garmenting.jpg) no-repeat center;
color: rgb(17, 15, 15);
text-align: center;
padding: 130px 20px;
height: fit-content;
background-size: cover;
opacity: 1px;

}

.header-content {
  max-width: 800px;
  margin: 0 auto;
  backdrop-filter: blur(0.1px);
  background-color: rgba(26, 24, 24, 0.755);
  color: rgb(255, 255, 255);
  height: fit-content;
  padding: 10px;
  border-radius: 12px;
}

.header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.header p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-block;
  padding: 10px 20px;
 background-color:  #eb194e;
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn-primary:hover {
 background-color:#eb194dd6;
  /* box-shadow: 1px 2px 15px white; */
}


@media screen and (min-width:0px) and (max-width:480px) {
.header h1 {
  font-size: 2.5rem;
}  
}




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;
}


























.cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 4 cards per row */
  gap: 20px;
  justify-items: center ;
  padding: 20px;
}

.card {
  position: relative;
  width: 300px;
  height: 400px;
  border-radius: 14px;
  /* z-index: 1111; */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
}

.bg {
  position: absolute;
  /* top: 5px;
    left: 5px; */
  width: 280px;
  height: 370px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  border-radius: 10px;
  overflow: hidden;
  outline: 1px solid white;
}

.bg img {
  width: 100%;
  height: 90%;
  object-fit: cover;
  border-radius: 10px;
  /* Matches the .bg border-radius */
}
.bg_name{
  text-align: center;
   font-weight: 700;
  letter-spacing: 1px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  padding: 10px;
  font-size: 20px;

}

.blob {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #eb194e;
  opacity: 1;
  filter: blur(12px);
  animation: blob-bounce 5s infinite ease;
}

.sportswear-head {
  height: 215px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


  /* font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; */
  .sportswear-head h1 {
    /* font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; */
    font-weight: 500;
    /* color: red; */
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  color: #eb194e;
    /* filter: drop-shadow(1px 2px 2px black); */
    font-size: 4.5rem;
    /* text-shadow: 2px 2px 2px white; */
    letter-spacing: 1px;
  }



/* .bungee-spice-regular {
  font-family: "Bungee Spice", sans-serif;
  font-weight: 400;
  font-style: normal;
} */


@keyframes blob-bounce {
  0% {
    transform: translate(-100%, -100%) translate3d(0, 0, 0);
  }

  25% {
    transform: translate(-100%, -100%) translate3d(100%, 0, 0);
  }

  50% {
    transform: translate(-100%, -100%) translate3d(100%, 100%, 0);
  }

  75% {
    transform: translate(-100%, -100%) translate3d(0, 100%, 0);
  }

  100% {
    transform: translate(-100%, -100%) translate3d(0, 0, 0);
  }
}


/* Media query for responsiveness */
@media (max-width: 1024px) {
  .cards-container {
    grid-template-columns: repeat(1, 1fr) !important;
    /* 2 cards per row */
  }
}

@media (max-width: 768px) {
  .cards-container {
    grid-template-columns: repeat(3, 1fr) !important;
    /* 2 cards per row */
  }

  .card {
    width: 190px;
    height: 370px;
  }

  .bg {
    width: 180px;
    height: 370px;
  }
}

@media (max-width: 480px) {
  .card {
    width: 210px;
    height: 280px;
  }
  .cards-container {
    grid-template-columns: repeat(1, 1fr) !important;
    /* 2 cards per row */
  }

  .bg {
    width: 200px;
    height: 270px;
  }

  .sportswear-head h1 {
    font-weight: 700;
    color: #eb194e;
    filter: drop-shadow(1px 2px 2px black);
    font-size: 2.5rem;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;

  }

  .sportswear-head p {
    text-align: center;

  }
  .sportswear-head {
    height: fit-content;
  }
  .bg_name{
    text-align: center;
     font-weight: 700;
    letter-spacing: 1px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    padding: 1px;
    font-size: 15px;
  
  }
}

















.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1112;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-in-out;
}

#popup-logo {
  position: absolute;
  top: 30px;
  left: 10px;
  margin-left: 20px;
  width: 30%; /* Adjust as needed */
  height: auto; /* Maintain aspect ratio */
}

#popup-image {
  margin-top: 20px; /* Push down to make room for the logo */
  width: 100%;
  height: auto;
}

.popup-content {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  max-width: 1200px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  animation: slideIn 0.4s ease-in-out;
}

.popup-left,
.popup-right {
  flex: 1;
  padding: 20px;
}

.popup-left {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  position: relative;
  text-align: center;
}

.popup-left img {
  max-width: 100%;
  width: 90%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.popup-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popup-right h3 {
  font-size: 24px;
  color: #eb194e;
  margin-bottom: 10px;
  font-weight: 700;
  /* filter: drop-shadow(1px 2px 1px black); */
  /* text-shadow: 1px 2px 2px black; */
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.popup-right p {
  font-size: 16px;
  color: #555;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

label {
  font-weight: bold;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
}

#popup-form button {
  color: white;
  background-color: #eb194e;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  font-weight: 700;
}

.close {
  position: absolute;
  /* top: 25px; */
  right: 180px;
  font-size: 34px;
  color: #eb194e;
  cursor: pointer;
  font-weight: 700 !important;
}

@media (max-width: 768px) {
  .popup-content {
    flex-direction: column;
    height: auto;
  }

  .popup-left,
  .popup-right {
    flex: none;
    width: 100%;
  }
}




/* Media query for mobile view */
@media screen and (max-width: 768px) {
  #product-popup {
    padding: 10px;
    overflow: auto;
  }

  .popup-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: auto;
  }

  .popup-left,
  .popup-right {
    width: 100%;
    text-align: center;
  }

  .popup-left img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
  }

  .popup-right {
    padding: 10px;
  }

  #popup-form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #popup-form label {
    margin-top: 10px;
    margin-bottom: 5px;
  }

  #popup-form input,
  #popup-form textarea {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    margin-bottom: 10px;
  }

  #popup-form button {
    width: 100%;
    padding: 10px;
    background-color: #eb194e;
        color: white;
    border: none;
    cursor: pointer;
    font-weight: 700;
  }


  .close {
    position: absolute;
    top: 7px;
    /* bottom: 347px; */
    right: 45px;
    font-size: 30px;
    cursor: pointer;
    color: #eb194e;
    /* background-color: red; */
    z-index: 2000;
  }
  
  #popup-logo {
    top: 10px;
    margin-left: 10px;
    width: 30%; /* Adjust logo size for smaller screens */
  }

  #popup-image {
    margin-top: 30px; /* Adjust spacing for smaller screens */
  }
}














