/* Import Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* ========== GLOBAL STYLES ========== */
* {
  box-sizing: border-box;
 /* margin: 0;*/
  padding: 0;
}
.Gallerytitle
{
  font-size: 30px !important;
}
html {
  scroll-behavior: smooth;
}
.col.container-live-chat {
flex:-2 !important
}


body {
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  color: #2c3e50;

  /* Remove the white background */
  /* background: #ffffff; */

  /* Add background image */
  /*background-image: url('media/background2.jpg');*/
  background-size: cover;          /* Make sure the image covers the entire background */
  background-position: center;     /* Center the image */
  background-repeat: no-repeat;    /* Prevent repeating the image */

  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Poppins font for RIGHT side box only */
.product-title {
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.6rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  overflow-y: auto;
  font-family: 'Poppins', sans-serif !important;
}

.product-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.875rem;
  color: #555;
  font-weight: 500;
  opacity: 0;
  transform: translateX(40px);
  line-height: 1.4;
  font-family: 'Poppins', sans-serif !important;
}


.container {
 /* max-width: 1200px;*/
  margin: 0 auto;
  /*padding: 0 1.5rem;*/
}
.container-fluid {
  background: linear-gradient(135deg, #dd216d 0%, #0047cc 100%) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(11, 92, 255, 0.15) !important;
}
.offcanvas-header{
   background: linear-gradient(135deg, #dd216d 0%, #0047cc 100%) !important;

}
.offcanvas-title{
  color: #fff;
  font-weight: bold !important;
}
.navbar-toggler{
  color: #fff !important;
}


/* ========== HEADER & NAVIGATION ========== */
.site-header {
  background: linear-gradient(135deg, #dd216d 0%, #0047cc 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(11, 92, 255, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: stretch;
  padding-top: 0.5rem;
  /*padding-bottom: 0.5rem;*/
  min-height: 60px; /* or adjust as needed */
  height: auto;
}

.logo-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  min-width: 80px;
  background: rgba(0, 0, 0, 0.1);
  border-right: 2px solid rgba(255, 255, 255, 0.2);
}

.header-content {
  flex: auto;
  width: 200px !important;
 /* padding-left: 3px !important;*/
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  gap: 1rem;
}

.site-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  transition: transform 0.2s ease;
  white-space: nowrap;
}

.site-title:hover {
  transform: scale(1.05);
}

.site-nav {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  width: auto !important;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.site-nav a.active {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* ========== LOGO ========== */
.logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo:hover {
  transform: scale(1.1) rotate(5deg);
}

/* ========== MAIN CONTENT ========== */
.site-main {
  flex: 1 !important;
  padding: 3rem 0;
  padding-top: 1rem;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 3rem 1.5rem;
  margin-bottom: 2rem;
}

.hero h2 {
  font-size: 2.5rem;
  font-weight: 800;
  /*background: linear-gradient(135deg, #dd216d, #0047cc);*/
  background: linear-gradient(135deg, #f5f5f5, #f5f5f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  letter-spacing: -1px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* CTA Buttons */
/* FIXED: PERFECTLY CENTERED BUTTON UNDER CAROUSEL */
.cta {
  position: relative !important;  /* Remove absolute positioning */
  display: inline-block !important;
  background: linear-gradient(135deg, #dd216d, #b01557) !important;
  color: #fff !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  box-shadow: 0 4px 15px rgba(221,33,109,0.3) !important;
  margin: 1.5rem auto 0 !important;  /* Center with auto margins */
  transition: all 0.3s ease !important;
}

.cta:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(221,33,109,0.4) !important;
}

/* Ensure text-center parent works properly */
.hero .text-center {
  text-align: center !important;
  position: relative;
  width: 100%;
}


.cta:active {
  transform: translateY(-1px);
}

/* Features Grid */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.features article {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid #dd216d;
  position: relative;
  overflow: hidden;
}

.features article::before {
  content: "";
  position: absolute;
  top: -100%;
  right: -100%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(11, 92, 255, 0.1), transparent);
  transition: all 0.4s ease;
  border-radius: 50%;
}

.features article:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.features article:hover::before {
  top: -50%;
  right: -50%;
}

.features h3 {
  font-size: 1.25rem;
  color: #dd216d;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.features p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA Section */
.site-main > .container > section:last-of-type {
 /* background: linear-gradient(135deg, #dd216d 0%, #0047cc 100%);*/
 background: linear-gradient(135deg, #fff 0%, #fff 100%);
  color: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(11, 92, 255, 0.25);
  margin-top: 2rem;
}

.site-main > .container > section:last-of-type h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.site-main > .container > section:last-of-type p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.site-main > .container > section:last-of-type a {
  background: #fff !important;
  color: #fff !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 8px;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.site-main > .container > section:last-of-type a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ========== FOOTER ========== */
.site-footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #bbb;
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

/* ========== CONTACT FORM ========== */
.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  max-width: 500px;
  margin: 2rem auto;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #2c3e50;
  font-size: 0.95rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 1.25rem;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: #f9f9f9;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #dd216d;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(11, 92, 255, 0.1);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
  background: linear-gradient(135deg, #dd216d, #0047cc);
  color: #fff;
  border: none;
  padding: 0.9rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(11, 92, 255, 0.3);
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 92, 255, 0.4);
}

.contact-form button:active {
  transform: translateY(0);
}
#whatsapp-box {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  cursor: grab;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 9999;
}

#whatsapp-box img {
  width: 35px;
}
.headerContainer {
  display: flex;
  gap: 20px;
}

/* Box styling 
.box {
  flex: 1;
  background: #f2f2f2;
  text-align: center;
  font-size: 18px;
  border-radius: 8px;
}*/

/* MOBILE VIEW */
@media (max-width: 768px) {
  .headerContainer {
    flex-direction: column;
    gap: 0px !important;
  }
}

/* ========== RESPONSIVE DESIGN Mobile========== */
@media (max-width: 768px) {

  .hero h2 {
    font-size: 1.75rem;
  }  
  .hero p {
    font-size: 1rem;
  }

  .header-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1rem;
    padding: 0px 0px 0px 0px !important;
  }

  .site-title {
    font-size: 1.2rem;
  }

  .site-nav a {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .site-main > .container > section:last-of-type {
    padding: 1.5rem;
  }

  .site-header {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    min-height: 40px;
  }
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: 1.4rem;
  }
  
  .container {
    padding: 0 1rem;
  }

  .site-header {
    flex-direction: column;
  }

  .logo-banner {
    width: 100%;
    border-right: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  }

  .header-content {
    padding: 0.75rem 1rem;
  }

  .site-title {
    font-size: 1.1rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}


/* ========== FOOTER SOCIAL LINKS ========== */
.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-section p {
  margin: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: #dd216d;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(221, 33, 109, 0.3);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-section {
    flex-direction: column;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}


/* ========== FOOTER SOCIAL LINKS ========== */
.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-section p {
  margin: 0;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #bbb;
  text-decoration: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.social-links svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 640px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-section {
    width: 100%;
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }
}

/* ========== CONTACT GRID (form + details) ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
  margin-top: 1.25rem;
}

.contact-right.contact-details {
  background: #fff;
  padding: 1.25rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  font-size: 0.95rem;
  color: #333;
}

.contact-right.contact-details h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: #dd216d;
}

@media (max-width: 880px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}



  /* Center everything */
    .hero {
      text-align: center;
      padding-top: 0.5rem;
      margin-top: 0;
    }
    
    /* Hero title centered above */
    .hero-text {
      width: 100%;
      margin-bottom: 2rem;
      font-size: 1.6rem;
    }
    
    /* 3-Box Centered Layout */
    .hero-content {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 1.5rem;
      flex-wrap: wrap;
      margin-bottom: 1rem;
      position: relative;
    }

    .ribbon-close {
      position: absolute;
      top: 50%;
      right: 16px;
      transform: translateY(-50%);
      background: transparent;
      border: none;
      color: #fff;
      font-size: 24px;
      font-weight: bold;
      cursor: pointer;
      line-height: 1;
      padding: 0;
      z-index: 20;
    }
    
.black-ribbon {
  position: relative; /* needed to position close button inside */
  background-color: #fff;
  color: #000;
  height: auto;
  min-height: 70px;
  width: 100%;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 3rem;
  font-size: 0.95rem;
}


  .ribbon-text {
    margin: 0;
    text-align: center;
    font-weight: 500;
  }

  .ribbon-code {
    font-weight: 700;
  }
  
  /* Remove special styling from last section so categories stay white */
  .site-main > .container > section:last-of-type {
    background: transparent;
    color: inherit;
    padding: 0;
    box-shadow: none;
    margin-top: 2rem; /* keep spacing if you like */
  }

    /* Left & Right Boxes - Identical styling */
    .info-box {
      flex: 0 0 340px;
      width: 340px;
      height: 340px;
      background: #fff;
      border-radius: 16px;
      padding: 1.75rem;
      box-shadow: 0 12px 40px rgba(0,0,0,0.12);
      border: 1px solid rgba(255,255,255,0.3);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      box-sizing: border-box;
    }
    
    /* Perfect Square Carousel - Center */
    .square-carousel {
      flex: 0 0 340px;
      width: 340px;
      height: 340px;
      margin: 0;
    }
    
    .square-carousel .carousel-inner,
    .square-carousel .carousel-item {
      width: 100%;
      height: 340px;
      border-radius: 16px;
    }
    
    .square-carousel .carousel-item img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      background-color: #f8f9fa;
      border-radius: 16px;
    }

  /* Glow effect for hero info boxes on hover - Backlit torch effect */
.info-box {
  flex: 0 0 340px;
  width: 340px;
  height: 340px;
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-sizing: border-box;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smooth elastic transition */
  position: relative;
}

.info-box::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    rgba(221, 33, 109, 0.15), 
    rgba(221, 33, 109, 0.08),
    rgba(221, 33, 109, 0.15)
  );
  border-radius: 18px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.info-box:hover {
  box-shadow: 
    0 25px 60px rgba(0,0,0,0.18),        /* Deeper base shadow */
    0 20px 40px rgba(221, 33, 109, 0.12), /* Warm pink light spill */
    0 0 40px rgba(221, 33, 109, 0.08);    /* Soft edge glow */
  transform: translateY(-6px);
  border-color: rgba(221, 33, 109, 0.25);
}

.info-box:hover::before {
  opacity: 1; /* Activate backlit glow ring */
}

    /* Left Box Content */
    /* Logo Overlay Effect */
    .left-box-overlay {
      position: relative;
      overflow: hidden;
    }

    .logo-overlay {
      position: absolute;
      inset: 0;
      /* background-image: url('media/logo.jpg'); */
      background-size: cover;
      background-position: center;
      opacity: 0.1;
      z-index: 1;
      border-radius: 16px;
    }

    .left-box-title,
    .left-box-text {
      position: relative;
      z-index: 2;
      color: #555;
    }

    .left-box-titel {
      font-size: 1.6rem;
      font-weight: 700;
      color: #2c3e50;
      margin-bottom: 1rem;
      line-height: 1.3;
      text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    }

    .left-box-text {
      font-weight: 500;
      line-height: 1.5;
      flex: 1;
      overflow-y: auto;
      font-size: 0.95rem;
      text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    }

    /* Right Box (Features) */
    .product-title {
      font-size: 1.6rem;
      font-weight: 700;
      color: #2c3e50;
      margin-bottom: 1rem;
      line-height: 1.3;
    }
    
    .product-features {
      list-style: none;
      padding: 0;
      margin: 0;
      flex: 1;
      overflow-y: auto;
    }
    
    .product-features li {
      display: flex;
      align-items: flex-start;
      margin-bottom: 0.875rem;
      color: #555;
      font-weight: 500;
      opacity: 0;
      transform: translateX(40px);
      line-height: 1.4;
    }
    
    .product-features li::before {
      content: "•";
      margin-right: 0.75rem;
      font-size: 1.3rem;
      color: #dd216d;
      font-weight: bold;
      flex-shrink: 0;
      line-height: 1;
      margin-top: 0.2rem;
    }
    
    /* PERFECTLY CENTERED BUTTON UNDER CAROUSEL */
    .hero .text-center {
      position: relative;
    }
    
    /* Key Animation */
    @keyframes slideInRight {
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* Explore all categories style (Capture / Organize / Share) */

    .categories-section {
      margin-top: 2.5rem;
      /*margin-bottom: 2.5rem;*/
    }

    .categories-heading {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      text-align: center;
      color: #111;
    }

    .categories-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.25rem;
    }

    .categories-arrow {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: none;
      background: #fff;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      cursor: pointer;
      line-height: 1;
      transition: all 0.3s ease;
      flex-shrink: 0;
    }

    .categories-arrow:hover {
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);
      transform: scale(1.05);
    }

    .categories-arrow:focus {
      outline: 2px solid #dd216d;
    }

    .categories-items {
      display: flex;               /* Use flexbox instead of grid */
      gap: 2rem;
      width: 700px;               /* Fixed width to fit exactly 3 items (200px each + gaps) */
      overflow: hidden;           /* Hide overflow to clip extra items */
      scroll-behavior: smooth;
    }

    .category-card {
      flex: 0 0 200px;            /* Fixed width so exactly 3 items fit */
      text-align: center;
      padding: 1.25rem 0 1.5rem;
      border-radius: 24px;
      transition: transform 0.3s ease;
      background: transparent;
    }


    .category-image-wrapper {
      width: 200px;
      height: 200px;
      /*border-radius: 50%;*/
      background: #f5f5f5;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      margin: 0 auto;
      box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    }

    .category-image {
      width: 200px;
      height: 200px;
      /*border-radius: 50%;*/
      object-fit: cover;
      display: block;
      margin: 0 auto;
      box-shadow: 0 8px 25px rgba(0,0,0,0.12); /* Keep shadow on image */
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .category-image:hover {
      transform: scale(1.05);
      box-shadow: 0 12px 35px rgba(0,0,0,0.18);
    }

    .category-label {
      margin-top: 1rem;
      font-size: 1.05rem;
      font-weight: 600;
      color: #111 !important;
    }

/* Responsive tweaks */
@media (max-width: 576px) {
  .contact-grid {
    gap: 1rem;
    padding: 0 0.5rem;
  }
  .contact-form,
  .contact-right.contact-details {
    padding: 0.75rem;
    font-size: 0.95rem;
  }
  .contact-form input,
  .contact-form textarea {
    font-size: 1rem;
  }
}
    
    /* Hide captions & indicators */
    .square-carousel .carousel-caption,
    .carousel-indicators {
      display: none;
    }
    
    
    
    /* Responsive Design */
    @media (max-width: 992px) {
      .hero-content {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
      }
      
      .info-box,
      .square-carousel {
        width: 320px;
        height: 320px;
      }
      
      .square-carousel .carousel-inner,
      .square-carousel .carousel-item {
        height: 320px;
      }
      
      .cta {
        position: static;
        transform: none;
        margin-top: 1rem;
      }
    }
    
    @media (max-width: 768px) {
      .info-box,
      .square-carousel {
        width: 300px;
        height: 300px;
      }
      
      .square-carousel .carousel-inner,
      .square-carousel .carousel-item {
        height: 300px;
      }
      
      .info-box {
        padding: 1.5rem;
      }
      
      .left-box-title,
      .product-title {
        font-size: 1.4rem;
      }
    }
    
    @media (max-width: 576px) {
      .info-box,
      .square-carousel {
        width: 280px;
        height: 280px;
      }
      
      .square-carousel .carousel-inner,
      .square-carousel .carousel-item {
        height: 280px;
      }
      
      .hero-text {
        font-size: 1.4rem;
      }
    }
/* End of styles.css for old */
/* Container */
.top-contact-icons {
  position: absolute;       /* change to fixed if needed */
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  gap: 14px;
  z-index: 9999;
}

/* Common icon style */
.tci-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* WhatsApp */
.tci-whatsapp {
  background-color: #25D366;
}

/* Phone */
.tci-phone {
  background-color: #007bff;
}

/* Hover effect */
.tci-icon:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .top-contact-icons {
    right: 12px;
  }

  .tci-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}
.hero h2 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #dd216d, #0047cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 1.2;
}
.whatsapp-float {
    
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    text-decoration: none;
}

