/* General Styles */
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Hero Section */
.hero {
  background: linear-gradient(45deg, #0D4168, #E81943);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.brand-logo {
  width: 200px;
  margin-bottom: 2rem;
}

h1 {
  color: white;
  font-size: 3rem;
  margin: 0 0 1.5rem 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.whatsapp-cta {
  background: white;
  color: #E81943;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.whatsapp-cta:hover {
  background: #0D4168;
  color: white;
  transform: translateY(-3px);
}

.whatsapp-cta i {
  font-size: 1.5rem;
}

/* Optional: Add blue accent on hover */
.whatsapp-cta:hover i {
  color: #3498db; /* Brand blue */
}
.phone-cta {
  margin-top: 1.5rem;
  animation: pulse 2s infinite;
}

.phone-link {
  color: white;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.8rem 1.5rem;
  background: rgba(255,255,255,0.15);
  border-radius: 30px;
  backdrop-filter: blur(5px);
  border: 2px solid white;
  transition: all 0.3s ease;
}

.phone-link:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.05);
}

.phone-link i {
  color: #E81943;
  font-size: 1.2rem;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .phone-link {
    font-size: 1.1rem;
    padding: 0.6rem 1rem;
  }
}

/* Process Timeline Phone CTA */
.process-phone-cta {
  margin: 3rem auto;
  text-align: center;
}

.process-phone-link {
  background: #0D4168; /* Brand blue */
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 2px solid #0D4168;
  box-shadow: 0 4px 15px rgba(13,65,104,0.3);
}

.process-phone-link:hover {
  background: #E81943; /* Brand red */
  border-color: #E81943;
  transform: translateY(-2px);
}

.process-phone-link i {
  color: #E81943; /* Red icon */
  transition: color 0.3s ease;
}

.process-phone-link:hover i {
  color: white; /* White icon on hover */
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .process-phone-link {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }
}

/* Product Gallery */
.product-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #0D416810 0%, #E8194310 100%);
  position: relative;
  overflow: hidden;
}

/* Diagonal Brand Stripe Decoration */
.product-gallery::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -50%;
  width: 200%;
  height: 120px;
  background: repeating-linear-gradient(
    -45deg,
    #0D4168,
    #0D4168 40px,
    #E81943 40px,
    #E81943 80px
  );
  transform: rotate(-5deg);
  opacity: 0.1;
}

.product-card {
  position: relative;
  width: 320px;
  max-width: 90%;
  margin: 1rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 15px;
  overflow: hidden;
  background: white;
  border: 2px solid #0D4168;
  box-shadow: 0 4px 20px rgba(13,65,104,0.1);
}

.product-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 30px rgba(232,25,67,0.2);
  border-color: #E81943;
}

/* Product Image Container */
.product-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.4s ease;
}

/* Shine Effect on Hover */
.product-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.3) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-25deg);
  transition: left 0.6s ease;
}

.product-card:hover .product-image-wrapper::after {
  left: 150%;
}

/* Product Content Styling */
.product-content {
  padding: 1.5rem;
  position: relative;
  z-index: 2;
  background: white;
}

.product-content h3 {
  color: #0D4168;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

/* Branded Enquire Button */
.enquire-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, #E81943, #0D4168);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.enquire-button:hover {
  background: linear-gradient(45deg, #0D4168, #E81943);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(232,25,67,0.3);
}

.enquire-button i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.enquire-button:hover i {
  transform: rotate(90deg);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .product-gallery {
    padding: 4rem 1rem;
  }
  
  .product-card {
    width: 100%;
    max-width: 400px;
  }
  
  .product-content h3 {
    font-size: 1.3rem;
  }
}

/* Floating Animation */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.product-card:hover {
  animation: float 3s ease-in-out infinite;
}
/* Fabric Qualities Section */
.fabrics-section {
  padding: 4rem 2rem;
  background: #f9f9f9;
  text-align: center;
}
.fabrics-section h2 {
  color: #0D4168;
  font-size: 2rem;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}
.fabrics-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #E81943;
}

