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



/* About Section */
.section-full {
  padding: 60px 0;
}

.about-progress {
  background-color: #f9f9f9;
}

.content-inner {
  padding: 20px 40px;
  animation: slideInLeft 1s ease-in-out;
}

.section-head .title {
  font-size: 2rem;
  color: #eb194e;
  font-weight: bold;
  margin-bottom: 15px;
}

.section-head p {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: fadeInRight 1s ease-in-out;
  border-radius: 8px;
}

/* Transitions */

.content-inner,
.breadcrumb a {
  transition: all 0.3s ease-in-out;
}

.img-cover:hover {
  transform: scale(1.05);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.breadcrumb a:hover {
  color: red;
  text-decoration: underline;
}


/* Responsive Design */
@media (max-width: 992px) {
  .banner h1 {
    font-size: 2.5rem;
  }

  .breadcrumb-row {
    justify-content: center !important;
  }

  .about-progress {
    padding: 30px 15px;
  }

  .content-inner {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .banner {
    padding: 60px 15px;
  }

  .banner h1 {
    font-size: 2rem;
  }

  .content-inner {
    padding: 15px;
  }
}







/* General Section Styling */

  .h100 {
    display: flex;
    flex: 1;
  }



.values-section h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 1px 1px 1px black;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}



.icon-card {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center content vertically */
  align-items: center; /* Center content horizontally */
  text-align: center;
  background: #fff;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 15px auto;
  width: 100%;
  max-width: 300px;
  min-height: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: slideInLeft 1s ease-in-out;
  gap: 10px; /* Adds spacing between icon, h4, and p */
  
}

.icon-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background-color: rgba(190, 181, 181, 0.296);
  color: red;
}

.icon-card i {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #eb194e;
  display: inline-block;
  transition: all 0.3s ease;
}


.icon-card i:hover {
  transform: scale(1.2);
  color: red;
}

.icon-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #eb194e;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.icon-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}
@media (max-width: 992px) {
  .values-section .row {
    gap: 20px;
  }
  
  .icon-card {
    text-align: center;
    padding: 20px;
  }

  .icon-card i {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .icon-card h4 {
    font-size: 1.5rem;
  }

  .icon-card p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .values-section .row {
    flex-direction: column;
    align-items: center;
  }

  .col-lg-4 {
    width: 100%;
  }

  .icon-card {
    padding: 15px;
  }

  .icon-card i {
    font-size: 1.8rem;
  }

  .icon-card h4 {
    font-size: 1.4rem;
  }

  .icon-card p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .icon-card {
    padding: 10px;
  }

  .icon-card i {
    font-size: 1.5rem;
  }

  .icon-card h4 {
    font-size: 1.2rem;
  }

  .icon-card p {
    font-size: 0.9rem;
  }
}


/* Responsive Design */
@media (min-width: 768px) {
  .icon-card {
    max-width: 300px;
  }
  .icon-card {
    flex-grow: 1 !;
    min-height: 300px; /* Consistent height for all cards on larger screens */
  }
}

/* Animations */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}


/* Icon Animations */
.icon-card i.bi-gear {
  animation: rotate 2s linear infinite;
}

.icon-card i.fa-lightbulb {
  animation: pulse 2s ease-in-out infinite;
}

.icon-card i.bi-person {
  animation: pulse 2s ease-in-out infinite;
}



.values-section .h100 {
  display: flex;
  align-items: stretch; /* Ensure equal height for all cards */
}






/* General Styling */
.our-businesses {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.our-businesses h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;

}

.our-businesses p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.image-wrapper {
  width: 48%;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.image-wrapper:hover img {
  transform: scale(1.05);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.business-details {
  margin-top: 20px;
}

.experience {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.experience h3 {
  font-size: 3rem;
  font-weight: bold;
  color: #eb194e;
  margin-right: 15px;
  animation: number-count 3.5s ease-out forwards;
}

.experience p {
  font-size: 1.5rem;
  font-weight: bold;
  color: #eb194e;
  margin-top: 20px;
}

/* Keyframes for Number Animation */
@keyframes number-count {
  0% {
    content: "0";
  }

  100% {
    content: attr(data-value);
  }
}

/* Animated Counter Number Transition */
.number {
  display: inline-block;
  overflow: hidden;
  position: relative;
}

/* Business Points Styling */
.business-points {
  list-style: none;
  padding: 0;
}

.business-points li {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.business-points li i {
  font-size: 1.2rem;
  color: rgb(244, 173, 21);

  margin-right: 10px;
}

/* Quote Styling */
.blockquote {
  margin-top: 20px;
  font-style: italic;
  font-size: 1.1rem;
  color: #444;
  border-left: 5px solid #eb194e;
  padding-left: 15px;
}

/* Button Styling */

.btn-more {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 20px;
  border: none;
background-color:  #eb194e;
  /* background-color: red; */
  /* background-image: linear-gradient(135deg, rgb(222, 129, 25) 0%, rgb(222, 129, 25) 10%,rgb(201, 113, 31) 10%, rgb(201, 113, 31) 23%,rgb(181, 97, 38) 23%, rgb(181, 97, 38) 26%,rgb(160, 82, 44) 26%, rgb(160, 82, 44) 27%,rgb(139, 66, 50) 27%, rgb(139, 66, 50) 38%,rgb(119, 50, 57) 38%, rgb(119, 50, 57) 54%,rgb(98, 34, 63) 54%, rgb(98, 34, 63) 100%),linear-gradient(45deg, rgb(222, 129, 25) 0%, rgb(222, 129, 25) 10%,rgb(201, 113, 31) 10%, rgb(201, 113, 31) 23%,rgb(181, 97, 38) 23%, rgb(181, 97, 38) 26%,rgb(160, 82, 44) 26%, rgb(160, 82, 44) 27%,rgb(139, 66, 50) 27%, rgb(139, 66, 50) 38%,rgb(119, 50, 57) 38%, rgb(119, 50, 57) 54%,rgb(98, 34, 63) 54%, rgb(98, 34, 63) 100%),linear-gradient(0deg, rgb(222, 129, 25) 0%, rgb(222, 129, 25) 10%,rgb(201, 113, 31) 10%, rgb(201, 113, 31) 23%,rgb(181, 97, 38) 23%, rgb(181, 97, 38) 26%,rgb(160, 82, 44) 26%, rgb(160, 82, 44) 27%,rgb(139, 66, 50) 27%, rgb(139, 66, 50) 38%,rgb(119, 50, 57) 38%, rgb(119, 50, 57) 54%,rgb(98, 34, 63) 54%, rgb(98, 34, 63) 100%),linear-gradient(90deg, rgb(163, 190, 151),rgb(250, 185, 29)); background-blend-mode:overlay,overlay,overlay,normal; */
  color: #fff;
  font-weight: 700;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.btn-more:hover {
  background-color: #eb194dd2 !important;
  transform: translateY(-3px);
  color: #ffffff;
  /* border: 1px solid rgb(0, 0, 0); */
  box-shadow: 1px 3px 7px black !important;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .our-businesses {
    padding: 40px 20px;
  }

  .our-businesses h2 {
    font-size: 2rem;
  }

  .experience h3 {
    font-size: 2.5rem;
  }

  .image-wrapper {
    width: 100%;
    margin-bottom: 15px;
  }

  .business-points li {
    font-size: 0.9rem;
  }
}















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-weight: 500;
}

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



