/* General Reset */
html{
  scroll-behavior:smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Container to align image and text side-by-side */
.logo {
  display: flex;
  align-items: center; /* Vertically centers the image with the text block */
  gap: 12px;           /* Space between the icon and the text */
}

/* Adjust the logo image size */
.logo-icon {
  height: 50px;        /* Adjust this height to match your two lines of text */
  width: auto;         /* Maintains aspect ratio */
  object-fit: contain;
}

/* Stacked text styling */
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;    /* Keeps the two lines tight together */
}

.brand-name {
  font-size: 1.6rem;
  font-weight: bold;
  color: #630e08;      /* Maroon color from logo */
  margin: 0;
}

.brand-sub {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  color: #630e08;
  text-transform: uppercase;
  margin: 0;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10%;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 1.2rem;
  font-weight: bold;
  color: #722f37;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #722f37;
}

/* ===== Navbar Responsive ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  gap: 5px;
}

.menu-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: #722f37;
  border-radius: 3px;
  transition: 0.3s;
}

/* Toggle animation */
.menu-toggle.open .bar:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.menu-toggle.open .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open .bar:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* Mobile nav hidden by default */
#nav-menu {
  transition: 0.3s ease;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .navbar ul {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
    border-top: 1px solid #eee;
  }

  #nav-menu.active ul {
    display: flex;
  }

  .navbar a {
    font-size: 1rem;
    color: #722f37;
  }
}

/* home Section */
.home {
  position: relative; 
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 80px 10%;
  /* Changed from 80vh to 95vh for a "Hero" look */
  min-height: 50vh; 
  overflow: hidden;
  color: #fff;
}

/* Slideshow Container */
.slideshow-container {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Darker at the top/center, fading to match your next section background */
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 2; /* Behind content */
}

/* Individual Slides */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* This ensures the HD image fills the space without stretching */
  object-fit: cover; 
  /* Focuses on the center of the technology/printing gear */
  object-position: center; 
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active {
  opacity: 1;
  animation: subtleZoom 10s infinite alternate;
}

/* Dark Overlay to make text readable */
.slideshow-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Adjust 0.5 for more/less darkness */
  z-index: 2;
}

/* Add this specific rule to create the space you want */
.home-content p {
  margin-bottom: 35px; /* Adjust this value (e.g., 40px or 50px) to increase the gap */
  font-size: 1.2rem;    /* Optional: making it slightly larger for better readability */
  line-height: 1.6;
}