.fabrics-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.fabric-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.fabric-card:hover {
  transform: translateY(-10px);
}

.fabric-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 3px solid #e74c3c;
}

.fabric-content {
  padding: 1.5rem;
}

.price {
  font-size: 1.5rem;
  color: #e74c3c;
  margin: 1rem 0;
}

.price span {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5rem;
}

.fabric-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.fabric-features li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}

.fabric-features li:last-child {
  border-bottom: none;
}

.fabric-features i {
  color: #e74c3c;
  margin-right: 0.8rem;
}

.enquire-button {
  display: inline-block;
  background: #333;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.enquire-button:hover {
  background: #e74c3c;
  transform: translateX(5px);
}

/* Previous Works Section */
.previous-works {
  padding: 4rem 0;
  background: white;
  overflow: hidden;
text-align: center;
}

.previous-works h2 {
  color: #0D4168;
  margin-bottom: 3rem;
  font-size: 2rem;
 position: relative;
  display: inline-block;
}
.previous-works h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #E81943;
}

.scroll-container {
  overflow: hidden;
  position: relative;
}

.scroll-track {
  display: flex;
  animation: scroll 40s linear infinite;
  width: max-content;
transition: animation-play-state 0.3s ease;
}

.scroll-track:hover {
  animation-play-state: paused;
}

.scroll-track img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  margin: 0 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.scroll-track img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .scroll-track img {
    width: 250px;
    height: 250px;
  }
}
/* Process Timeline Styles */
.process-section {
  padding: 4rem 2rem;
  background: #f9f9f9;
  text-align: center;
}

.process-section h2 {
  color: #0D4168;
  font-size: 2rem;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

/* Added Branded Underline */
.process-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #E81943;
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* Rest of the CSS remains the same */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 4px;
  background: #0D4168;
  z-index: 0;
}

.process-step {
  position: relative;
  width: 20%;
  padding: 1rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
  z-index: 1;
}

.process-step.active {
  opacity: 1;
  transform: translateY(0);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: #E81943;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  position: relative;
  transition: transform 0.3s ease;
}

.step-icon:hover {
  transform: scale(1.1) rotate(15deg);
}

.process-step h3 {
  color: #0D4168;
  margin: 1rem 0;
  font-size: 1.2rem;
}

.process-step p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}

.step-progress {
  position: absolute;
  top: 40px;
  right: -20%;
  width: 20%;
  height: 4px;
  background: #E81943;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s ease 0.3s;
}

.process-step.active .step-progress {
  transform: scaleX(1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .process-timeline {
    flex-direction: column;
    align-items: center;
  }

  .process-timeline::before {
    display: none;
  }

  .process-step {
    width: 100%;
    max-width: 300px;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateX(-30px);
  }

  .process-step.active {
    transform: translateX(0);
  }

  .step-progress {
    display: none;
  }
}

/* Font Awesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');


/* Footer */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 2rem;
}

.social-icons {
  margin-bottom: 1rem;
}

.social-icons img {
  width: 30px;
  margin: 0 1rem;
  transition: transform 0.3s;
}

.social-icons img:hover {
  transform: scale(1.2);
}


footer p {
  margin: 0;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  .brand-logo {
    width: 150px;
  }
}
  .hero-content h1 {
    font-size: 2.5rem; /* Smaller headline for mobile */
  }

  .hero-content p {
    font-size: 1.2rem; /* Smaller subheadline for mobile */
  }
}
@media (max-width: 768px) {

.visit-factory {
  text-align: center;
  margin: 2rem 0;
  padding: 0 2rem;
}

.factory-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0D4168;
  color: white;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #E81943;
  box-shadow: 0 4px 15px rgba(13,65,104,0.3);
}

.factory-button:hover {
  background: #E81943;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,25,67,0.4);
}

.factory-button i {
  font-size: 1.2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .factory-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}