/* WhatsApp Icon */
.whatsapp-float img {
    width: 35px;
    height: 35px;
}

/* Tooltip */
.whatsapp-float .tooltip {
    position: absolute;
    right: 75px;
    background: #333;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* Tooltip Arrow */
.whatsapp-float .tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}

/* Show Tooltip on Hover */
.whatsapp-float:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.wa-tooltip-static {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 70px;
  transform: translateY(-50%);
  background: #333;
  color: #fff;
  padding: 6px 32px 6px 14px; /* extra right padding for close button */
  border-radius: 6px;
  font-size: 15px;
  white-space: nowrap;
  z-index: 10000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.wa-tooltip-close {
  position: absolute;
  top: 4px;
  right: 8px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}
@media (max-width: 768px) {
  .wa-tooltip-static {
    right: 80px;
    font-size: 13px;
    padding: 5px 28px 5px 10px;
  }
  .wa-tooltip-close {
    right: 4px;
    font-size: 16px;
  }
}
.discount
{font-family: "Montserrat, arial, sans-serif";
    font-weight: bold;
    color: #B81226;
    text-transform: uppercase;
    font-size: 2.0rem;
    line-height: 3.8rem;

}
.offer {
    font-size: 2.4rem;
    padding-right: 1rem;
    text-align: right;
    text-transform: uppercase;
    font-weight: bold;
    font-family: var(--font-family-secondary);
}

/* ========== TWO COLUMN LAYOUT ========== */
.two-column-layout {
  display: flex;
  flex-direction: row;
  gap: 0; /* Removes the gap between columns */
}

.column-left {
  flex: 1;
  order: 1; /* Ensures left column is on the left */
  margin-right: 0;
  margin: 0;
  padding: 0;
}

.column-right {
  flex: 1;
  order: 2; /* Ensures right column is on the right */
  margin-left: 0;
  margin: 0;
  padding: 0;
}
.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  /*object-fit: cover;*/
  display: block;
}