.home-content {
  position: relative;
  z-index: 3; 
  max-width: 600px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.cta-buttons .btn,
.cta-buttons .btn-outline {
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-right: 10px;
}

.btn {
  background-color: #722f37;
  color: #fff;
}

.btn:hover {
  background-color: #722f37;
}

.btn-outline {
  background: transparent;
  color: #722f37;
  border: 2px solid #722f37;
}

.btn-outline:hover {
  background: #722f37;
  color: #fff;
}

.home-image img {
  max-width: 400px;
  width: 100%;
}

/* Team Section */
.team {
  padding: 80px 10%;
  background-color: #f9f9f9;
  text-align: center;
}

.team h2 {
  font-size: 2.5rem;
  color: #722f37;
  margin-bottom: 20px;
}

.team-intro {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #555;
  line-height: 1.6;
}

.team-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.team-member {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.team-member img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

.team-member h3 {
  color: #722f37;
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.team-member h4 {
  color: #777;
  font-weight: 500;
  margin-bottom: 15px;
}

.team-member p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* ===== Services Section ===== */
.services {padding:60px 20px;
  max-width:1100px;
  margin:auto;
  position:relative;
  
  background: #ffffff;
  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  color: #722f37;
  margin-bottom: 15px;
}

.services-intro {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #555;
  line-height: 1.6;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 100px;
  height: 180px;
  margin-bottom: 20px;
  object-fit: contain;
}

.service-card h3 {
  font-size: 1.3rem;
  color: #722f37;
  margin-bottom: 10px;
}

.service-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.gallery {padding:60px 20px;
  max-width:1100px;
  margin:auto;
  position:relative;
  
  background: #ffffff;
  text-align: center;
}
.gallery h2 {
  font-size: 2.5rem;
  color: #722f37;
  margin-bottom: 15px;
}

/* ===== Contact Section ===== */
.contact {
  padding: 80px 10%;
  background: #f0f6ff;
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  color: #722f37;
  margin-bottom: 10px;
}

.contact-intro {
  color: #555;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-top: 20px;
}

.contact-form {
  flex: 1 1 45%;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #722f37;
}

.contact-form .btn {
  display: inline-block;
  background: #722f37;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form .btn:hover {
  background: #722f37;
}

.contact-info {
  flex: 1 1 45%;
  text-align: left;
  padding: 20px;
}

.contact-info h3 {
  color: #722f37;
  margin-bottom: 15px;
}

.contact-info p {
  margin-bottom: 10px;
  color: #444;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a img {
  width: 30px;
  margin-right: 15px;
  transition: transform 0.3s ease;
}

.social-icons a img:hover {
  transform: scale(1.2);
}

/* ===== About Section ===== */
.about {
  padding:60px 20px;
  max-width:1100px;
  margin:auto;
  position:relative;
  background: #ffffff;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.about-image {
  flex: 1 1 45%;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
}

.about-content {
  flex: 1 1 45%;
}

.about-content h2 {
  font-size: 2.5rem;
  color: #722f37;
  margin-bottom: 20px;
}

.about-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-highlights {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.highlight-box {
  background: #f0f6ff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.highlight-box h3 {
  color: #722f37;
  margin-bottom: 8px;
}

.highlight-box p {
  color: #555;
  font-size: 0.95rem;
}

/* ===== Footer ===== */
.footer {
  background: #722f37; /* darker wine */
  color: #fff;
  text-align: center;
  padding: 10px 10% 10px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 50px;
  margin-bottom: 10px;
}

.footer-logo p {
  font-size: 0.95rem;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.6;
}

.footer-socials {
  margin: 10px 0;
}

.footer-socials a img {
  width: 30px;
  margin: 0 10px;
  transition: transform 0.3s ease;
  filter: brightness(0) invert(1);
}

.footer-socials a img:hover {
  transform: scale(1.2);
}

.footer-text {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-top: 5px;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  section {
    padding: 70px 7%;
  }
  .about-container,
  .contact-container {
    flex-direction: column;
    text-align: center;
  }
  .about-image,
  .about-content,
  .contact-form,
  .contact-info {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .home {
    flex-direction: column-reverse;
    text-align: center;
    padding: 60px 8%;
  }

  .home-content {
    max-width: 100%;
  }

  .home h1 {
    font-size: 2rem;
  }

  .home p {
    font-size: 1rem;
  }

  .home-image img {
    max-width: 300px;
  }

  .services-container,
  .about-highlights {
    grid-template-columns: 1fr;
  }

  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-form,
  .contact-info {
    width: 100%;
  }

  .team-container {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 40px 7%;
  }
}

@media (max-width: 480px) {
  .home {
    padding: 60px 5%;
  }
  .home h1 {
    font-size: 1.8rem;
  }
  .services h2,
  .about h2,
  .gallery h2,
  .contact h2 {
    font-size: 1.8rem;
  }
  .footer {
    padding: 40px 5%;
  }
}

/* ===== Scroll Animation Styles ===== */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1.2s ease forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*Gallery */
section{padding:60px 20px;max-width:1100px;margin:auto;position:relative;}
.section-divider{height:4px;background:linear-gradient(to right,#ff4d4d,#000);margin:40px 0;border-radius:2px;}
.about h3,.services h3,.gallery h3,.clients h3{font-size:2rem;margin-bottom:20px;color:#1c1c1c;}
.about p{font-size:1rem;line-height:1.8;margin-bottom:15px;color:#444;}
.services ul{list-style:square;padding-left:20px;}
.services li{margin-bottom:10px;font-weight:500;}
.gallery-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:20px;}
.gallery-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(195px,1fr));gap:10px;}
.gallery-grid img{width:200px; height:180px; border-radius:8px;}
#product-details{display:none;opacity:0;transform:translateY(50px);transition:opacity 0.5s, transform 0.5s;margin-top:30px;background:#fff;padding:20px;border-radius:10px;box-shadow:0 0 15px rgba(0,0,0,0.2);}
#product-details.show{display:block;opacity:1;transform:translateY(0);}
#product-details img{width:100%;max-height:300px;object-fit:cover;border-radius:10px;margin:10px 0;}
#product-details ul{padding-left:20px;margin-top:10px;}
#product-details li{margin-bottom:8px;}
button{padding:10px 20px;border-radius:5px;border:none;background:#ff4d4d;color:white;cursor:pointer;transition:all 0.3s;font-family:'Roboto',sans-serif;font-weight:500;}
button:hover{background:#1c1c1c;transform:scale(1.05);box-shadow:0 0 12px rgba(255,77,77,0.7);};
/* Better spacing for CTA buttons on mobile */
@media (max-width: 480px) {
  .cta-buttons {
    display: flex;
    flex-direction: column; /* Stacks buttons vertically */
    gap: 15px; /* Adds space between the stacked buttons */
    align-items: center;
  }

  .cta-buttons .btn,
  .cta-buttons .btn-outline {
    margin-right: 0; /* Removes the side margin from desktop view */
    width: 100%;    /* Makes buttons full-width for easier tapping */
    max-width: 250px;
    text-align: center;
  }
}
.details-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.btn-whatsapp {
  background-color: #25D366 !important; /* WhatsApp Green */
  color: white;
  border: none;
  padding: 12px 20px;
  font-weight: bold;
}

.btn-whatsapp:hover {
  background-color: #128C7E !important;
  transform: scale(1.05);
}

.btn-close {
  background-color: #722f37 !important;
  color: white;
}

@keyframes subtleZoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

/* Add this to your styles.css */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}