/* 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/garments_6.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:#eb194dd2;
  /* box-shadow: 1px 2px 15px white; */
}



/* Introduction Section */
.introduction {
  background: #f0f4f8;
  text-align: center;
  padding: 40px 20px;
}

.introduction h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  /* text-shadow: 1px 1px 3px rgb(0, 0, 0); */
}

.introduction p {
  font-size: 1rem;
  color: #555;
}

/* Product Menu */
.product-menu {
  padding: 40px 20px;
  background: #fff;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 700;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;

}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.product-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

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

.product-info {
  padding: 20px;
  text-align: center;
}

.product-info h3 {
  font-size: 1.5rem;
  color: #eb194e;
  margin-bottom: 10px;
  font-weight: 700;
}

.product-info p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #555;
}
.View{
  text-decoration: none;
  color: white;
} 
.View:hover{
  color: #ffffff;
}
.product-info button {
  padding: 10px 20px;
  border: none;
  background-color: #eb194e;  color: white;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
  border: none;
}

.product-info button:hover {
  background: #eb194dd2;
  color: rgb(69, 57, 57) !important;
  font-weight: 700;
}







  .ouick_ser{
    display: flex;
    align-items: center !important;
    text-align: start;
  }
  
  @media screen and (min-width: 0px) and (max-width: 480px) {
    .ouick_ser{
      display: flex !important;
      align-items: start !important;
      text-align: start !important;
    }
  }
  



























  /* General Section Styling */
.testimonials-section {
    background: url('photo/h11.jpg') no-repeat center center/cover;
 
    padding: 50px 20px;
    color: #000000a5;
  }
  
  .testimonials-header .subtitle {
    font-size: 2.1rem;
    color: #282525;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 10px;
    font-weight: 700;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    /* text-shadow: 1px 2px 15px rgba(216, 38, 38, 0.482); */
  }
  
  .testimonials-header .title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-top: 10px;
    text-align: center;
  }
  
  /* Testimonial Card Styling */
  .testimonial-card {
    background: #fefaf6;
    color: #444;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .testimonial-card .testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .client-info {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .client-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .client-name {
    margin: 0;
    font-size: 1rem;
    font-weight: bold;
  }
  
  .client-role {
    margin: 0;
    font-size: 0.85rem;
    color: #8e8e8e;
  }
  
  .quote-icon {
    font-size: 2rem;
    color: #b3b3b3;
    position: absolute;
    bottom: 10px;
    right: 15px;
  }
  
  /* Responsive Layout */
  @media (max-width: 768px) {
    .testimonial-card {
      text-align: center;
    }
  
    .client-info {
      justify-content: center;
    }
  
    .quote-icon {
      position: static;
      margin-top: 15px;
    }
  }
  @media screen and (min-width:0px) and (max-width:480px) {
   

    .testimonials-header .subtitle {
      font-size: 1.8rem;
      color: #282525;
      display: flex;
      align-items: center;
      /* justify-content: center; */
      /* gap: 10px; */
      font-weight: 700;
      font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
      /* text-shadow: 1px 2px 15px rgba(216, 38, 38, 0.482); */
    }
  }


























  







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




  .popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    justify-content: center;
    align-items: center;
  }
  
  .popup-content {
    display: flex;
    width: 80%;
    max-width: 1000px;
    height: 500px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
  }
  
  .popup-left {
    flex: 1;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .popup-left img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
  }
  
  .popup-right {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .popup-right h3{
    color: red;
    /* filter: drop-shadow(1px 1px 1px  black); */
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  }
  
  .close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
  }
  
  @media (max-width: 768px) {
    .popup-content {
      flex-direction: column;
      height: auto;
    }
  
    .popup-left, .popup-right {
      flex: none;
      width: 100%;
    }
  }






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

label {
  font-weight: bold;
  margin-bottom: 5px;
}

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

textarea {
  resize: none;
  height: 100px;
}

button {
  background-color: red;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color: rgb(240, 71, 71);
}

input:focus, textarea:focus {
  border-color: red;
  box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}

@media (max-width: 768px) {
  form {
    gap: 10px;
  }

  button {
    padding: 10px;
    font-size: 14px;
  }
}



















/* 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: #007bff;
    color: white;
    border: none;
    cursor: pointer;
  }

  .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
  }
}






















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