.gallery-desc {
  padding: 10px 12px;
  font-size: 1rem;
  color: #333;
  background: #f7f7f7;
  text-align: center;
}

.gallery-pagination {
  display: flex;
  justify-content: center;
  margin: 24px 0 0 0;
  gap: 8px;
}

.gallery-pagination button {
  background: #0078d7;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 6px 14px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
}

.gallery-pagination button.active,
.gallery-pagination button:hover {
  background: #005fa3;
}
.main-layout {
  display: flex;
  flex-direction: row;
}

.focus-items {
 /* flex: 0 0 260px;*/
  /*background: #f8fafc;*/
  padding: 24px 18px;
  border-radius: 8px;
  margin-right: 32px;
  /*box-shadow: 0 2px 8px rgba(0,0,0,0.04);*/
  min-height: 320px;
}

.focus-items h3 {
  margin-bottom: 18px;
  color: #0078d7;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.focus-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.focus-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  font-weight: 500;
  color: #222;
}

.focus-list li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: #ffb300;
  font-size: 1.1em;
  top: 0;
}
.ticker-wrap {
  width: 100%;
  background: #111;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  position: fixed;
  top: 0;
  z-index: 9999;
}
.top-banner {
    flex: auto;
    color: #fff;
    text-align: left;
    padding: 15px;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
}

