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

@media screen and (max-width: 375px) and (min-width: 320px) {
  .header h1 {
    font-size: 40px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  }
}


  



  
  
.heading-section-title h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    text-align: center;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;

    font-size: 1.8rem;
}

.heading-section-separator {
    width: 60px;
    height: 2px;
    background-color: red;
    margin: 20px auto;
}

.section-description {
    font-size: 14px;
    color: #555;
    text-align: center;
    margin-top: 20px;
    font-size: 1rem;
}

.profile-card {
  position: relative;
  border-radius: 12px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.profile-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.hover-area {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 30%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 15px;
  text-align: center;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.profile-card:hover .hover-area {
  opacity: 1;
}

.profile-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #ffffffeb;
  margin-top: 15px;
}

.profile-content {
  font-size: 0.95rem;
  margin: 10px 15px;
  color: #ffffffeb;;
  line-height: 1.6;
}

.icon-list-item {
  font-size: 1rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.icon-list-item i {
  color: #eb194e;
}

.fabric_h2 {
  color: #eb194e;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.fas {
  padding: 10px;
}

@media (max-width: 576px) {
  .heading-section-title h2 {
    font-size: 1.8rem;
  }

  .profile-card {
    margin-bottom: 20px;
  }

  .profile-content {
    font-size: 0.9rem;
  }

  .hover-area {
    font-size: 0.85rem;
    padding: 10px;
  }
}






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







/* arrrow.css */
#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-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; 

    font-weight: 500;
}

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