.blink {
    animation: blinkEffect 1.5s infinite;
}
@keyframes blinkEffect {
    0%   { opacity: 1; }
    50%  { opacity: 0.3; }
    100% { opacity: 1; }
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/*
.ticker {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 20s linear infinite;
}

.ticker span {
  display: inline-block;
  padding: 0 40px;
  font-size: 14px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.ticker:hover {
  animation-play-state: paused;
}*/
/* corporate blue */

/* Responsive adjustments */
@media (max-width: 768px) {

  .Gallerytitle
  {
    font-size: 24px !important;
  }
  .gallery-grid {
    display: block;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .offer {
    font-size: 20px;
    text-align: center;
  }
  .discount{
     font-size: 18px;
     line-height:25px;
  }
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 1rem;
  }
  .header-content {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    align-items: center;
  }

  .main-layout {
    flex-direction: column;
    padding: 1rem;
  }
  .focus-items, .site-main {
    width: 100%;
    margin: 0px 0px 0px 0px;
    padding: 0;
  }
  .hero-content {
    flex-direction: column;
    align-items: center;
  }
  .info-box, .product-info {
    width: 100%;
    margin-bottom: 1rem;
  }
  .carousel-inner img {
    width: 100%;
    height: auto;
  }
  .categories-row {
    flex-direction: column;
    align-items: center;
  }
  .categories-items {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  .category-card {
    width: 90vw;
    max-width: 300px;
  }
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .two-column-layout {
    flex-direction: column;
  }
  .column-left,
  .column-right {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .categories-items {
    max-width: 60%;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
    display: -webkit-box;

  }
  .category-card {
    max-width: 0%;
    min-width: 214px;
    width: 100%;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    padding: 0.5rem;
  }
}
/* Hide checkbox */
#nav-toggle {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  width: 30px;
  cursor: pointer;
  z-index: 1000; /* IMPORTANT */
}

.hamburger span {
  height: 3px;
  background: #000;
  margin: 5px 0;
  border-radius: 2px;
}
.navbar-nav .nav-link.active{
  font-weight: bold !important;
}

/* Mobile */
@media screen and (max-width: 768px) {
  .hamburger {
    display: flex !important;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    text-align: center;
  }

  #nav-toggle:checked ~ .site-nav {
    display: flex;
  }
  .top-banner {
  color: #fff;
    text-align: center;    
    font-size: 7px;
    font-weight: normal;
    letter-spacing: 1px;
    padding: 0px 0px 0px 0px !important;
}
.logo{
  width: 35px;
    height: 35x;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
.container-fluid{
  flex-wrap:nowrap !important;
}
.hero h2 {
  font-size: 20px;
  margin-bottom:25px;
}
}
.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,0,0,.7)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.offcanvas.offcanvas-start.show{
  width: 300px !important;
}
.navbar{
  --bs-navbar-padding-y:0px !important;
}